repo_name
stringclasses
5 values
pr_number
int64
1.52k
15.5k
pr_title
stringlengths
8
143
pr_description
stringlengths
0
10.2k
author
stringlengths
3
18
date_created
unknown
date_merged
unknown
previous_commit
stringlengths
40
40
pr_commit
stringlengths
40
40
query
stringlengths
11
10.2k
filepath
stringlengths
6
220
before_content
stringlengths
0
597M
after_content
stringlengths
0
597M
label
int64
-1
1
libgdx/libgdx
7,309
Use empty Audio implementations on Android and iOS when audio is disabled
Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
obigu
"2023-12-27T22:37:18Z"
"2023-12-28T19:29:00Z"
2b691f735f4b167c062f8f68186a6d7237d3d855
7f682a7921a47f0da858508f6b6fd58426dd05d7
Use empty Audio implementations on Android and iOS when audio is disabled. Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
./tests/gdx-tests/src/com/badlogic/gdx/tests/Box2DTest.java
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.tests; import com.badlogic.gdx.Gdx; import com.badlogic.gdx.InputProcessor; import com.badlogic.gdx.graphics.Color; import com.badlogic.gdx.graphics.GL20; import com.badlogic.gdx.graphics.OrthographicCamera; import com.badlogic.gdx.graphics.Texture; import com.badlogic.gdx.graphics.g2d.BitmapFont; import com.badlogic.gdx.graphics.g2d.SpriteBatch; import com.badlogic.gdx.graphics.g2d.TextureRegion; import com.badlogic.gdx.graphics.glutils.ShapeRenderer; import com.badlogic.gdx.graphics.glutils.ShapeRenderer.ShapeType; import com.badlogic.gdx.math.MathUtils; import com.badlogic.gdx.math.Matrix4; import com.badlogic.gdx.math.Vector2; import com.badlogic.gdx.math.Vector3; import com.badlogic.gdx.physics.box2d.Body; import com.badlogic.gdx.physics.box2d.BodyDef; import com.badlogic.gdx.physics.box2d.BodyDef.BodyType; import com.badlogic.gdx.physics.box2d.Box2DDebugRenderer; import com.badlogic.gdx.physics.box2d.ChainShape; import com.badlogic.gdx.physics.box2d.Contact; import com.badlogic.gdx.physics.box2d.ContactImpulse; import com.badlogic.gdx.physics.box2d.ContactListener; import com.badlogic.gdx.physics.box2d.Fixture; import com.badlogic.gdx.physics.box2d.FixtureDef; import com.badlogic.gdx.physics.box2d.Manifold; import com.badlogic.gdx.physics.box2d.PolygonShape; import com.badlogic.gdx.physics.box2d.QueryCallback; import com.badlogic.gdx.physics.box2d.World; import com.badlogic.gdx.physics.box2d.WorldManifold; import com.badlogic.gdx.physics.box2d.joints.MouseJoint; import com.badlogic.gdx.physics.box2d.joints.MouseJointDef; import com.badlogic.gdx.tests.utils.GdxTest; import com.badlogic.gdx.utils.Array; import com.badlogic.gdx.utils.TimeUtils; import java.util.ArrayList; public class Box2DTest extends GdxTest implements InputProcessor { /** the camera **/ private com.badlogic.gdx.graphics.OrthographicCamera camera; /** the immediate mode renderer to output our debug drawings **/ private ShapeRenderer renderer; /** box2d debug renderer **/ private Box2DDebugRenderer debugRenderer; /** a spritebatch and a font for text rendering and a Texture to draw our boxes **/ private SpriteBatch batch; private BitmapFont font; private TextureRegion textureRegion; /** our box2D world **/ private World world; /** our boxes **/ private ArrayList<Body> boxes = new ArrayList<Body>(); /** our ground box **/ Body groundBody; /** our mouse joint **/ private MouseJoint mouseJoint = null; /** a hit body **/ Body hitBody = null; @Override public void create () { // setup the camera. In Box2D we operate on a // meter scale, pixels won't do it. So we use // an orthographic camera with a viewport of // 48 meters in width and 32 meters in height. // We also position the camera so that it // looks at (0,16) (that's where the middle of the // screen will be located). camera = new OrthographicCamera(48, 32); camera.position.set(0, 16, 0); // next we setup the immediate mode renderer renderer = new ShapeRenderer(); // next we create the box2d debug renderer debugRenderer = new Box2DDebugRenderer(); // next we create a SpriteBatch and a font batch = new SpriteBatch(); font = new BitmapFont(Gdx.files.internal("data/lsans-15.fnt"), false); font.setColor(Color.RED); textureRegion = new TextureRegion(new Texture(Gdx.files.internal("data/badlogicsmall.jpg"))); // next we create out physics world. createPhysicsWorld(); // register ourselfs as an InputProcessor Gdx.input.setInputProcessor(this); } private void createPhysicsWorld () { // we instantiate a new World with a proper gravity vector // and tell it to sleep when possible. world = new World(new Vector2(0, -10), true); float[] vertices = {-0.07421887f, -0.16276085f, -0.12109375f, -0.22786504f, -0.157552f, -0.7122401f, 0.04296875f, -0.7122401f, 0.110677004f, -0.6419276f, 0.13151026f, -0.49869835f, 0.08984375f, -0.3190109f}; PolygonShape shape = new PolygonShape(); shape.set(vertices); // next we create a static ground platform. This platform // is not moveable and will not react to any influences from // outside. It will however influence other bodies. First we // create a PolygonShape that holds the form of the platform. // it will be 100 meters wide and 2 meters high, centered // around the origin PolygonShape groundPoly = new PolygonShape(); groundPoly.setAsBox(50, 1); // next we create the body for the ground platform. It's // simply a static body. BodyDef groundBodyDef = new BodyDef(); groundBodyDef.type = BodyType.StaticBody; groundBody = world.createBody(groundBodyDef); // finally we add a fixture to the body using the polygon // defined above. Note that we have to dispose PolygonShapes // and CircleShapes once they are no longer used. This is the // only time you have to care explicitly for memory management. FixtureDef fixtureDef = new FixtureDef(); fixtureDef.shape = groundPoly; fixtureDef.filter.groupIndex = 0; groundBody.createFixture(fixtureDef); groundPoly.dispose(); // We also create a simple ChainShape we put above our // ground polygon for extra funkyness. ChainShape chainShape = new ChainShape(); chainShape.createLoop(new Vector2[] {new Vector2(-10, 10), new Vector2(-10, 5), new Vector2(10, 5), new Vector2(10, 11),}); BodyDef chainBodyDef = new BodyDef(); chainBodyDef.type = BodyType.StaticBody; Body chainBody = world.createBody(chainBodyDef); chainBody.createFixture(chainShape, 0); chainShape.dispose(); createBoxes(); Array<Fixture> fixtures = new Array<Fixture>(); world.getFixtures(fixtures); // You can savely ignore the rest of this method :) world.setContactListener(new ContactListener() { @Override public void beginContact (Contact contact) { // System.out.println("begin contact"); } @Override public void endContact (Contact contact) { // System.out.println("end contact"); } @Override public void preSolve (Contact contact, Manifold oldManifold) { // Manifold.ManifoldType type = oldManifold.getType(); // Vector2 localPoint = oldManifold.getLocalPoint(); // Vector2 localNormal = oldManifold.getLocalNormal(); // int pointCount = oldManifold.getPointCount(); // ManifoldPoint[] points = oldManifold.getPoints(); // System.out.println("pre solve, " + type + // ", point: " + localPoint + // ", local normal: " + localNormal + // ", #points: " + pointCount + // ", [" + points[0] + ", " + points[1] + "]"); } @Override public void postSolve (Contact contact, ContactImpulse impulse) { // float[] ni = impulse.getNormalImpulses(); // float[] ti = impulse.getTangentImpulses(); // System.out.println("post solve, normal impulses: " + ni[0] + ", " + ni[1] + ", tangent impulses: " + ti[0] + ", " + ti[1]); } }); } private void createBoxes () { // next we create 50 boxes at random locations above the ground // body. First we create a nice polygon representing a box 2 meters // wide and high. PolygonShape boxPoly = new PolygonShape(); boxPoly.setAsBox(1, 1); // next we create the 50 box bodies using the PolygonShape we just // defined. This process is similar to the one we used for the ground // body. Note that we reuse the polygon for each body fixture. for (int i = 0; i < 20; i++) { // Create the BodyDef, set a random position above the // ground and create a new body BodyDef boxBodyDef = new BodyDef(); boxBodyDef.type = BodyType.DynamicBody; boxBodyDef.position.x = -24 + (float)(Math.random() * 48); boxBodyDef.position.y = 10 + (float)(Math.random() * 100); Body boxBody = world.createBody(boxBodyDef); boxBody.createFixture(boxPoly, 1); // add the box to our list of boxes boxes.add(boxBody); } // we are done, all that's left is disposing the boxPoly boxPoly.dispose(); } @Override public void render () { // first we update the world. For simplicity // we use the delta time provided by the Graphics // instance. Normally you'll want to fix the time // step. long start = TimeUtils.nanoTime(); world.step(Gdx.graphics.getDeltaTime(), 8, 3); float updateTime = (TimeUtils.nanoTime() - start) / 1000000000.0f; // next we clear the color buffer and set the camera // matrices Gdx.gl.glClear(GL20.GL_COLOR_BUFFER_BIT); camera.update(); // next we render the ground body renderBox(groundBody, 50, 1); // next we render each box via the SpriteBatch. // for this we have to set the projection matrix of the // spritebatch to the camera's combined matrix. This will // make the spritebatch work in world coordinates batch.getProjectionMatrix().set(camera.combined); batch.begin(); for (int i = 0; i < boxes.size(); i++) { Body box = boxes.get(i); Vector2 position = box.getPosition(); // that's the box's center position float angle = MathUtils.radiansToDegrees * box.getAngle(); // the rotation angle around the center batch.draw(textureRegion, position.x - 1, position.y - 1, // the bottom left corner of the box, unrotated 1f, 1f, // the rotation center relative to the bottom left corner of the box 2, 2, // the width and height of the box 1, 1, // the scale on the x- and y-axis angle); // the rotation angle } batch.end(); // next we use the debug renderer. Note that we // simply apply the camera again and then call // the renderer. the camera.apply() call is actually // not needed as the opengl matrices are already set // by the spritebatch which in turn uses the camera matrices :) debugRenderer.render(world, camera.combined); // finally we render all contact points renderer.setProjectionMatrix(camera.combined); renderer.begin(ShapeType.Point); renderer.setColor(0, 1, 0, 1); for (int i = 0; i < world.getContactCount(); i++) { Contact contact = world.getContactList().get(i); // we only render the contact if it actually touches if (contact.isTouching()) { // get the world manifold from which we get the // contact points. A manifold can have 0, 1 or 2 // contact points. WorldManifold manifold = contact.getWorldManifold(); int numContactPoints = manifold.getNumberOfContactPoints(); for (int j = 0; j < numContactPoints; j++) { Vector2 point = manifold.getPoints()[j]; renderer.point(point.x, point.y, 0); } } } renderer.end(); // finally we render the time it took to update the world // for this we have to set the projection matrix again, so // we work in pixel coordinates batch.getProjectionMatrix().setToOrtho2D(0, 0, Gdx.graphics.getWidth(), Gdx.graphics.getHeight()); batch.begin(); font.draw(batch, "fps: " + Gdx.graphics.getFramesPerSecond() + " update time: " + updateTime, 0, 20); batch.end(); } Matrix4 transform = new Matrix4(); private void renderBox (Body body, float halfWidth, float halfHeight) { // get the bodies center and angle in world coordinates Vector2 pos = body.getWorldCenter(); float angle = body.getAngle(); // set the translation and rotation matrix transform.setToTranslation(pos.x, pos.y, 0); transform.rotate(0, 0, 1, (float)Math.toDegrees(angle)); // render the box renderer.begin(ShapeType.Line); renderer.setTransformMatrix(transform); renderer.setColor(1, 1, 1, 1); renderer.rect(-halfWidth, -halfHeight, halfWidth * 2, halfHeight * 2); renderer.end(); } /** we instantiate this vector and the callback here so we don't irritate the GC **/ Vector3 testPoint = new Vector3(); QueryCallback callback = new QueryCallback() { @Override public boolean reportFixture (Fixture fixture) { // if the hit fixture's body is the ground body // we ignore it if (fixture.getBody() == groundBody) return true; // if the hit point is inside the fixture of the body // we report it if (fixture.testPoint(testPoint.x, testPoint.y)) { hitBody = fixture.getBody(); return false; } else return true; } }; @Override public boolean touchDown (int x, int y, int pointer, int newParam) { // translate the mouse coordinates to world coordinates testPoint.set(x, y, 0); camera.unproject(testPoint); // ask the world which bodies are within the given // bounding box around the mouse pointer hitBody = null; world.QueryAABB(callback, testPoint.x - 0.1f, testPoint.y - 0.1f, testPoint.x + 0.1f, testPoint.y + 0.1f); // if we hit something we create a new mouse joint // and attach it to the hit body. if (hitBody != null) { MouseJointDef def = new MouseJointDef(); def.bodyA = groundBody; def.bodyB = hitBody; def.collideConnected = true; def.target.set(testPoint.x, testPoint.y); def.maxForce = 1000.0f * hitBody.getMass(); mouseJoint = (MouseJoint)world.createJoint(def); hitBody.setAwake(true); } else { for (Body box : boxes) world.destroyBody(box); boxes.clear(); createBoxes(); } return false; } /** another temporary vector **/ Vector2 target = new Vector2(); @Override public boolean touchDragged (int x, int y, int pointer) { // if a mouse joint exists we simply update // the target of the joint based on the new // mouse coordinates if (mouseJoint != null) { camera.unproject(testPoint.set(x, y, 0)); mouseJoint.setTarget(target.set(testPoint.x, testPoint.y)); } return false; } @Override public boolean touchUp (int x, int y, int pointer, int button) { // if a mouse joint exists we simply destroy it if (mouseJoint != null) { world.destroyJoint(mouseJoint); mouseJoint = null; } return false; } @Override public void dispose () { world.dispose(); renderer.dispose(); debugRenderer.dispose(); font.dispose(); textureRegion.getTexture().dispose(); } }
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.tests; import com.badlogic.gdx.Gdx; import com.badlogic.gdx.InputProcessor; import com.badlogic.gdx.graphics.Color; import com.badlogic.gdx.graphics.GL20; import com.badlogic.gdx.graphics.OrthographicCamera; import com.badlogic.gdx.graphics.Texture; import com.badlogic.gdx.graphics.g2d.BitmapFont; import com.badlogic.gdx.graphics.g2d.SpriteBatch; import com.badlogic.gdx.graphics.g2d.TextureRegion; import com.badlogic.gdx.graphics.glutils.ShapeRenderer; import com.badlogic.gdx.graphics.glutils.ShapeRenderer.ShapeType; import com.badlogic.gdx.math.MathUtils; import com.badlogic.gdx.math.Matrix4; import com.badlogic.gdx.math.Vector2; import com.badlogic.gdx.math.Vector3; import com.badlogic.gdx.physics.box2d.Body; import com.badlogic.gdx.physics.box2d.BodyDef; import com.badlogic.gdx.physics.box2d.BodyDef.BodyType; import com.badlogic.gdx.physics.box2d.Box2DDebugRenderer; import com.badlogic.gdx.physics.box2d.ChainShape; import com.badlogic.gdx.physics.box2d.Contact; import com.badlogic.gdx.physics.box2d.ContactImpulse; import com.badlogic.gdx.physics.box2d.ContactListener; import com.badlogic.gdx.physics.box2d.Fixture; import com.badlogic.gdx.physics.box2d.FixtureDef; import com.badlogic.gdx.physics.box2d.Manifold; import com.badlogic.gdx.physics.box2d.PolygonShape; import com.badlogic.gdx.physics.box2d.QueryCallback; import com.badlogic.gdx.physics.box2d.World; import com.badlogic.gdx.physics.box2d.WorldManifold; import com.badlogic.gdx.physics.box2d.joints.MouseJoint; import com.badlogic.gdx.physics.box2d.joints.MouseJointDef; import com.badlogic.gdx.tests.utils.GdxTest; import com.badlogic.gdx.utils.Array; import com.badlogic.gdx.utils.TimeUtils; import java.util.ArrayList; public class Box2DTest extends GdxTest implements InputProcessor { /** the camera **/ private com.badlogic.gdx.graphics.OrthographicCamera camera; /** the immediate mode renderer to output our debug drawings **/ private ShapeRenderer renderer; /** box2d debug renderer **/ private Box2DDebugRenderer debugRenderer; /** a spritebatch and a font for text rendering and a Texture to draw our boxes **/ private SpriteBatch batch; private BitmapFont font; private TextureRegion textureRegion; /** our box2D world **/ private World world; /** our boxes **/ private ArrayList<Body> boxes = new ArrayList<Body>(); /** our ground box **/ Body groundBody; /** our mouse joint **/ private MouseJoint mouseJoint = null; /** a hit body **/ Body hitBody = null; @Override public void create () { // setup the camera. In Box2D we operate on a // meter scale, pixels won't do it. So we use // an orthographic camera with a viewport of // 48 meters in width and 32 meters in height. // We also position the camera so that it // looks at (0,16) (that's where the middle of the // screen will be located). camera = new OrthographicCamera(48, 32); camera.position.set(0, 16, 0); // next we setup the immediate mode renderer renderer = new ShapeRenderer(); // next we create the box2d debug renderer debugRenderer = new Box2DDebugRenderer(); // next we create a SpriteBatch and a font batch = new SpriteBatch(); font = new BitmapFont(Gdx.files.internal("data/lsans-15.fnt"), false); font.setColor(Color.RED); textureRegion = new TextureRegion(new Texture(Gdx.files.internal("data/badlogicsmall.jpg"))); // next we create out physics world. createPhysicsWorld(); // register ourselfs as an InputProcessor Gdx.input.setInputProcessor(this); } private void createPhysicsWorld () { // we instantiate a new World with a proper gravity vector // and tell it to sleep when possible. world = new World(new Vector2(0, -10), true); float[] vertices = {-0.07421887f, -0.16276085f, -0.12109375f, -0.22786504f, -0.157552f, -0.7122401f, 0.04296875f, -0.7122401f, 0.110677004f, -0.6419276f, 0.13151026f, -0.49869835f, 0.08984375f, -0.3190109f}; PolygonShape shape = new PolygonShape(); shape.set(vertices); // next we create a static ground platform. This platform // is not moveable and will not react to any influences from // outside. It will however influence other bodies. First we // create a PolygonShape that holds the form of the platform. // it will be 100 meters wide and 2 meters high, centered // around the origin PolygonShape groundPoly = new PolygonShape(); groundPoly.setAsBox(50, 1); // next we create the body for the ground platform. It's // simply a static body. BodyDef groundBodyDef = new BodyDef(); groundBodyDef.type = BodyType.StaticBody; groundBody = world.createBody(groundBodyDef); // finally we add a fixture to the body using the polygon // defined above. Note that we have to dispose PolygonShapes // and CircleShapes once they are no longer used. This is the // only time you have to care explicitly for memory management. FixtureDef fixtureDef = new FixtureDef(); fixtureDef.shape = groundPoly; fixtureDef.filter.groupIndex = 0; groundBody.createFixture(fixtureDef); groundPoly.dispose(); // We also create a simple ChainShape we put above our // ground polygon for extra funkyness. ChainShape chainShape = new ChainShape(); chainShape.createLoop(new Vector2[] {new Vector2(-10, 10), new Vector2(-10, 5), new Vector2(10, 5), new Vector2(10, 11),}); BodyDef chainBodyDef = new BodyDef(); chainBodyDef.type = BodyType.StaticBody; Body chainBody = world.createBody(chainBodyDef); chainBody.createFixture(chainShape, 0); chainShape.dispose(); createBoxes(); Array<Fixture> fixtures = new Array<Fixture>(); world.getFixtures(fixtures); // You can savely ignore the rest of this method :) world.setContactListener(new ContactListener() { @Override public void beginContact (Contact contact) { // System.out.println("begin contact"); } @Override public void endContact (Contact contact) { // System.out.println("end contact"); } @Override public void preSolve (Contact contact, Manifold oldManifold) { // Manifold.ManifoldType type = oldManifold.getType(); // Vector2 localPoint = oldManifold.getLocalPoint(); // Vector2 localNormal = oldManifold.getLocalNormal(); // int pointCount = oldManifold.getPointCount(); // ManifoldPoint[] points = oldManifold.getPoints(); // System.out.println("pre solve, " + type + // ", point: " + localPoint + // ", local normal: " + localNormal + // ", #points: " + pointCount + // ", [" + points[0] + ", " + points[1] + "]"); } @Override public void postSolve (Contact contact, ContactImpulse impulse) { // float[] ni = impulse.getNormalImpulses(); // float[] ti = impulse.getTangentImpulses(); // System.out.println("post solve, normal impulses: " + ni[0] + ", " + ni[1] + ", tangent impulses: " + ti[0] + ", " + ti[1]); } }); } private void createBoxes () { // next we create 50 boxes at random locations above the ground // body. First we create a nice polygon representing a box 2 meters // wide and high. PolygonShape boxPoly = new PolygonShape(); boxPoly.setAsBox(1, 1); // next we create the 50 box bodies using the PolygonShape we just // defined. This process is similar to the one we used for the ground // body. Note that we reuse the polygon for each body fixture. for (int i = 0; i < 20; i++) { // Create the BodyDef, set a random position above the // ground and create a new body BodyDef boxBodyDef = new BodyDef(); boxBodyDef.type = BodyType.DynamicBody; boxBodyDef.position.x = -24 + (float)(Math.random() * 48); boxBodyDef.position.y = 10 + (float)(Math.random() * 100); Body boxBody = world.createBody(boxBodyDef); boxBody.createFixture(boxPoly, 1); // add the box to our list of boxes boxes.add(boxBody); } // we are done, all that's left is disposing the boxPoly boxPoly.dispose(); } @Override public void render () { // first we update the world. For simplicity // we use the delta time provided by the Graphics // instance. Normally you'll want to fix the time // step. long start = TimeUtils.nanoTime(); world.step(Gdx.graphics.getDeltaTime(), 8, 3); float updateTime = (TimeUtils.nanoTime() - start) / 1000000000.0f; // next we clear the color buffer and set the camera // matrices Gdx.gl.glClear(GL20.GL_COLOR_BUFFER_BIT); camera.update(); // next we render the ground body renderBox(groundBody, 50, 1); // next we render each box via the SpriteBatch. // for this we have to set the projection matrix of the // spritebatch to the camera's combined matrix. This will // make the spritebatch work in world coordinates batch.getProjectionMatrix().set(camera.combined); batch.begin(); for (int i = 0; i < boxes.size(); i++) { Body box = boxes.get(i); Vector2 position = box.getPosition(); // that's the box's center position float angle = MathUtils.radiansToDegrees * box.getAngle(); // the rotation angle around the center batch.draw(textureRegion, position.x - 1, position.y - 1, // the bottom left corner of the box, unrotated 1f, 1f, // the rotation center relative to the bottom left corner of the box 2, 2, // the width and height of the box 1, 1, // the scale on the x- and y-axis angle); // the rotation angle } batch.end(); // next we use the debug renderer. Note that we // simply apply the camera again and then call // the renderer. the camera.apply() call is actually // not needed as the opengl matrices are already set // by the spritebatch which in turn uses the camera matrices :) debugRenderer.render(world, camera.combined); // finally we render all contact points renderer.setProjectionMatrix(camera.combined); renderer.begin(ShapeType.Point); renderer.setColor(0, 1, 0, 1); for (int i = 0; i < world.getContactCount(); i++) { Contact contact = world.getContactList().get(i); // we only render the contact if it actually touches if (contact.isTouching()) { // get the world manifold from which we get the // contact points. A manifold can have 0, 1 or 2 // contact points. WorldManifold manifold = contact.getWorldManifold(); int numContactPoints = manifold.getNumberOfContactPoints(); for (int j = 0; j < numContactPoints; j++) { Vector2 point = manifold.getPoints()[j]; renderer.point(point.x, point.y, 0); } } } renderer.end(); // finally we render the time it took to update the world // for this we have to set the projection matrix again, so // we work in pixel coordinates batch.getProjectionMatrix().setToOrtho2D(0, 0, Gdx.graphics.getWidth(), Gdx.graphics.getHeight()); batch.begin(); font.draw(batch, "fps: " + Gdx.graphics.getFramesPerSecond() + " update time: " + updateTime, 0, 20); batch.end(); } Matrix4 transform = new Matrix4(); private void renderBox (Body body, float halfWidth, float halfHeight) { // get the bodies center and angle in world coordinates Vector2 pos = body.getWorldCenter(); float angle = body.getAngle(); // set the translation and rotation matrix transform.setToTranslation(pos.x, pos.y, 0); transform.rotate(0, 0, 1, (float)Math.toDegrees(angle)); // render the box renderer.begin(ShapeType.Line); renderer.setTransformMatrix(transform); renderer.setColor(1, 1, 1, 1); renderer.rect(-halfWidth, -halfHeight, halfWidth * 2, halfHeight * 2); renderer.end(); } /** we instantiate this vector and the callback here so we don't irritate the GC **/ Vector3 testPoint = new Vector3(); QueryCallback callback = new QueryCallback() { @Override public boolean reportFixture (Fixture fixture) { // if the hit fixture's body is the ground body // we ignore it if (fixture.getBody() == groundBody) return true; // if the hit point is inside the fixture of the body // we report it if (fixture.testPoint(testPoint.x, testPoint.y)) { hitBody = fixture.getBody(); return false; } else return true; } }; @Override public boolean touchDown (int x, int y, int pointer, int newParam) { // translate the mouse coordinates to world coordinates testPoint.set(x, y, 0); camera.unproject(testPoint); // ask the world which bodies are within the given // bounding box around the mouse pointer hitBody = null; world.QueryAABB(callback, testPoint.x - 0.1f, testPoint.y - 0.1f, testPoint.x + 0.1f, testPoint.y + 0.1f); // if we hit something we create a new mouse joint // and attach it to the hit body. if (hitBody != null) { MouseJointDef def = new MouseJointDef(); def.bodyA = groundBody; def.bodyB = hitBody; def.collideConnected = true; def.target.set(testPoint.x, testPoint.y); def.maxForce = 1000.0f * hitBody.getMass(); mouseJoint = (MouseJoint)world.createJoint(def); hitBody.setAwake(true); } else { for (Body box : boxes) world.destroyBody(box); boxes.clear(); createBoxes(); } return false; } /** another temporary vector **/ Vector2 target = new Vector2(); @Override public boolean touchDragged (int x, int y, int pointer) { // if a mouse joint exists we simply update // the target of the joint based on the new // mouse coordinates if (mouseJoint != null) { camera.unproject(testPoint.set(x, y, 0)); mouseJoint.setTarget(target.set(testPoint.x, testPoint.y)); } return false; } @Override public boolean touchUp (int x, int y, int pointer, int button) { // if a mouse joint exists we simply destroy it if (mouseJoint != null) { world.destroyJoint(mouseJoint); mouseJoint = null; } return false; } @Override public void dispose () { world.dispose(); renderer.dispose(); debugRenderer.dispose(); font.dispose(); textureRegion.getTexture().dispose(); } }
-1
libgdx/libgdx
7,309
Use empty Audio implementations on Android and iOS when audio is disabled
Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
obigu
"2023-12-27T22:37:18Z"
"2023-12-28T19:29:00Z"
2b691f735f4b167c062f8f68186a6d7237d3d855
7f682a7921a47f0da858508f6b6fd58426dd05d7
Use empty Audio implementations on Android and iOS when audio is disabled. Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
./backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/webaudio/WebAudioAPIMusic.java
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.backends.gwt.webaudio; import com.badlogic.gdx.audio.Music; import com.google.gwt.core.client.JavaScriptObject; import com.google.gwt.media.client.Audio; public class WebAudioAPIMusic implements Music { // The Audio element to be streamed private final Audio audio; // Pool from which we will draw, and eventually return to, our AudioControlGraph from private final AudioControlGraphPool audioControlGraphPool; // The audio graph used to control pan and volume for this piece of music private final AudioControlGraph audioControlGraph; private OnCompletionListener onCompletionListener; public WebAudioAPIMusic (JavaScriptObject audioContext, Audio audio, AudioControlGraphPool audioControlGraphPool) { this.audio = audio; this.audioControlGraphPool = audioControlGraphPool; // Create AudioSourceNode from Audio element JavaScriptObject audioSourceNode = createMediaElementAudioSourceNode(audioContext, audio.getAudioElement()); // Setup the sound graph to control pan and volume audioControlGraph = audioControlGraphPool.obtain(); audioControlGraph.setSource(audioSourceNode); } public void ended () { if (this.onCompletionListener != null) this.onCompletionListener.onCompletion(this); } public native JavaScriptObject createMediaElementAudioSourceNode (JavaScriptObject audioContext, JavaScriptObject audioElement) /*-{ var source = audioContext.createMediaElementSource(audioElement); var self = this; audioElement.addEventListener("ended", self.@com.badlogic.gdx.backends.gwt.webaudio.WebAudioAPIMusic::ended()); return source; }-*/; @Override public void play () { audio.play(); } @Override public void pause () { audio.pause(); } @Override public void stop () { pause(); audio.setCurrentTime(0); } @Override public boolean isPlaying () { return !audio.isPaused(); } @Override public void setLooping (boolean isLooping) { audio.setLoop(isLooping); } @Override public boolean isLooping () { return audio.isLoop(); } @Override public void setVolume (float volume) { // Volume can be controlled on the Audio element, or as part of the audio graph. We do it as part of the graph to ensure we // use as much common // code as possible with the sound effect code. audioControlGraph.setVolume(volume); } @Override public float getVolume () { return audioControlGraph.getVolume(); } @Override public void setPan (float pan, float volume) { audioControlGraph.setPan(pan); audioControlGraph.setVolume(volume); } @Override public void setPosition (float position) { audio.setCurrentTime(position); } @Override public float getPosition () { return (float)audio.getCurrentTime(); } @Override public void dispose () { // Stop the music pause(); // Tear down the audio graph audioControlGraphPool.free(audioControlGraph); } @Override public void setOnCompletionListener (OnCompletionListener listener) { this.onCompletionListener = listener; } }
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.backends.gwt.webaudio; import com.badlogic.gdx.audio.Music; import com.google.gwt.core.client.JavaScriptObject; import com.google.gwt.media.client.Audio; public class WebAudioAPIMusic implements Music { // The Audio element to be streamed private final Audio audio; // Pool from which we will draw, and eventually return to, our AudioControlGraph from private final AudioControlGraphPool audioControlGraphPool; // The audio graph used to control pan and volume for this piece of music private final AudioControlGraph audioControlGraph; private OnCompletionListener onCompletionListener; public WebAudioAPIMusic (JavaScriptObject audioContext, Audio audio, AudioControlGraphPool audioControlGraphPool) { this.audio = audio; this.audioControlGraphPool = audioControlGraphPool; // Create AudioSourceNode from Audio element JavaScriptObject audioSourceNode = createMediaElementAudioSourceNode(audioContext, audio.getAudioElement()); // Setup the sound graph to control pan and volume audioControlGraph = audioControlGraphPool.obtain(); audioControlGraph.setSource(audioSourceNode); } public void ended () { if (this.onCompletionListener != null) this.onCompletionListener.onCompletion(this); } public native JavaScriptObject createMediaElementAudioSourceNode (JavaScriptObject audioContext, JavaScriptObject audioElement) /*-{ var source = audioContext.createMediaElementSource(audioElement); var self = this; audioElement.addEventListener("ended", self.@com.badlogic.gdx.backends.gwt.webaudio.WebAudioAPIMusic::ended()); return source; }-*/; @Override public void play () { audio.play(); } @Override public void pause () { audio.pause(); } @Override public void stop () { pause(); audio.setCurrentTime(0); } @Override public boolean isPlaying () { return !audio.isPaused(); } @Override public void setLooping (boolean isLooping) { audio.setLoop(isLooping); } @Override public boolean isLooping () { return audio.isLoop(); } @Override public void setVolume (float volume) { // Volume can be controlled on the Audio element, or as part of the audio graph. We do it as part of the graph to ensure we // use as much common // code as possible with the sound effect code. audioControlGraph.setVolume(volume); } @Override public float getVolume () { return audioControlGraph.getVolume(); } @Override public void setPan (float pan, float volume) { audioControlGraph.setPan(pan); audioControlGraph.setVolume(volume); } @Override public void setPosition (float position) { audio.setCurrentTime(position); } @Override public float getPosition () { return (float)audio.getCurrentTime(); } @Override public void dispose () { // Stop the music pause(); // Tear down the audio graph audioControlGraphPool.free(audioControlGraph); } @Override public void setOnCompletionListener (OnCompletionListener listener) { this.onCompletionListener = listener; } }
-1
libgdx/libgdx
7,309
Use empty Audio implementations on Android and iOS when audio is disabled
Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
obigu
"2023-12-27T22:37:18Z"
"2023-12-28T19:29:00Z"
2b691f735f4b167c062f8f68186a6d7237d3d855
7f682a7921a47f0da858508f6b6fd58426dd05d7
Use empty Audio implementations on Android and iOS when audio is disabled. Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
./extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/common/MathUtils.java
/******************************************************************************* * Copyright (c) 2013, Daniel Murphy * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. * IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. ******************************************************************************/ /* * JBox2D - A Java Port of Erin Catto's Box2D * * JBox2D homepage: http://jbox2d.sourceforge.net/ * Box2D homepage: http://www.box2d.org * * This software is provided 'as-is', without any express or implied * warranty. In no event will the authors be held liable for any damages * arising from the use of this software. * * Permission is granted to anyone to use this software for any purpose, * including commercial applications, and to alter it and redistribute it * freely, subject to the following restrictions: * * 1. The origin of this software must not be misrepresented; you must not * claim that you wrote the original software. If you use this software * in a product, an acknowledgment in the product documentation would be * appreciated but is not required. * 2. Altered source versions must be plainly marked as such, and must not be * misrepresented as being the original software. * 3. This notice may not be removed or altered from any source distribution. */ package org.jbox2d.common; import java.util.Random; /** A few math methods that don't fit very well anywhere else. */ public class MathUtils extends PlatformMathUtils { public static final float PI = (float)Math.PI; public static final float TWOPI = (float)(Math.PI * 2); public static final float INV_PI = 1f / PI; public static final float HALF_PI = PI / 2; public static final float QUARTER_PI = PI / 4; public static final float THREE_HALVES_PI = TWOPI - HALF_PI; /** Degrees to radians conversion factor */ public static final float DEG2RAD = PI / 180; /** Radians to degrees conversion factor */ public static final float RAD2DEG = 180 / PI; public static final float[] sinLUT = new float[Settings.SINCOS_LUT_LENGTH]; static { for (int i = 0; i < Settings.SINCOS_LUT_LENGTH; i++) { sinLUT[i] = (float)Math.sin(i * Settings.SINCOS_LUT_PRECISION); } } public static final float sin (float x) { if (Settings.SINCOS_LUT_ENABLED) { return sinLUT(x); } else { return (float)StrictMath.sin(x); } } public static final float sinLUT (float x) { x %= TWOPI; if (x < 0) { x += TWOPI; } if (Settings.SINCOS_LUT_LERP) { x /= Settings.SINCOS_LUT_PRECISION; final int index = (int)x; if (index != 0) { x %= index; } // the next index is 0 if (index == Settings.SINCOS_LUT_LENGTH - 1) { return ((1 - x) * sinLUT[index] + x * sinLUT[0]); } else { return ((1 - x) * sinLUT[index] + x * sinLUT[index + 1]); } } else { return sinLUT[MathUtils.round(x / Settings.SINCOS_LUT_PRECISION) % Settings.SINCOS_LUT_LENGTH]; } } public static final float cos (float x) { if (Settings.SINCOS_LUT_ENABLED) { return sinLUT(HALF_PI - x); } else { return (float)StrictMath.cos(x); } } public static final float abs (final float x) { if (Settings.FAST_ABS) { return x > 0 ? x : -x; } else { return StrictMath.abs(x); } } public static final float fastAbs (final float x) { return x > 0 ? x : -x; } public static final int abs (int x) { int y = x >> 31; return (x ^ y) - y; } public static final int floor (final float x) { if (Settings.FAST_FLOOR) { return fastFloor(x); } else { return (int)StrictMath.floor(x); } } public static final int fastFloor (final float x) { int y = (int)x; if (x < y) { return y - 1; } return y; } public static final int ceil (final float x) { if (Settings.FAST_CEIL) { return fastCeil(x); } else { return (int)StrictMath.ceil(x); } } public static final int fastCeil (final float x) { int y = (int)x; if (x > y) { return y + 1; } return y; } public static final int round (final float x) { if (Settings.FAST_ROUND) { return floor(x + .5f); } else { return StrictMath.round(x); } } /** Rounds up the value to the nearest higher power^2 value. * * @param x * @return power^2 value */ public static final int ceilPowerOf2 (int x) { int pow2 = 1; while (pow2 < x) { pow2 <<= 1; } return pow2; } public final static float max (final float a, final float b) { return a > b ? a : b; } public final static int max (final int a, final int b) { return a > b ? a : b; } public final static float min (final float a, final float b) { return a < b ? a : b; } public final static int min (final int a, final int b) { return a < b ? a : b; } public final static float map (final float val, final float fromMin, final float fromMax, final float toMin, final float toMax) { final float mult = (val - fromMin) / (fromMax - fromMin); final float res = toMin + mult * (toMax - toMin); return res; } /** Returns the closest value to 'a' that is in between 'low' and 'high' */ public final static float clamp (final float a, final float low, final float high) { return max(low, min(a, high)); } public final static Vec2 clamp (final Vec2 a, final Vec2 low, final Vec2 high) { final Vec2 min = new Vec2(); min.x = a.x < high.x ? a.x : high.x; min.y = a.y < high.y ? a.y : high.y; min.x = low.x > min.x ? low.x : min.x; min.y = low.y > min.y ? low.y : min.y; return min; } public final static void clampToOut (final Vec2 a, final Vec2 low, final Vec2 high, final Vec2 dest) { dest.x = a.x < high.x ? a.x : high.x; dest.y = a.y < high.y ? a.y : high.y; dest.x = low.x > dest.x ? low.x : dest.x; dest.y = low.y > dest.y ? low.y : dest.y; } /** Next Largest Power of 2: Given a binary integer value x, the next largest power of 2 can be computed by a SWAR algorithm * that recursively "folds" the upper bits into the lower bits. This process yields a bit vector with the same most significant * 1 as x, but all 1's below it. Adding 1 to that value yields the next largest power of 2. */ public final static int nextPowerOfTwo (int x) { x |= x >> 1; x |= x >> 2; x |= x >> 4; x |= x >> 8; x |= x >> 16; return x + 1; } public final static boolean isPowerOfTwo (final int x) { return x > 0 && (x & x - 1) == 0; } public static final float pow (float a, float b) { if (Settings.FAST_POW) { return fastPow(a, b); } else { return (float)StrictMath.pow(a, b); } } public static final float atan2 (final float y, final float x) { if (Settings.FAST_ATAN2) { return fastAtan2(y, x); } else { return (float)StrictMath.atan2(y, x); } } public static final float fastAtan2 (float y, float x) { if (x == 0.0f) { if (y > 0.0f) return HALF_PI; if (y == 0.0f) return 0.0f; return -HALF_PI; } float atan; final float z = y / x; if (abs(z) < 1.0f) { atan = z / (1.0f + 0.28f * z * z); if (x < 0.0f) { if (y < 0.0f) return atan - PI; return atan + PI; } } else { atan = HALF_PI - z / (z * z + 0.28f); if (y < 0.0f) return atan - PI; } return atan; } public static final float reduceAngle (float theta) { theta %= TWOPI; if (abs(theta) > PI) { theta = theta - TWOPI; } if (abs(theta) > HALF_PI) { theta = PI - theta; } return theta; } public static final float randomFloat (float argLow, float argHigh) { return (float)Math.random() * (argHigh - argLow) + argLow; } public static final float randomFloat (Random r, float argLow, float argHigh) { return r.nextFloat() * (argHigh - argLow) + argLow; } public static final float sqrt (float x) { return (float)StrictMath.sqrt(x); } public final static float distanceSquared (Vec2 v1, Vec2 v2) { float dx = (v1.x - v2.x); float dy = (v1.y - v2.y); return dx * dx + dy * dy; } public final static float distance (Vec2 v1, Vec2 v2) { return sqrt(distanceSquared(v1, v2)); } }
/******************************************************************************* * Copyright (c) 2013, Daniel Murphy * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. * IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. ******************************************************************************/ /* * JBox2D - A Java Port of Erin Catto's Box2D * * JBox2D homepage: http://jbox2d.sourceforge.net/ * Box2D homepage: http://www.box2d.org * * This software is provided 'as-is', without any express or implied * warranty. In no event will the authors be held liable for any damages * arising from the use of this software. * * Permission is granted to anyone to use this software for any purpose, * including commercial applications, and to alter it and redistribute it * freely, subject to the following restrictions: * * 1. The origin of this software must not be misrepresented; you must not * claim that you wrote the original software. If you use this software * in a product, an acknowledgment in the product documentation would be * appreciated but is not required. * 2. Altered source versions must be plainly marked as such, and must not be * misrepresented as being the original software. * 3. This notice may not be removed or altered from any source distribution. */ package org.jbox2d.common; import java.util.Random; /** A few math methods that don't fit very well anywhere else. */ public class MathUtils extends PlatformMathUtils { public static final float PI = (float)Math.PI; public static final float TWOPI = (float)(Math.PI * 2); public static final float INV_PI = 1f / PI; public static final float HALF_PI = PI / 2; public static final float QUARTER_PI = PI / 4; public static final float THREE_HALVES_PI = TWOPI - HALF_PI; /** Degrees to radians conversion factor */ public static final float DEG2RAD = PI / 180; /** Radians to degrees conversion factor */ public static final float RAD2DEG = 180 / PI; public static final float[] sinLUT = new float[Settings.SINCOS_LUT_LENGTH]; static { for (int i = 0; i < Settings.SINCOS_LUT_LENGTH; i++) { sinLUT[i] = (float)Math.sin(i * Settings.SINCOS_LUT_PRECISION); } } public static final float sin (float x) { if (Settings.SINCOS_LUT_ENABLED) { return sinLUT(x); } else { return (float)StrictMath.sin(x); } } public static final float sinLUT (float x) { x %= TWOPI; if (x < 0) { x += TWOPI; } if (Settings.SINCOS_LUT_LERP) { x /= Settings.SINCOS_LUT_PRECISION; final int index = (int)x; if (index != 0) { x %= index; } // the next index is 0 if (index == Settings.SINCOS_LUT_LENGTH - 1) { return ((1 - x) * sinLUT[index] + x * sinLUT[0]); } else { return ((1 - x) * sinLUT[index] + x * sinLUT[index + 1]); } } else { return sinLUT[MathUtils.round(x / Settings.SINCOS_LUT_PRECISION) % Settings.SINCOS_LUT_LENGTH]; } } public static final float cos (float x) { if (Settings.SINCOS_LUT_ENABLED) { return sinLUT(HALF_PI - x); } else { return (float)StrictMath.cos(x); } } public static final float abs (final float x) { if (Settings.FAST_ABS) { return x > 0 ? x : -x; } else { return StrictMath.abs(x); } } public static final float fastAbs (final float x) { return x > 0 ? x : -x; } public static final int abs (int x) { int y = x >> 31; return (x ^ y) - y; } public static final int floor (final float x) { if (Settings.FAST_FLOOR) { return fastFloor(x); } else { return (int)StrictMath.floor(x); } } public static final int fastFloor (final float x) { int y = (int)x; if (x < y) { return y - 1; } return y; } public static final int ceil (final float x) { if (Settings.FAST_CEIL) { return fastCeil(x); } else { return (int)StrictMath.ceil(x); } } public static final int fastCeil (final float x) { int y = (int)x; if (x > y) { return y + 1; } return y; } public static final int round (final float x) { if (Settings.FAST_ROUND) { return floor(x + .5f); } else { return StrictMath.round(x); } } /** Rounds up the value to the nearest higher power^2 value. * * @param x * @return power^2 value */ public static final int ceilPowerOf2 (int x) { int pow2 = 1; while (pow2 < x) { pow2 <<= 1; } return pow2; } public final static float max (final float a, final float b) { return a > b ? a : b; } public final static int max (final int a, final int b) { return a > b ? a : b; } public final static float min (final float a, final float b) { return a < b ? a : b; } public final static int min (final int a, final int b) { return a < b ? a : b; } public final static float map (final float val, final float fromMin, final float fromMax, final float toMin, final float toMax) { final float mult = (val - fromMin) / (fromMax - fromMin); final float res = toMin + mult * (toMax - toMin); return res; } /** Returns the closest value to 'a' that is in between 'low' and 'high' */ public final static float clamp (final float a, final float low, final float high) { return max(low, min(a, high)); } public final static Vec2 clamp (final Vec2 a, final Vec2 low, final Vec2 high) { final Vec2 min = new Vec2(); min.x = a.x < high.x ? a.x : high.x; min.y = a.y < high.y ? a.y : high.y; min.x = low.x > min.x ? low.x : min.x; min.y = low.y > min.y ? low.y : min.y; return min; } public final static void clampToOut (final Vec2 a, final Vec2 low, final Vec2 high, final Vec2 dest) { dest.x = a.x < high.x ? a.x : high.x; dest.y = a.y < high.y ? a.y : high.y; dest.x = low.x > dest.x ? low.x : dest.x; dest.y = low.y > dest.y ? low.y : dest.y; } /** Next Largest Power of 2: Given a binary integer value x, the next largest power of 2 can be computed by a SWAR algorithm * that recursively "folds" the upper bits into the lower bits. This process yields a bit vector with the same most significant * 1 as x, but all 1's below it. Adding 1 to that value yields the next largest power of 2. */ public final static int nextPowerOfTwo (int x) { x |= x >> 1; x |= x >> 2; x |= x >> 4; x |= x >> 8; x |= x >> 16; return x + 1; } public final static boolean isPowerOfTwo (final int x) { return x > 0 && (x & x - 1) == 0; } public static final float pow (float a, float b) { if (Settings.FAST_POW) { return fastPow(a, b); } else { return (float)StrictMath.pow(a, b); } } public static final float atan2 (final float y, final float x) { if (Settings.FAST_ATAN2) { return fastAtan2(y, x); } else { return (float)StrictMath.atan2(y, x); } } public static final float fastAtan2 (float y, float x) { if (x == 0.0f) { if (y > 0.0f) return HALF_PI; if (y == 0.0f) return 0.0f; return -HALF_PI; } float atan; final float z = y / x; if (abs(z) < 1.0f) { atan = z / (1.0f + 0.28f * z * z); if (x < 0.0f) { if (y < 0.0f) return atan - PI; return atan + PI; } } else { atan = HALF_PI - z / (z * z + 0.28f); if (y < 0.0f) return atan - PI; } return atan; } public static final float reduceAngle (float theta) { theta %= TWOPI; if (abs(theta) > PI) { theta = theta - TWOPI; } if (abs(theta) > HALF_PI) { theta = PI - theta; } return theta; } public static final float randomFloat (float argLow, float argHigh) { return (float)Math.random() * (argHigh - argLow) + argLow; } public static final float randomFloat (Random r, float argLow, float argHigh) { return r.nextFloat() * (argHigh - argLow) + argLow; } public static final float sqrt (float x) { return (float)StrictMath.sqrt(x); } public final static float distanceSquared (Vec2 v1, Vec2 v2) { float dx = (v1.x - v2.x); float dy = (v1.y - v2.y); return dx * dx + dy * dy; } public final static float distance (Vec2 v1, Vec2 v2) { return sqrt(distanceSquared(v1, v2)); } }
-1
libgdx/libgdx
7,309
Use empty Audio implementations on Android and iOS when audio is disabled
Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
obigu
"2023-12-27T22:37:18Z"
"2023-12-28T19:29:00Z"
2b691f735f4b167c062f8f68186a6d7237d3d855
7f682a7921a47f0da858508f6b6fd58426dd05d7
Use empty Audio implementations on Android and iOS when audio is disabled. Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
./extensions/gdx-tools/src/com/badlogic/gdx/tools/particleeditor/CustomShading.java
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.tools.particleeditor; import com.badlogic.gdx.Gdx; import com.badlogic.gdx.files.FileHandle; import com.badlogic.gdx.graphics.GL20; import com.badlogic.gdx.graphics.Texture; import com.badlogic.gdx.graphics.g2d.SpriteBatch; import com.badlogic.gdx.graphics.glutils.ShaderProgram; import com.badlogic.gdx.utils.Array; public class CustomShading { private ShaderProgram shader; Array<String> extraTexturePaths = new Array<String>(); Array<Texture> extraTextures = new Array<Texture>(); String defaultVertexShaderCode; String defaultFragmentShaderCode; String vertexShaderCode; String fragmentShaderCode; FileHandle lastVertexShaderFile; FileHandle lastFragmentShaderFile; boolean hasShaderErrors; String shaderErrorMessage; boolean hasMissingSamplers; String missingSamplerMessage; public CustomShading () { shader = SpriteBatch.createDefaultShader(); vertexShaderCode = defaultVertexShaderCode = shader.getVertexShaderSource(); fragmentShaderCode = defaultFragmentShaderCode = shader.getFragmentShaderSource(); } public void begin (SpriteBatch spriteBatch) { spriteBatch.setShader(shader); for (int i = 0; i < extraTextures.size; i++) { extraTextures.get(i).bind(i + 1); } Gdx.gl.glActiveTexture(GL20.GL_TEXTURE0); } public void end (SpriteBatch spriteBatch) { spriteBatch.setShader(null); for (int i = 0; i < extraTextures.size; i++) { Gdx.gl.glActiveTexture(GL20.GL_TEXTURE1 + i); Gdx.gl.glBindTexture(extraTextures.get(i).glTarget, 0); } Gdx.gl.glActiveTexture(GL20.GL_TEXTURE0); } public void setVertexShaderFile (String absolutePath) { if (absolutePath == null) { lastVertexShaderFile = null; vertexShaderCode = defaultVertexShaderCode; } else { lastVertexShaderFile = Gdx.files.absolute(absolutePath); vertexShaderCode = lastVertexShaderFile.readString(); } updateShader(); } public void setFragmentShaderFile (String absolutePath) { if (absolutePath == null) { lastFragmentShaderFile = null; fragmentShaderCode = defaultFragmentShaderCode; } else { lastFragmentShaderFile = Gdx.files.absolute(absolutePath); fragmentShaderCode = lastFragmentShaderFile.readString(); } updateShader(); } public void reloadVertexShader () { if (lastVertexShaderFile != null) { vertexShaderCode = lastVertexShaderFile.readString(); } updateShader(); } public void reloadFragmentShader () { if (lastFragmentShaderFile != null) { fragmentShaderCode = lastFragmentShaderFile.readString(); } updateShader(); } private void updateShader () { ShaderProgram shader = new ShaderProgram(vertexShaderCode, fragmentShaderCode); if (shader.isCompiled()) { hasShaderErrors = false; shaderErrorMessage = null; if (this.shader != null) { this.shader.dispose(); } this.shader = shader; updateSamplers(); } else { hasShaderErrors = true; shaderErrorMessage = shader.getLog(); shader.dispose(); } } public void addTexture (String absolutePath) { extraTexturePaths.add(absolutePath); extraTextures.add(new Texture(Gdx.files.absolute(absolutePath))); updateSamplers(); } public void swapTexture (int indexA, int indexB) { extraTexturePaths.swap(indexA, indexB); extraTextures.swap(indexA, indexB); updateSamplers(); } public void removeTexture (int index) { extraTexturePaths.removeIndex(index); extraTextures.removeIndex(index).dispose(); updateSamplers(); } public void reloadTexture (int index) { Texture previousTexture = extraTextures.get(index); String path = extraTexturePaths.get(index); Texture texture = new Texture(Gdx.files.absolute(path)); previousTexture.dispose(); extraTextures.set(index, texture); } private void updateSamplers () { hasMissingSamplers = false; missingSamplerMessage = ""; shader.bind(); for (int i = 0; i < extraTextures.size; i++) { int unit = i + 1; int location = shader.fetchUniformLocation("u_texture" + unit, false); if (location >= 0) { shader.setUniformi(location, unit); } else { hasMissingSamplers = true; missingSamplerMessage += "uniform sampler2D u_texture" + unit + " missing in shader program.\n"; } } } }
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.tools.particleeditor; import com.badlogic.gdx.Gdx; import com.badlogic.gdx.files.FileHandle; import com.badlogic.gdx.graphics.GL20; import com.badlogic.gdx.graphics.Texture; import com.badlogic.gdx.graphics.g2d.SpriteBatch; import com.badlogic.gdx.graphics.glutils.ShaderProgram; import com.badlogic.gdx.utils.Array; public class CustomShading { private ShaderProgram shader; Array<String> extraTexturePaths = new Array<String>(); Array<Texture> extraTextures = new Array<Texture>(); String defaultVertexShaderCode; String defaultFragmentShaderCode; String vertexShaderCode; String fragmentShaderCode; FileHandle lastVertexShaderFile; FileHandle lastFragmentShaderFile; boolean hasShaderErrors; String shaderErrorMessage; boolean hasMissingSamplers; String missingSamplerMessage; public CustomShading () { shader = SpriteBatch.createDefaultShader(); vertexShaderCode = defaultVertexShaderCode = shader.getVertexShaderSource(); fragmentShaderCode = defaultFragmentShaderCode = shader.getFragmentShaderSource(); } public void begin (SpriteBatch spriteBatch) { spriteBatch.setShader(shader); for (int i = 0; i < extraTextures.size; i++) { extraTextures.get(i).bind(i + 1); } Gdx.gl.glActiveTexture(GL20.GL_TEXTURE0); } public void end (SpriteBatch spriteBatch) { spriteBatch.setShader(null); for (int i = 0; i < extraTextures.size; i++) { Gdx.gl.glActiveTexture(GL20.GL_TEXTURE1 + i); Gdx.gl.glBindTexture(extraTextures.get(i).glTarget, 0); } Gdx.gl.glActiveTexture(GL20.GL_TEXTURE0); } public void setVertexShaderFile (String absolutePath) { if (absolutePath == null) { lastVertexShaderFile = null; vertexShaderCode = defaultVertexShaderCode; } else { lastVertexShaderFile = Gdx.files.absolute(absolutePath); vertexShaderCode = lastVertexShaderFile.readString(); } updateShader(); } public void setFragmentShaderFile (String absolutePath) { if (absolutePath == null) { lastFragmentShaderFile = null; fragmentShaderCode = defaultFragmentShaderCode; } else { lastFragmentShaderFile = Gdx.files.absolute(absolutePath); fragmentShaderCode = lastFragmentShaderFile.readString(); } updateShader(); } public void reloadVertexShader () { if (lastVertexShaderFile != null) { vertexShaderCode = lastVertexShaderFile.readString(); } updateShader(); } public void reloadFragmentShader () { if (lastFragmentShaderFile != null) { fragmentShaderCode = lastFragmentShaderFile.readString(); } updateShader(); } private void updateShader () { ShaderProgram shader = new ShaderProgram(vertexShaderCode, fragmentShaderCode); if (shader.isCompiled()) { hasShaderErrors = false; shaderErrorMessage = null; if (this.shader != null) { this.shader.dispose(); } this.shader = shader; updateSamplers(); } else { hasShaderErrors = true; shaderErrorMessage = shader.getLog(); shader.dispose(); } } public void addTexture (String absolutePath) { extraTexturePaths.add(absolutePath); extraTextures.add(new Texture(Gdx.files.absolute(absolutePath))); updateSamplers(); } public void swapTexture (int indexA, int indexB) { extraTexturePaths.swap(indexA, indexB); extraTextures.swap(indexA, indexB); updateSamplers(); } public void removeTexture (int index) { extraTexturePaths.removeIndex(index); extraTextures.removeIndex(index).dispose(); updateSamplers(); } public void reloadTexture (int index) { Texture previousTexture = extraTextures.get(index); String path = extraTexturePaths.get(index); Texture texture = new Texture(Gdx.files.absolute(path)); previousTexture.dispose(); extraTextures.set(index, texture); } private void updateSamplers () { hasMissingSamplers = false; missingSamplerMessage = ""; shader.bind(); for (int i = 0; i < extraTextures.size; i++) { int unit = i + 1; int location = shader.fetchUniformLocation("u_texture" + unit, false); if (location >= 0) { shader.setUniformi(location, unit); } else { hasMissingSamplers = true; missingSamplerMessage += "uniform sampler2D u_texture" + unit + " missing in shader program.\n"; } } } }
-1
libgdx/libgdx
7,309
Use empty Audio implementations on Android and iOS when audio is disabled
Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
obigu
"2023-12-27T22:37:18Z"
"2023-12-28T19:29:00Z"
2b691f735f4b167c062f8f68186a6d7237d3d855
7f682a7921a47f0da858508f6b6fd58426dd05d7
Use empty Audio implementations on Android and iOS when audio is disabled. Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
./extensions/gdx-bullet/jni/swig-src/softbody/com/badlogic/gdx/physics/bullet/softbody/SWIGTYPE_p_btAlignedObjectArrayT_btSoftBody__Node_t.java
/* ---------------------------------------------------------------------------- * This file was automatically generated by SWIG (http://www.swig.org). * Version 3.0.11 * * Do not make changes to this file unless you know what you are doing--modify * the SWIG interface file instead. * ----------------------------------------------------------------------------- */ package com.badlogic.gdx.physics.bullet.softbody; public class SWIGTYPE_p_btAlignedObjectArrayT_btSoftBody__Node_t { private transient long swigCPtr; protected SWIGTYPE_p_btAlignedObjectArrayT_btSoftBody__Node_t (long cPtr, @SuppressWarnings("unused") boolean futureUse) { swigCPtr = cPtr; } protected SWIGTYPE_p_btAlignedObjectArrayT_btSoftBody__Node_t () { swigCPtr = 0; } protected static long getCPtr (SWIGTYPE_p_btAlignedObjectArrayT_btSoftBody__Node_t obj) { return (obj == null) ? 0 : obj.swigCPtr; } }
/* ---------------------------------------------------------------------------- * This file was automatically generated by SWIG (http://www.swig.org). * Version 3.0.11 * * Do not make changes to this file unless you know what you are doing--modify * the SWIG interface file instead. * ----------------------------------------------------------------------------- */ package com.badlogic.gdx.physics.bullet.softbody; public class SWIGTYPE_p_btAlignedObjectArrayT_btSoftBody__Node_t { private transient long swigCPtr; protected SWIGTYPE_p_btAlignedObjectArrayT_btSoftBody__Node_t (long cPtr, @SuppressWarnings("unused") boolean futureUse) { swigCPtr = cPtr; } protected SWIGTYPE_p_btAlignedObjectArrayT_btSoftBody__Node_t () { swigCPtr = 0; } protected static long getCPtr (SWIGTYPE_p_btAlignedObjectArrayT_btSoftBody__Node_t obj) { return (obj == null) ? 0 : obj.swigCPtr; } }
-1
libgdx/libgdx
7,309
Use empty Audio implementations on Android and iOS when audio is disabled
Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
obigu
"2023-12-27T22:37:18Z"
"2023-12-28T19:29:00Z"
2b691f735f4b167c062f8f68186a6d7237d3d855
7f682a7921a47f0da858508f6b6fd58426dd05d7
Use empty Audio implementations on Android and iOS when audio is disabled. Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
./extensions/gdx-bullet/jni/swig-src/collision/com/badlogic/gdx/physics/bullet/collision/btIndexedMesh.java
/* ---------------------------------------------------------------------------- * This file was automatically generated by SWIG (http://www.swig.org). * Version 3.0.11 * * Do not make changes to this file unless you know what you are doing--modify * the SWIG interface file instead. * ----------------------------------------------------------------------------- */ package com.badlogic.gdx.physics.bullet.collision; import com.badlogic.gdx.physics.bullet.BulletBase; import com.badlogic.gdx.physics.bullet.linearmath.*; import com.badlogic.gdx.graphics.Mesh; import com.badlogic.gdx.graphics.VertexAttribute; import com.badlogic.gdx.graphics.VertexAttributes.Usage; import com.badlogic.gdx.graphics.g3d.model.MeshPart; import com.badlogic.gdx.utils.Array; import com.badlogic.gdx.utils.GdxRuntimeException; import java.nio.FloatBuffer; import java.nio.ShortBuffer; public class btIndexedMesh extends BulletBase { private long swigCPtr; protected btIndexedMesh (final String className, long cPtr, boolean cMemoryOwn) { super(className, cPtr, cMemoryOwn); swigCPtr = cPtr; } /** Construct a new btIndexedMesh, normally you should not need this constructor it's intended for low-level usage. */ public btIndexedMesh (long cPtr, boolean cMemoryOwn) { this("btIndexedMesh", cPtr, cMemoryOwn); construct(); } @Override protected void reset (long cPtr, boolean cMemoryOwn) { if (!destroyed) destroy(); super.reset(swigCPtr = cPtr, cMemoryOwn); } public static long getCPtr (btIndexedMesh obj) { return (obj == null) ? 0 : obj.swigCPtr; } @Override protected void finalize () throws Throwable { if (!destroyed) destroy(); super.finalize(); } @Override protected synchronized void delete () { if (swigCPtr != 0) { if (swigCMemOwn) { swigCMemOwn = false; CollisionJNI.delete_btIndexedMesh(swigCPtr); } swigCPtr = 0; } super.delete(); } protected final static Array<btIndexedMesh> instances = new Array<btIndexedMesh>(); protected static btIndexedMesh getInstance (final Object tag) { final int n = instances.size; for (int i = 0; i < n; i++) { final btIndexedMesh mesh = instances.get(i); if (tag.equals(mesh.tag)) return mesh; } return null; } /** Create or reuse a btIndexedMesh instance based on the specified {@link MeshPart}. Use {@link #release()} to release the * mesh when it's no longer needed. */ public static btIndexedMesh obtain (final MeshPart meshPart) { if (meshPart == null) throw new GdxRuntimeException("meshPart cannot be null"); btIndexedMesh result = getInstance(meshPart); if (result == null) { result = new btIndexedMesh(meshPart); instances.add(result); } result.obtain(); return result; } /** Create or reuse a btIndexedMesh instance based on the specified tag. Use {@link #release()} to release the mesh when it's * no longer needed. */ public static btIndexedMesh obtain (final Object tag, final FloatBuffer vertices, int sizeInBytesOfEachVertex, int vertexCount, int positionOffsetInBytes, final ShortBuffer indices, int indexOffset, int indexCount) { if (tag == null) throw new GdxRuntimeException("tag cannot be null"); btIndexedMesh result = getInstance(tag); if (result == null) { result = new btIndexedMesh(vertices, sizeInBytesOfEachVertex, vertexCount, positionOffsetInBytes, indices, indexOffset, indexCount); result.tag = tag; instances.add(result); } result.obtain(); return result; } /** The tag to identify this btIndexedMesh, may be null. Typically this is the {@link Mesh} or {@link MeshPart} used to create * or set this btIndexedMesh. Use by the static obtain(...) methods to avoid creating duplicate instances. */ public Object tag; /** Construct a new btIndexedMesh based on the supplied {@link Mesh} The specified mesh must be indexed and triangulated and * must outlive this btIndexedMesh. The buffers for the vertices and indices are shared amonst both. */ public btIndexedMesh (final Mesh mesh) { this(); set(mesh); } /** Construct a new btIndexedMesh based on the supplied {@link MeshPart} The specified mesh must be indexed and triangulated * and must outlive this btIndexedMesh. The buffers for the vertices and indices are shared amonst both. */ public btIndexedMesh (final MeshPart meshPart) { this(); set(meshPart); } /** Construct a new btIndexedMesh based on the supplied {@link Mesh} The specified mesh must be indexed and triangulated and * must outlive this btIndexedMesh. The buffers for the vertices and indices are shared amonst both. */ public btIndexedMesh (final Mesh mesh, int offset, int count) { this(); set(mesh, offset, count); } /** Construct a new btIndexedMesh based on the supplied vertex and index data. The specified data must be indexed and * triangulated and must outlive this btIndexedMesh. The buffers for the vertices and indices are shared amonst both. */ public btIndexedMesh (final FloatBuffer vertices, int sizeInBytesOfEachVertex, int vertexCount, int positionOffsetInBytes, final ShortBuffer indices, int indexOffset, int indexCount) { this(); set(vertices, sizeInBytesOfEachVertex, vertexCount, positionOffsetInBytes, indices, indexOffset, indexCount); } /** Convenience method to set this btIndexedMesh to the specified {@link Mesh} The specified mesh must be indexed and * triangulated and must outlive this btIndexedMesh. The buffers for the vertices and indices are shared amonst both. */ public void set (final Mesh mesh) { set(mesh, mesh, 0, mesh.getNumIndices()); } /** Convenience method to set this btIndexedMesh to the specified {@link Mesh} The specified mesh must be indexed and * triangulated and must outlive this btIndexedMesh. The buffers for the vertices and indices are shared amonst both. */ public void set (final Object tag, final Mesh mesh) { set(tag, mesh, 0, mesh.getNumIndices()); } /** Convenience method to set this btIndexedMesh to the specified {@link MeshPart} The specified mesh must be indexed and * triangulated and must outlive this btIndexedMesh. The buffers for the vertices and indices are shared amonst both. */ public void set (final MeshPart meshPart) { if (meshPart.primitiveType != com.badlogic.gdx.graphics.GL20.GL_TRIANGLES) throw new com.badlogic.gdx.utils.GdxRuntimeException("Mesh must be indexed and triangulated"); set(meshPart, meshPart.mesh, meshPart.offset, meshPart.size); } /** Convenience method to set this btIndexedMesh to the specified {@link Mesh} The specified mesh must be indexed and * triangulated and must outlive this btIndexedMesh. The buffers for the vertices and indices are shared amonst both. */ public void set (final Mesh mesh, int offset, int count) { set(null, mesh, offset, count); } /** Convenience method to set this btIndexedMesh to the specified {@link Mesh} The specified mesh must be indexed and * triangulated and must outlive this btIndexedMesh. The buffers for the vertices and indices are shared amonst both. */ public void set (final Object tag, final Mesh mesh, int offset, int count) { if ((count <= 0) || ((count % 3) != 0)) throw new com.badlogic.gdx.utils.GdxRuntimeException("Mesh must be indexed and triangulated"); VertexAttribute posAttr = mesh.getVertexAttribute(Usage.Position); if (posAttr == null) throw new com.badlogic.gdx.utils.GdxRuntimeException("Mesh doesn't have a position attribute"); set(tag, mesh.getVerticesBuffer(false), mesh.getVertexSize(), mesh.getNumVertices(), posAttr.offset, mesh.getIndicesBuffer(false), offset, count); } /** Convenience method to set this btIndexedMesh to the specified vertex and index data. The specified data must be indexed and * triangulated and must outlive this btIndexedMesh. */ public void set (final FloatBuffer vertices, int sizeInBytesOfEachVertex, int vertexCount, int positionOffsetInBytes, final ShortBuffer indices, int indexOffset, int indexCount) { set(null, vertices, sizeInBytesOfEachVertex, vertexCount, positionOffsetInBytes, indices, indexOffset, indexCount); } /** Convenience method to set this btIndexedMesh to the specified vertex and index data. The specified data must be indexed and * triangulated and must outlive this btIndexedMesh. */ public void set (final Object tag, final FloatBuffer vertices, int sizeInBytesOfEachVertex, int vertexCount, int positionOffsetInBytes, final ShortBuffer indices, int indexOffset, int indexCount) { setVertices(vertices, sizeInBytesOfEachVertex, vertexCount, positionOffsetInBytes); setIndices(indices, indexOffset, indexCount); this.tag = tag; } public long operatorNew (long sizeInBytes) { return CollisionJNI.btIndexedMesh_operatorNew__SWIG_0(swigCPtr, this, sizeInBytes); } public void operatorDelete (long ptr) { CollisionJNI.btIndexedMesh_operatorDelete__SWIG_0(swigCPtr, this, ptr); } public long operatorNew (long arg0, long ptr) { return CollisionJNI.btIndexedMesh_operatorNew__SWIG_1(swigCPtr, this, arg0, ptr); } public void operatorDelete (long arg0, long arg1) { CollisionJNI.btIndexedMesh_operatorDelete__SWIG_1(swigCPtr, this, arg0, arg1); } public long operatorNewArray (long sizeInBytes) { return CollisionJNI.btIndexedMesh_operatorNewArray__SWIG_0(swigCPtr, this, sizeInBytes); } public void operatorDeleteArray (long ptr) { CollisionJNI.btIndexedMesh_operatorDeleteArray__SWIG_0(swigCPtr, this, ptr); } public long operatorNewArray (long arg0, long ptr) { return CollisionJNI.btIndexedMesh_operatorNewArray__SWIG_1(swigCPtr, this, arg0, ptr); } public void operatorDeleteArray (long arg0, long arg1) { CollisionJNI.btIndexedMesh_operatorDeleteArray__SWIG_1(swigCPtr, this, arg0, arg1); } public void setNumTriangles (int value) { CollisionJNI.btIndexedMesh_numTriangles_set(swigCPtr, this, value); } public int getNumTriangles () { return CollisionJNI.btIndexedMesh_numTriangles_get(swigCPtr, this); } public void setTriangleIndexBase (java.nio.ByteBuffer value) { assert value.isDirect() : "Buffer must be allocated direct."; { CollisionJNI.btIndexedMesh_triangleIndexBase_set(swigCPtr, this, value); } } public java.nio.ByteBuffer getTriangleIndexBase () { return CollisionJNI.btIndexedMesh_triangleIndexBase_get(swigCPtr, this); } public void setTriangleIndexStride (int value) { CollisionJNI.btIndexedMesh_triangleIndexStride_set(swigCPtr, this, value); } public int getTriangleIndexStride () { return CollisionJNI.btIndexedMesh_triangleIndexStride_get(swigCPtr, this); } public void setNumVertices (int value) { CollisionJNI.btIndexedMesh_numVertices_set(swigCPtr, this, value); } public int getNumVertices () { return CollisionJNI.btIndexedMesh_numVertices_get(swigCPtr, this); } public void setVertexBase (java.nio.ByteBuffer value) { assert value.isDirect() : "Buffer must be allocated direct."; { CollisionJNI.btIndexedMesh_vertexBase_set(swigCPtr, this, value); } } public java.nio.ByteBuffer getVertexBase () { return CollisionJNI.btIndexedMesh_vertexBase_get(swigCPtr, this); } public void setVertexStride (int value) { CollisionJNI.btIndexedMesh_vertexStride_set(swigCPtr, this, value); } public int getVertexStride () { return CollisionJNI.btIndexedMesh_vertexStride_get(swigCPtr, this); } public void setIndexType (int value) { CollisionJNI.btIndexedMesh_indexType_set(swigCPtr, this, value); } public int getIndexType () { return CollisionJNI.btIndexedMesh_indexType_get(swigCPtr, this); } public void setVertexType (int value) { CollisionJNI.btIndexedMesh_vertexType_set(swigCPtr, this, value); } public int getVertexType () { return CollisionJNI.btIndexedMesh_vertexType_get(swigCPtr, this); } public btIndexedMesh () { this(CollisionJNI.new_btIndexedMesh(), true); } public void setTriangleIndexBase (java.nio.ShortBuffer data) { assert data.isDirect() : "Buffer must be allocated direct."; { CollisionJNI.btIndexedMesh_setTriangleIndexBase(swigCPtr, this, data); } } public void setVertexBase (java.nio.FloatBuffer data) { assert data.isDirect() : "Buffer must be allocated direct."; { CollisionJNI.btIndexedMesh_setVertexBase(swigCPtr, this, data); } } public void setVertices (java.nio.FloatBuffer vertices, int sizeInBytesOfEachVertex, int vertexCount, int positionOffsetInBytes) { assert vertices.isDirect() : "Buffer must be allocated direct."; { CollisionJNI.btIndexedMesh_setVertices(swigCPtr, this, vertices, sizeInBytesOfEachVertex, vertexCount, positionOffsetInBytes); } } public void setIndices (java.nio.ShortBuffer indices, int indexOffset, int indexCount) { assert indices.isDirect() : "Buffer must be allocated direct."; { CollisionJNI.btIndexedMesh_setIndices(swigCPtr, this, indices, indexOffset, indexCount); } } }
/* ---------------------------------------------------------------------------- * This file was automatically generated by SWIG (http://www.swig.org). * Version 3.0.11 * * Do not make changes to this file unless you know what you are doing--modify * the SWIG interface file instead. * ----------------------------------------------------------------------------- */ package com.badlogic.gdx.physics.bullet.collision; import com.badlogic.gdx.physics.bullet.BulletBase; import com.badlogic.gdx.physics.bullet.linearmath.*; import com.badlogic.gdx.graphics.Mesh; import com.badlogic.gdx.graphics.VertexAttribute; import com.badlogic.gdx.graphics.VertexAttributes.Usage; import com.badlogic.gdx.graphics.g3d.model.MeshPart; import com.badlogic.gdx.utils.Array; import com.badlogic.gdx.utils.GdxRuntimeException; import java.nio.FloatBuffer; import java.nio.ShortBuffer; public class btIndexedMesh extends BulletBase { private long swigCPtr; protected btIndexedMesh (final String className, long cPtr, boolean cMemoryOwn) { super(className, cPtr, cMemoryOwn); swigCPtr = cPtr; } /** Construct a new btIndexedMesh, normally you should not need this constructor it's intended for low-level usage. */ public btIndexedMesh (long cPtr, boolean cMemoryOwn) { this("btIndexedMesh", cPtr, cMemoryOwn); construct(); } @Override protected void reset (long cPtr, boolean cMemoryOwn) { if (!destroyed) destroy(); super.reset(swigCPtr = cPtr, cMemoryOwn); } public static long getCPtr (btIndexedMesh obj) { return (obj == null) ? 0 : obj.swigCPtr; } @Override protected void finalize () throws Throwable { if (!destroyed) destroy(); super.finalize(); } @Override protected synchronized void delete () { if (swigCPtr != 0) { if (swigCMemOwn) { swigCMemOwn = false; CollisionJNI.delete_btIndexedMesh(swigCPtr); } swigCPtr = 0; } super.delete(); } protected final static Array<btIndexedMesh> instances = new Array<btIndexedMesh>(); protected static btIndexedMesh getInstance (final Object tag) { final int n = instances.size; for (int i = 0; i < n; i++) { final btIndexedMesh mesh = instances.get(i); if (tag.equals(mesh.tag)) return mesh; } return null; } /** Create or reuse a btIndexedMesh instance based on the specified {@link MeshPart}. Use {@link #release()} to release the * mesh when it's no longer needed. */ public static btIndexedMesh obtain (final MeshPart meshPart) { if (meshPart == null) throw new GdxRuntimeException("meshPart cannot be null"); btIndexedMesh result = getInstance(meshPart); if (result == null) { result = new btIndexedMesh(meshPart); instances.add(result); } result.obtain(); return result; } /** Create or reuse a btIndexedMesh instance based on the specified tag. Use {@link #release()} to release the mesh when it's * no longer needed. */ public static btIndexedMesh obtain (final Object tag, final FloatBuffer vertices, int sizeInBytesOfEachVertex, int vertexCount, int positionOffsetInBytes, final ShortBuffer indices, int indexOffset, int indexCount) { if (tag == null) throw new GdxRuntimeException("tag cannot be null"); btIndexedMesh result = getInstance(tag); if (result == null) { result = new btIndexedMesh(vertices, sizeInBytesOfEachVertex, vertexCount, positionOffsetInBytes, indices, indexOffset, indexCount); result.tag = tag; instances.add(result); } result.obtain(); return result; } /** The tag to identify this btIndexedMesh, may be null. Typically this is the {@link Mesh} or {@link MeshPart} used to create * or set this btIndexedMesh. Use by the static obtain(...) methods to avoid creating duplicate instances. */ public Object tag; /** Construct a new btIndexedMesh based on the supplied {@link Mesh} The specified mesh must be indexed and triangulated and * must outlive this btIndexedMesh. The buffers for the vertices and indices are shared amonst both. */ public btIndexedMesh (final Mesh mesh) { this(); set(mesh); } /** Construct a new btIndexedMesh based on the supplied {@link MeshPart} The specified mesh must be indexed and triangulated * and must outlive this btIndexedMesh. The buffers for the vertices and indices are shared amonst both. */ public btIndexedMesh (final MeshPart meshPart) { this(); set(meshPart); } /** Construct a new btIndexedMesh based on the supplied {@link Mesh} The specified mesh must be indexed and triangulated and * must outlive this btIndexedMesh. The buffers for the vertices and indices are shared amonst both. */ public btIndexedMesh (final Mesh mesh, int offset, int count) { this(); set(mesh, offset, count); } /** Construct a new btIndexedMesh based on the supplied vertex and index data. The specified data must be indexed and * triangulated and must outlive this btIndexedMesh. The buffers for the vertices and indices are shared amonst both. */ public btIndexedMesh (final FloatBuffer vertices, int sizeInBytesOfEachVertex, int vertexCount, int positionOffsetInBytes, final ShortBuffer indices, int indexOffset, int indexCount) { this(); set(vertices, sizeInBytesOfEachVertex, vertexCount, positionOffsetInBytes, indices, indexOffset, indexCount); } /** Convenience method to set this btIndexedMesh to the specified {@link Mesh} The specified mesh must be indexed and * triangulated and must outlive this btIndexedMesh. The buffers for the vertices and indices are shared amonst both. */ public void set (final Mesh mesh) { set(mesh, mesh, 0, mesh.getNumIndices()); } /** Convenience method to set this btIndexedMesh to the specified {@link Mesh} The specified mesh must be indexed and * triangulated and must outlive this btIndexedMesh. The buffers for the vertices and indices are shared amonst both. */ public void set (final Object tag, final Mesh mesh) { set(tag, mesh, 0, mesh.getNumIndices()); } /** Convenience method to set this btIndexedMesh to the specified {@link MeshPart} The specified mesh must be indexed and * triangulated and must outlive this btIndexedMesh. The buffers for the vertices and indices are shared amonst both. */ public void set (final MeshPart meshPart) { if (meshPart.primitiveType != com.badlogic.gdx.graphics.GL20.GL_TRIANGLES) throw new com.badlogic.gdx.utils.GdxRuntimeException("Mesh must be indexed and triangulated"); set(meshPart, meshPart.mesh, meshPart.offset, meshPart.size); } /** Convenience method to set this btIndexedMesh to the specified {@link Mesh} The specified mesh must be indexed and * triangulated and must outlive this btIndexedMesh. The buffers for the vertices and indices are shared amonst both. */ public void set (final Mesh mesh, int offset, int count) { set(null, mesh, offset, count); } /** Convenience method to set this btIndexedMesh to the specified {@link Mesh} The specified mesh must be indexed and * triangulated and must outlive this btIndexedMesh. The buffers for the vertices and indices are shared amonst both. */ public void set (final Object tag, final Mesh mesh, int offset, int count) { if ((count <= 0) || ((count % 3) != 0)) throw new com.badlogic.gdx.utils.GdxRuntimeException("Mesh must be indexed and triangulated"); VertexAttribute posAttr = mesh.getVertexAttribute(Usage.Position); if (posAttr == null) throw new com.badlogic.gdx.utils.GdxRuntimeException("Mesh doesn't have a position attribute"); set(tag, mesh.getVerticesBuffer(false), mesh.getVertexSize(), mesh.getNumVertices(), posAttr.offset, mesh.getIndicesBuffer(false), offset, count); } /** Convenience method to set this btIndexedMesh to the specified vertex and index data. The specified data must be indexed and * triangulated and must outlive this btIndexedMesh. */ public void set (final FloatBuffer vertices, int sizeInBytesOfEachVertex, int vertexCount, int positionOffsetInBytes, final ShortBuffer indices, int indexOffset, int indexCount) { set(null, vertices, sizeInBytesOfEachVertex, vertexCount, positionOffsetInBytes, indices, indexOffset, indexCount); } /** Convenience method to set this btIndexedMesh to the specified vertex and index data. The specified data must be indexed and * triangulated and must outlive this btIndexedMesh. */ public void set (final Object tag, final FloatBuffer vertices, int sizeInBytesOfEachVertex, int vertexCount, int positionOffsetInBytes, final ShortBuffer indices, int indexOffset, int indexCount) { setVertices(vertices, sizeInBytesOfEachVertex, vertexCount, positionOffsetInBytes); setIndices(indices, indexOffset, indexCount); this.tag = tag; } public long operatorNew (long sizeInBytes) { return CollisionJNI.btIndexedMesh_operatorNew__SWIG_0(swigCPtr, this, sizeInBytes); } public void operatorDelete (long ptr) { CollisionJNI.btIndexedMesh_operatorDelete__SWIG_0(swigCPtr, this, ptr); } public long operatorNew (long arg0, long ptr) { return CollisionJNI.btIndexedMesh_operatorNew__SWIG_1(swigCPtr, this, arg0, ptr); } public void operatorDelete (long arg0, long arg1) { CollisionJNI.btIndexedMesh_operatorDelete__SWIG_1(swigCPtr, this, arg0, arg1); } public long operatorNewArray (long sizeInBytes) { return CollisionJNI.btIndexedMesh_operatorNewArray__SWIG_0(swigCPtr, this, sizeInBytes); } public void operatorDeleteArray (long ptr) { CollisionJNI.btIndexedMesh_operatorDeleteArray__SWIG_0(swigCPtr, this, ptr); } public long operatorNewArray (long arg0, long ptr) { return CollisionJNI.btIndexedMesh_operatorNewArray__SWIG_1(swigCPtr, this, arg0, ptr); } public void operatorDeleteArray (long arg0, long arg1) { CollisionJNI.btIndexedMesh_operatorDeleteArray__SWIG_1(swigCPtr, this, arg0, arg1); } public void setNumTriangles (int value) { CollisionJNI.btIndexedMesh_numTriangles_set(swigCPtr, this, value); } public int getNumTriangles () { return CollisionJNI.btIndexedMesh_numTriangles_get(swigCPtr, this); } public void setTriangleIndexBase (java.nio.ByteBuffer value) { assert value.isDirect() : "Buffer must be allocated direct."; { CollisionJNI.btIndexedMesh_triangleIndexBase_set(swigCPtr, this, value); } } public java.nio.ByteBuffer getTriangleIndexBase () { return CollisionJNI.btIndexedMesh_triangleIndexBase_get(swigCPtr, this); } public void setTriangleIndexStride (int value) { CollisionJNI.btIndexedMesh_triangleIndexStride_set(swigCPtr, this, value); } public int getTriangleIndexStride () { return CollisionJNI.btIndexedMesh_triangleIndexStride_get(swigCPtr, this); } public void setNumVertices (int value) { CollisionJNI.btIndexedMesh_numVertices_set(swigCPtr, this, value); } public int getNumVertices () { return CollisionJNI.btIndexedMesh_numVertices_get(swigCPtr, this); } public void setVertexBase (java.nio.ByteBuffer value) { assert value.isDirect() : "Buffer must be allocated direct."; { CollisionJNI.btIndexedMesh_vertexBase_set(swigCPtr, this, value); } } public java.nio.ByteBuffer getVertexBase () { return CollisionJNI.btIndexedMesh_vertexBase_get(swigCPtr, this); } public void setVertexStride (int value) { CollisionJNI.btIndexedMesh_vertexStride_set(swigCPtr, this, value); } public int getVertexStride () { return CollisionJNI.btIndexedMesh_vertexStride_get(swigCPtr, this); } public void setIndexType (int value) { CollisionJNI.btIndexedMesh_indexType_set(swigCPtr, this, value); } public int getIndexType () { return CollisionJNI.btIndexedMesh_indexType_get(swigCPtr, this); } public void setVertexType (int value) { CollisionJNI.btIndexedMesh_vertexType_set(swigCPtr, this, value); } public int getVertexType () { return CollisionJNI.btIndexedMesh_vertexType_get(swigCPtr, this); } public btIndexedMesh () { this(CollisionJNI.new_btIndexedMesh(), true); } public void setTriangleIndexBase (java.nio.ShortBuffer data) { assert data.isDirect() : "Buffer must be allocated direct."; { CollisionJNI.btIndexedMesh_setTriangleIndexBase(swigCPtr, this, data); } } public void setVertexBase (java.nio.FloatBuffer data) { assert data.isDirect() : "Buffer must be allocated direct."; { CollisionJNI.btIndexedMesh_setVertexBase(swigCPtr, this, data); } } public void setVertices (java.nio.FloatBuffer vertices, int sizeInBytesOfEachVertex, int vertexCount, int positionOffsetInBytes) { assert vertices.isDirect() : "Buffer must be allocated direct."; { CollisionJNI.btIndexedMesh_setVertices(swigCPtr, this, vertices, sizeInBytesOfEachVertex, vertexCount, positionOffsetInBytes); } } public void setIndices (java.nio.ShortBuffer indices, int indexOffset, int indexCount) { assert indices.isDirect() : "Buffer must be allocated direct."; { CollisionJNI.btIndexedMesh_setIndices(swigCPtr, this, indices, indexOffset, indexCount); } } }
-1
libgdx/libgdx
7,309
Use empty Audio implementations on Android and iOS when audio is disabled
Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
obigu
"2023-12-27T22:37:18Z"
"2023-12-28T19:29:00Z"
2b691f735f4b167c062f8f68186a6d7237d3d855
7f682a7921a47f0da858508f6b6fd58426dd05d7
Use empty Audio implementations on Android and iOS when audio is disabled. Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
./extensions/gdx-bullet/jni/swig-src/dynamics/com/badlogic/gdx/physics/bullet/dynamics/btMultiBodyJointLimitConstraint.java
/* ---------------------------------------------------------------------------- * This file was automatically generated by SWIG (http://www.swig.org). * Version 3.0.11 * * Do not make changes to this file unless you know what you are doing--modify * the SWIG interface file instead. * ----------------------------------------------------------------------------- */ package com.badlogic.gdx.physics.bullet.dynamics; import com.badlogic.gdx.physics.bullet.linearmath.*; import com.badlogic.gdx.physics.bullet.collision.*; public class btMultiBodyJointLimitConstraint extends btMultiBodyConstraint { private long swigCPtr; protected btMultiBodyJointLimitConstraint (final String className, long cPtr, boolean cMemoryOwn) { super(className, DynamicsJNI.btMultiBodyJointLimitConstraint_SWIGUpcast(cPtr), cMemoryOwn); swigCPtr = cPtr; } /** Construct a new btMultiBodyJointLimitConstraint, normally you should not need this constructor it's intended for low-level * usage. */ public btMultiBodyJointLimitConstraint (long cPtr, boolean cMemoryOwn) { this("btMultiBodyJointLimitConstraint", cPtr, cMemoryOwn); construct(); } @Override protected void reset (long cPtr, boolean cMemoryOwn) { if (!destroyed) destroy(); super.reset(DynamicsJNI.btMultiBodyJointLimitConstraint_SWIGUpcast(swigCPtr = cPtr), cMemoryOwn); } public static long getCPtr (btMultiBodyJointLimitConstraint obj) { return (obj == null) ? 0 : obj.swigCPtr; } @Override protected void finalize () throws Throwable { if (!destroyed) destroy(); super.finalize(); } @Override protected synchronized void delete () { if (swigCPtr != 0) { if (swigCMemOwn) { swigCMemOwn = false; DynamicsJNI.delete_btMultiBodyJointLimitConstraint(swigCPtr); } swigCPtr = 0; } super.delete(); } public btMultiBodyJointLimitConstraint (btMultiBody body, int link, float lower, float upper) { this(DynamicsJNI.new_btMultiBodyJointLimitConstraint(btMultiBody.getCPtr(body), body, link, lower, upper), true); } }
/* ---------------------------------------------------------------------------- * This file was automatically generated by SWIG (http://www.swig.org). * Version 3.0.11 * * Do not make changes to this file unless you know what you are doing--modify * the SWIG interface file instead. * ----------------------------------------------------------------------------- */ package com.badlogic.gdx.physics.bullet.dynamics; import com.badlogic.gdx.physics.bullet.linearmath.*; import com.badlogic.gdx.physics.bullet.collision.*; public class btMultiBodyJointLimitConstraint extends btMultiBodyConstraint { private long swigCPtr; protected btMultiBodyJointLimitConstraint (final String className, long cPtr, boolean cMemoryOwn) { super(className, DynamicsJNI.btMultiBodyJointLimitConstraint_SWIGUpcast(cPtr), cMemoryOwn); swigCPtr = cPtr; } /** Construct a new btMultiBodyJointLimitConstraint, normally you should not need this constructor it's intended for low-level * usage. */ public btMultiBodyJointLimitConstraint (long cPtr, boolean cMemoryOwn) { this("btMultiBodyJointLimitConstraint", cPtr, cMemoryOwn); construct(); } @Override protected void reset (long cPtr, boolean cMemoryOwn) { if (!destroyed) destroy(); super.reset(DynamicsJNI.btMultiBodyJointLimitConstraint_SWIGUpcast(swigCPtr = cPtr), cMemoryOwn); } public static long getCPtr (btMultiBodyJointLimitConstraint obj) { return (obj == null) ? 0 : obj.swigCPtr; } @Override protected void finalize () throws Throwable { if (!destroyed) destroy(); super.finalize(); } @Override protected synchronized void delete () { if (swigCPtr != 0) { if (swigCMemOwn) { swigCMemOwn = false; DynamicsJNI.delete_btMultiBodyJointLimitConstraint(swigCPtr); } swigCPtr = 0; } super.delete(); } public btMultiBodyJointLimitConstraint (btMultiBody body, int link, float lower, float upper) { this(DynamicsJNI.new_btMultiBodyJointLimitConstraint(btMultiBody.getCPtr(body), body, link, lower, upper), true); } }
-1
libgdx/libgdx
7,309
Use empty Audio implementations on Android and iOS when audio is disabled
Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
obigu
"2023-12-27T22:37:18Z"
"2023-12-28T19:29:00Z"
2b691f735f4b167c062f8f68186a6d7237d3d855
7f682a7921a47f0da858508f6b6fd58426dd05d7
Use empty Audio implementations on Android and iOS when audio is disabled. Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
./extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/collision/broadphase/Pair.java
/******************************************************************************* * Copyright (c) 2013, Daniel Murphy * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. * IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. ******************************************************************************/ package org.jbox2d.collision.broadphase; // updated to rev 100 /** Java note: at the "creation" of each node, a random key is given to that node, and that's what we sort from. */ public class Pair implements Comparable<Pair> { public int proxyIdA; public int proxyIdB; public int compareTo (Pair pair2) { if (this.proxyIdA < pair2.proxyIdA) { return -1; } if (this.proxyIdA == pair2.proxyIdA) { return proxyIdB < pair2.proxyIdB ? -1 : proxyIdB == pair2.proxyIdB ? 0 : 1; } return 1; } }
/******************************************************************************* * Copyright (c) 2013, Daniel Murphy * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. * IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. ******************************************************************************/ package org.jbox2d.collision.broadphase; // updated to rev 100 /** Java note: at the "creation" of each node, a random key is given to that node, and that's what we sort from. */ public class Pair implements Comparable<Pair> { public int proxyIdA; public int proxyIdB; public int compareTo (Pair pair2) { if (this.proxyIdA < pair2.proxyIdA) { return -1; } if (this.proxyIdA == pair2.proxyIdA) { return proxyIdB < pair2.proxyIdB ? -1 : proxyIdB == pair2.proxyIdB ? 0 : 1; } return 1; } }
-1
libgdx/libgdx
7,309
Use empty Audio implementations on Android and iOS when audio is disabled
Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
obigu
"2023-12-27T22:37:18Z"
"2023-12-28T19:29:00Z"
2b691f735f4b167c062f8f68186a6d7237d3d855
7f682a7921a47f0da858508f6b6fd58426dd05d7
Use empty Audio implementations on Android and iOS when audio is disabled. Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
./gdx/src/com/badlogic/gdx/maps/tiled/renderers/IsometricTiledMapRenderer.java
/******************************************************************************* * Copyright 2013 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.maps.tiled.renderers; import static com.badlogic.gdx.graphics.g2d.Batch.*; import com.badlogic.gdx.graphics.Color; import com.badlogic.gdx.graphics.g2d.Batch; import com.badlogic.gdx.graphics.g2d.TextureRegion; import com.badlogic.gdx.maps.tiled.TiledMap; import com.badlogic.gdx.maps.tiled.TiledMapTile; import com.badlogic.gdx.maps.tiled.TiledMapTileLayer; import com.badlogic.gdx.maps.tiled.TiledMapTileLayer.Cell; import com.badlogic.gdx.math.Matrix4; import com.badlogic.gdx.math.Vector2; import com.badlogic.gdx.math.Vector3; public class IsometricTiledMapRenderer extends BatchTiledMapRenderer { private Matrix4 isoTransform; private Matrix4 invIsotransform; private Vector3 screenPos = new Vector3(); private Vector2 topRight = new Vector2(); private Vector2 bottomLeft = new Vector2(); private Vector2 topLeft = new Vector2(); private Vector2 bottomRight = new Vector2(); public IsometricTiledMapRenderer (TiledMap map) { super(map); init(); } public IsometricTiledMapRenderer (TiledMap map, Batch batch) { super(map, batch); init(); } public IsometricTiledMapRenderer (TiledMap map, float unitScale) { super(map, unitScale); init(); } public IsometricTiledMapRenderer (TiledMap map, float unitScale, Batch batch) { super(map, unitScale, batch); init(); } private void init () { // create the isometric transform isoTransform = new Matrix4(); isoTransform.idt(); // isoTransform.translate(0, 32, 0); isoTransform.scale((float)(Math.sqrt(2.0) / 2.0), (float)(Math.sqrt(2.0) / 4.0), 1.0f); isoTransform.rotate(0.0f, 0.0f, 1.0f, -45); // ... and the inverse matrix invIsotransform = new Matrix4(isoTransform); invIsotransform.inv(); } private Vector3 translateScreenToIso (Vector2 vec) { screenPos.set(vec.x, vec.y, 0); screenPos.mul(invIsotransform); return screenPos; } @Override public void renderTileLayer (TiledMapTileLayer layer) { final Color batchColor = batch.getColor(); final float color = Color.toFloatBits(batchColor.r, batchColor.g, batchColor.b, batchColor.a * layer.getOpacity()); float tileWidth = layer.getTileWidth() * unitScale; float tileHeight = layer.getTileHeight() * unitScale; final float layerOffsetX = layer.getRenderOffsetX() * unitScale - viewBounds.x * (layer.getParallaxX() - 1); // offset in tiled is y down, so we flip it final float layerOffsetY = -layer.getRenderOffsetY() * unitScale - viewBounds.y * (layer.getParallaxY() - 1); float halfTileWidth = tileWidth * 0.5f; float halfTileHeight = tileHeight * 0.5f; // setting up the screen points // COL1 topRight.set(viewBounds.x + viewBounds.width - layerOffsetX, viewBounds.y - layerOffsetY); // COL2 bottomLeft.set(viewBounds.x - layerOffsetX, viewBounds.y + viewBounds.height - layerOffsetY); // ROW1 topLeft.set(viewBounds.x - layerOffsetX, viewBounds.y - layerOffsetY); // ROW2 bottomRight.set(viewBounds.x + viewBounds.width - layerOffsetX, viewBounds.y + viewBounds.height - layerOffsetY); // transforming screen coordinates to iso coordinates int row1 = (int)(translateScreenToIso(topLeft).y / tileWidth) - 2; int row2 = (int)(translateScreenToIso(bottomRight).y / tileWidth) + 2; int col1 = (int)(translateScreenToIso(bottomLeft).x / tileWidth) - 2; int col2 = (int)(translateScreenToIso(topRight).x / tileWidth) + 2; for (int row = row2; row >= row1; row--) { for (int col = col1; col <= col2; col++) { float x = (col * halfTileWidth) + (row * halfTileWidth); float y = (row * halfTileHeight) - (col * halfTileHeight); final TiledMapTileLayer.Cell cell = layer.getCell(col, row); if (cell == null) continue; final TiledMapTile tile = cell.getTile(); if (tile != null) { final boolean flipX = cell.getFlipHorizontally(); final boolean flipY = cell.getFlipVertically(); final int rotations = cell.getRotation(); TextureRegion region = tile.getTextureRegion(); float x1 = x + tile.getOffsetX() * unitScale + layerOffsetX; float y1 = y + tile.getOffsetY() * unitScale + layerOffsetY; float x2 = x1 + region.getRegionWidth() * unitScale; float y2 = y1 + region.getRegionHeight() * unitScale; float u1 = region.getU(); float v1 = region.getV2(); float u2 = region.getU2(); float v2 = region.getV(); vertices[X1] = x1; vertices[Y1] = y1; vertices[C1] = color; vertices[U1] = u1; vertices[V1] = v1; vertices[X2] = x1; vertices[Y2] = y2; vertices[C2] = color; vertices[U2] = u1; vertices[V2] = v2; vertices[X3] = x2; vertices[Y3] = y2; vertices[C3] = color; vertices[U3] = u2; vertices[V3] = v2; vertices[X4] = x2; vertices[Y4] = y1; vertices[C4] = color; vertices[U4] = u2; vertices[V4] = v1; if (flipX) { float temp = vertices[U1]; vertices[U1] = vertices[U3]; vertices[U3] = temp; temp = vertices[U2]; vertices[U2] = vertices[U4]; vertices[U4] = temp; } if (flipY) { float temp = vertices[V1]; vertices[V1] = vertices[V3]; vertices[V3] = temp; temp = vertices[V2]; vertices[V2] = vertices[V4]; vertices[V4] = temp; } if (rotations != 0) { switch (rotations) { case Cell.ROTATE_90: { float tempV = vertices[V1]; vertices[V1] = vertices[V2]; vertices[V2] = vertices[V3]; vertices[V3] = vertices[V4]; vertices[V4] = tempV; float tempU = vertices[U1]; vertices[U1] = vertices[U2]; vertices[U2] = vertices[U3]; vertices[U3] = vertices[U4]; vertices[U4] = tempU; break; } case Cell.ROTATE_180: { float tempU = vertices[U1]; vertices[U1] = vertices[U3]; vertices[U3] = tempU; tempU = vertices[U2]; vertices[U2] = vertices[U4]; vertices[U4] = tempU; float tempV = vertices[V1]; vertices[V1] = vertices[V3]; vertices[V3] = tempV; tempV = vertices[V2]; vertices[V2] = vertices[V4]; vertices[V4] = tempV; break; } case Cell.ROTATE_270: { float tempV = vertices[V1]; vertices[V1] = vertices[V4]; vertices[V4] = vertices[V3]; vertices[V3] = vertices[V2]; vertices[V2] = tempV; float tempU = vertices[U1]; vertices[U1] = vertices[U4]; vertices[U4] = vertices[U3]; vertices[U3] = vertices[U2]; vertices[U2] = tempU; break; } } } batch.draw(region.getTexture(), vertices, 0, NUM_VERTICES); } } } } }
/******************************************************************************* * Copyright 2013 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.maps.tiled.renderers; import static com.badlogic.gdx.graphics.g2d.Batch.*; import com.badlogic.gdx.graphics.Color; import com.badlogic.gdx.graphics.g2d.Batch; import com.badlogic.gdx.graphics.g2d.TextureRegion; import com.badlogic.gdx.maps.tiled.TiledMap; import com.badlogic.gdx.maps.tiled.TiledMapTile; import com.badlogic.gdx.maps.tiled.TiledMapTileLayer; import com.badlogic.gdx.maps.tiled.TiledMapTileLayer.Cell; import com.badlogic.gdx.math.Matrix4; import com.badlogic.gdx.math.Vector2; import com.badlogic.gdx.math.Vector3; public class IsometricTiledMapRenderer extends BatchTiledMapRenderer { private Matrix4 isoTransform; private Matrix4 invIsotransform; private Vector3 screenPos = new Vector3(); private Vector2 topRight = new Vector2(); private Vector2 bottomLeft = new Vector2(); private Vector2 topLeft = new Vector2(); private Vector2 bottomRight = new Vector2(); public IsometricTiledMapRenderer (TiledMap map) { super(map); init(); } public IsometricTiledMapRenderer (TiledMap map, Batch batch) { super(map, batch); init(); } public IsometricTiledMapRenderer (TiledMap map, float unitScale) { super(map, unitScale); init(); } public IsometricTiledMapRenderer (TiledMap map, float unitScale, Batch batch) { super(map, unitScale, batch); init(); } private void init () { // create the isometric transform isoTransform = new Matrix4(); isoTransform.idt(); // isoTransform.translate(0, 32, 0); isoTransform.scale((float)(Math.sqrt(2.0) / 2.0), (float)(Math.sqrt(2.0) / 4.0), 1.0f); isoTransform.rotate(0.0f, 0.0f, 1.0f, -45); // ... and the inverse matrix invIsotransform = new Matrix4(isoTransform); invIsotransform.inv(); } private Vector3 translateScreenToIso (Vector2 vec) { screenPos.set(vec.x, vec.y, 0); screenPos.mul(invIsotransform); return screenPos; } @Override public void renderTileLayer (TiledMapTileLayer layer) { final Color batchColor = batch.getColor(); final float color = Color.toFloatBits(batchColor.r, batchColor.g, batchColor.b, batchColor.a * layer.getOpacity()); float tileWidth = layer.getTileWidth() * unitScale; float tileHeight = layer.getTileHeight() * unitScale; final float layerOffsetX = layer.getRenderOffsetX() * unitScale - viewBounds.x * (layer.getParallaxX() - 1); // offset in tiled is y down, so we flip it final float layerOffsetY = -layer.getRenderOffsetY() * unitScale - viewBounds.y * (layer.getParallaxY() - 1); float halfTileWidth = tileWidth * 0.5f; float halfTileHeight = tileHeight * 0.5f; // setting up the screen points // COL1 topRight.set(viewBounds.x + viewBounds.width - layerOffsetX, viewBounds.y - layerOffsetY); // COL2 bottomLeft.set(viewBounds.x - layerOffsetX, viewBounds.y + viewBounds.height - layerOffsetY); // ROW1 topLeft.set(viewBounds.x - layerOffsetX, viewBounds.y - layerOffsetY); // ROW2 bottomRight.set(viewBounds.x + viewBounds.width - layerOffsetX, viewBounds.y + viewBounds.height - layerOffsetY); // transforming screen coordinates to iso coordinates int row1 = (int)(translateScreenToIso(topLeft).y / tileWidth) - 2; int row2 = (int)(translateScreenToIso(bottomRight).y / tileWidth) + 2; int col1 = (int)(translateScreenToIso(bottomLeft).x / tileWidth) - 2; int col2 = (int)(translateScreenToIso(topRight).x / tileWidth) + 2; for (int row = row2; row >= row1; row--) { for (int col = col1; col <= col2; col++) { float x = (col * halfTileWidth) + (row * halfTileWidth); float y = (row * halfTileHeight) - (col * halfTileHeight); final TiledMapTileLayer.Cell cell = layer.getCell(col, row); if (cell == null) continue; final TiledMapTile tile = cell.getTile(); if (tile != null) { final boolean flipX = cell.getFlipHorizontally(); final boolean flipY = cell.getFlipVertically(); final int rotations = cell.getRotation(); TextureRegion region = tile.getTextureRegion(); float x1 = x + tile.getOffsetX() * unitScale + layerOffsetX; float y1 = y + tile.getOffsetY() * unitScale + layerOffsetY; float x2 = x1 + region.getRegionWidth() * unitScale; float y2 = y1 + region.getRegionHeight() * unitScale; float u1 = region.getU(); float v1 = region.getV2(); float u2 = region.getU2(); float v2 = region.getV(); vertices[X1] = x1; vertices[Y1] = y1; vertices[C1] = color; vertices[U1] = u1; vertices[V1] = v1; vertices[X2] = x1; vertices[Y2] = y2; vertices[C2] = color; vertices[U2] = u1; vertices[V2] = v2; vertices[X3] = x2; vertices[Y3] = y2; vertices[C3] = color; vertices[U3] = u2; vertices[V3] = v2; vertices[X4] = x2; vertices[Y4] = y1; vertices[C4] = color; vertices[U4] = u2; vertices[V4] = v1; if (flipX) { float temp = vertices[U1]; vertices[U1] = vertices[U3]; vertices[U3] = temp; temp = vertices[U2]; vertices[U2] = vertices[U4]; vertices[U4] = temp; } if (flipY) { float temp = vertices[V1]; vertices[V1] = vertices[V3]; vertices[V3] = temp; temp = vertices[V2]; vertices[V2] = vertices[V4]; vertices[V4] = temp; } if (rotations != 0) { switch (rotations) { case Cell.ROTATE_90: { float tempV = vertices[V1]; vertices[V1] = vertices[V2]; vertices[V2] = vertices[V3]; vertices[V3] = vertices[V4]; vertices[V4] = tempV; float tempU = vertices[U1]; vertices[U1] = vertices[U2]; vertices[U2] = vertices[U3]; vertices[U3] = vertices[U4]; vertices[U4] = tempU; break; } case Cell.ROTATE_180: { float tempU = vertices[U1]; vertices[U1] = vertices[U3]; vertices[U3] = tempU; tempU = vertices[U2]; vertices[U2] = vertices[U4]; vertices[U4] = tempU; float tempV = vertices[V1]; vertices[V1] = vertices[V3]; vertices[V3] = tempV; tempV = vertices[V2]; vertices[V2] = vertices[V4]; vertices[V4] = tempV; break; } case Cell.ROTATE_270: { float tempV = vertices[V1]; vertices[V1] = vertices[V4]; vertices[V4] = vertices[V3]; vertices[V3] = vertices[V2]; vertices[V2] = tempV; float tempU = vertices[U1]; vertices[U1] = vertices[U4]; vertices[U4] = vertices[U3]; vertices[U3] = vertices[U2]; vertices[U2] = tempU; break; } } } batch.draw(region.getTexture(), vertices, 0, NUM_VERTICES); } } } } }
-1
libgdx/libgdx
7,309
Use empty Audio implementations on Android and iOS when audio is disabled
Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
obigu
"2023-12-27T22:37:18Z"
"2023-12-28T19:29:00Z"
2b691f735f4b167c062f8f68186a6d7237d3d855
7f682a7921a47f0da858508f6b6fd58426dd05d7
Use empty Audio implementations on Android and iOS when audio is disabled. Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
./extensions/gdx-bullet/jni/swig-src/collision/com/badlogic/gdx/physics/bullet/collision/btBU_Simplex1to4.java
/* ---------------------------------------------------------------------------- * This file was automatically generated by SWIG (http://www.swig.org). * Version 3.0.11 * * Do not make changes to this file unless you know what you are doing--modify * the SWIG interface file instead. * ----------------------------------------------------------------------------- */ package com.badlogic.gdx.physics.bullet.collision; import com.badlogic.gdx.physics.bullet.linearmath.*; import com.badlogic.gdx.math.Vector3; public class btBU_Simplex1to4 extends btPolyhedralConvexAabbCachingShape { private long swigCPtr; protected btBU_Simplex1to4 (final String className, long cPtr, boolean cMemoryOwn) { super(className, CollisionJNI.btBU_Simplex1to4_SWIGUpcast(cPtr), cMemoryOwn); swigCPtr = cPtr; } /** Construct a new btBU_Simplex1to4, normally you should not need this constructor it's intended for low-level usage. */ public btBU_Simplex1to4 (long cPtr, boolean cMemoryOwn) { this("btBU_Simplex1to4", cPtr, cMemoryOwn); construct(); } @Override protected void reset (long cPtr, boolean cMemoryOwn) { if (!destroyed) destroy(); super.reset(CollisionJNI.btBU_Simplex1to4_SWIGUpcast(swigCPtr = cPtr), cMemoryOwn); } public static long getCPtr (btBU_Simplex1to4 obj) { return (obj == null) ? 0 : obj.swigCPtr; } @Override protected void finalize () throws Throwable { if (!destroyed) destroy(); super.finalize(); } @Override protected synchronized void delete () { if (swigCPtr != 0) { if (swigCMemOwn) { swigCMemOwn = false; CollisionJNI.delete_btBU_Simplex1to4(swigCPtr); } swigCPtr = 0; } super.delete(); } public long operatorNew (long sizeInBytes) { return CollisionJNI.btBU_Simplex1to4_operatorNew__SWIG_0(swigCPtr, this, sizeInBytes); } public void operatorDelete (long ptr) { CollisionJNI.btBU_Simplex1to4_operatorDelete__SWIG_0(swigCPtr, this, ptr); } public long operatorNew (long arg0, long ptr) { return CollisionJNI.btBU_Simplex1to4_operatorNew__SWIG_1(swigCPtr, this, arg0, ptr); } public void operatorDelete (long arg0, long arg1) { CollisionJNI.btBU_Simplex1to4_operatorDelete__SWIG_1(swigCPtr, this, arg0, arg1); } public long operatorNewArray (long sizeInBytes) { return CollisionJNI.btBU_Simplex1to4_operatorNewArray__SWIG_0(swigCPtr, this, sizeInBytes); } public void operatorDeleteArray (long ptr) { CollisionJNI.btBU_Simplex1to4_operatorDeleteArray__SWIG_0(swigCPtr, this, ptr); } public long operatorNewArray (long arg0, long ptr) { return CollisionJNI.btBU_Simplex1to4_operatorNewArray__SWIG_1(swigCPtr, this, arg0, ptr); } public void operatorDeleteArray (long arg0, long arg1) { CollisionJNI.btBU_Simplex1to4_operatorDeleteArray__SWIG_1(swigCPtr, this, arg0, arg1); } public btBU_Simplex1to4 () { this(CollisionJNI.new_btBU_Simplex1to4__SWIG_0(), true); } public btBU_Simplex1to4 (Vector3 pt0) { this(CollisionJNI.new_btBU_Simplex1to4__SWIG_1(pt0), true); } public btBU_Simplex1to4 (Vector3 pt0, Vector3 pt1) { this(CollisionJNI.new_btBU_Simplex1to4__SWIG_2(pt0, pt1), true); } public btBU_Simplex1to4 (Vector3 pt0, Vector3 pt1, Vector3 pt2) { this(CollisionJNI.new_btBU_Simplex1to4__SWIG_3(pt0, pt1, pt2), true); } public btBU_Simplex1to4 (Vector3 pt0, Vector3 pt1, Vector3 pt2, Vector3 pt3) { this(CollisionJNI.new_btBU_Simplex1to4__SWIG_4(pt0, pt1, pt2, pt3), true); } public void reset () { CollisionJNI.btBU_Simplex1to4_reset(swigCPtr, this); } public void addVertex (Vector3 pt) { CollisionJNI.btBU_Simplex1to4_addVertex(swigCPtr, this, pt); } public int getIndex (int i) { return CollisionJNI.btBU_Simplex1to4_getIndex(swigCPtr, this, i); } }
/* ---------------------------------------------------------------------------- * This file was automatically generated by SWIG (http://www.swig.org). * Version 3.0.11 * * Do not make changes to this file unless you know what you are doing--modify * the SWIG interface file instead. * ----------------------------------------------------------------------------- */ package com.badlogic.gdx.physics.bullet.collision; import com.badlogic.gdx.physics.bullet.linearmath.*; import com.badlogic.gdx.math.Vector3; public class btBU_Simplex1to4 extends btPolyhedralConvexAabbCachingShape { private long swigCPtr; protected btBU_Simplex1to4 (final String className, long cPtr, boolean cMemoryOwn) { super(className, CollisionJNI.btBU_Simplex1to4_SWIGUpcast(cPtr), cMemoryOwn); swigCPtr = cPtr; } /** Construct a new btBU_Simplex1to4, normally you should not need this constructor it's intended for low-level usage. */ public btBU_Simplex1to4 (long cPtr, boolean cMemoryOwn) { this("btBU_Simplex1to4", cPtr, cMemoryOwn); construct(); } @Override protected void reset (long cPtr, boolean cMemoryOwn) { if (!destroyed) destroy(); super.reset(CollisionJNI.btBU_Simplex1to4_SWIGUpcast(swigCPtr = cPtr), cMemoryOwn); } public static long getCPtr (btBU_Simplex1to4 obj) { return (obj == null) ? 0 : obj.swigCPtr; } @Override protected void finalize () throws Throwable { if (!destroyed) destroy(); super.finalize(); } @Override protected synchronized void delete () { if (swigCPtr != 0) { if (swigCMemOwn) { swigCMemOwn = false; CollisionJNI.delete_btBU_Simplex1to4(swigCPtr); } swigCPtr = 0; } super.delete(); } public long operatorNew (long sizeInBytes) { return CollisionJNI.btBU_Simplex1to4_operatorNew__SWIG_0(swigCPtr, this, sizeInBytes); } public void operatorDelete (long ptr) { CollisionJNI.btBU_Simplex1to4_operatorDelete__SWIG_0(swigCPtr, this, ptr); } public long operatorNew (long arg0, long ptr) { return CollisionJNI.btBU_Simplex1to4_operatorNew__SWIG_1(swigCPtr, this, arg0, ptr); } public void operatorDelete (long arg0, long arg1) { CollisionJNI.btBU_Simplex1to4_operatorDelete__SWIG_1(swigCPtr, this, arg0, arg1); } public long operatorNewArray (long sizeInBytes) { return CollisionJNI.btBU_Simplex1to4_operatorNewArray__SWIG_0(swigCPtr, this, sizeInBytes); } public void operatorDeleteArray (long ptr) { CollisionJNI.btBU_Simplex1to4_operatorDeleteArray__SWIG_0(swigCPtr, this, ptr); } public long operatorNewArray (long arg0, long ptr) { return CollisionJNI.btBU_Simplex1to4_operatorNewArray__SWIG_1(swigCPtr, this, arg0, ptr); } public void operatorDeleteArray (long arg0, long arg1) { CollisionJNI.btBU_Simplex1to4_operatorDeleteArray__SWIG_1(swigCPtr, this, arg0, arg1); } public btBU_Simplex1to4 () { this(CollisionJNI.new_btBU_Simplex1to4__SWIG_0(), true); } public btBU_Simplex1to4 (Vector3 pt0) { this(CollisionJNI.new_btBU_Simplex1to4__SWIG_1(pt0), true); } public btBU_Simplex1to4 (Vector3 pt0, Vector3 pt1) { this(CollisionJNI.new_btBU_Simplex1to4__SWIG_2(pt0, pt1), true); } public btBU_Simplex1to4 (Vector3 pt0, Vector3 pt1, Vector3 pt2) { this(CollisionJNI.new_btBU_Simplex1to4__SWIG_3(pt0, pt1, pt2), true); } public btBU_Simplex1to4 (Vector3 pt0, Vector3 pt1, Vector3 pt2, Vector3 pt3) { this(CollisionJNI.new_btBU_Simplex1to4__SWIG_4(pt0, pt1, pt2, pt3), true); } public void reset () { CollisionJNI.btBU_Simplex1to4_reset(swigCPtr, this); } public void addVertex (Vector3 pt) { CollisionJNI.btBU_Simplex1to4_addVertex(swigCPtr, this, pt); } public int getIndex (int i) { return CollisionJNI.btBU_Simplex1to4_getIndex(swigCPtr, this, i); } }
-1
libgdx/libgdx
7,309
Use empty Audio implementations on Android and iOS when audio is disabled
Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
obigu
"2023-12-27T22:37:18Z"
"2023-12-28T19:29:00Z"
2b691f735f4b167c062f8f68186a6d7237d3d855
7f682a7921a47f0da858508f6b6fd58426dd05d7
Use empty Audio implementations on Android and iOS when audio is disabled. Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
./backends/gdx-backend-android/src/com/badlogic/gdx/backends/android/AndroidHaptics.java
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.backends.android; import android.annotation.SuppressLint; import android.content.Context; import android.media.AudioAttributes; import android.os.Build; import android.os.VibrationEffect; import android.os.Vibrator; import com.badlogic.gdx.Input; import com.badlogic.gdx.math.MathUtils; public class AndroidHaptics { private final Vibrator vibrator; private AudioAttributes audioAttributes; private boolean vibratorSupport; private boolean hapticsSupport; public AndroidHaptics (Context context) { vibratorSupport = false; hapticsSupport = false; this.vibrator = (Vibrator)context.getSystemService(Context.VIBRATOR_SERVICE); if (vibrator != null && vibrator.hasVibrator()) { vibratorSupport = true; if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q) { if (vibrator.hasAmplitudeControl()) { hapticsSupport = true; } this.audioAttributes = new AudioAttributes.Builder().setContentType(AudioAttributes.CONTENT_TYPE_SONIFICATION) .setUsage(AudioAttributes.USAGE_GAME).build(); } } } @SuppressLint("MissingPermission") public void vibrate (int milliseconds) { if (vibratorSupport) { if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) vibrator.vibrate(VibrationEffect.createOneShot(milliseconds, VibrationEffect.DEFAULT_AMPLITUDE)); else vibrator.vibrate(milliseconds); } } @SuppressLint("MissingPermission") public void vibrate (Input.VibrationType vibrationType) { if (hapticsSupport) { if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q) { int vibrationEffect; switch (vibrationType) { case LIGHT: vibrationEffect = VibrationEffect.EFFECT_TICK; break; case MEDIUM: vibrationEffect = VibrationEffect.EFFECT_CLICK; break; case HEAVY: vibrationEffect = VibrationEffect.EFFECT_HEAVY_CLICK; break; default: throw new IllegalArgumentException("Unknown VibrationType " + vibrationType); } vibrator.vibrate(VibrationEffect.createPredefined(vibrationEffect), audioAttributes); } } } @SuppressLint("MissingPermission") public void vibrate (int milliseconds, int intensity, boolean fallback) { if (hapticsSupport) { intensity = MathUtils.clamp(intensity, 0, 255); if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) vibrator.vibrate(VibrationEffect.createOneShot(milliseconds, intensity)); } else if (fallback) vibrate(milliseconds); } public boolean hasVibratorAvailable () { return vibratorSupport; } public boolean hasHapticsSupport () { return hapticsSupport; } }
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.backends.android; import android.annotation.SuppressLint; import android.content.Context; import android.media.AudioAttributes; import android.os.Build; import android.os.VibrationEffect; import android.os.Vibrator; import com.badlogic.gdx.Input; import com.badlogic.gdx.math.MathUtils; public class AndroidHaptics { private final Vibrator vibrator; private AudioAttributes audioAttributes; private boolean vibratorSupport; private boolean hapticsSupport; public AndroidHaptics (Context context) { vibratorSupport = false; hapticsSupport = false; this.vibrator = (Vibrator)context.getSystemService(Context.VIBRATOR_SERVICE); if (vibrator != null && vibrator.hasVibrator()) { vibratorSupport = true; if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q) { if (vibrator.hasAmplitudeControl()) { hapticsSupport = true; } this.audioAttributes = new AudioAttributes.Builder().setContentType(AudioAttributes.CONTENT_TYPE_SONIFICATION) .setUsage(AudioAttributes.USAGE_GAME).build(); } } } @SuppressLint("MissingPermission") public void vibrate (int milliseconds) { if (vibratorSupport) { if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) vibrator.vibrate(VibrationEffect.createOneShot(milliseconds, VibrationEffect.DEFAULT_AMPLITUDE)); else vibrator.vibrate(milliseconds); } } @SuppressLint("MissingPermission") public void vibrate (Input.VibrationType vibrationType) { if (hapticsSupport) { if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q) { int vibrationEffect; switch (vibrationType) { case LIGHT: vibrationEffect = VibrationEffect.EFFECT_TICK; break; case MEDIUM: vibrationEffect = VibrationEffect.EFFECT_CLICK; break; case HEAVY: vibrationEffect = VibrationEffect.EFFECT_HEAVY_CLICK; break; default: throw new IllegalArgumentException("Unknown VibrationType " + vibrationType); } vibrator.vibrate(VibrationEffect.createPredefined(vibrationEffect), audioAttributes); } } } @SuppressLint("MissingPermission") public void vibrate (int milliseconds, int intensity, boolean fallback) { if (hapticsSupport) { intensity = MathUtils.clamp(intensity, 0, 255); if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) vibrator.vibrate(VibrationEffect.createOneShot(milliseconds, intensity)); } else if (fallback) vibrate(milliseconds); } public boolean hasVibratorAvailable () { return vibratorSupport; } public boolean hasHapticsSupport () { return hapticsSupport; } }
-1
libgdx/libgdx
7,309
Use empty Audio implementations on Android and iOS when audio is disabled
Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
obigu
"2023-12-27T22:37:18Z"
"2023-12-28T19:29:00Z"
2b691f735f4b167c062f8f68186a6d7237d3d855
7f682a7921a47f0da858508f6b6fd58426dd05d7
Use empty Audio implementations on Android and iOS when audio is disabled. Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
./tests/gdx-tests/src/com/badlogic/gdx/tests/TiledMapObjectPropertyTest.java
package com.badlogic.gdx.tests; import com.badlogic.gdx.Gdx; import com.badlogic.gdx.graphics.Color; import com.badlogic.gdx.graphics.OrthographicCamera; import com.badlogic.gdx.graphics.g2d.SpriteBatch; import com.badlogic.gdx.graphics.glutils.ShapeRenderer; import com.badlogic.gdx.maps.MapObject; import com.badlogic.gdx.maps.MapObjects; import com.badlogic.gdx.maps.MapProperties; import com.badlogic.gdx.maps.objects.RectangleMapObject; import com.badlogic.gdx.maps.tiled.TiledMap; import com.badlogic.gdx.maps.tiled.TiledMapRenderer; import com.badlogic.gdx.maps.tiled.TmxMapLoader; import com.badlogic.gdx.maps.tiled.renderers.OrthogonalTiledMapRenderer; import com.badlogic.gdx.math.Rectangle; import com.badlogic.gdx.tests.utils.GdxTest; import com.badlogic.gdx.tests.utils.OrthoCamController; import com.badlogic.gdx.utils.StringBuilder; import com.badlogic.gdx.utils.*; import java.util.Iterator; public class TiledMapObjectPropertyTest extends GdxTest { private TiledMap map; private SpriteBatch batch; private ShapeRenderer shapeRenderer; private OrthographicCamera camera; private TiledMapRenderer mapRenderer; private Array<MapObject> objects; private boolean error; @Override public void create () { try { TmxMapLoader loader = new TmxMapLoader(); // run multiple times to ensure reloading map works correctly for (int i = 0; i < 3; i++) { Gdx.app.log("-------------------------------------", "Running test " + (i + 1) + "/3\n"); StringBuilder builder = new StringBuilder(); builder.append("Expected results:\n").append("- Object with id 1 should have \"object\" props:\n") .append("\t- Points_To_ID_1 = id: 1\n").append("\t- Points_To_ID_2 = id: 2\n") .append("\t- Points_To_ID_5 = id: 5\n").append("- Object with id 2 should have \"object\" props:\n") .append("\t- Points_To_ID_3 = id: 3\n").append("\t- Points_To_ID_4 = id: 4\n") .append("- Object with id 3 should have \"object\" props:\n").append("\t- Points_To_ID_2 = id: 2\n") .append("- Object with id 4 should have \"object\" props:\n").append("\t- Points_To_ID_1 = id: 1\n") .append("- Objects with id's 5 and 6 should have \"object\" props:\n").append("\t- Placeholder = 0\n"); Gdx.app.log("TiledMapObjectPropertyTest", builder.toString()); float w = Gdx.graphics.getWidth(); float h = Gdx.graphics.getHeight(); camera = new OrthographicCamera(); camera.setToOrtho(false, (w / h) * 512, 512); camera.zoom = .5f; camera.update(); OrthoCamController cameraController = new OrthoCamController(camera); Gdx.input.setInputProcessor(cameraController); map = loader.load("data/maps/tiled-objects/test-object-properties.tmx"); batch = new SpriteBatch(); shapeRenderer = new ShapeRenderer(); mapRenderer = new OrthogonalTiledMapRenderer(map); MapObjects objects1 = map.getLayers().get("Objects 1").getObjects(); MapObjects objects2 = map.getLayers().get("Objects 2").getObjects(); objects = new Array<>(); for (MapObject object : objects1) { objects.add(object); } for (MapObject object : objects2) { objects.add(object); } IntMap<MapObject> idToObject = loader.getIdToObject(); builder.clear(); builder.append("\nidToObject: {"); for (IntMap.Entry<MapObject> entry : idToObject) { builder.append("\n\t").append(entry.key).append(" -> ").append(entry.value); } builder.append("\n}\n"); Gdx.app.log("TiledMapObjectPropertyTest", builder.toString()); for (MapObject object1 : objects) { int id = object1.getProperties().get("id", Integer.class); MapObject object2 = idToObject.get(id); if (object1 != object2) { throw new RuntimeException( "Error! Object with id " + id + " " + "is not the same object as the one in the idToObject map!"); } MapProperties props = object1.getProperties(); switch (id) { case 1: test(props, 2, idToObject); test(props, 5, idToObject); test(props, 1, idToObject); break; case 2: test(props, 3, idToObject); test(props, 4, idToObject); break; case 3: test(props, 2, idToObject); break; case 4: test(props, 1, idToObject); break; case 5: case 6: Iterator<String> propKeysIterator = props.getKeys(); ObjectSet<String> propKeys = new ObjectSet<>(); while (propKeysIterator.hasNext()) { propKeys.add(propKeysIterator.next()); } if (propKeys.size != 6) { throw new RuntimeException("Object with id " + id + " should " + "have six keys " + "but has " + propKeys); } } } builder.clear(); builder.append("Actual results:\n"); for (IntMap.Entry<MapObject> entry : idToObject.entries()) { int id = entry.key; MapProperties props = entry.value.getProperties(); builder.append("- Object with id ").append(id).append(" has \"object\" props:\n"); Iterator<String> propKeysIterator = props.getKeys(); Iterator<Object> propValuesIterator = props.getValues(); while (propKeysIterator.hasNext() && propValuesIterator.hasNext()) { Object value = propValuesIterator.next(); String key = propKeysIterator.next(); if (!key.contains("Points_To_ID_") && !key.contains("Placeholder")) { continue; } if (value instanceof MapObject) { MapObject object = (MapObject)value; int objectId = object.getProperties().get("id", Integer.class); value = "id: " + objectId + ", object: " + object; } builder.append("\t\t").append(key).append(" -> ").append(value).append("\n"); } } Gdx.app.log("TiledMapObjectPropertyTest", builder.toString()); } } catch (Exception e) { Gdx.app.error("TiledMapObjectPropertyTest", "Failed to run test!", e); e.printStackTrace(); error = true; } } @Override public void render () { if (error) { Gdx.app.error("TiledMapObjectPropertyTest", "Failed to run test!"); Gdx.app.exit(); } ScreenUtils.clear(0.55f, 0.55f, 0.55f, 1f); camera.update(); mapRenderer.setView(camera); mapRenderer.render(); shapeRenderer.setProjectionMatrix(camera.combined); batch.setProjectionMatrix(camera.combined); shapeRenderer.setColor(Color.BLUE); Gdx.gl20.glLineWidth(2); for (MapObject object : objects) { if (!object.isVisible()) continue; if (object instanceof RectangleMapObject) { shapeRenderer.begin(ShapeRenderer.ShapeType.Filled); Rectangle rectangle = ((RectangleMapObject)object).getRectangle(); shapeRenderer.rect(rectangle.x, rectangle.y, rectangle.width, rectangle.height); shapeRenderer.end(); } } } @Override public void dispose () { map.dispose(); shapeRenderer.dispose(); } private void test (MapProperties props, int idToObjProp1, IntMap<MapObject> idToObjectMap) { String key = "Points_To_ID_" + idToObjProp1; if (!props.containsKey(key)) { throw new GdxRuntimeException("Missing property: " + key); } MapObject other1 = idToObjectMap.get(idToObjProp1); MapObject other2 = props.get(key, MapObject.class); if (other1 != other2) { throw new GdxRuntimeException("Property " + key + " does not point to the correct object"); } } }
package com.badlogic.gdx.tests; import com.badlogic.gdx.Gdx; import com.badlogic.gdx.graphics.Color; import com.badlogic.gdx.graphics.OrthographicCamera; import com.badlogic.gdx.graphics.g2d.SpriteBatch; import com.badlogic.gdx.graphics.glutils.ShapeRenderer; import com.badlogic.gdx.maps.MapObject; import com.badlogic.gdx.maps.MapObjects; import com.badlogic.gdx.maps.MapProperties; import com.badlogic.gdx.maps.objects.RectangleMapObject; import com.badlogic.gdx.maps.tiled.TiledMap; import com.badlogic.gdx.maps.tiled.TiledMapRenderer; import com.badlogic.gdx.maps.tiled.TmxMapLoader; import com.badlogic.gdx.maps.tiled.renderers.OrthogonalTiledMapRenderer; import com.badlogic.gdx.math.Rectangle; import com.badlogic.gdx.tests.utils.GdxTest; import com.badlogic.gdx.tests.utils.OrthoCamController; import com.badlogic.gdx.utils.StringBuilder; import com.badlogic.gdx.utils.*; import java.util.Iterator; public class TiledMapObjectPropertyTest extends GdxTest { private TiledMap map; private SpriteBatch batch; private ShapeRenderer shapeRenderer; private OrthographicCamera camera; private TiledMapRenderer mapRenderer; private Array<MapObject> objects; private boolean error; @Override public void create () { try { TmxMapLoader loader = new TmxMapLoader(); // run multiple times to ensure reloading map works correctly for (int i = 0; i < 3; i++) { Gdx.app.log("-------------------------------------", "Running test " + (i + 1) + "/3\n"); StringBuilder builder = new StringBuilder(); builder.append("Expected results:\n").append("- Object with id 1 should have \"object\" props:\n") .append("\t- Points_To_ID_1 = id: 1\n").append("\t- Points_To_ID_2 = id: 2\n") .append("\t- Points_To_ID_5 = id: 5\n").append("- Object with id 2 should have \"object\" props:\n") .append("\t- Points_To_ID_3 = id: 3\n").append("\t- Points_To_ID_4 = id: 4\n") .append("- Object with id 3 should have \"object\" props:\n").append("\t- Points_To_ID_2 = id: 2\n") .append("- Object with id 4 should have \"object\" props:\n").append("\t- Points_To_ID_1 = id: 1\n") .append("- Objects with id's 5 and 6 should have \"object\" props:\n").append("\t- Placeholder = 0\n"); Gdx.app.log("TiledMapObjectPropertyTest", builder.toString()); float w = Gdx.graphics.getWidth(); float h = Gdx.graphics.getHeight(); camera = new OrthographicCamera(); camera.setToOrtho(false, (w / h) * 512, 512); camera.zoom = .5f; camera.update(); OrthoCamController cameraController = new OrthoCamController(camera); Gdx.input.setInputProcessor(cameraController); map = loader.load("data/maps/tiled-objects/test-object-properties.tmx"); batch = new SpriteBatch(); shapeRenderer = new ShapeRenderer(); mapRenderer = new OrthogonalTiledMapRenderer(map); MapObjects objects1 = map.getLayers().get("Objects 1").getObjects(); MapObjects objects2 = map.getLayers().get("Objects 2").getObjects(); objects = new Array<>(); for (MapObject object : objects1) { objects.add(object); } for (MapObject object : objects2) { objects.add(object); } IntMap<MapObject> idToObject = loader.getIdToObject(); builder.clear(); builder.append("\nidToObject: {"); for (IntMap.Entry<MapObject> entry : idToObject) { builder.append("\n\t").append(entry.key).append(" -> ").append(entry.value); } builder.append("\n}\n"); Gdx.app.log("TiledMapObjectPropertyTest", builder.toString()); for (MapObject object1 : objects) { int id = object1.getProperties().get("id", Integer.class); MapObject object2 = idToObject.get(id); if (object1 != object2) { throw new RuntimeException( "Error! Object with id " + id + " " + "is not the same object as the one in the idToObject map!"); } MapProperties props = object1.getProperties(); switch (id) { case 1: test(props, 2, idToObject); test(props, 5, idToObject); test(props, 1, idToObject); break; case 2: test(props, 3, idToObject); test(props, 4, idToObject); break; case 3: test(props, 2, idToObject); break; case 4: test(props, 1, idToObject); break; case 5: case 6: Iterator<String> propKeysIterator = props.getKeys(); ObjectSet<String> propKeys = new ObjectSet<>(); while (propKeysIterator.hasNext()) { propKeys.add(propKeysIterator.next()); } if (propKeys.size != 6) { throw new RuntimeException("Object with id " + id + " should " + "have six keys " + "but has " + propKeys); } } } builder.clear(); builder.append("Actual results:\n"); for (IntMap.Entry<MapObject> entry : idToObject.entries()) { int id = entry.key; MapProperties props = entry.value.getProperties(); builder.append("- Object with id ").append(id).append(" has \"object\" props:\n"); Iterator<String> propKeysIterator = props.getKeys(); Iterator<Object> propValuesIterator = props.getValues(); while (propKeysIterator.hasNext() && propValuesIterator.hasNext()) { Object value = propValuesIterator.next(); String key = propKeysIterator.next(); if (!key.contains("Points_To_ID_") && !key.contains("Placeholder")) { continue; } if (value instanceof MapObject) { MapObject object = (MapObject)value; int objectId = object.getProperties().get("id", Integer.class); value = "id: " + objectId + ", object: " + object; } builder.append("\t\t").append(key).append(" -> ").append(value).append("\n"); } } Gdx.app.log("TiledMapObjectPropertyTest", builder.toString()); } } catch (Exception e) { Gdx.app.error("TiledMapObjectPropertyTest", "Failed to run test!", e); e.printStackTrace(); error = true; } } @Override public void render () { if (error) { Gdx.app.error("TiledMapObjectPropertyTest", "Failed to run test!"); Gdx.app.exit(); } ScreenUtils.clear(0.55f, 0.55f, 0.55f, 1f); camera.update(); mapRenderer.setView(camera); mapRenderer.render(); shapeRenderer.setProjectionMatrix(camera.combined); batch.setProjectionMatrix(camera.combined); shapeRenderer.setColor(Color.BLUE); Gdx.gl20.glLineWidth(2); for (MapObject object : objects) { if (!object.isVisible()) continue; if (object instanceof RectangleMapObject) { shapeRenderer.begin(ShapeRenderer.ShapeType.Filled); Rectangle rectangle = ((RectangleMapObject)object).getRectangle(); shapeRenderer.rect(rectangle.x, rectangle.y, rectangle.width, rectangle.height); shapeRenderer.end(); } } } @Override public void dispose () { map.dispose(); shapeRenderer.dispose(); } private void test (MapProperties props, int idToObjProp1, IntMap<MapObject> idToObjectMap) { String key = "Points_To_ID_" + idToObjProp1; if (!props.containsKey(key)) { throw new GdxRuntimeException("Missing property: " + key); } MapObject other1 = idToObjectMap.get(idToObjProp1); MapObject other2 = props.get(key, MapObject.class); if (other1 != other2) { throw new GdxRuntimeException("Property " + key + " does not point to the correct object"); } } }
-1
libgdx/libgdx
7,309
Use empty Audio implementations on Android and iOS when audio is disabled
Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
obigu
"2023-12-27T22:37:18Z"
"2023-12-28T19:29:00Z"
2b691f735f4b167c062f8f68186a6d7237d3d855
7f682a7921a47f0da858508f6b6fd58426dd05d7
Use empty Audio implementations on Android and iOS when audio is disabled. Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
./extensions/gdx-bullet/jni/swig-src/softbody/com/badlogic/gdx/physics/bullet/softbody/SoftBodyNodeData.java
/* ---------------------------------------------------------------------------- * This file was automatically generated by SWIG (http://www.swig.org). * Version 3.0.11 * * Do not make changes to this file unless you know what you are doing--modify * the SWIG interface file instead. * ----------------------------------------------------------------------------- */ package com.badlogic.gdx.physics.bullet.softbody; import com.badlogic.gdx.physics.bullet.BulletBase; import com.badlogic.gdx.physics.bullet.linearmath.*; import com.badlogic.gdx.physics.bullet.collision.*; import com.badlogic.gdx.physics.bullet.dynamics.*; public class SoftBodyNodeData extends BulletBase { private long swigCPtr; protected SoftBodyNodeData (final String className, long cPtr, boolean cMemoryOwn) { super(className, cPtr, cMemoryOwn); swigCPtr = cPtr; } /** Construct a new SoftBodyNodeData, normally you should not need this constructor it's intended for low-level usage. */ public SoftBodyNodeData (long cPtr, boolean cMemoryOwn) { this("SoftBodyNodeData", cPtr, cMemoryOwn); construct(); } @Override protected void reset (long cPtr, boolean cMemoryOwn) { if (!destroyed) destroy(); super.reset(swigCPtr = cPtr, cMemoryOwn); } public static long getCPtr (SoftBodyNodeData obj) { return (obj == null) ? 0 : obj.swigCPtr; } @Override protected void finalize () throws Throwable { if (!destroyed) destroy(); super.finalize(); } @Override protected synchronized void delete () { if (swigCPtr != 0) { if (swigCMemOwn) { swigCMemOwn = false; SoftbodyJNI.delete_SoftBodyNodeData(swigCPtr); } swigCPtr = 0; } super.delete(); } public void setMaterial (SoftBodyMaterialData value) { SoftbodyJNI.SoftBodyNodeData_material_set(swigCPtr, this, SoftBodyMaterialData.getCPtr(value), value); } public SoftBodyMaterialData getMaterial () { long cPtr = SoftbodyJNI.SoftBodyNodeData_material_get(swigCPtr, this); return (cPtr == 0) ? null : new SoftBodyMaterialData(cPtr, false); } public void setPosition (btVector3FloatData value) { SoftbodyJNI.SoftBodyNodeData_position_set(swigCPtr, this, btVector3FloatData.getCPtr(value), value); } public btVector3FloatData getPosition () { long cPtr = SoftbodyJNI.SoftBodyNodeData_position_get(swigCPtr, this); return (cPtr == 0) ? null : new btVector3FloatData(cPtr, false); } public void setPreviousPosition (btVector3FloatData value) { SoftbodyJNI.SoftBodyNodeData_previousPosition_set(swigCPtr, this, btVector3FloatData.getCPtr(value), value); } public btVector3FloatData getPreviousPosition () { long cPtr = SoftbodyJNI.SoftBodyNodeData_previousPosition_get(swigCPtr, this); return (cPtr == 0) ? null : new btVector3FloatData(cPtr, false); } public void setVelocity (btVector3FloatData value) { SoftbodyJNI.SoftBodyNodeData_velocity_set(swigCPtr, this, btVector3FloatData.getCPtr(value), value); } public btVector3FloatData getVelocity () { long cPtr = SoftbodyJNI.SoftBodyNodeData_velocity_get(swigCPtr, this); return (cPtr == 0) ? null : new btVector3FloatData(cPtr, false); } public void setAccumulatedForce (btVector3FloatData value) { SoftbodyJNI.SoftBodyNodeData_accumulatedForce_set(swigCPtr, this, btVector3FloatData.getCPtr(value), value); } public btVector3FloatData getAccumulatedForce () { long cPtr = SoftbodyJNI.SoftBodyNodeData_accumulatedForce_get(swigCPtr, this); return (cPtr == 0) ? null : new btVector3FloatData(cPtr, false); } public void setNormal (btVector3FloatData value) { SoftbodyJNI.SoftBodyNodeData_normal_set(swigCPtr, this, btVector3FloatData.getCPtr(value), value); } public btVector3FloatData getNormal () { long cPtr = SoftbodyJNI.SoftBodyNodeData_normal_get(swigCPtr, this); return (cPtr == 0) ? null : new btVector3FloatData(cPtr, false); } public void setInverseMass (float value) { SoftbodyJNI.SoftBodyNodeData_inverseMass_set(swigCPtr, this, value); } public float getInverseMass () { return SoftbodyJNI.SoftBodyNodeData_inverseMass_get(swigCPtr, this); } public void setArea (float value) { SoftbodyJNI.SoftBodyNodeData_area_set(swigCPtr, this, value); } public float getArea () { return SoftbodyJNI.SoftBodyNodeData_area_get(swigCPtr, this); } public void setAttach (int value) { SoftbodyJNI.SoftBodyNodeData_attach_set(swigCPtr, this, value); } public int getAttach () { return SoftbodyJNI.SoftBodyNodeData_attach_get(swigCPtr, this); } public void setPad (int value) { SoftbodyJNI.SoftBodyNodeData_pad_set(swigCPtr, this, value); } public int getPad () { return SoftbodyJNI.SoftBodyNodeData_pad_get(swigCPtr, this); } public SoftBodyNodeData () { this(SoftbodyJNI.new_SoftBodyNodeData(), true); } }
/* ---------------------------------------------------------------------------- * This file was automatically generated by SWIG (http://www.swig.org). * Version 3.0.11 * * Do not make changes to this file unless you know what you are doing--modify * the SWIG interface file instead. * ----------------------------------------------------------------------------- */ package com.badlogic.gdx.physics.bullet.softbody; import com.badlogic.gdx.physics.bullet.BulletBase; import com.badlogic.gdx.physics.bullet.linearmath.*; import com.badlogic.gdx.physics.bullet.collision.*; import com.badlogic.gdx.physics.bullet.dynamics.*; public class SoftBodyNodeData extends BulletBase { private long swigCPtr; protected SoftBodyNodeData (final String className, long cPtr, boolean cMemoryOwn) { super(className, cPtr, cMemoryOwn); swigCPtr = cPtr; } /** Construct a new SoftBodyNodeData, normally you should not need this constructor it's intended for low-level usage. */ public SoftBodyNodeData (long cPtr, boolean cMemoryOwn) { this("SoftBodyNodeData", cPtr, cMemoryOwn); construct(); } @Override protected void reset (long cPtr, boolean cMemoryOwn) { if (!destroyed) destroy(); super.reset(swigCPtr = cPtr, cMemoryOwn); } public static long getCPtr (SoftBodyNodeData obj) { return (obj == null) ? 0 : obj.swigCPtr; } @Override protected void finalize () throws Throwable { if (!destroyed) destroy(); super.finalize(); } @Override protected synchronized void delete () { if (swigCPtr != 0) { if (swigCMemOwn) { swigCMemOwn = false; SoftbodyJNI.delete_SoftBodyNodeData(swigCPtr); } swigCPtr = 0; } super.delete(); } public void setMaterial (SoftBodyMaterialData value) { SoftbodyJNI.SoftBodyNodeData_material_set(swigCPtr, this, SoftBodyMaterialData.getCPtr(value), value); } public SoftBodyMaterialData getMaterial () { long cPtr = SoftbodyJNI.SoftBodyNodeData_material_get(swigCPtr, this); return (cPtr == 0) ? null : new SoftBodyMaterialData(cPtr, false); } public void setPosition (btVector3FloatData value) { SoftbodyJNI.SoftBodyNodeData_position_set(swigCPtr, this, btVector3FloatData.getCPtr(value), value); } public btVector3FloatData getPosition () { long cPtr = SoftbodyJNI.SoftBodyNodeData_position_get(swigCPtr, this); return (cPtr == 0) ? null : new btVector3FloatData(cPtr, false); } public void setPreviousPosition (btVector3FloatData value) { SoftbodyJNI.SoftBodyNodeData_previousPosition_set(swigCPtr, this, btVector3FloatData.getCPtr(value), value); } public btVector3FloatData getPreviousPosition () { long cPtr = SoftbodyJNI.SoftBodyNodeData_previousPosition_get(swigCPtr, this); return (cPtr == 0) ? null : new btVector3FloatData(cPtr, false); } public void setVelocity (btVector3FloatData value) { SoftbodyJNI.SoftBodyNodeData_velocity_set(swigCPtr, this, btVector3FloatData.getCPtr(value), value); } public btVector3FloatData getVelocity () { long cPtr = SoftbodyJNI.SoftBodyNodeData_velocity_get(swigCPtr, this); return (cPtr == 0) ? null : new btVector3FloatData(cPtr, false); } public void setAccumulatedForce (btVector3FloatData value) { SoftbodyJNI.SoftBodyNodeData_accumulatedForce_set(swigCPtr, this, btVector3FloatData.getCPtr(value), value); } public btVector3FloatData getAccumulatedForce () { long cPtr = SoftbodyJNI.SoftBodyNodeData_accumulatedForce_get(swigCPtr, this); return (cPtr == 0) ? null : new btVector3FloatData(cPtr, false); } public void setNormal (btVector3FloatData value) { SoftbodyJNI.SoftBodyNodeData_normal_set(swigCPtr, this, btVector3FloatData.getCPtr(value), value); } public btVector3FloatData getNormal () { long cPtr = SoftbodyJNI.SoftBodyNodeData_normal_get(swigCPtr, this); return (cPtr == 0) ? null : new btVector3FloatData(cPtr, false); } public void setInverseMass (float value) { SoftbodyJNI.SoftBodyNodeData_inverseMass_set(swigCPtr, this, value); } public float getInverseMass () { return SoftbodyJNI.SoftBodyNodeData_inverseMass_get(swigCPtr, this); } public void setArea (float value) { SoftbodyJNI.SoftBodyNodeData_area_set(swigCPtr, this, value); } public float getArea () { return SoftbodyJNI.SoftBodyNodeData_area_get(swigCPtr, this); } public void setAttach (int value) { SoftbodyJNI.SoftBodyNodeData_attach_set(swigCPtr, this, value); } public int getAttach () { return SoftbodyJNI.SoftBodyNodeData_attach_get(swigCPtr, this); } public void setPad (int value) { SoftbodyJNI.SoftBodyNodeData_pad_set(swigCPtr, this, value); } public int getPad () { return SoftbodyJNI.SoftBodyNodeData_pad_get(swigCPtr, this); } public SoftBodyNodeData () { this(SoftbodyJNI.new_SoftBodyNodeData(), true); } }
-1
libgdx/libgdx
7,309
Use empty Audio implementations on Android and iOS when audio is disabled
Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
obigu
"2023-12-27T22:37:18Z"
"2023-12-28T19:29:00Z"
2b691f735f4b167c062f8f68186a6d7237d3d855
7f682a7921a47f0da858508f6b6fd58426dd05d7
Use empty Audio implementations on Android and iOS when audio is disabled. Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
./backends/gdx-backend-lwjgl3/src/com/badlogic/gdx/backends/lwjgl3/audio/mock/MockMusic.java
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.backends.lwjgl3.audio.mock; import com.badlogic.gdx.audio.Music; /** The headless backend does its best to mock elements. This is intended to make code-sharing between server and client as simple * as possible. */ public class MockMusic implements Music { @Override public void play () { } @Override public void pause () { } @Override public void stop () { } @Override public boolean isPlaying () { return false; } @Override public void setLooping (boolean isLooping) { } @Override public boolean isLooping () { return false; } @Override public void setVolume (float volume) { } @Override public float getVolume () { return 0; } @Override public void setPan (float pan, float volume) { } @Override public void setPosition (float position) { } @Override public float getPosition () { return 0; } @Override public void dispose () { } @Override public void setOnCompletionListener (OnCompletionListener listener) { } }
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.backends.lwjgl3.audio.mock; import com.badlogic.gdx.audio.Music; /** The headless backend does its best to mock elements. This is intended to make code-sharing between server and client as simple * as possible. */ public class MockMusic implements Music { @Override public void play () { } @Override public void pause () { } @Override public void stop () { } @Override public boolean isPlaying () { return false; } @Override public void setLooping (boolean isLooping) { } @Override public boolean isLooping () { return false; } @Override public void setVolume (float volume) { } @Override public float getVolume () { return 0; } @Override public void setPan (float pan, float volume) { } @Override public void setPosition (float position) { } @Override public float getPosition () { return 0; } @Override public void dispose () { } @Override public void setOnCompletionListener (OnCompletionListener listener) { } }
-1
libgdx/libgdx
7,309
Use empty Audio implementations on Android and iOS when audio is disabled
Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
obigu
"2023-12-27T22:37:18Z"
"2023-12-28T19:29:00Z"
2b691f735f4b167c062f8f68186a6d7237d3d855
7f682a7921a47f0da858508f6b6fd58426dd05d7
Use empty Audio implementations on Android and iOS when audio is disabled. Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
./gdx/src/com/badlogic/gdx/assets/loaders/resolvers/ExternalFileHandleResolver.java
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.assets.loaders.resolvers; import com.badlogic.gdx.Gdx; import com.badlogic.gdx.assets.loaders.FileHandleResolver; import com.badlogic.gdx.files.FileHandle; public class ExternalFileHandleResolver implements FileHandleResolver { @Override public FileHandle resolve (String fileName) { return Gdx.files.external(fileName); } }
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.assets.loaders.resolvers; import com.badlogic.gdx.Gdx; import com.badlogic.gdx.assets.loaders.FileHandleResolver; import com.badlogic.gdx.files.FileHandle; public class ExternalFileHandleResolver implements FileHandleResolver { @Override public FileHandle resolve (String fileName) { return Gdx.files.external(fileName); } }
-1
libgdx/libgdx
7,309
Use empty Audio implementations on Android and iOS when audio is disabled
Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
obigu
"2023-12-27T22:37:18Z"
"2023-12-28T19:29:00Z"
2b691f735f4b167c062f8f68186a6d7237d3d855
7f682a7921a47f0da858508f6b6fd58426dd05d7
Use empty Audio implementations on Android and iOS when audio is disabled. Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
./gdx/src/com/badlogic/gdx/assets/loaders/ParticleEffectLoader.java
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.assets.loaders; import com.badlogic.gdx.assets.AssetDescriptor; import com.badlogic.gdx.assets.AssetLoaderParameters; import com.badlogic.gdx.assets.AssetManager; import com.badlogic.gdx.files.FileHandle; import com.badlogic.gdx.graphics.g2d.ParticleEffect; import com.badlogic.gdx.graphics.g2d.TextureAtlas; import com.badlogic.gdx.utils.Array; /** {@link AssetLoader} to load {@link ParticleEffect} instances. Passing a {@link ParticleEffectParameter} to * {@link AssetManager#load(String, Class, AssetLoaderParameters)} allows to specify an atlas file or an image directory to be * used for the effect's images. Per default images are loaded from the directory in which the effect file is found. */ public class ParticleEffectLoader extends SynchronousAssetLoader<ParticleEffect, ParticleEffectLoader.ParticleEffectParameter> { public ParticleEffectLoader (FileHandleResolver resolver) { super(resolver); } @Override public ParticleEffect load (AssetManager am, String fileName, FileHandle file, ParticleEffectParameter param) { ParticleEffect effect = new ParticleEffect(); if (param != null && param.atlasFile != null) effect.load(file, am.get(param.atlasFile, TextureAtlas.class), param.atlasPrefix); else if (param != null && param.imagesDir != null) effect.load(file, param.imagesDir); else effect.load(file, file.parent()); return effect; } @Override public Array<AssetDescriptor> getDependencies (String fileName, FileHandle file, ParticleEffectParameter param) { Array<AssetDescriptor> deps = null; if (param != null && param.atlasFile != null) { deps = new Array(); deps.add(new AssetDescriptor<TextureAtlas>(param.atlasFile, TextureAtlas.class)); } return deps; } /** Parameter to be passed to {@link AssetManager#load(String, Class, AssetLoaderParameters)} if additional configuration is * necessary for the {@link ParticleEffect}. */ public static class ParticleEffectParameter extends AssetLoaderParameters<ParticleEffect> { /** Atlas file name. */ public String atlasFile; /** Optional prefix to image names **/ public String atlasPrefix; /** Image directory. */ public FileHandle imagesDir; } }
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.assets.loaders; import com.badlogic.gdx.assets.AssetDescriptor; import com.badlogic.gdx.assets.AssetLoaderParameters; import com.badlogic.gdx.assets.AssetManager; import com.badlogic.gdx.files.FileHandle; import com.badlogic.gdx.graphics.g2d.ParticleEffect; import com.badlogic.gdx.graphics.g2d.TextureAtlas; import com.badlogic.gdx.utils.Array; /** {@link AssetLoader} to load {@link ParticleEffect} instances. Passing a {@link ParticleEffectParameter} to * {@link AssetManager#load(String, Class, AssetLoaderParameters)} allows to specify an atlas file or an image directory to be * used for the effect's images. Per default images are loaded from the directory in which the effect file is found. */ public class ParticleEffectLoader extends SynchronousAssetLoader<ParticleEffect, ParticleEffectLoader.ParticleEffectParameter> { public ParticleEffectLoader (FileHandleResolver resolver) { super(resolver); } @Override public ParticleEffect load (AssetManager am, String fileName, FileHandle file, ParticleEffectParameter param) { ParticleEffect effect = new ParticleEffect(); if (param != null && param.atlasFile != null) effect.load(file, am.get(param.atlasFile, TextureAtlas.class), param.atlasPrefix); else if (param != null && param.imagesDir != null) effect.load(file, param.imagesDir); else effect.load(file, file.parent()); return effect; } @Override public Array<AssetDescriptor> getDependencies (String fileName, FileHandle file, ParticleEffectParameter param) { Array<AssetDescriptor> deps = null; if (param != null && param.atlasFile != null) { deps = new Array(); deps.add(new AssetDescriptor<TextureAtlas>(param.atlasFile, TextureAtlas.class)); } return deps; } /** Parameter to be passed to {@link AssetManager#load(String, Class, AssetLoaderParameters)} if additional configuration is * necessary for the {@link ParticleEffect}. */ public static class ParticleEffectParameter extends AssetLoaderParameters<ParticleEffect> { /** Atlas file name. */ public String atlasFile; /** Optional prefix to image names **/ public String atlasPrefix; /** Image directory. */ public FileHandle imagesDir; } }
-1
libgdx/libgdx
7,309
Use empty Audio implementations on Android and iOS when audio is disabled
Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
obigu
"2023-12-27T22:37:18Z"
"2023-12-28T19:29:00Z"
2b691f735f4b167c062f8f68186a6d7237d3d855
7f682a7921a47f0da858508f6b6fd58426dd05d7
Use empty Audio implementations on Android and iOS when audio is disabled. Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
./gdx/src/com/badlogic/gdx/scenes/scene2d/ui/Label.java
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.scenes.scene2d.ui; import com.badlogic.gdx.graphics.Color; import com.badlogic.gdx.graphics.g2d.Batch; import com.badlogic.gdx.graphics.g2d.BitmapFont; import com.badlogic.gdx.graphics.g2d.BitmapFontCache; import com.badlogic.gdx.graphics.g2d.GlyphLayout; import com.badlogic.gdx.scenes.scene2d.utils.Drawable; import com.badlogic.gdx.utils.Align; import com.badlogic.gdx.utils.Null; import com.badlogic.gdx.utils.StringBuilder; /** A text label, with optional word wrapping. * <p> * The preferred size of the label is determined by the actual text bounds, unless {@link #setWrap(boolean) word wrap} is enabled. * @author Nathan Sweet */ public class Label extends Widget { static private final Color tempColor = new Color(); static private final GlyphLayout prefSizeLayout = new GlyphLayout(); private LabelStyle style; private final GlyphLayout layout = new GlyphLayout(); private float prefWidth, prefHeight; private final StringBuilder text = new StringBuilder(); private int intValue = Integer.MIN_VALUE; private BitmapFontCache cache; private int labelAlign = Align.left; private int lineAlign = Align.left; private boolean wrap; private float lastPrefHeight; private boolean prefSizeInvalid = true; private float fontScaleX = 1, fontScaleY = 1; private boolean fontScaleChanged = false; private @Null String ellipsis; public Label (@Null CharSequence text, Skin skin) { this(text, skin.get(LabelStyle.class)); } public Label (@Null CharSequence text, Skin skin, String styleName) { this(text, skin.get(styleName, LabelStyle.class)); } /** Creates a label, using a {@link LabelStyle} that has a BitmapFont with the specified name from the skin and the specified * color. */ public Label (@Null CharSequence text, Skin skin, String fontName, Color color) { this(text, new LabelStyle(skin.getFont(fontName), color)); } /** Creates a label, using a {@link LabelStyle} that has a BitmapFont with the specified name and the specified color from the * skin. */ public Label (@Null CharSequence text, Skin skin, String fontName, String colorName) { this(text, new LabelStyle(skin.getFont(fontName), skin.getColor(colorName))); } public Label (@Null CharSequence text, LabelStyle style) { if (text != null) this.text.append(text); setStyle(style); if (text != null && text.length() > 0) setSize(getPrefWidth(), getPrefHeight()); } public void setStyle (LabelStyle style) { if (style == null) throw new IllegalArgumentException("style cannot be null."); if (style.font == null) throw new IllegalArgumentException("Missing LabelStyle font."); this.style = style; cache = style.font.newFontCache(); invalidateHierarchy(); } /** Returns the label's style. Modifying the returned style may not have an effect until {@link #setStyle(LabelStyle)} is * called. */ public LabelStyle getStyle () { return style; } /** Sets the text to the specified integer value. If the text is already equivalent to the specified value, a string is not * allocated. * @return true if the text was changed. */ public boolean setText (int value) { if (this.intValue == value) return false; text.clear(); text.append(value); intValue = value; invalidateHierarchy(); return true; } /** @param newText If null, "" will be used. */ public void setText (@Null CharSequence newText) { if (newText == null) { if (text.length == 0) return; text.clear(); } else if (newText instanceof StringBuilder) { if (text.equals(newText)) return; text.clear(); text.append((StringBuilder)newText); } else { if (textEquals(newText)) return; text.clear(); text.append(newText); } intValue = Integer.MIN_VALUE; invalidateHierarchy(); } public boolean textEquals (CharSequence other) { int length = text.length; char[] chars = text.chars; if (length != other.length()) return false; for (int i = 0; i < length; i++) if (chars[i] != other.charAt(i)) return false; return true; } public StringBuilder getText () { return text; } public void invalidate () { super.invalidate(); prefSizeInvalid = true; } private void scaleAndComputePrefSize () { BitmapFont font = cache.getFont(); float oldScaleX = font.getScaleX(); float oldScaleY = font.getScaleY(); if (fontScaleChanged) font.getData().setScale(fontScaleX, fontScaleY); computePrefSize(Label.prefSizeLayout); if (fontScaleChanged) font.getData().setScale(oldScaleX, oldScaleY); } protected void computePrefSize (GlyphLayout layout) { prefSizeInvalid = false; if (wrap && ellipsis == null) { float width = getWidth(); if (style.background != null) { width = Math.max(width, style.background.getMinWidth()) - style.background.getLeftWidth() - style.background.getRightWidth(); } layout.setText(cache.getFont(), text, Color.WHITE, width, Align.left, true); } else layout.setText(cache.getFont(), text); prefWidth = layout.width; prefHeight = layout.height; } public void layout () { BitmapFont font = cache.getFont(); float oldScaleX = font.getScaleX(); float oldScaleY = font.getScaleY(); if (fontScaleChanged) font.getData().setScale(fontScaleX, fontScaleY); boolean wrap = this.wrap && ellipsis == null; if (wrap) { float prefHeight = getPrefHeight(); if (prefHeight != lastPrefHeight) { lastPrefHeight = prefHeight; invalidateHierarchy(); } } float width = getWidth(), height = getHeight(); Drawable background = style.background; float x = 0, y = 0; if (background != null) { x = background.getLeftWidth(); y = background.getBottomHeight(); width -= background.getLeftWidth() + background.getRightWidth(); height -= background.getBottomHeight() + background.getTopHeight(); } GlyphLayout layout = this.layout; float textWidth, textHeight; if (wrap || text.indexOf("\n") != -1) { // If the text can span multiple lines, determine the text's actual size so it can be aligned within the label. layout.setText(font, text, 0, text.length, Color.WHITE, width, lineAlign, wrap, ellipsis); textWidth = layout.width; textHeight = layout.height; if ((labelAlign & Align.left) == 0) { if ((labelAlign & Align.right) != 0) x += width - textWidth; else x += (width - textWidth) / 2; } } else { textWidth = width; textHeight = font.getData().capHeight; } if ((labelAlign & Align.top) != 0) { y += cache.getFont().isFlipped() ? 0 : height - textHeight; y += style.font.getDescent(); } else if ((labelAlign & Align.bottom) != 0) { y += cache.getFont().isFlipped() ? height - textHeight : 0; y -= style.font.getDescent(); } else { y += (height - textHeight) / 2; } if (!cache.getFont().isFlipped()) y += textHeight; layout.setText(font, text, 0, text.length, Color.WHITE, textWidth, lineAlign, wrap, ellipsis); cache.setText(layout, x, y); if (fontScaleChanged) font.getData().setScale(oldScaleX, oldScaleY); } public void draw (Batch batch, float parentAlpha) { validate(); Color color = tempColor.set(getColor()); color.a *= parentAlpha; if (style.background != null) { batch.setColor(color.r, color.g, color.b, color.a); style.background.draw(batch, getX(), getY(), getWidth(), getHeight()); } if (style.fontColor != null) color.mul(style.fontColor); cache.tint(color); cache.setPosition(getX(), getY()); cache.draw(batch); } public float getPrefWidth () { if (wrap) return 0; if (prefSizeInvalid) scaleAndComputePrefSize(); float width = prefWidth; Drawable background = style.background; if (background != null) width = Math.max(width + background.getLeftWidth() + background.getRightWidth(), background.getMinWidth()); return width; } public float getPrefHeight () { if (prefSizeInvalid) scaleAndComputePrefSize(); float descentScaleCorrection = 1; if (fontScaleChanged) descentScaleCorrection = fontScaleY / style.font.getScaleY(); float height = prefHeight - style.font.getDescent() * descentScaleCorrection * 2; Drawable background = style.background; if (background != null) height = Math.max(height + background.getTopHeight() + background.getBottomHeight(), background.getMinHeight()); return height; } public GlyphLayout getGlyphLayout () { return layout; } /** If false, the text will only wrap where it contains newlines (\n). The preferred size of the label will be the text bounds. * If true, the text will word wrap using the width of the label. The preferred width of the label will be 0, it is expected * that something external will set the width of the label. Wrapping will not occur when ellipsis is enabled. Default is false. * <p> * When wrap is enabled, the label's preferred height depends on the width of the label. In some cases the parent of the label * will need to layout twice: once to set the width of the label and a second time to adjust to the label's new preferred * height. */ public void setWrap (boolean wrap) { this.wrap = wrap; invalidateHierarchy(); } public boolean getWrap () { return wrap; } public int getLabelAlign () { return labelAlign; } public int getLineAlign () { return lineAlign; } /** @param alignment Aligns all the text within the label (default left center) and each line of text horizontally (default * left). * @see Align */ public void setAlignment (int alignment) { setAlignment(alignment, alignment); } /** @param labelAlign Aligns all the text within the label (default left center). * @param lineAlign Aligns each line of text horizontally (default left). * @see Align */ public void setAlignment (int labelAlign, int lineAlign) { this.labelAlign = labelAlign; if ((lineAlign & Align.left) != 0) this.lineAlign = Align.left; else if ((lineAlign & Align.right) != 0) this.lineAlign = Align.right; else this.lineAlign = Align.center; invalidate(); } public void setFontScale (float fontScale) { setFontScale(fontScale, fontScale); } public void setFontScale (float fontScaleX, float fontScaleY) { fontScaleChanged = true; this.fontScaleX = fontScaleX; this.fontScaleY = fontScaleY; invalidateHierarchy(); } public float getFontScaleX () { return fontScaleX; } public void setFontScaleX (float fontScaleX) { setFontScale(fontScaleX, fontScaleY); } public float getFontScaleY () { return fontScaleY; } public void setFontScaleY (float fontScaleY) { setFontScale(fontScaleX, fontScaleY); } /** When non-null the text will be truncated "..." if it does not fit within the width of the label. Wrapping will not occur * when ellipsis is enabled. Default is false. */ public void setEllipsis (@Null String ellipsis) { this.ellipsis = ellipsis; } /** When true the text will be truncated "..." if it does not fit within the width of the label. Wrapping will not occur when * ellipsis is true. Default is false. */ public void setEllipsis (boolean ellipsis) { if (ellipsis) this.ellipsis = "..."; else this.ellipsis = null; } /** Allows subclasses to access the cache in {@link #draw(Batch, float)}. */ protected BitmapFontCache getBitmapFontCache () { return cache; } public String toString () { String name = getName(); if (name != null) return name; String className = getClass().getName(); int dotIndex = className.lastIndexOf('.'); if (dotIndex != -1) className = className.substring(dotIndex + 1); return (className.indexOf('$') != -1 ? "Label " : "") + className + ": " + text; } /** The style for a label, see {@link Label}. * @author Nathan Sweet */ static public class LabelStyle { public BitmapFont font; public @Null Color fontColor; public @Null Drawable background; public LabelStyle () { } public LabelStyle (BitmapFont font, @Null Color fontColor) { this.font = font; this.fontColor = fontColor; } public LabelStyle (LabelStyle style) { font = style.font; if (style.fontColor != null) fontColor = new Color(style.fontColor); background = style.background; } } }
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.scenes.scene2d.ui; import com.badlogic.gdx.graphics.Color; import com.badlogic.gdx.graphics.g2d.Batch; import com.badlogic.gdx.graphics.g2d.BitmapFont; import com.badlogic.gdx.graphics.g2d.BitmapFontCache; import com.badlogic.gdx.graphics.g2d.GlyphLayout; import com.badlogic.gdx.scenes.scene2d.utils.Drawable; import com.badlogic.gdx.utils.Align; import com.badlogic.gdx.utils.Null; import com.badlogic.gdx.utils.StringBuilder; /** A text label, with optional word wrapping. * <p> * The preferred size of the label is determined by the actual text bounds, unless {@link #setWrap(boolean) word wrap} is enabled. * @author Nathan Sweet */ public class Label extends Widget { static private final Color tempColor = new Color(); static private final GlyphLayout prefSizeLayout = new GlyphLayout(); private LabelStyle style; private final GlyphLayout layout = new GlyphLayout(); private float prefWidth, prefHeight; private final StringBuilder text = new StringBuilder(); private int intValue = Integer.MIN_VALUE; private BitmapFontCache cache; private int labelAlign = Align.left; private int lineAlign = Align.left; private boolean wrap; private float lastPrefHeight; private boolean prefSizeInvalid = true; private float fontScaleX = 1, fontScaleY = 1; private boolean fontScaleChanged = false; private @Null String ellipsis; public Label (@Null CharSequence text, Skin skin) { this(text, skin.get(LabelStyle.class)); } public Label (@Null CharSequence text, Skin skin, String styleName) { this(text, skin.get(styleName, LabelStyle.class)); } /** Creates a label, using a {@link LabelStyle} that has a BitmapFont with the specified name from the skin and the specified * color. */ public Label (@Null CharSequence text, Skin skin, String fontName, Color color) { this(text, new LabelStyle(skin.getFont(fontName), color)); } /** Creates a label, using a {@link LabelStyle} that has a BitmapFont with the specified name and the specified color from the * skin. */ public Label (@Null CharSequence text, Skin skin, String fontName, String colorName) { this(text, new LabelStyle(skin.getFont(fontName), skin.getColor(colorName))); } public Label (@Null CharSequence text, LabelStyle style) { if (text != null) this.text.append(text); setStyle(style); if (text != null && text.length() > 0) setSize(getPrefWidth(), getPrefHeight()); } public void setStyle (LabelStyle style) { if (style == null) throw new IllegalArgumentException("style cannot be null."); if (style.font == null) throw new IllegalArgumentException("Missing LabelStyle font."); this.style = style; cache = style.font.newFontCache(); invalidateHierarchy(); } /** Returns the label's style. Modifying the returned style may not have an effect until {@link #setStyle(LabelStyle)} is * called. */ public LabelStyle getStyle () { return style; } /** Sets the text to the specified integer value. If the text is already equivalent to the specified value, a string is not * allocated. * @return true if the text was changed. */ public boolean setText (int value) { if (this.intValue == value) return false; text.clear(); text.append(value); intValue = value; invalidateHierarchy(); return true; } /** @param newText If null, "" will be used. */ public void setText (@Null CharSequence newText) { if (newText == null) { if (text.length == 0) return; text.clear(); } else if (newText instanceof StringBuilder) { if (text.equals(newText)) return; text.clear(); text.append((StringBuilder)newText); } else { if (textEquals(newText)) return; text.clear(); text.append(newText); } intValue = Integer.MIN_VALUE; invalidateHierarchy(); } public boolean textEquals (CharSequence other) { int length = text.length; char[] chars = text.chars; if (length != other.length()) return false; for (int i = 0; i < length; i++) if (chars[i] != other.charAt(i)) return false; return true; } public StringBuilder getText () { return text; } public void invalidate () { super.invalidate(); prefSizeInvalid = true; } private void scaleAndComputePrefSize () { BitmapFont font = cache.getFont(); float oldScaleX = font.getScaleX(); float oldScaleY = font.getScaleY(); if (fontScaleChanged) font.getData().setScale(fontScaleX, fontScaleY); computePrefSize(Label.prefSizeLayout); if (fontScaleChanged) font.getData().setScale(oldScaleX, oldScaleY); } protected void computePrefSize (GlyphLayout layout) { prefSizeInvalid = false; if (wrap && ellipsis == null) { float width = getWidth(); if (style.background != null) { width = Math.max(width, style.background.getMinWidth()) - style.background.getLeftWidth() - style.background.getRightWidth(); } layout.setText(cache.getFont(), text, Color.WHITE, width, Align.left, true); } else layout.setText(cache.getFont(), text); prefWidth = layout.width; prefHeight = layout.height; } public void layout () { BitmapFont font = cache.getFont(); float oldScaleX = font.getScaleX(); float oldScaleY = font.getScaleY(); if (fontScaleChanged) font.getData().setScale(fontScaleX, fontScaleY); boolean wrap = this.wrap && ellipsis == null; if (wrap) { float prefHeight = getPrefHeight(); if (prefHeight != lastPrefHeight) { lastPrefHeight = prefHeight; invalidateHierarchy(); } } float width = getWidth(), height = getHeight(); Drawable background = style.background; float x = 0, y = 0; if (background != null) { x = background.getLeftWidth(); y = background.getBottomHeight(); width -= background.getLeftWidth() + background.getRightWidth(); height -= background.getBottomHeight() + background.getTopHeight(); } GlyphLayout layout = this.layout; float textWidth, textHeight; if (wrap || text.indexOf("\n") != -1) { // If the text can span multiple lines, determine the text's actual size so it can be aligned within the label. layout.setText(font, text, 0, text.length, Color.WHITE, width, lineAlign, wrap, ellipsis); textWidth = layout.width; textHeight = layout.height; if ((labelAlign & Align.left) == 0) { if ((labelAlign & Align.right) != 0) x += width - textWidth; else x += (width - textWidth) / 2; } } else { textWidth = width; textHeight = font.getData().capHeight; } if ((labelAlign & Align.top) != 0) { y += cache.getFont().isFlipped() ? 0 : height - textHeight; y += style.font.getDescent(); } else if ((labelAlign & Align.bottom) != 0) { y += cache.getFont().isFlipped() ? height - textHeight : 0; y -= style.font.getDescent(); } else { y += (height - textHeight) / 2; } if (!cache.getFont().isFlipped()) y += textHeight; layout.setText(font, text, 0, text.length, Color.WHITE, textWidth, lineAlign, wrap, ellipsis); cache.setText(layout, x, y); if (fontScaleChanged) font.getData().setScale(oldScaleX, oldScaleY); } public void draw (Batch batch, float parentAlpha) { validate(); Color color = tempColor.set(getColor()); color.a *= parentAlpha; if (style.background != null) { batch.setColor(color.r, color.g, color.b, color.a); style.background.draw(batch, getX(), getY(), getWidth(), getHeight()); } if (style.fontColor != null) color.mul(style.fontColor); cache.tint(color); cache.setPosition(getX(), getY()); cache.draw(batch); } public float getPrefWidth () { if (wrap) return 0; if (prefSizeInvalid) scaleAndComputePrefSize(); float width = prefWidth; Drawable background = style.background; if (background != null) width = Math.max(width + background.getLeftWidth() + background.getRightWidth(), background.getMinWidth()); return width; } public float getPrefHeight () { if (prefSizeInvalid) scaleAndComputePrefSize(); float descentScaleCorrection = 1; if (fontScaleChanged) descentScaleCorrection = fontScaleY / style.font.getScaleY(); float height = prefHeight - style.font.getDescent() * descentScaleCorrection * 2; Drawable background = style.background; if (background != null) height = Math.max(height + background.getTopHeight() + background.getBottomHeight(), background.getMinHeight()); return height; } public GlyphLayout getGlyphLayout () { return layout; } /** If false, the text will only wrap where it contains newlines (\n). The preferred size of the label will be the text bounds. * If true, the text will word wrap using the width of the label. The preferred width of the label will be 0, it is expected * that something external will set the width of the label. Wrapping will not occur when ellipsis is enabled. Default is false. * <p> * When wrap is enabled, the label's preferred height depends on the width of the label. In some cases the parent of the label * will need to layout twice: once to set the width of the label and a second time to adjust to the label's new preferred * height. */ public void setWrap (boolean wrap) { this.wrap = wrap; invalidateHierarchy(); } public boolean getWrap () { return wrap; } public int getLabelAlign () { return labelAlign; } public int getLineAlign () { return lineAlign; } /** @param alignment Aligns all the text within the label (default left center) and each line of text horizontally (default * left). * @see Align */ public void setAlignment (int alignment) { setAlignment(alignment, alignment); } /** @param labelAlign Aligns all the text within the label (default left center). * @param lineAlign Aligns each line of text horizontally (default left). * @see Align */ public void setAlignment (int labelAlign, int lineAlign) { this.labelAlign = labelAlign; if ((lineAlign & Align.left) != 0) this.lineAlign = Align.left; else if ((lineAlign & Align.right) != 0) this.lineAlign = Align.right; else this.lineAlign = Align.center; invalidate(); } public void setFontScale (float fontScale) { setFontScale(fontScale, fontScale); } public void setFontScale (float fontScaleX, float fontScaleY) { fontScaleChanged = true; this.fontScaleX = fontScaleX; this.fontScaleY = fontScaleY; invalidateHierarchy(); } public float getFontScaleX () { return fontScaleX; } public void setFontScaleX (float fontScaleX) { setFontScale(fontScaleX, fontScaleY); } public float getFontScaleY () { return fontScaleY; } public void setFontScaleY (float fontScaleY) { setFontScale(fontScaleX, fontScaleY); } /** When non-null the text will be truncated "..." if it does not fit within the width of the label. Wrapping will not occur * when ellipsis is enabled. Default is false. */ public void setEllipsis (@Null String ellipsis) { this.ellipsis = ellipsis; } /** When true the text will be truncated "..." if it does not fit within the width of the label. Wrapping will not occur when * ellipsis is true. Default is false. */ public void setEllipsis (boolean ellipsis) { if (ellipsis) this.ellipsis = "..."; else this.ellipsis = null; } /** Allows subclasses to access the cache in {@link #draw(Batch, float)}. */ protected BitmapFontCache getBitmapFontCache () { return cache; } public String toString () { String name = getName(); if (name != null) return name; String className = getClass().getName(); int dotIndex = className.lastIndexOf('.'); if (dotIndex != -1) className = className.substring(dotIndex + 1); return (className.indexOf('$') != -1 ? "Label " : "") + className + ": " + text; } /** The style for a label, see {@link Label}. * @author Nathan Sweet */ static public class LabelStyle { public BitmapFont font; public @Null Color fontColor; public @Null Drawable background; public LabelStyle () { } public LabelStyle (BitmapFont font, @Null Color fontColor) { this.font = font; this.fontColor = fontColor; } public LabelStyle (LabelStyle style) { font = style.font; if (style.fontColor != null) fontColor = new Color(style.fontColor); background = style.background; } } }
-1
libgdx/libgdx
7,309
Use empty Audio implementations on Android and iOS when audio is disabled
Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
obigu
"2023-12-27T22:37:18Z"
"2023-12-28T19:29:00Z"
2b691f735f4b167c062f8f68186a6d7237d3d855
7f682a7921a47f0da858508f6b6fd58426dd05d7
Use empty Audio implementations on Android and iOS when audio is disabled. Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
./tests/gdx-tests/src/com/badlogic/gdx/tests/bullet/ContactCacheTest.java
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.tests.bullet; import com.badlogic.gdx.Gdx; import com.badlogic.gdx.graphics.Color; import com.badlogic.gdx.graphics.VertexAttributes.Usage; import com.badlogic.gdx.graphics.g3d.Material; import com.badlogic.gdx.graphics.g3d.Model; import com.badlogic.gdx.graphics.g3d.attributes.ColorAttribute; import com.badlogic.gdx.math.Matrix4; import com.badlogic.gdx.math.Vector3; import com.badlogic.gdx.physics.bullet.collision.ContactCache; import com.badlogic.gdx.physics.bullet.collision.ContactListener; import com.badlogic.gdx.physics.bullet.collision.btBvhTriangleMeshShape; import com.badlogic.gdx.physics.bullet.collision.btCollisionObject; import com.badlogic.gdx.physics.bullet.collision.btPersistentManifold; import com.badlogic.gdx.physics.bullet.collision.btSphereShape; import com.badlogic.gdx.utils.Array; public class ContactCacheTest extends BaseBulletTest { public static class TestContactListener extends ContactListener { public Array<BulletEntity> entities; @Override public void onContactStarted (int userValue0, boolean match0, int userValue1, boolean match1) { if (match0) { final BulletEntity e = (BulletEntity)(entities.get(userValue0)); e.setColor(Color.RED); Gdx.app.log(Float.toString(time), "Contact started " + userValue0); } if (match1) { final BulletEntity e = (BulletEntity)(entities.get(userValue1)); e.setColor(Color.RED); Gdx.app.log(Float.toString(time), "Contact started " + userValue1); } } @Override public void onContactEnded (int userValue0, boolean match0, int userValue1, boolean match1) { if (match0) { final BulletEntity e = (BulletEntity)(entities.get(userValue0)); e.setColor(Color.BLUE); Gdx.app.log(Float.toString(time), "Contact ended " + userValue0); } if (match1) { final BulletEntity e = (BulletEntity)(entities.get(userValue1)); e.setColor(Color.BLUE); Gdx.app.log(Float.toString(time), "Contact ended " + userValue1); } } } public static class TestContactCache extends ContactCache { public Array<BulletEntity> entities; @Override public void onContactStarted (btPersistentManifold manifold, boolean match0, boolean match1) { final int userValue0 = manifold.getBody0().getUserValue(); final int userValue1 = manifold.getBody1().getUserValue(); if (match0) { final BulletEntity e = (BulletEntity)(entities.get(userValue0)); e.setColor(Color.RED); Gdx.app.log(Float.toString(time), "Contact started " + userValue0); } if (match1) { final BulletEntity e = (BulletEntity)(entities.get(userValue1)); e.setColor(Color.RED); Gdx.app.log(Float.toString(time), "Contact started " + userValue1); } } @Override public void onContactEnded (btCollisionObject colObj0, boolean match0, btCollisionObject colObj1, boolean match1) { final int userValue0 = colObj0.getUserValue(); final int userValue1 = colObj1.getUserValue(); if (match0) { final BulletEntity e = (BulletEntity)(entities.get(userValue0)); e.setColor(Color.BLUE); Gdx.app.log(Float.toString(time), "Contact ended " + userValue0); } if (match1) { final BulletEntity e = (BulletEntity)(entities.get(userValue1)); e.setColor(Color.BLUE); Gdx.app.log(Float.toString(time), "Contact ended " + userValue1); } } } final int SPHERECOUNT_X = 4; final int SPHERECOUNT_Y = 1; final int SPHERECOUNT_Z = 4; final float SPHEREOFFSET_X = -2f; final float SPHEREOFFSET_Y = 10f; final float SPHEREOFFSET_Z = -2f; final boolean USE_CONTACT_CACHE = true; TestContactListener contactListener; TestContactCache contactCache; public static float time; @Override public void create () { super.create(); final Model sphereModel = modelBuilder.createSphere(1f, 1f, 1f, 8, 8, new Material(ColorAttribute.createDiffuse(Color.WHITE), ColorAttribute.createSpecular(Color.WHITE)), Usage.Position | Usage.Normal); disposables.add(sphereModel); final BulletConstructor sphereConstructor = new BulletConstructor(sphereModel, 0.5f, new btSphereShape(0.5f)); sphereConstructor.bodyInfo.setRestitution(1f); world.addConstructor("sphere", sphereConstructor); final Model sceneModel = objLoader.loadModel(Gdx.files.internal("data/scene.obj")); disposables.add(sceneModel); final BulletConstructor sceneConstructor = new BulletConstructor(sceneModel, 0f, new btBvhTriangleMeshShape(sceneModel.meshParts)); sceneConstructor.bodyInfo.setRestitution(0.25f); world.addConstructor("scene", sceneConstructor); final BulletEntity scene = world.add("scene", (new Matrix4()).setToTranslation(0f, 2f, 0f).rotate(Vector3.Y, -90)); scene.setColor(0.25f + 0.5f * (float)Math.random(), 0.25f + 0.5f * (float)Math.random(), 0.25f + 0.5f * (float)Math.random(), 1f); scene.body.setContactCallbackFlag(2); world.add("ground", 0f, 0f, 0f).setColor(0.25f + 0.5f * (float)Math.random(), 0.25f + 0.5f * (float)Math.random(), 0.25f + 0.5f * (float)Math.random(), 1f); for (int x = 0; x < SPHERECOUNT_X; x++) { for (int y = 0; y < SPHERECOUNT_Y; y++) { for (int z = 0; z < SPHERECOUNT_Z; z++) { final BulletEntity e = (BulletEntity)world.add("sphere", SPHEREOFFSET_X + x * 3f, SPHEREOFFSET_Y + y * 3f, SPHEREOFFSET_Z + z * 3f); e.setColor(0.5f + 0.5f * (float)Math.random(), 0.5f + 0.5f * (float)Math.random(), 0.5f + 0.5f * (float)Math.random(), 1f); e.body.setContactCallbackFilter(2); } } } if (USE_CONTACT_CACHE) { contactCache = new TestContactCache(); contactCache.entities = world.entities; contactCache.setCacheTime(0.5f); } else { contactListener = new TestContactListener(); contactListener.entities = world.entities; } time = 0; } @Override public void update () { float delta = Gdx.graphics.getDeltaTime(); time += delta; super.update(); if (contactCache != null) contactCache.update(delta); } @Override public boolean tap (float x, float y, int count, int button) { shoot(x, y); return true; } @Override public void dispose () { // Deleting the active contact listener, also disables that particular type of contact listener. if (contactListener != null) contactListener.dispose(); if (contactCache != null) contactCache.dispose(); contactCache = null; contactListener = null; super.dispose(); } }
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.tests.bullet; import com.badlogic.gdx.Gdx; import com.badlogic.gdx.graphics.Color; import com.badlogic.gdx.graphics.VertexAttributes.Usage; import com.badlogic.gdx.graphics.g3d.Material; import com.badlogic.gdx.graphics.g3d.Model; import com.badlogic.gdx.graphics.g3d.attributes.ColorAttribute; import com.badlogic.gdx.math.Matrix4; import com.badlogic.gdx.math.Vector3; import com.badlogic.gdx.physics.bullet.collision.ContactCache; import com.badlogic.gdx.physics.bullet.collision.ContactListener; import com.badlogic.gdx.physics.bullet.collision.btBvhTriangleMeshShape; import com.badlogic.gdx.physics.bullet.collision.btCollisionObject; import com.badlogic.gdx.physics.bullet.collision.btPersistentManifold; import com.badlogic.gdx.physics.bullet.collision.btSphereShape; import com.badlogic.gdx.utils.Array; public class ContactCacheTest extends BaseBulletTest { public static class TestContactListener extends ContactListener { public Array<BulletEntity> entities; @Override public void onContactStarted (int userValue0, boolean match0, int userValue1, boolean match1) { if (match0) { final BulletEntity e = (BulletEntity)(entities.get(userValue0)); e.setColor(Color.RED); Gdx.app.log(Float.toString(time), "Contact started " + userValue0); } if (match1) { final BulletEntity e = (BulletEntity)(entities.get(userValue1)); e.setColor(Color.RED); Gdx.app.log(Float.toString(time), "Contact started " + userValue1); } } @Override public void onContactEnded (int userValue0, boolean match0, int userValue1, boolean match1) { if (match0) { final BulletEntity e = (BulletEntity)(entities.get(userValue0)); e.setColor(Color.BLUE); Gdx.app.log(Float.toString(time), "Contact ended " + userValue0); } if (match1) { final BulletEntity e = (BulletEntity)(entities.get(userValue1)); e.setColor(Color.BLUE); Gdx.app.log(Float.toString(time), "Contact ended " + userValue1); } } } public static class TestContactCache extends ContactCache { public Array<BulletEntity> entities; @Override public void onContactStarted (btPersistentManifold manifold, boolean match0, boolean match1) { final int userValue0 = manifold.getBody0().getUserValue(); final int userValue1 = manifold.getBody1().getUserValue(); if (match0) { final BulletEntity e = (BulletEntity)(entities.get(userValue0)); e.setColor(Color.RED); Gdx.app.log(Float.toString(time), "Contact started " + userValue0); } if (match1) { final BulletEntity e = (BulletEntity)(entities.get(userValue1)); e.setColor(Color.RED); Gdx.app.log(Float.toString(time), "Contact started " + userValue1); } } @Override public void onContactEnded (btCollisionObject colObj0, boolean match0, btCollisionObject colObj1, boolean match1) { final int userValue0 = colObj0.getUserValue(); final int userValue1 = colObj1.getUserValue(); if (match0) { final BulletEntity e = (BulletEntity)(entities.get(userValue0)); e.setColor(Color.BLUE); Gdx.app.log(Float.toString(time), "Contact ended " + userValue0); } if (match1) { final BulletEntity e = (BulletEntity)(entities.get(userValue1)); e.setColor(Color.BLUE); Gdx.app.log(Float.toString(time), "Contact ended " + userValue1); } } } final int SPHERECOUNT_X = 4; final int SPHERECOUNT_Y = 1; final int SPHERECOUNT_Z = 4; final float SPHEREOFFSET_X = -2f; final float SPHEREOFFSET_Y = 10f; final float SPHEREOFFSET_Z = -2f; final boolean USE_CONTACT_CACHE = true; TestContactListener contactListener; TestContactCache contactCache; public static float time; @Override public void create () { super.create(); final Model sphereModel = modelBuilder.createSphere(1f, 1f, 1f, 8, 8, new Material(ColorAttribute.createDiffuse(Color.WHITE), ColorAttribute.createSpecular(Color.WHITE)), Usage.Position | Usage.Normal); disposables.add(sphereModel); final BulletConstructor sphereConstructor = new BulletConstructor(sphereModel, 0.5f, new btSphereShape(0.5f)); sphereConstructor.bodyInfo.setRestitution(1f); world.addConstructor("sphere", sphereConstructor); final Model sceneModel = objLoader.loadModel(Gdx.files.internal("data/scene.obj")); disposables.add(sceneModel); final BulletConstructor sceneConstructor = new BulletConstructor(sceneModel, 0f, new btBvhTriangleMeshShape(sceneModel.meshParts)); sceneConstructor.bodyInfo.setRestitution(0.25f); world.addConstructor("scene", sceneConstructor); final BulletEntity scene = world.add("scene", (new Matrix4()).setToTranslation(0f, 2f, 0f).rotate(Vector3.Y, -90)); scene.setColor(0.25f + 0.5f * (float)Math.random(), 0.25f + 0.5f * (float)Math.random(), 0.25f + 0.5f * (float)Math.random(), 1f); scene.body.setContactCallbackFlag(2); world.add("ground", 0f, 0f, 0f).setColor(0.25f + 0.5f * (float)Math.random(), 0.25f + 0.5f * (float)Math.random(), 0.25f + 0.5f * (float)Math.random(), 1f); for (int x = 0; x < SPHERECOUNT_X; x++) { for (int y = 0; y < SPHERECOUNT_Y; y++) { for (int z = 0; z < SPHERECOUNT_Z; z++) { final BulletEntity e = (BulletEntity)world.add("sphere", SPHEREOFFSET_X + x * 3f, SPHEREOFFSET_Y + y * 3f, SPHEREOFFSET_Z + z * 3f); e.setColor(0.5f + 0.5f * (float)Math.random(), 0.5f + 0.5f * (float)Math.random(), 0.5f + 0.5f * (float)Math.random(), 1f); e.body.setContactCallbackFilter(2); } } } if (USE_CONTACT_CACHE) { contactCache = new TestContactCache(); contactCache.entities = world.entities; contactCache.setCacheTime(0.5f); } else { contactListener = new TestContactListener(); contactListener.entities = world.entities; } time = 0; } @Override public void update () { float delta = Gdx.graphics.getDeltaTime(); time += delta; super.update(); if (contactCache != null) contactCache.update(delta); } @Override public boolean tap (float x, float y, int count, int button) { shoot(x, y); return true; } @Override public void dispose () { // Deleting the active contact listener, also disables that particular type of contact listener. if (contactListener != null) contactListener.dispose(); if (contactCache != null) contactCache.dispose(); contactCache = null; contactListener = null; super.dispose(); } }
-1
libgdx/libgdx
7,309
Use empty Audio implementations on Android and iOS when audio is disabled
Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
obigu
"2023-12-27T22:37:18Z"
"2023-12-28T19:29:00Z"
2b691f735f4b167c062f8f68186a6d7237d3d855
7f682a7921a47f0da858508f6b6fd58426dd05d7
Use empty Audio implementations on Android and iOS when audio is disabled. Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
./extensions/gdx-bullet/jni/swig-src/collision/com/badlogic/gdx/physics/bullet/collision/SWIGTYPE_p_f_p_void_size_t_size_t__p_void.java
/* ---------------------------------------------------------------------------- * This file was automatically generated by SWIG (http://www.swig.org). * Version 3.0.11 * * Do not make changes to this file unless you know what you are doing--modify * the SWIG interface file instead. * ----------------------------------------------------------------------------- */ package com.badlogic.gdx.physics.bullet.collision; public class SWIGTYPE_p_f_p_void_size_t_size_t__p_void { private transient long swigCPtr; protected SWIGTYPE_p_f_p_void_size_t_size_t__p_void (long cPtr, @SuppressWarnings("unused") boolean futureUse) { swigCPtr = cPtr; } protected SWIGTYPE_p_f_p_void_size_t_size_t__p_void () { swigCPtr = 0; } protected static long getCPtr (SWIGTYPE_p_f_p_void_size_t_size_t__p_void obj) { return (obj == null) ? 0 : obj.swigCPtr; } }
/* ---------------------------------------------------------------------------- * This file was automatically generated by SWIG (http://www.swig.org). * Version 3.0.11 * * Do not make changes to this file unless you know what you are doing--modify * the SWIG interface file instead. * ----------------------------------------------------------------------------- */ package com.badlogic.gdx.physics.bullet.collision; public class SWIGTYPE_p_f_p_void_size_t_size_t__p_void { private transient long swigCPtr; protected SWIGTYPE_p_f_p_void_size_t_size_t__p_void (long cPtr, @SuppressWarnings("unused") boolean futureUse) { swigCPtr = cPtr; } protected SWIGTYPE_p_f_p_void_size_t_size_t__p_void () { swigCPtr = 0; } protected static long getCPtr (SWIGTYPE_p_f_p_void_size_t_size_t__p_void obj) { return (obj == null) ? 0 : obj.swigCPtr; } }
-1
libgdx/libgdx
7,309
Use empty Audio implementations on Android and iOS when audio is disabled
Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
obigu
"2023-12-27T22:37:18Z"
"2023-12-28T19:29:00Z"
2b691f735f4b167c062f8f68186a6d7237d3d855
7f682a7921a47f0da858508f6b6fd58426dd05d7
Use empty Audio implementations on Android and iOS when audio is disabled. Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
./extensions/gdx-bullet/jni/swig-src/collision/com/badlogic/gdx/physics/bullet/collision/GIM_BVH_DATA.java
/* ---------------------------------------------------------------------------- * This file was automatically generated by SWIG (http://www.swig.org). * Version 3.0.11 * * Do not make changes to this file unless you know what you are doing--modify * the SWIG interface file instead. * ----------------------------------------------------------------------------- */ package com.badlogic.gdx.physics.bullet.collision; import com.badlogic.gdx.physics.bullet.BulletBase; import com.badlogic.gdx.physics.bullet.linearmath.*; public class GIM_BVH_DATA extends BulletBase { private long swigCPtr; protected GIM_BVH_DATA (final String className, long cPtr, boolean cMemoryOwn) { super(className, cPtr, cMemoryOwn); swigCPtr = cPtr; } /** Construct a new GIM_BVH_DATA, normally you should not need this constructor it's intended for low-level usage. */ public GIM_BVH_DATA (long cPtr, boolean cMemoryOwn) { this("GIM_BVH_DATA", cPtr, cMemoryOwn); construct(); } @Override protected void reset (long cPtr, boolean cMemoryOwn) { if (!destroyed) destroy(); super.reset(swigCPtr = cPtr, cMemoryOwn); } public static long getCPtr (GIM_BVH_DATA obj) { return (obj == null) ? 0 : obj.swigCPtr; } @Override protected void finalize () throws Throwable { if (!destroyed) destroy(); super.finalize(); } @Override protected synchronized void delete () { if (swigCPtr != 0) { if (swigCMemOwn) { swigCMemOwn = false; CollisionJNI.delete_GIM_BVH_DATA(swigCPtr); } swigCPtr = 0; } super.delete(); } public void setBound (btAABB value) { CollisionJNI.GIM_BVH_DATA_bound_set(swigCPtr, this, btAABB.getCPtr(value), value); } public btAABB getBound () { long cPtr = CollisionJNI.GIM_BVH_DATA_bound_get(swigCPtr, this); return (cPtr == 0) ? null : new btAABB(cPtr, false); } public void setData (int value) { CollisionJNI.GIM_BVH_DATA_data_set(swigCPtr, this, value); } public int getData () { return CollisionJNI.GIM_BVH_DATA_data_get(swigCPtr, this); } public GIM_BVH_DATA () { this(CollisionJNI.new_GIM_BVH_DATA(), true); } }
/* ---------------------------------------------------------------------------- * This file was automatically generated by SWIG (http://www.swig.org). * Version 3.0.11 * * Do not make changes to this file unless you know what you are doing--modify * the SWIG interface file instead. * ----------------------------------------------------------------------------- */ package com.badlogic.gdx.physics.bullet.collision; import com.badlogic.gdx.physics.bullet.BulletBase; import com.badlogic.gdx.physics.bullet.linearmath.*; public class GIM_BVH_DATA extends BulletBase { private long swigCPtr; protected GIM_BVH_DATA (final String className, long cPtr, boolean cMemoryOwn) { super(className, cPtr, cMemoryOwn); swigCPtr = cPtr; } /** Construct a new GIM_BVH_DATA, normally you should not need this constructor it's intended for low-level usage. */ public GIM_BVH_DATA (long cPtr, boolean cMemoryOwn) { this("GIM_BVH_DATA", cPtr, cMemoryOwn); construct(); } @Override protected void reset (long cPtr, boolean cMemoryOwn) { if (!destroyed) destroy(); super.reset(swigCPtr = cPtr, cMemoryOwn); } public static long getCPtr (GIM_BVH_DATA obj) { return (obj == null) ? 0 : obj.swigCPtr; } @Override protected void finalize () throws Throwable { if (!destroyed) destroy(); super.finalize(); } @Override protected synchronized void delete () { if (swigCPtr != 0) { if (swigCMemOwn) { swigCMemOwn = false; CollisionJNI.delete_GIM_BVH_DATA(swigCPtr); } swigCPtr = 0; } super.delete(); } public void setBound (btAABB value) { CollisionJNI.GIM_BVH_DATA_bound_set(swigCPtr, this, btAABB.getCPtr(value), value); } public btAABB getBound () { long cPtr = CollisionJNI.GIM_BVH_DATA_bound_get(swigCPtr, this); return (cPtr == 0) ? null : new btAABB(cPtr, false); } public void setData (int value) { CollisionJNI.GIM_BVH_DATA_data_set(swigCPtr, this, value); } public int getData () { return CollisionJNI.GIM_BVH_DATA_data_get(swigCPtr, this); } public GIM_BVH_DATA () { this(CollisionJNI.new_GIM_BVH_DATA(), true); } }
-1
libgdx/libgdx
7,309
Use empty Audio implementations on Android and iOS when audio is disabled
Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
obigu
"2023-12-27T22:37:18Z"
"2023-12-28T19:29:00Z"
2b691f735f4b167c062f8f68186a6d7237d3d855
7f682a7921a47f0da858508f6b6fd58426dd05d7
Use empty Audio implementations on Android and iOS when audio is disabled. Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
./gdx/src/com/badlogic/gdx/graphics/g3d/model/MeshPart.java
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.graphics.g3d.model; import com.badlogic.gdx.graphics.GL20; import com.badlogic.gdx.graphics.Mesh; import com.badlogic.gdx.graphics.g3d.Model; import com.badlogic.gdx.graphics.glutils.ShaderProgram; import com.badlogic.gdx.math.Vector3; import com.badlogic.gdx.math.collision.BoundingBox; /** A MeshPart is composed of a subset of vertices of a {@link Mesh}, along with the primitive type. The vertices subset is * described by an offset and size. When the mesh is indexed (which is when {@link Mesh#getNumIndices()} > 0), then the * {@link #offset} represents the offset in the indices array and {@link #size} represents the number of indices. When the mesh * isn't indexed, then the {@link #offset} member represents the offset in the vertices array and the {@link #size} member * represents the number of vertices. * </p> * * In other words: Regardless whether the mesh is indexed or not, when {@link #primitiveType} is not a strip, then {@link #size} * equals the number of primitives multiplied by the number of vertices per primitive. So if the MeshPart represents 4 triangles ( * {@link #primitiveType} is GL_TRIANGLES), then the {@link #size} member is 12 (4 triangles * 3 vertices = 12 vertices total). * Likewise, if the part represents 12 lines ({@link #primitiveType} is GL_LINES), then the size is 24 (12 lines * 2 vertices = 24 * vertices total). * </p> * * Note that some classes might require the mesh (part) to be indexed. * </p> * * The {@link Mesh} referenced by the {@link #mesh} member must outlive the MeshPart. When the mesh is disposed, the MeshPart is * unusable. * @author badlogic, Xoppa */ public class MeshPart { /** Unique id within model, may be null. Will be ignored by {@link #equals(MeshPart)} **/ public String id; /** The primitive type, OpenGL constant e.g: {@link GL20#GL_TRIANGLES}, {@link GL20#GL_POINTS}, {@link GL20#GL_LINES}, * {@link GL20#GL_LINE_STRIP}, {@link GL20#GL_TRIANGLE_STRIP} **/ public int primitiveType; /** The offset in the {@link #mesh} to this part. If the mesh is indexed ({@link Mesh#getNumIndices()} > 0), this is the offset * in the indices array, otherwise it is the offset in the vertices array. **/ public int offset; /** The size (in total number of vertices) of this part in the {@link #mesh}. When the mesh is indexed ( * {@link Mesh#getNumIndices()} > 0), this is the number of indices, otherwise it is the number of vertices. **/ public int size; /** The Mesh the part references, also stored in {@link Model} **/ public Mesh mesh; /** The offset to the center of the bounding box of the shape, only valid after the call to {@link #update()}. **/ public final Vector3 center = new Vector3(); /** The location, relative to {@link #center}, of the corner of the axis aligned bounding box of the shape. Or, in other words: * half the dimensions of the bounding box of the shape, where {@link Vector3#x} is half the width, {@link Vector3#y} is half * the height and {@link Vector3#z} is half the depth. Only valid after the call to {@link #update()}. **/ public final Vector3 halfExtents = new Vector3(); /** The radius relative to {@link #center} of the bounding sphere of the shape, or negative if not calculated yet. This is the * same as the length of the {@link #halfExtents} member. See {@link #update()}. **/ public float radius = -1; /** Temporary static {@link BoundingBox} instance, used in the {@link #update()} method. **/ private final static BoundingBox bounds = new BoundingBox(); /** Construct a new MeshPart, with null values. The MeshPart is unusable until you set all members. **/ public MeshPart () { } /** Construct a new MeshPart and set all its values. * @param id The id of the new part, may be null. * @param mesh The mesh which holds all vertices and (optional) indices of this part. * @param offset The offset within the mesh to this part. * @param size The size (in total number of vertices) of the part. * @param type The primitive type of the part (e.g. GL_TRIANGLES, GL_LINE_STRIP, etc.). */ public MeshPart (final String id, final Mesh mesh, final int offset, final int size, final int type) { set(id, mesh, offset, size, type); } /** Construct a new MeshPart which is an exact copy of the provided MeshPart. * @param copyFrom The MeshPart to copy. */ public MeshPart (final MeshPart copyFrom) { set(copyFrom); } /** Set this MeshPart to be a copy of the other MeshPart * @param other The MeshPart from which to copy the values * @return this MeshPart, for chaining */ public MeshPart set (final MeshPart other) { this.id = other.id; this.mesh = other.mesh; this.offset = other.offset; this.size = other.size; this.primitiveType = other.primitiveType; this.center.set(other.center); this.halfExtents.set(other.halfExtents); this.radius = other.radius; return this; } /** Set this MeshPart to given values, does not {@link #update()} the bounding box values. * @return this MeshPart, for chaining. */ public MeshPart set (final String id, final Mesh mesh, final int offset, final int size, final int type) { this.id = id; this.mesh = mesh; this.offset = offset; this.size = size; this.primitiveType = type; this.center.set(0, 0, 0); this.halfExtents.set(0, 0, 0); this.radius = -1f; return this; } /** Calculates and updates the {@link #center}, {@link #halfExtents} and {@link #radius} values. This is considered a costly * operation and should not be called frequently. All vertices (points) of the shape are traversed to calculate the maximum and * minimum x, y and z coordinate of the shape. Note that MeshPart is not aware of any transformation that might be applied when * rendering. It calculates the untransformed (not moved, not scaled, not rotated) values. */ public void update () { mesh.calculateBoundingBox(bounds, offset, size); bounds.getCenter(center); bounds.getDimensions(halfExtents).scl(0.5f); radius = halfExtents.len(); } /** Compares this MeshPart to the specified MeshPart and returns true if they both reference the same {@link Mesh} and the * {@link #offset}, {@link #size} and {@link #primitiveType} members are equal. The {@link #id} member is ignored. * @param other The other MeshPart to compare this MeshPart to. * @return True when this MeshPart equals the other MeshPart (ignoring the {@link #id} member), false otherwise. */ public boolean equals (final MeshPart other) { return other == this || (other != null && other.mesh == mesh && other.primitiveType == primitiveType && other.offset == offset && other.size == size); } @Override public boolean equals (final Object arg0) { if (arg0 == null) return false; if (arg0 == this) return true; if (!(arg0 instanceof MeshPart)) return false; return equals((MeshPart)arg0); } /** Renders the mesh part using the specified shader, must be called after {@link ShaderProgram#bind()}. * @param shader the shader to be used * @param autoBind overrides the autoBind member of the Mesh */ public void render (ShaderProgram shader, boolean autoBind) { mesh.render(shader, primitiveType, offset, size, autoBind); } /** Renders the mesh part using the specified shader, must be called after {@link ShaderProgram#bind()}. * @param shader the shader to be used */ public void render (ShaderProgram shader) { mesh.render(shader, primitiveType, offset, size); } }
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.graphics.g3d.model; import com.badlogic.gdx.graphics.GL20; import com.badlogic.gdx.graphics.Mesh; import com.badlogic.gdx.graphics.g3d.Model; import com.badlogic.gdx.graphics.glutils.ShaderProgram; import com.badlogic.gdx.math.Vector3; import com.badlogic.gdx.math.collision.BoundingBox; /** A MeshPart is composed of a subset of vertices of a {@link Mesh}, along with the primitive type. The vertices subset is * described by an offset and size. When the mesh is indexed (which is when {@link Mesh#getNumIndices()} > 0), then the * {@link #offset} represents the offset in the indices array and {@link #size} represents the number of indices. When the mesh * isn't indexed, then the {@link #offset} member represents the offset in the vertices array and the {@link #size} member * represents the number of vertices. * </p> * * In other words: Regardless whether the mesh is indexed or not, when {@link #primitiveType} is not a strip, then {@link #size} * equals the number of primitives multiplied by the number of vertices per primitive. So if the MeshPart represents 4 triangles ( * {@link #primitiveType} is GL_TRIANGLES), then the {@link #size} member is 12 (4 triangles * 3 vertices = 12 vertices total). * Likewise, if the part represents 12 lines ({@link #primitiveType} is GL_LINES), then the size is 24 (12 lines * 2 vertices = 24 * vertices total). * </p> * * Note that some classes might require the mesh (part) to be indexed. * </p> * * The {@link Mesh} referenced by the {@link #mesh} member must outlive the MeshPart. When the mesh is disposed, the MeshPart is * unusable. * @author badlogic, Xoppa */ public class MeshPart { /** Unique id within model, may be null. Will be ignored by {@link #equals(MeshPart)} **/ public String id; /** The primitive type, OpenGL constant e.g: {@link GL20#GL_TRIANGLES}, {@link GL20#GL_POINTS}, {@link GL20#GL_LINES}, * {@link GL20#GL_LINE_STRIP}, {@link GL20#GL_TRIANGLE_STRIP} **/ public int primitiveType; /** The offset in the {@link #mesh} to this part. If the mesh is indexed ({@link Mesh#getNumIndices()} > 0), this is the offset * in the indices array, otherwise it is the offset in the vertices array. **/ public int offset; /** The size (in total number of vertices) of this part in the {@link #mesh}. When the mesh is indexed ( * {@link Mesh#getNumIndices()} > 0), this is the number of indices, otherwise it is the number of vertices. **/ public int size; /** The Mesh the part references, also stored in {@link Model} **/ public Mesh mesh; /** The offset to the center of the bounding box of the shape, only valid after the call to {@link #update()}. **/ public final Vector3 center = new Vector3(); /** The location, relative to {@link #center}, of the corner of the axis aligned bounding box of the shape. Or, in other words: * half the dimensions of the bounding box of the shape, where {@link Vector3#x} is half the width, {@link Vector3#y} is half * the height and {@link Vector3#z} is half the depth. Only valid after the call to {@link #update()}. **/ public final Vector3 halfExtents = new Vector3(); /** The radius relative to {@link #center} of the bounding sphere of the shape, or negative if not calculated yet. This is the * same as the length of the {@link #halfExtents} member. See {@link #update()}. **/ public float radius = -1; /** Temporary static {@link BoundingBox} instance, used in the {@link #update()} method. **/ private final static BoundingBox bounds = new BoundingBox(); /** Construct a new MeshPart, with null values. The MeshPart is unusable until you set all members. **/ public MeshPart () { } /** Construct a new MeshPart and set all its values. * @param id The id of the new part, may be null. * @param mesh The mesh which holds all vertices and (optional) indices of this part. * @param offset The offset within the mesh to this part. * @param size The size (in total number of vertices) of the part. * @param type The primitive type of the part (e.g. GL_TRIANGLES, GL_LINE_STRIP, etc.). */ public MeshPart (final String id, final Mesh mesh, final int offset, final int size, final int type) { set(id, mesh, offset, size, type); } /** Construct a new MeshPart which is an exact copy of the provided MeshPart. * @param copyFrom The MeshPart to copy. */ public MeshPart (final MeshPart copyFrom) { set(copyFrom); } /** Set this MeshPart to be a copy of the other MeshPart * @param other The MeshPart from which to copy the values * @return this MeshPart, for chaining */ public MeshPart set (final MeshPart other) { this.id = other.id; this.mesh = other.mesh; this.offset = other.offset; this.size = other.size; this.primitiveType = other.primitiveType; this.center.set(other.center); this.halfExtents.set(other.halfExtents); this.radius = other.radius; return this; } /** Set this MeshPart to given values, does not {@link #update()} the bounding box values. * @return this MeshPart, for chaining. */ public MeshPart set (final String id, final Mesh mesh, final int offset, final int size, final int type) { this.id = id; this.mesh = mesh; this.offset = offset; this.size = size; this.primitiveType = type; this.center.set(0, 0, 0); this.halfExtents.set(0, 0, 0); this.radius = -1f; return this; } /** Calculates and updates the {@link #center}, {@link #halfExtents} and {@link #radius} values. This is considered a costly * operation and should not be called frequently. All vertices (points) of the shape are traversed to calculate the maximum and * minimum x, y and z coordinate of the shape. Note that MeshPart is not aware of any transformation that might be applied when * rendering. It calculates the untransformed (not moved, not scaled, not rotated) values. */ public void update () { mesh.calculateBoundingBox(bounds, offset, size); bounds.getCenter(center); bounds.getDimensions(halfExtents).scl(0.5f); radius = halfExtents.len(); } /** Compares this MeshPart to the specified MeshPart and returns true if they both reference the same {@link Mesh} and the * {@link #offset}, {@link #size} and {@link #primitiveType} members are equal. The {@link #id} member is ignored. * @param other The other MeshPart to compare this MeshPart to. * @return True when this MeshPart equals the other MeshPart (ignoring the {@link #id} member), false otherwise. */ public boolean equals (final MeshPart other) { return other == this || (other != null && other.mesh == mesh && other.primitiveType == primitiveType && other.offset == offset && other.size == size); } @Override public boolean equals (final Object arg0) { if (arg0 == null) return false; if (arg0 == this) return true; if (!(arg0 instanceof MeshPart)) return false; return equals((MeshPart)arg0); } /** Renders the mesh part using the specified shader, must be called after {@link ShaderProgram#bind()}. * @param shader the shader to be used * @param autoBind overrides the autoBind member of the Mesh */ public void render (ShaderProgram shader, boolean autoBind) { mesh.render(shader, primitiveType, offset, size, autoBind); } /** Renders the mesh part using the specified shader, must be called after {@link ShaderProgram#bind()}. * @param shader the shader to be used */ public void render (ShaderProgram shader) { mesh.render(shader, primitiveType, offset, size); } }
-1
libgdx/libgdx
7,309
Use empty Audio implementations on Android and iOS when audio is disabled
Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
obigu
"2023-12-27T22:37:18Z"
"2023-12-28T19:29:00Z"
2b691f735f4b167c062f8f68186a6d7237d3d855
7f682a7921a47f0da858508f6b6fd58426dd05d7
Use empty Audio implementations on Android and iOS when audio is disabled. Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
./extensions/gdx-bullet/jni/swig-src/linearmath/com/badlogic/gdx/physics/bullet/linearmath/btVector3Array.java
/* ---------------------------------------------------------------------------- * This file was automatically generated by SWIG (http://www.swig.org). * Version 3.0.11 * * Do not make changes to this file unless you know what you are doing--modify * the SWIG interface file instead. * ----------------------------------------------------------------------------- */ package com.badlogic.gdx.physics.bullet.linearmath; import com.badlogic.gdx.physics.bullet.BulletBase; import com.badlogic.gdx.math.Vector3; public class btVector3Array extends BulletBase { private long swigCPtr; protected btVector3Array (final String className, long cPtr, boolean cMemoryOwn) { super(className, cPtr, cMemoryOwn); swigCPtr = cPtr; } /** Construct a new btVector3Array, normally you should not need this constructor it's intended for low-level usage. */ public btVector3Array (long cPtr, boolean cMemoryOwn) { this("btVector3Array", cPtr, cMemoryOwn); construct(); } @Override protected void reset (long cPtr, boolean cMemoryOwn) { if (!destroyed) destroy(); super.reset(swigCPtr = cPtr, cMemoryOwn); } public static long getCPtr (btVector3Array obj) { return (obj == null) ? 0 : obj.swigCPtr; } @Override protected void finalize () throws Throwable { if (!destroyed) destroy(); super.finalize(); } @Override protected synchronized void delete () { if (swigCPtr != 0) { if (swigCMemOwn) { swigCMemOwn = false; LinearMathJNI.delete_btVector3Array(swigCPtr); } swigCPtr = 0; } super.delete(); } public btVector3Array operatorAssignment (btVector3Array other) { return new btVector3Array( LinearMathJNI.btVector3Array_operatorAssignment(swigCPtr, this, btVector3Array.getCPtr(other), other), false); } public btVector3Array () { this(LinearMathJNI.new_btVector3Array__SWIG_0(), true); } public btVector3Array (btVector3Array otherArray) { this(LinearMathJNI.new_btVector3Array__SWIG_1(btVector3Array.getCPtr(otherArray), otherArray), true); } public int size () { return LinearMathJNI.btVector3Array_size(swigCPtr, this); } public Vector3 atConst (int n) { return LinearMathJNI.btVector3Array_atConst(swigCPtr, this, n); } public Vector3 at (int n) { return LinearMathJNI.btVector3Array_at(swigCPtr, this, n); } public Vector3 operatorSubscriptConst (int n) { return LinearMathJNI.btVector3Array_operatorSubscriptConst(swigCPtr, this, n); } public Vector3 operatorSubscript (int n) { return LinearMathJNI.btVector3Array_operatorSubscript(swigCPtr, this, n); } public void clear () { LinearMathJNI.btVector3Array_clear(swigCPtr, this); } public void pop_back () { LinearMathJNI.btVector3Array_pop_back(swigCPtr, this); } public void resizeNoInitialize (int newsize) { LinearMathJNI.btVector3Array_resizeNoInitialize(swigCPtr, this, newsize); } public void resize (int newsize, Vector3 fillData) { LinearMathJNI.btVector3Array_resize__SWIG_0(swigCPtr, this, newsize, fillData); } public void resize (int newsize) { LinearMathJNI.btVector3Array_resize__SWIG_1(swigCPtr, this, newsize); } public Vector3 expandNonInitializing () { return LinearMathJNI.btVector3Array_expandNonInitializing(swigCPtr, this); } public Vector3 expand (Vector3 fillValue) { return LinearMathJNI.btVector3Array_expand__SWIG_0(swigCPtr, this, fillValue); } public Vector3 expand () { return LinearMathJNI.btVector3Array_expand__SWIG_1(swigCPtr, this); } public void push_back (Vector3 _Val) { LinearMathJNI.btVector3Array_push_back(swigCPtr, this, _Val); } public int capacity () { return LinearMathJNI.btVector3Array_capacity(swigCPtr, this); } public void reserve (int _Count) { LinearMathJNI.btVector3Array_reserve(swigCPtr, this, _Count); } static public class less extends BulletBase { private long swigCPtr; protected less (final String className, long cPtr, boolean cMemoryOwn) { super(className, cPtr, cMemoryOwn); swigCPtr = cPtr; } /** Construct a new less, normally you should not need this constructor it's intended for low-level usage. */ public less (long cPtr, boolean cMemoryOwn) { this("less", cPtr, cMemoryOwn); construct(); } @Override protected void reset (long cPtr, boolean cMemoryOwn) { if (!destroyed) destroy(); super.reset(swigCPtr = cPtr, cMemoryOwn); } public static long getCPtr (less obj) { return (obj == null) ? 0 : obj.swigCPtr; } @Override protected void finalize () throws Throwable { if (!destroyed) destroy(); super.finalize(); } @Override protected synchronized void delete () { if (swigCPtr != 0) { if (swigCMemOwn) { swigCMemOwn = false; LinearMathJNI.delete_btVector3Array_less(swigCPtr); } swigCPtr = 0; } super.delete(); } public boolean operatorFunctionCall (Vector3 a, Vector3 b) { return LinearMathJNI.btVector3Array_less_operatorFunctionCall(swigCPtr, this, a, b); } public less () { this(LinearMathJNI.new_btVector3Array_less(), true); } } public void swap (int index0, int index1) { LinearMathJNI.btVector3Array_swap(swigCPtr, this, index0, index1); } public int findBinarySearch (Vector3 key) { return LinearMathJNI.btVector3Array_findBinarySearch(swigCPtr, this, key); } public int findLinearSearch (Vector3 key) { return LinearMathJNI.btVector3Array_findLinearSearch(swigCPtr, this, key); } public int findLinearSearch2 (Vector3 key) { return LinearMathJNI.btVector3Array_findLinearSearch2(swigCPtr, this, key); } public void removeAtIndex (int index) { LinearMathJNI.btVector3Array_removeAtIndex(swigCPtr, this, index); } public void remove (Vector3 key) { LinearMathJNI.btVector3Array_remove(swigCPtr, this, key); } public void initializeFromBuffer (long buffer, int size, int capacity) { LinearMathJNI.btVector3Array_initializeFromBuffer(swigCPtr, this, buffer, size, capacity); } public void copyFromArray (btVector3Array otherArray) { LinearMathJNI.btVector3Array_copyFromArray(swigCPtr, this, btVector3Array.getCPtr(otherArray), otherArray); } }
/* ---------------------------------------------------------------------------- * This file was automatically generated by SWIG (http://www.swig.org). * Version 3.0.11 * * Do not make changes to this file unless you know what you are doing--modify * the SWIG interface file instead. * ----------------------------------------------------------------------------- */ package com.badlogic.gdx.physics.bullet.linearmath; import com.badlogic.gdx.physics.bullet.BulletBase; import com.badlogic.gdx.math.Vector3; public class btVector3Array extends BulletBase { private long swigCPtr; protected btVector3Array (final String className, long cPtr, boolean cMemoryOwn) { super(className, cPtr, cMemoryOwn); swigCPtr = cPtr; } /** Construct a new btVector3Array, normally you should not need this constructor it's intended for low-level usage. */ public btVector3Array (long cPtr, boolean cMemoryOwn) { this("btVector3Array", cPtr, cMemoryOwn); construct(); } @Override protected void reset (long cPtr, boolean cMemoryOwn) { if (!destroyed) destroy(); super.reset(swigCPtr = cPtr, cMemoryOwn); } public static long getCPtr (btVector3Array obj) { return (obj == null) ? 0 : obj.swigCPtr; } @Override protected void finalize () throws Throwable { if (!destroyed) destroy(); super.finalize(); } @Override protected synchronized void delete () { if (swigCPtr != 0) { if (swigCMemOwn) { swigCMemOwn = false; LinearMathJNI.delete_btVector3Array(swigCPtr); } swigCPtr = 0; } super.delete(); } public btVector3Array operatorAssignment (btVector3Array other) { return new btVector3Array( LinearMathJNI.btVector3Array_operatorAssignment(swigCPtr, this, btVector3Array.getCPtr(other), other), false); } public btVector3Array () { this(LinearMathJNI.new_btVector3Array__SWIG_0(), true); } public btVector3Array (btVector3Array otherArray) { this(LinearMathJNI.new_btVector3Array__SWIG_1(btVector3Array.getCPtr(otherArray), otherArray), true); } public int size () { return LinearMathJNI.btVector3Array_size(swigCPtr, this); } public Vector3 atConst (int n) { return LinearMathJNI.btVector3Array_atConst(swigCPtr, this, n); } public Vector3 at (int n) { return LinearMathJNI.btVector3Array_at(swigCPtr, this, n); } public Vector3 operatorSubscriptConst (int n) { return LinearMathJNI.btVector3Array_operatorSubscriptConst(swigCPtr, this, n); } public Vector3 operatorSubscript (int n) { return LinearMathJNI.btVector3Array_operatorSubscript(swigCPtr, this, n); } public void clear () { LinearMathJNI.btVector3Array_clear(swigCPtr, this); } public void pop_back () { LinearMathJNI.btVector3Array_pop_back(swigCPtr, this); } public void resizeNoInitialize (int newsize) { LinearMathJNI.btVector3Array_resizeNoInitialize(swigCPtr, this, newsize); } public void resize (int newsize, Vector3 fillData) { LinearMathJNI.btVector3Array_resize__SWIG_0(swigCPtr, this, newsize, fillData); } public void resize (int newsize) { LinearMathJNI.btVector3Array_resize__SWIG_1(swigCPtr, this, newsize); } public Vector3 expandNonInitializing () { return LinearMathJNI.btVector3Array_expandNonInitializing(swigCPtr, this); } public Vector3 expand (Vector3 fillValue) { return LinearMathJNI.btVector3Array_expand__SWIG_0(swigCPtr, this, fillValue); } public Vector3 expand () { return LinearMathJNI.btVector3Array_expand__SWIG_1(swigCPtr, this); } public void push_back (Vector3 _Val) { LinearMathJNI.btVector3Array_push_back(swigCPtr, this, _Val); } public int capacity () { return LinearMathJNI.btVector3Array_capacity(swigCPtr, this); } public void reserve (int _Count) { LinearMathJNI.btVector3Array_reserve(swigCPtr, this, _Count); } static public class less extends BulletBase { private long swigCPtr; protected less (final String className, long cPtr, boolean cMemoryOwn) { super(className, cPtr, cMemoryOwn); swigCPtr = cPtr; } /** Construct a new less, normally you should not need this constructor it's intended for low-level usage. */ public less (long cPtr, boolean cMemoryOwn) { this("less", cPtr, cMemoryOwn); construct(); } @Override protected void reset (long cPtr, boolean cMemoryOwn) { if (!destroyed) destroy(); super.reset(swigCPtr = cPtr, cMemoryOwn); } public static long getCPtr (less obj) { return (obj == null) ? 0 : obj.swigCPtr; } @Override protected void finalize () throws Throwable { if (!destroyed) destroy(); super.finalize(); } @Override protected synchronized void delete () { if (swigCPtr != 0) { if (swigCMemOwn) { swigCMemOwn = false; LinearMathJNI.delete_btVector3Array_less(swigCPtr); } swigCPtr = 0; } super.delete(); } public boolean operatorFunctionCall (Vector3 a, Vector3 b) { return LinearMathJNI.btVector3Array_less_operatorFunctionCall(swigCPtr, this, a, b); } public less () { this(LinearMathJNI.new_btVector3Array_less(), true); } } public void swap (int index0, int index1) { LinearMathJNI.btVector3Array_swap(swigCPtr, this, index0, index1); } public int findBinarySearch (Vector3 key) { return LinearMathJNI.btVector3Array_findBinarySearch(swigCPtr, this, key); } public int findLinearSearch (Vector3 key) { return LinearMathJNI.btVector3Array_findLinearSearch(swigCPtr, this, key); } public int findLinearSearch2 (Vector3 key) { return LinearMathJNI.btVector3Array_findLinearSearch2(swigCPtr, this, key); } public void removeAtIndex (int index) { LinearMathJNI.btVector3Array_removeAtIndex(swigCPtr, this, index); } public void remove (Vector3 key) { LinearMathJNI.btVector3Array_remove(swigCPtr, this, key); } public void initializeFromBuffer (long buffer, int size, int capacity) { LinearMathJNI.btVector3Array_initializeFromBuffer(swigCPtr, this, buffer, size, capacity); } public void copyFromArray (btVector3Array otherArray) { LinearMathJNI.btVector3Array_copyFromArray(swigCPtr, this, btVector3Array.getCPtr(otherArray), otherArray); } }
-1
libgdx/libgdx
7,309
Use empty Audio implementations on Android and iOS when audio is disabled
Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
obigu
"2023-12-27T22:37:18Z"
"2023-12-28T19:29:00Z"
2b691f735f4b167c062f8f68186a6d7237d3d855
7f682a7921a47f0da858508f6b6fd58426dd05d7
Use empty Audio implementations on Android and iOS when audio is disabled. Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
./tests/gdx-tests/src/com/badlogic/gdx/tests/bullet/BulletTest.java
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.tests.bullet; import com.badlogic.gdx.ApplicationListener; import com.badlogic.gdx.InputAdapter; import com.badlogic.gdx.graphics.PerspectiveCamera; import com.badlogic.gdx.input.GestureDetector.GestureListener; import com.badlogic.gdx.math.FloatCounter; import com.badlogic.gdx.math.Vector2; import com.badlogic.gdx.utils.PerformanceCounter; /** @author xoppa */ public class BulletTest extends InputAdapter implements ApplicationListener, GestureListener { public StringBuilder performance = new StringBuilder(); public String instructions = "Tap to shoot\nLong press to toggle debug mode\nSwipe for next test\nCtrl+drag to rotate\nScroll to zoom"; public PerformanceCounter performanceCounter = new PerformanceCounter(this.getClass().getSimpleName()); public FloatCounter fpsCounter = new FloatCounter(5); public PerspectiveCamera camera; @Override public void create () { } @Override public void resize (int width, int height) { } @Override public void render () { } @Override public void pause () { } @Override public void resume () { } @Override public void dispose () { } @Override public boolean touchDown (float x, float y, int pointer, int button) { return false; } @Override public boolean tap (float x, float y, int count, int button) { return false; } @Override public boolean longPress (float x, float y) { return false; } @Override public boolean fling (float velocityX, float velocityY, int button) { return false; } @Override public boolean pan (float x, float y, float deltaX, float deltaY) { return false; } @Override public boolean panStop (float x, float y, int pointer, int button) { return false; } @Override public boolean zoom (float initialDistance, float distance) { return false; } @Override public boolean pinch (Vector2 initialPointer1, Vector2 initialPointer2, Vector2 pointer1, Vector2 pointer2) { return false; } @Override public void pinchStop () { } }
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.tests.bullet; import com.badlogic.gdx.ApplicationListener; import com.badlogic.gdx.InputAdapter; import com.badlogic.gdx.graphics.PerspectiveCamera; import com.badlogic.gdx.input.GestureDetector.GestureListener; import com.badlogic.gdx.math.FloatCounter; import com.badlogic.gdx.math.Vector2; import com.badlogic.gdx.utils.PerformanceCounter; /** @author xoppa */ public class BulletTest extends InputAdapter implements ApplicationListener, GestureListener { public StringBuilder performance = new StringBuilder(); public String instructions = "Tap to shoot\nLong press to toggle debug mode\nSwipe for next test\nCtrl+drag to rotate\nScroll to zoom"; public PerformanceCounter performanceCounter = new PerformanceCounter(this.getClass().getSimpleName()); public FloatCounter fpsCounter = new FloatCounter(5); public PerspectiveCamera camera; @Override public void create () { } @Override public void resize (int width, int height) { } @Override public void render () { } @Override public void pause () { } @Override public void resume () { } @Override public void dispose () { } @Override public boolean touchDown (float x, float y, int pointer, int button) { return false; } @Override public boolean tap (float x, float y, int count, int button) { return false; } @Override public boolean longPress (float x, float y) { return false; } @Override public boolean fling (float velocityX, float velocityY, int button) { return false; } @Override public boolean pan (float x, float y, float deltaX, float deltaY) { return false; } @Override public boolean panStop (float x, float y, int pointer, int button) { return false; } @Override public boolean zoom (float initialDistance, float distance) { return false; } @Override public boolean pinch (Vector2 initialPointer1, Vector2 initialPointer2, Vector2 pointer1, Vector2 pointer2) { return false; } @Override public void pinchStop () { } }
-1
libgdx/libgdx
7,309
Use empty Audio implementations on Android and iOS when audio is disabled
Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
obigu
"2023-12-27T22:37:18Z"
"2023-12-28T19:29:00Z"
2b691f735f4b167c062f8f68186a6d7237d3d855
7f682a7921a47f0da858508f6b6fd58426dd05d7
Use empty Audio implementations on Android and iOS when audio is disabled. Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
./extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/particle/ParticleBodyContact.java
package org.jbox2d.particle; import org.jbox2d.common.Vec2; import org.jbox2d.dynamics.Body; public class ParticleBodyContact { /** Index of the particle making contact. */ public int index; /** The body making contact. */ public Body body; /** Weight of the contact. A value between 0.0f and 1.0f. */ float weight; /** The normalized direction from the particle to the body. */ public final Vec2 normal = new Vec2(); /** The effective mass used in calculating force. */ float mass; }
package org.jbox2d.particle; import org.jbox2d.common.Vec2; import org.jbox2d.dynamics.Body; public class ParticleBodyContact { /** Index of the particle making contact. */ public int index; /** The body making contact. */ public Body body; /** Weight of the contact. A value between 0.0f and 1.0f. */ float weight; /** The normalized direction from the particle to the body. */ public final Vec2 normal = new Vec2(); /** The effective mass used in calculating force. */ float mass; }
-1
libgdx/libgdx
7,309
Use empty Audio implementations on Android and iOS when audio is disabled
Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
obigu
"2023-12-27T22:37:18Z"
"2023-12-28T19:29:00Z"
2b691f735f4b167c062f8f68186a6d7237d3d855
7f682a7921a47f0da858508f6b6fd58426dd05d7
Use empty Audio implementations on Android and iOS when audio is disabled. Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
./gdx/src/com/badlogic/gdx/graphics/g3d/attributes/DirectionalLightsAttribute.java
package com.badlogic.gdx.graphics.g3d.attributes; import com.badlogic.gdx.graphics.g3d.Attribute; import com.badlogic.gdx.graphics.g3d.Shader; import com.badlogic.gdx.graphics.g3d.environment.DirectionalLight; import com.badlogic.gdx.utils.Array; /** An {@link Attribute} which can be used to send an {@link Array} of {@link DirectionalLight} instances to the {@link Shader}. * The lights are stored by reference, the {@link #copy()} or {@link #DirectionalLightsAttribute(DirectionalLightsAttribute)} * method will not create new lights. * @author Xoppa */ public class DirectionalLightsAttribute extends Attribute { public final static String Alias = "directionalLights"; public final static long Type = register(Alias); public final static boolean is (final long mask) { return (mask & Type) == mask; } public final Array<DirectionalLight> lights; public DirectionalLightsAttribute () { super(Type); lights = new Array<DirectionalLight>(1); } public DirectionalLightsAttribute (final DirectionalLightsAttribute copyFrom) { this(); lights.addAll(copyFrom.lights); } @Override public DirectionalLightsAttribute copy () { return new DirectionalLightsAttribute(this); } @Override public int hashCode () { int result = super.hashCode(); for (DirectionalLight light : lights) result = 1229 * result + (light == null ? 0 : light.hashCode()); return result; } @Override public int compareTo (Attribute o) { if (type != o.type) return type < o.type ? -1 : 1; return 0; // FIXME implement comparing } }
package com.badlogic.gdx.graphics.g3d.attributes; import com.badlogic.gdx.graphics.g3d.Attribute; import com.badlogic.gdx.graphics.g3d.Shader; import com.badlogic.gdx.graphics.g3d.environment.DirectionalLight; import com.badlogic.gdx.utils.Array; /** An {@link Attribute} which can be used to send an {@link Array} of {@link DirectionalLight} instances to the {@link Shader}. * The lights are stored by reference, the {@link #copy()} or {@link #DirectionalLightsAttribute(DirectionalLightsAttribute)} * method will not create new lights. * @author Xoppa */ public class DirectionalLightsAttribute extends Attribute { public final static String Alias = "directionalLights"; public final static long Type = register(Alias); public final static boolean is (final long mask) { return (mask & Type) == mask; } public final Array<DirectionalLight> lights; public DirectionalLightsAttribute () { super(Type); lights = new Array<DirectionalLight>(1); } public DirectionalLightsAttribute (final DirectionalLightsAttribute copyFrom) { this(); lights.addAll(copyFrom.lights); } @Override public DirectionalLightsAttribute copy () { return new DirectionalLightsAttribute(this); } @Override public int hashCode () { int result = super.hashCode(); for (DirectionalLight light : lights) result = 1229 * result + (light == null ? 0 : light.hashCode()); return result; } @Override public int compareTo (Attribute o) { if (type != o.type) return type < o.type ? -1 : 1; return 0; // FIXME implement comparing } }
-1
libgdx/libgdx
7,309
Use empty Audio implementations on Android and iOS when audio is disabled
Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
obigu
"2023-12-27T22:37:18Z"
"2023-12-28T19:29:00Z"
2b691f735f4b167c062f8f68186a6d7237d3d855
7f682a7921a47f0da858508f6b6fd58426dd05d7
Use empty Audio implementations on Android and iOS when audio is disabled. Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
./tests/gdx-tests-android/assets/data/issue/funky_palm_tree.g3dj.txt
{ "version": [ 0, 1], "id": "", "meshes": [ { "attributes": ["POSITION", "NORMAL", "TEXCOORD0", "BLENDWEIGHT0", "BLENDWEIGHT1"], "vertices": [ 7.042967, -36.586010, 56.320400, -0.129595, -0.657217, 0.742476, 0.579044, 0.066946, 0.000000, 1.000000, 0.000000, 0.000000, 4.793809, -32.404839, 59.628853, -0.129595, -0.657217, 0.742476, 0.498386, 0.168897, 0.000000, 1.000000, 0.000000, 0.000000, 5.473663, -36.707016, 55.939365, -0.129595, -0.657217, 0.742476, 0.501778, 0.071602, 0.000000, 1.000000, 0.000000, 0.000000, 4.793809, -32.404839, 59.628853, 0.814209, 0.559791, -0.153938, 0.498386, 0.168897, 0.000000, 1.000000, 0.000000, 0.000000, 7.042967, -36.586010, 56.320400, 0.814209, 0.559791, -0.153938, 0.579044, 0.066946, 0.000000, 1.000000, 0.000000, 0.000000, 6.518176, -36.050308, 55.492733, 0.814209, 0.559791, -0.153938, 0.557019, 0.085591, 0.000000, 1.000000, 0.000000, 0.000000, 7.042967, -36.586010, 56.320400, -0.086233, -0.790602, 0.606228, 0.579044, 0.066946, 0.000000, 1.000000, 0.000000, 0.000000, 5.473663, -36.707016, 55.939365, -0.086233, -0.790602, 0.606228, 0.501778, 0.071602, 0.000000, 1.000000, 0.000000, 0.000000, 6.061909, -39.588398, 52.265339, -0.086233, -0.790602, 0.606228, 0.510432, 0.019490, 0.000000, 1.000000, 0.000000, 0.000000, 3.830421, -37.308361, 55.869492, -0.883148, -0.178814, -0.433676, 0.417860, 0.063412, 0.000000, 1.000000, 0.000000, 0.000000, 3.921711, -36.536129, 55.365177, -0.883148, -0.178814, -0.433676, 0.429026, 0.083997, 0.000000, 1.000000, 0.000000, 0.000000, 6.061909, -39.588398, 52.265339, -0.883148, -0.178814, -0.433676, 0.510432, 0.019490, 0.000000, 1.000000, 0.000000, 0.000000, 3.921711, -36.536129, 55.365177, -0.986854, 0.152183, 0.054394, 0.429026, 0.083997, 0.000000, 1.000000, 0.000000, 0.000000, 3.830421, -37.308361, 55.869492, -0.986854, 0.152183, 0.054394, 0.417860, 0.063412, 0.000000, 1.000000, 0.000000, 0.000000, 4.793809, -32.404839, 59.628853, -0.986854, 0.152183, 0.054394, 0.498386, 0.168897, 0.000000, 1.000000, 0.000000, 0.000000, 6.518176, -36.050308, 55.492733, 0.882712, 0.249440, -0.398244, 0.557019, 0.085591, 0.000000, 1.000000, 0.000000, 0.000000, 7.042967, -36.586010, 56.320400, 0.882712, 0.249440, -0.398244, 0.579044, 0.066946, 0.000000, 1.000000, 0.000000, 0.000000, 6.061909, -39.588398, 52.265339, 0.882712, 0.249440, -0.398244, 0.510432, 0.019490, 0.000000, 1.000000, 0.000000, 0.000000, 5.473663, -36.707016, 55.939365, 0.245551, -0.743304, 0.622257, 0.501778, 0.071602, 0.000000, 1.000000, 0.000000, 0.000000, 3.830421, -37.308361, 55.869492, 0.245551, -0.743304, 0.622257, 0.417860, 0.063412, 0.000000, 1.000000, 0.000000, 0.000000, 6.061909, -39.588398, 52.265339, 0.245551, -0.743304, 0.622257, 0.510432, 0.019490, 0.000000, 1.000000, 0.000000, 0.000000, 6.061909, -39.588398, 52.265339, -0.260563, 0.668770, -0.696314, 0.510432, 0.019490, 0.000000, 1.000000, 0.000000, 0.000000, 5.490365, -36.436222, 55.506695, -0.260563, 0.668770, -0.696314, 0.504823, 0.080015, 0.000000, 1.000000, 0.000000, 0.000000, 6.518176, -36.050308, 55.492733, -0.260563, 0.668770, -0.696314, 0.557019, 0.085591, 0.000000, 1.000000, 0.000000, 0.000000, 6.518176, -36.050308, 55.492733, -0.260267, 0.667945, -0.697216, 0.557019, 0.085591, 0.000000, 1.000000, 0.000000, 0.000000, 5.490365, -36.436222, 55.506695, -0.260267, 0.667945, -0.697216, 0.504823, 0.080015, 0.000000, 1.000000, 0.000000, 0.000000, 4.793809, -32.404839, 59.628853, -0.260267, 0.667945, -0.697216, 0.498386, 0.168897, 0.000000, 1.000000, 0.000000, 0.000000, 5.490365, -36.436222, 55.506695, 0.017312, 0.716289, -0.697589, 0.504823, 0.080015, 0.000000, 1.000000, 0.000000, 0.000000, 3.921711, -36.536129, 55.365177, 0.017312, 0.716289, -0.697589, 0.429026, 0.083997, 0.000000, 1.000000, 0.000000, 0.000000, 4.793809, -32.404839, 59.628853, 0.017312, 0.716289, -0.697589, 0.498386, 0.168897, 0.000000, 1.000000, 0.000000, 0.000000, 3.921711, -36.536129, 55.365177, 0.017000, 0.718293, -0.695533, 0.429026, 0.083997, 0.000000, 1.000000, 0.000000, 0.000000, 5.490365, -36.436222, 55.506695, 0.017000, 0.718293, -0.695533, 0.504823, 0.080015, 0.000000, 1.000000, 0.000000, 0.000000, 6.061909, -39.588398, 52.265339, 0.017000, 0.718293, -0.695533, 0.510432, 0.019490, 0.000000, 1.000000, 0.000000, 0.000000, 5.473663, -36.707016, 55.939365, 0.194807, -0.620593, 0.759549, 0.501778, 0.071602, 0.000000, 1.000000, 0.000000, 0.000000, 4.793809, -32.404839, 59.628853, 0.194807, -0.620593, 0.759549, 0.498386, 0.168897, 0.000000, 1.000000, 0.000000, 0.000000, 3.830421, -37.308361, 55.869492, 0.194807, -0.620593, 0.759549, 0.417860, 0.063412, 0.000000, 1.000000, 0.000000, 0.000000, 2.444320, -10.823428, 61.759724, -0.181229, -0.902019, 0.391814, 0.494582, 0.743080, 1.000000, 1.000000, 0.000000, 0.000000, 8.693048, -10.796963, 64.710930, -0.181229, -0.902019, 0.391814, 0.854982, 0.746930, 1.000000, 1.000000, 0.000000, 0.000000, 2.020907, -9.926061, 63.814583, -0.181229, -0.902019, 0.391814, 0.479226, 0.790524, 1.000000, 1.000000, 0.000000, 0.000000, 9.699430, -11.824640, 62.995361, -0.181229, -0.902019, 0.391814, 0.887994, 0.697448, 1.000000, 1.000000, 0.000000, 0.000000, 2.020907, -9.926061, 63.814583, 0.483448, -0.726518, 0.488314, 0.479226, 0.790524, 1.000000, 1.000000, 0.000000, 0.000000, -3.224520, -13.540356, 63.329803, 0.483448, -0.726518, 0.488314, 0.156162, 0.707543, 1.000000, 1.000000, 0.000000, 0.000000, -2.549087, -14.540578, 61.473511, 0.483448, -0.726518, 0.488314, 0.196687, 0.661900, 1.000000, 1.000000, 0.000000, 0.000000, 2.444320, -10.823428, 61.759724, 0.483448, -0.726518, 0.488314, 0.494582, 0.743080, 1.000000, 1.000000, 0.000000, 0.000000, 9.699430, -11.824640, 62.995361, 0.133397, -0.224648, -0.965266, 0.887994, 0.697448, 1.000000, 1.000000, 0.000000, 0.000000, 2.444320, -10.823428, 61.759724, 0.133397, -0.224648, -0.965266, 0.494582, 0.743080, 1.000000, 1.000000, 0.000000, 0.000000, 0.100616, 0.113533, 58.890453, 0.133397, -0.224648, -0.965266, 0.505777, 0.985384, 1.000000, 1.000000, 0.000000, 0.000000, 9.699430, -11.824640, 62.995361, 0.766269, 0.639049, 0.066698, 0.887994, 0.697448, 1.000000, 1.000000, 0.000000, 0.000000, 0.100616, 0.113533, 58.890453, 0.766269, 0.639049, 0.066698, 0.505777, 0.985384, 1.000000, 1.000000, 0.000000, 0.000000, 8.693048, -10.796963, 64.710930, 0.766269, 0.639049, 0.066698, 0.854982, 0.746930, 1.000000, 1.000000, 0.000000, 0.000000, 8.693048, -10.796963, 64.710930, -0.064967, 0.429382, 0.900783, 0.854982, 0.746930, 1.000000, 1.000000, 0.000000, 0.000000, 0.100616, 0.113533, 58.890453, -0.064967, 0.429382, 0.900783, 0.505777, 0.985384, 1.000000, 1.000000, 0.000000, 0.000000, 2.020907, -9.926061, 63.814583, -0.064967, 0.429382, 0.900783, 0.479226, 0.790524, 1.000000, 1.000000, 0.000000, 0.000000, 2.020907, -9.926061, 63.814583, -0.331083, 0.363719, 0.870685, 0.479226, 0.790524, 1.000000, 1.000000, 0.000000, 0.000000, 0.100616, 0.113533, 58.890453, -0.331083, 0.363719, 0.870685, 0.505777, 0.985384, 1.000000, 1.000000, 0.000000, 0.000000, -3.224520, -13.540356, 63.329803, -0.331083, 0.363719, 0.870685, 0.156162, 0.707543, 1.000000, 1.000000, 0.000000, 0.000000, -3.224520, -13.540356, 63.329803, -0.917150, 0.097730, -0.386374, 0.156162, 0.707543, 1.000000, 1.000000, 0.000000, 0.000000, 0.100616, 0.113533, 58.890453, -0.917150, 0.097730, -0.386374, 0.505777, 0.985384, 1.000000, 1.000000, 0.000000, 0.000000, -2.549087, -14.540578, 61.473511, -0.917150, 0.097730, -0.386374, 0.196687, 0.661900, 1.000000, 1.000000, 0.000000, 0.000000, -2.549087, -14.540578, 61.473511, 0.208291, -0.206190, -0.956086, 0.196687, 0.661900, 1.000000, 1.000000, 0.000000, 0.000000, 0.100616, 0.113533, 58.890453, 0.208291, -0.206190, -0.956086, 0.505777, 0.985384, 1.000000, 1.000000, 0.000000, 0.000000, 2.444320, -10.823428, 61.759724, 0.208291, -0.206190, -0.956086, 0.494582, 0.743080, 1.000000, 1.000000, 0.000000, 0.000000, 3.990225, -20.884020, 62.521610, -0.047496, -0.978538, 0.200518, 0.503059, 0.471121, 2.000000, 1.000000, 0.000000, 0.000000, 10.922590, -20.502230, 66.026833, -0.047496, -0.978538, 0.200518, 0.913422, 0.464291, 2.000000, 1.000000, 0.000000, 0.000000, 3.841774, -20.415180, 65.003853, -0.047496, -0.978538, 0.200518, 0.491895, 0.494150, 2.000000, 1.000000, 0.000000, 0.000000, 11.597116, -21.173470, 63.140358, -0.047496, -0.978538, 0.200518, 0.917641, 0.431873, 2.000000, 1.000000, 0.000000, 0.000000, 3.841774, -20.415180, 65.003853, 0.386796, -0.885289, 0.258172, 0.491895, 0.494150, 2.000000, 1.000000, 0.000000, 0.000000, -2.370672, -22.782269, 65.542358, 0.386796, -0.885289, 0.258172, 0.104770, 0.455052, 2.000000, 1.000000, 0.000000, 0.000000, -1.890430, -23.635546, 62.549057, 0.386796, -0.885289, 0.258172, 0.148340, 0.419076, 2.000000, 1.000000, 0.000000, 0.000000, 3.990225, -20.884020, 62.521610, 0.386796, -0.885289, 0.258172, 0.503059, 0.471121, 2.000000, 1.000000, 0.000000, 0.000000, 11.597116, -21.173470, 63.140358, 0.081191, 0.003116, -0.996694, 0.917641, 0.431873, 2.000000, 1.000000, 0.000000, 0.000000, 3.990225, -20.884020, 62.521610, 0.081191, 0.003116, -0.996694, 0.503059, 0.471121, 2.000000, 1.000000, 0.000000, 0.000000, 2.184502, -8.152877, 62.414322, 0.081191, 0.003116, -0.996694, 0.502877, 0.822643, 2.000000, 1.000000, 0.000000, 0.000000, 11.597116, -21.173470, 63.140358, 0.807922, 0.586964, 0.052302, 0.917641, 0.431873, 2.000000, 1.000000, 0.000000, 0.000000, 2.184502, -8.152877, 62.414322, 0.807922, 0.586964, 0.052302, 0.502877, 0.822643, 2.000000, 1.000000, 0.000000, 0.000000, 10.922590, -20.502230, 66.026833, 0.807922, 0.586964, 0.052302, 0.913422, 0.464291, 2.000000, 1.000000, 0.000000, 0.000000, 10.922590, -20.502230, 66.026833, -0.138226, 0.186719, 0.972641, 0.913422, 0.464291, 2.000000, 1.000000, 0.000000, 0.000000, 2.184502, -8.152877, 62.414322, -0.138226, 0.186719, 0.972641, 0.502877, 0.822643, 2.000000, 1.000000, 0.000000, 0.000000, 3.841774, -20.415180, 65.003853, -0.138226, 0.186719, 0.972641, 0.491895, 0.494150, 2.000000, 1.000000, 0.000000, 0.000000, 3.841774, -20.415180, 65.003853, 0.005784, 0.207366, 0.978246, 0.491895, 0.494150, 2.000000, 1.000000, 0.000000, 0.000000, 2.184502, -8.152877, 62.414322, 0.005784, 0.207366, 0.978246, 0.502877, 0.822643, 2.000000, 1.000000, 0.000000, 0.000000, -2.370672, -22.782269, 65.542358, 0.005784, 0.207366, 0.978246, 0.104770, 0.455052, 2.000000, 1.000000, 0.000000, 0.000000, -2.370672, -22.782269, 65.542358, -0.943493, 0.246393, -0.221611, 0.104770, 0.455052, 2.000000, 1.000000, 0.000000, 0.000000, 2.184502, -8.152877, 62.414322, -0.943493, 0.246393, -0.221611, 0.502877, 0.822643, 2.000000, 1.000000, 0.000000, 0.000000, -1.890430, -23.635546, 62.549057, -0.943493, 0.246393, -0.221611, 0.148340, 0.419076, 2.000000, 1.000000, 0.000000, 0.000000, -1.890430, -23.635546, 62.549057, -0.000680, -0.008523, -0.999963, 0.148340, 0.419076, 2.000000, 1.000000, 0.000000, 0.000000, 2.184502, -8.152877, 62.414322, -0.000680, -0.008523, -0.999963, 0.502877, 0.822643, 2.000000, 1.000000, 0.000000, 0.000000, 3.990225, -20.884020, 62.521610, -0.000680, -0.008523, -0.999963, 0.503059, 0.471121, 2.000000, 1.000000, 0.000000, 0.000000, 11.145486, -29.642670, 62.373020, -0.155804, -0.973674, -0.166383, 0.815995, 0.198619, 3.000000, 1.000000, 0.000000, 0.000000, 4.451746, -28.288771, 60.718124, -0.155804, -0.973674, -0.166383, 0.500140, 0.263978, 3.000000, 1.000000, 0.000000, 0.000000, 11.221374, -29.341869, 60.195744, -0.155804, -0.973674, -0.166383, 0.806967, 0.210609, 3.000000, 1.000000, 0.000000, 0.000000, 4.595603, -28.680717, 62.531151, -0.155804, -0.973674, -0.166383, 0.501453, 0.251368, 3.000000, 1.000000, 0.000000, 0.000000, 0.598054, -30.243622, 62.949726, 0.366304, -0.915022, -0.168985, 0.226585, 0.225689, 3.000000, 1.000000, 0.000000, 0.000000, 4.451746, -28.288771, 60.718124, 0.366304, -0.915022, -0.168985, 0.500140, 0.263978, 3.000000, 1.000000, 0.000000, 0.000000, 4.595603, -28.680717, 62.531151, 0.366304, -0.915022, -0.168985, 0.501453, 0.251368, 3.000000, 1.000000, 0.000000, 0.000000, 0.458724, -29.986164, 60.632492, 0.366304, -0.915022, -0.168985, 0.233625, 0.236460, 3.000000, 1.000000, 0.000000, 0.000000, 11.221374, -29.341869, 60.195744, -0.011286, 0.385179, -0.922773, 0.806967, 0.210609, 3.000000, 1.000000, 0.000000, 0.000000, 4.451746, -28.288771, 60.718124, -0.011286, 0.385179, -0.922773, 0.500140, 0.263978, 3.000000, 1.000000, 0.000000, 0.000000, 4.290168, -19.488644, 64.393402, -0.011286, 0.385179, -0.922773, 0.505028, 0.505626, 3.000000, 1.000000, 0.000000, 0.000000, 11.221374, -29.341869, 60.195744, 0.833775, 0.542226, 0.103972, 0.806967, 0.210609, 3.000000, 1.000000, 0.000000, 0.000000, 4.290168, -19.488644, 64.393402, 0.833775, 0.542226, 0.103972, 0.505028, 0.505626, 3.000000, 1.000000, 0.000000, 0.000000, 11.145486, -29.642670, 62.373020, 0.833775, 0.542226, 0.103972, 0.815995, 0.198619, 3.000000, 1.000000, 0.000000, 0.000000, 11.145486, -29.642670, 62.373020, -0.005525, -0.198733, 0.980038, 0.815995, 0.198619, 3.000000, 1.000000, 0.000000, 0.000000, 4.290168, -19.488644, 64.393402, -0.005525, -0.198733, 0.980038, 0.505028, 0.505626, 3.000000, 1.000000, 0.000000, 0.000000, 4.595603, -28.680717, 62.531151, -0.005525, -0.198733, 0.980038, 0.501453, 0.251368, 3.000000, 1.000000, 0.000000, 0.000000, 4.595603, -28.680717, 62.531151, 0.175385, -0.189880, 0.966015, 0.501453, 0.251368, 3.000000, 1.000000, 0.000000, 0.000000, 4.290168, -19.488644, 64.393402, 0.175385, -0.189880, 0.966015, 0.505028, 0.505626, 3.000000, 1.000000, 0.000000, 0.000000, 0.598054, -30.243622, 62.949726, 0.175385, -0.189880, 0.966015, 0.226585, 0.225689, 3.000000, 1.000000, 0.000000, 0.000000, 0.598054, -30.243622, 62.949726, -0.945557, 0.312314, 0.091554, 0.226585, 0.225689, 3.000000, 1.000000, 0.000000, 0.000000, 4.290168, -19.488644, 64.393402, -0.945557, 0.312314, 0.091554, 0.505028, 0.505626, 3.000000, 1.000000, 0.000000, 0.000000, 0.458724, -29.986164, 60.632492, -0.945557, 0.312314, 0.091554, 0.233625, 0.236460, 3.000000, 1.000000, 0.000000, 0.000000, 0.458724, -29.986164, 60.632492, -0.141620, 0.379281, -0.914379, 0.233625, 0.236460, 3.000000, 1.000000, 0.000000, 0.000000, 4.290168, -19.488644, 64.393402, -0.141620, 0.379281, -0.914379, 0.505028, 0.505626, 3.000000, 1.000000, 0.000000, 0.000000, 4.451746, -28.288771, 60.718124, -0.141620, 0.379281, -0.914379, 0.500140, 0.263978, 3.000000, 1.000000, 0.000000, 0.000000, 8.299394, -34.213310, 58.075569, -0.185828, -0.901545, -0.390749, 0.608615, 0.102303, 4.000000, 1.000000, 0.000000, 0.000000, 4.515775, -33.253788, 57.661114, -0.185828, -0.901545, -0.390749, 0.512572, 0.142518, 4.000000, 1.000000, 0.000000, 0.000000, 8.096044, -33.570045, 56.826633, -0.185828, -0.901545, -0.390749, 0.600214, 0.123668, 4.000000, 1.000000, 0.000000, 0.000000, 4.906841, -33.870853, 59.037354, -0.185828, -0.901545, -0.390749, 0.508413, 0.109250, 4.000000, 1.000000, 0.000000, 0.000000, 2.683352, -34.820454, 59.268032, 0.394566, -0.841058, -0.370052, 0.316640, 0.104134, 4.000000, 1.000000, 0.000000, 0.000000, 4.515775, -33.253788, 57.661114, 0.394566, -0.841058, -0.370052, 0.512572, 0.142518, 4.000000, 1.000000, 0.000000, 0.000000, 4.906841, -33.870853, 59.037354, 0.394566, -0.841058, -0.370052, 0.508413, 0.109250, 4.000000, 1.000000, 0.000000, 0.000000, 2.620972, -34.252995, 57.468582, 0.394566, -0.841058, -0.370052, 0.323666, 0.125364, 4.000000, 1.000000, 0.000000, 0.000000, 8.096044, -33.570045, 56.826633, -0.139207, 0.566736, -0.812054, 0.600214, 0.123668, 4.000000, 1.000000, 0.000000, 0.000000, 4.515775, -33.253788, 57.661114, -0.139207, 0.566736, -0.812054, 0.512572, 0.142518, 4.000000, 1.000000, 0.000000, 0.000000, 4.808340, -26.739180, 62.157539, -0.139207, 0.566736, -0.812054, 0.491084, 0.305296, 4.000000, 1.000000, 0.000000, 0.000000, 8.096044, -33.570045, 56.826633, 0.915933, 0.397464, 0.055583, 0.600214, 0.123668, 4.000000, 1.000000, 0.000000, 0.000000, 4.808340, -26.739180, 62.157539, 0.915933, 0.397464, 0.055583, 0.491084, 0.305296, 4.000000, 1.000000, 0.000000, 0.000000, 8.299394, -34.213310, 58.075569, 0.915933, 0.397464, 0.055583, 0.608615, 0.102303, 4.000000, 1.000000, 0.000000, 0.000000, 8.299394, -34.213310, 58.075569, 0.214714, -0.388988, 0.895872, 0.608615, 0.102303, 4.000000, 1.000000, 0.000000, 0.000000, 4.808340, -26.739180, 62.157539, 0.214714, -0.388988, 0.895872, 0.491084, 0.305296, 4.000000, 1.000000, 0.000000, 0.000000, 4.906841, -33.870853, 59.037354, 0.214714, -0.388988, 0.895872, 0.508413, 0.109250, 4.000000, 1.000000, 0.000000, 0.000000, 4.906841, -33.870853, 59.037354, 0.256209, -0.384476, 0.886868, 0.508413, 0.109250, 4.000000, 1.000000, 0.000000, 0.000000, 4.808340, -26.739180, 62.157539, 0.256209, -0.384476, 0.886868, 0.491084, 0.305296, 4.000000, 1.000000, 0.000000, 0.000000, 2.683352, -34.820454, 59.268032, 0.256209, -0.384476, 0.886868, 0.316640, 0.104134, 4.000000, 1.000000, 0.000000, 0.000000, 2.683352, -34.820454, 59.268032, -0.970431, 0.218510, 0.102548, 0.316640, 0.104134, 4.000000, 1.000000, 0.000000, 0.000000, 4.808340, -26.739180, 62.157539, -0.970431, 0.218510, 0.102548, 0.491084, 0.305296, 4.000000, 1.000000, 0.000000, 0.000000, 2.620972, -34.252995, 57.468582, -0.970431, 0.218510, 0.102548, 0.323666, 0.125364, 4.000000, 1.000000, 0.000000, 0.000000, 2.620972, -34.252995, 57.468582, -0.214782, 0.561299, -0.799257, 0.323666, 0.125364, 4.000000, 1.000000, 0.000000, 0.000000, 4.808340, -26.739180, 62.157539, -0.214782, 0.561299, -0.799257, 0.491084, 0.305296, 4.000000, 1.000000, 0.000000, 0.000000, 4.515775, -33.253788, 57.661114, -0.214782, 0.561299, -0.799257, 0.512572, 0.142518, 4.000000, 1.000000, 0.000000, 0.000000, -27.366894, 24.545547, 56.426487, -0.313198, 0.657828, 0.684959, 0.639659, 0.156025, 5.000000, 1.000000, 0.000000, 0.000000, -22.771854, 22.898987, 60.108894, -0.313198, 0.657828, 0.684959, 0.506997, 0.273308, 5.000000, 1.000000, 0.000000, 0.000000, -26.069820, 25.638115, 55.970280, -0.313198, 0.657828, 0.684959, 0.506091, 0.130285, 5.000000, 1.000000, 0.000000, 0.000000, -22.771854, 22.898987, 60.108894, -0.263665, -0.959418, -0.099986, 0.506997, 0.273308, 5.000000, 1.000000, 0.000000, 0.000000, -27.366894, 24.545547, 56.426487, -0.263665, -0.959418, -0.099986, 0.639659, 0.156025, 5.000000, 1.000000, 0.000000, 0.000000, -26.624046, 24.428255, 55.593094, -0.263665, -0.959418, -0.099986, 0.570629, 0.148880, 5.000000, 1.000000, 0.000000, 0.000000, -27.366894, 24.545547, 56.426487, -0.388831, 0.707847, 0.589714, 0.639659, 0.156025, 5.000000, 1.000000, 0.000000, 0.000000, -26.069820, 25.638115, 55.970280, -0.388831, 0.707847, 0.589714, 0.506091, 0.130285, 5.000000, 1.000000, 0.000000, 0.000000, -28.191605, 27.600843, 52.215359, -0.388831, 0.707847, 0.589714, 0.517448, 0.032564, 5.000000, 1.000000, 0.000000, 0.000000, -25.058994, 27.126598, 55.869499, 0.605073, 0.668834, -0.431911, 0.416794, 0.111254, 5.000000, 1.000000, 0.000000, 0.000000, -24.672882, 26.451622, 55.365185, 0.605073, 0.668834, -0.431911, 0.429196, 0.133201, 5.000000, 1.000000, 0.000000, 0.000000, -28.191605, 27.600843, 52.215359, 0.605073, 0.668834, -0.431911, 0.517448, 0.032564, 5.000000, 1.000000, 0.000000, 0.000000, -24.672882, 26.451622, 55.365185, 0.872853, 0.487738, 0.015480, 0.429196, 0.133201, 5.000000, 1.000000, 0.000000, 0.000000, -25.058994, 27.126598, 55.869499, 0.872853, 0.487738, 0.015480, 0.416794, 0.111254, 5.000000, 1.000000, 0.000000, 0.000000, -22.771854, 22.898987, 60.108894, 0.872853, 0.487738, 0.015480, 0.506997, 0.273308, 5.000000, 1.000000, 0.000000, 0.000000, -26.624046, 24.428255, 55.593094, -0.569252, -0.714434, -0.406861, 0.570629, 0.148880, 5.000000, 1.000000, 0.000000, 0.000000, -27.366894, 24.545547, 56.426487, -0.569252, -0.714434, -0.406861, 0.639659, 0.156025, 5.000000, 1.000000, 0.000000, 0.000000, -28.191605, 27.600843, 52.215359, -0.569252, -0.714434, -0.406861, 0.517448, 0.032564, 5.000000, 1.000000, 0.000000, 0.000000, -26.069820, 25.638115, 55.970280, -0.637218, 0.473883, 0.607773, 0.506091, 0.130285, 5.000000, 1.000000, 0.000000, 0.000000, -25.058994, 27.126598, 55.869499, -0.637218, 0.473883, 0.607773, 0.416794, 0.111254, 5.000000, 1.000000, 0.000000, 0.000000, -28.191605, 27.600843, 52.215359, -0.637218, 0.473883, 0.607773, 0.517448, 0.032564, 5.000000, 1.000000, 0.000000, 0.000000, -28.191605, 27.600843, 52.215359, 0.574988, -0.446098, -0.685847, 0.517448, 0.032564, 5.000000, 1.000000, 0.000000, 0.000000, -25.927059, 25.407770, 55.540314, 0.574988, -0.446098, -0.685847, 0.511429, 0.137157, 5.000000, 1.000000, 0.000000, 0.000000, -26.624046, 24.428255, 55.593094, 0.574988, -0.446098, -0.685847, 0.570629, 0.148880, 5.000000, 1.000000, 0.000000, 0.000000, -26.624046, 24.428255, 55.593094, 0.593686, -0.458095, -0.661578, 0.570629, 0.148880, 5.000000, 1.000000, 0.000000, 0.000000, -25.927059, 25.407770, 55.540314, 0.593686, -0.458095, -0.661578, 0.511429, 0.137157, 5.000000, 1.000000, 0.000000, 0.000000, -22.771854, 22.898987, 60.108894, 0.593686, -0.458095, -0.661578, 0.506997, 0.273308, 5.000000, 1.000000, 0.000000, 0.000000, -25.927059, 25.407770, 55.540314, 0.433635, -0.629222, -0.645012, 0.511429, 0.137157, 5.000000, 1.000000, 0.000000, 0.000000, -24.672882, 26.451622, 55.365185, 0.433635, -0.629222, -0.645012, 0.429196, 0.133201, 5.000000, 1.000000, 0.000000, 0.000000, -22.771854, 22.898987, 60.108894, 0.433635, -0.629222, -0.645012, 0.506997, 0.273308, 5.000000, 1.000000, 0.000000, 0.000000, -24.672882, 26.451622, 55.365185, 0.410504, -0.607334, -0.680171, 0.429196, 0.133201, 5.000000, 1.000000, 0.000000, 0.000000, -25.927059, 25.407770, 55.540314, 0.410504, -0.607334, -0.680171, 0.511429, 0.137157, 5.000000, 1.000000, 0.000000, 0.000000, -28.191605, 27.600843, 52.215359, 0.410504, -0.607334, -0.680171, 0.517448, 0.032564, 5.000000, 1.000000, 0.000000, 0.000000, -26.069820, 25.638115, 55.970280, -0.551190, 0.423010, 0.719202, 0.506091, 0.130285, 5.000000, 1.000000, 0.000000, 0.000000, -22.771854, 22.898987, 60.108894, -0.551190, 0.423010, 0.719202, 0.506997, 0.273308, 5.000000, 1.000000, 0.000000, 0.000000, -25.058994, 27.126598, 55.869499, -0.551190, 0.423010, 0.719202, 0.416794, 0.111254, 5.000000, 1.000000, 0.000000, 0.000000, -8.788172, 5.686281, 62.159115, -0.411463, 0.821353, 0.395066, 0.521960, 0.811375, 6.000000, 1.000000, 0.000000, 0.000000, -14.109292, 1.583968, 65.145966, -0.411463, 0.821353, 0.395066, 0.873549, 0.717437, 6.000000, 1.000000, 0.000000, 0.000000, -8.117209, 4.908809, 64.313950, -0.411463, 0.821353, 0.395066, 0.505907, 0.854870, 6.000000, 1.000000, 0.000000, 0.000000, -15.586782, 1.823941, 62.947880, -0.411463, 0.821353, 0.395066, 0.868911, 0.687675, 6.000000, 1.000000, 0.000000, 0.000000, -3.930405, 13.493818, 63.386971, -0.776683, 0.407739, 0.480118, 0.116568, 0.751269, 6.000000, 1.000000, 0.000000, 0.000000, -8.788172, 5.686281, 62.159115, -0.776683, 0.407739, 0.480118, 0.521960, 0.811375, 6.000000, 1.000000, 0.000000, 0.000000, -8.117209, 4.908809, 64.313950, -0.776683, 0.407739, 0.480118, 0.505907, 0.854870, 6.000000, 1.000000, 0.000000, 0.000000, -5.380909, 14.018780, 61.003830, -0.776683, 0.407739, 0.480118, 0.175160, 0.701588, 6.000000, 1.000000, 0.000000, 0.000000, -15.586782, 1.823941, 62.947880, -0.216357, 0.185071, -0.958613, 0.868911, 0.687675, 6.000000, 1.000000, 0.000000, 0.000000, -8.788172, 5.686281, 62.159115, -0.216357, 0.185071, -0.958613, 0.521960, 0.811375, 6.000000, 1.000000, 0.000000, 0.000000, 0.205101, -0.730863, 58.890453, -0.216357, 0.185071, -0.958613, 0.499260, 0.959610, 6.000000, 1.000000, 0.000000, 0.000000, -15.586782, 1.823941, 62.947880, -0.159794, -0.987150, -0.000362, 0.868911, 0.687675, 6.000000, 1.000000, 0.000000, 0.000000, 0.205101, -0.730863, 58.890453, -0.159794, -0.987150, -0.000362, 0.499260, 0.959610, 6.000000, 1.000000, 0.000000, 0.000000, -14.109292, 1.583968, 65.145966, -0.159794, -0.987150, -0.000362, 0.873549, 0.717437, 6.000000, 1.000000, 0.000000, 0.000000, -14.109292, 1.583968, 65.145966, 0.323051, -0.363555, 0.873765, 0.873549, 0.717437, 6.000000, 1.000000, 0.000000, 0.000000, 0.205101, -0.730863, 58.890453, 0.323051, -0.363555, 0.873765, 0.499260, 0.959610, 6.000000, 1.000000, 0.000000, 0.000000, -8.117209, 4.908809, 64.313950, 0.323051, -0.363555, 0.873765, 0.505907, 0.854870, 6.000000, 1.000000, 0.000000, 0.000000, -8.117209, 4.908809, 64.313950, 0.473888, -0.137188, 0.869833, 0.505907, 0.854870, 6.000000, 1.000000, 0.000000, 0.000000, 0.205101, -0.730863, 58.890453, 0.473888, -0.137188, 0.869833, 0.499260, 0.959610, 6.000000, 1.000000, 0.000000, 0.000000, -3.930405, 13.493818, 63.386971, 0.473888, -0.137188, 0.869833, 0.116568, 0.751269, 6.000000, 1.000000, 0.000000, 0.000000, -3.930405, 13.493818, 63.386971, 0.826686, 0.373394, -0.420913, 0.116568, 0.751269, 6.000000, 1.000000, 0.000000, 0.000000, 0.205101, -0.730863, 58.890453, 0.826686, 0.373394, -0.420913, 0.499260, 0.959610, 6.000000, 1.000000, 0.000000, 0.000000, -5.380909, 14.018780, 61.003830, 0.826686, 0.373394, -0.420913, 0.175160, 0.701588, 6.000000, 1.000000, 0.000000, 0.000000, -5.380909, 14.018780, 61.003830, -0.336999, 0.007269, -0.941477, 0.175160, 0.701588, 6.000000, 1.000000, 0.000000, 0.000000, 0.205101, -0.730863, 58.890453, -0.336999, 0.007269, -0.941477, 0.499260, 0.959610, 6.000000, 1.000000, 0.000000, 0.000000, -8.788172, 5.686281, 62.159115, -0.336999, 0.007269, -0.941477, 0.521960, 0.811375, 6.000000, 1.000000, 0.000000, 0.000000, -15.414235, 13.825259, 62.535156, -0.540228, 0.813783, 0.214268, 0.505085, 0.594773, 7.000000, 1.000000, 0.000000, 0.000000, -20.710102, 9.416151, 65.928452, -0.540228, 0.813783, 0.214268, 0.739306, 0.594416, 7.000000, 1.000000, 0.000000, 0.000000, -15.140126, 13.386511, 65.063087, -0.540228, 0.813783, 0.214268, 0.487323, 0.630770, 7.000000, 1.000000, 0.000000, 0.000000, -21.700836, 9.537443, 63.140362, -0.540228, 0.813783, 0.214268, 0.813782, 0.543827, 7.000000, 1.000000, 0.000000, 0.000000, -11.431144, 19.144070, 65.546349, -0.837617, 0.485321, 0.250723, 0.146940, 0.571688, 7.000000, 1.000000, 0.000000, 0.000000, -15.414235, 13.825259, 62.535156, -0.837617, 0.485321, 0.250723, 0.505085, 0.594773, 7.000000, 1.000000, 0.000000, 0.000000, -15.140126, 13.386511, 65.063087, -0.837617, 0.485321, 0.250723, 0.487323, 0.630770, 7.000000, 1.000000, 0.000000, 0.000000, -12.325212, 19.546551, 62.543259, -0.837617, 0.485321, 0.250723, 0.204929, 0.524528, 7.000000, 1.000000, 0.000000, 0.000000, -21.700836, 9.537443, 63.140362, -0.048039, -0.070204, -0.996375, 0.813782, 0.543827, 7.000000, 1.000000, 0.000000, 0.000000, -15.414235, 13.825259, 62.535156, -0.048039, -0.070204, -0.996375, 0.505085, 0.594773, 7.000000, 1.000000, 0.000000, 0.000000, -7.089207, 3.523776, 62.859634, -0.048039, -0.070204, -0.996375, 0.522170, 0.870154, 7.000000, 1.000000, 0.000000, 0.000000, -21.700836, 9.537443, 63.140362, -0.377362, -0.921281, 0.094015, 0.813782, 0.543827, 7.000000, 1.000000, 0.000000, 0.000000, -7.089207, 3.523776, 62.859634, -0.377362, -0.921281, 0.094015, 0.522170, 0.870154, 7.000000, 1.000000, 0.000000, 0.000000, -20.710102, 9.416151, 65.928452, -0.377362, -0.921281, 0.094015, 0.739306, 0.594416, 7.000000, 1.000000, 0.000000, 0.000000, -20.710102, 9.416151, 65.928452, 0.194717, -0.059781, 0.979036, 0.739306, 0.594416, 7.000000, 1.000000, 0.000000, 0.000000, -7.089207, 3.523776, 62.859634, 0.194717, -0.059781, 0.979036, 0.522170, 0.870154, 7.000000, 1.000000, 0.000000, 0.000000, -15.140126, 13.386511, 65.063087, 0.194717, -0.059781, 0.979036, 0.487323, 0.630770, 7.000000, 1.000000, 0.000000, 0.000000, -15.140126, 13.386511, 65.063087, 0.094087, -0.143302, 0.985196, 0.487323, 0.630770, 7.000000, 1.000000, 0.000000, 0.000000, -7.089207, 3.523776, 62.859634, 0.094087, -0.143302, 0.985196, 0.522170, 0.870154, 7.000000, 1.000000, 0.000000, 0.000000, -11.431144, 19.144070, 65.546349, 0.094087, -0.143302, 0.985196, 0.146940, 0.571688, 7.000000, 1.000000, 0.000000, 0.000000, -11.431144, 19.144070, 65.546349, 0.925154, 0.297677, -0.235539, 0.146940, 0.571688, 7.000000, 1.000000, 0.000000, 0.000000, -7.089207, 3.523776, 62.859634, 0.925154, 0.297677, -0.235539, 0.522170, 0.870154, 7.000000, 1.000000, 0.000000, 0.000000, -12.325212, 19.546551, 62.543259, 0.925154, 0.297677, -0.235539, 0.204929, 0.524528, 7.000000, 1.000000, 0.000000, 0.000000, -12.325212, 19.546551, 62.543259, 0.024408, -0.011762, -0.999633, 0.204929, 0.524528, 7.000000, 1.000000, 0.000000, 0.000000, -7.089207, 3.523776, 62.859634, 0.024408, -0.011762, -0.999633, 0.522170, 0.870154, 7.000000, 1.000000, 0.000000, 0.000000, -15.414235, 13.825259, 62.535156, 0.024408, -0.011762, -0.999633, 0.505085, 0.594773, 7.000000, 1.000000, 0.000000, 0.000000, -20.651783, 19.679636, 62.625507, -0.456460, 0.876020, -0.155669, 0.510694, 0.397485, 8.000000, 1.000000, 0.000000, 0.000000, -26.259113, 16.326107, 60.195736, -0.456460, 0.876020, -0.155669, 0.861241, 0.367928, 8.000000, 1.000000, 0.000000, 0.000000, -26.377106, 16.613026, 62.373020, -0.456460, 0.876020, -0.155669, 0.849030, 0.373511, 8.000000, 1.000000, 0.000000, 0.000000, -20.132137, 19.588873, 60.807652, -0.456460, 0.876020, -0.155669, 0.509600, 0.395399, 8.000000, 0.872583, 7.000000, 0.127417, -20.651783, 19.679636, 62.625507, -0.838112, 0.510643, -0.191865, 0.510694, 0.397485, 8.000000, 1.000000, 0.000000, 0.000000, -18.235428, 23.574339, 63.129578, -0.838112, 0.510643, -0.191865, 0.271249, 0.350476, 8.000000, 1.000000, 0.000000, 0.000000, -17.955482, 23.392401, 60.728851, -0.838112, 0.510643, -0.191865, 0.297107, 0.344537, 8.000000, 1.000000, 0.000000, 0.000000, -20.132137, 19.588873, 60.807652, -0.838112, 0.510643, -0.191865, 0.509600, 0.395399, 8.000000, 0.872583, 7.000000, 0.127417, -26.259113, 16.326107, 60.195736, 0.248928, -0.294403, -0.922693, 0.861241, 0.367928, 8.000000, 1.000000, 0.000000, 0.000000, -20.132137, 19.588873, 60.807652, 0.248928, -0.294403, -0.922693, 0.509600, 0.395399, 8.000000, 0.872583, 7.000000, 0.127417, -14.894647, 12.404064, 64.513092, 0.248928, -0.294403, -0.922693, 0.514623, 0.647521, 8.000000, 1.000000, 0.000000, 0.000000, -26.259113, 16.326107, 60.195736, -0.359168, -0.927597, 0.102773, 0.861241, 0.367928, 8.000000, 1.000000, 0.000000, 0.000000, -14.894647, 12.404064, 64.513092, -0.359168, -0.927597, 0.102773, 0.514623, 0.647521, 8.000000, 1.000000, 0.000000, 0.000000, -26.377106, 16.613026, 62.373020, -0.359168, -0.927597, 0.102773, 0.849030, 0.373511, 8.000000, 1.000000, 0.000000, 0.000000, -26.377106, 16.613026, 62.373020, -0.125989, 0.154538, 0.979921, 0.849030, 0.373511, 8.000000, 1.000000, 0.000000, 0.000000, -14.894647, 12.404064, 64.513092, -0.125989, 0.154538, 0.979921, 0.514623, 0.647521, 8.000000, 1.000000, 0.000000, 0.000000, -20.651783, 19.679636, 62.625507, -0.125989, 0.154538, 0.979921, 0.510694, 0.397485, 8.000000, 1.000000, 0.000000, 0.000000, -20.651783, 19.679636, 62.625507, -0.265355, 0.039953, 0.963323, 0.510694, 0.397485, 8.000000, 1.000000, 0.000000, 0.000000, -14.894647, 12.404064, 64.513092, -0.265355, 0.039953, 0.963323, 0.514623, 0.647521, 8.000000, 1.000000, 0.000000, 0.000000, -18.235428, 23.574339, 63.129578, -0.265355, 0.039953, 0.963323, 0.271249, 0.350476, 8.000000, 1.000000, 0.000000, 0.000000, -18.235428, 23.574339, 63.129578, 0.951244, 0.295461, 0.088532, 0.271249, 0.350476, 8.000000, 1.000000, 0.000000, 0.000000, -14.894647, 12.404064, 64.513092, 0.951244, 0.295461, 0.088532, 0.514623, 0.647521, 8.000000, 1.000000, 0.000000, 0.000000, -17.955482, 23.392401, 60.728851, 0.951244, 0.295461, 0.088532, 0.297107, 0.344537, 8.000000, 1.000000, 0.000000, 0.000000, -17.955482, 23.392401, 60.728851, 0.347050, -0.217505, -0.912276, 0.297107, 0.344537, 8.000000, 1.000000, 0.000000, 0.000000, -14.894647, 12.404064, 64.513092, 0.347050, -0.217505, -0.912276, 0.514623, 0.647521, 8.000000, 1.000000, 0.000000, 0.000000, -20.132137, 19.588873, 60.807652, 0.347050, -0.217505, -0.912276, 0.509600, 0.395399, 8.000000, 0.872583, 7.000000, 0.127417, -23.847012, 23.897877, 59.352955, -0.437284, 0.826682, -0.354090, 0.522303, 0.227461, 9.000000, 1.000000, 0.000000, 0.000000, -26.194130, 21.632441, 56.962494, -0.437284, 0.826682, -0.354090, 0.708696, 0.231213, 9.000000, 1.000000, 0.000000, 0.000000, -26.577820, 22.116970, 58.689842, -0.437284, 0.826682, -0.354090, 0.698236, 0.220504, 9.000000, 1.000000, 0.000000, 0.000000, -23.158104, 23.577215, 57.875854, -0.437284, 0.826682, -0.354090, 0.518999, 0.240360, 9.000000, 1.000000, 0.000000, 0.000000, -23.847012, 23.897877, 59.352955, -0.831736, 0.401604, -0.383314, 0.522303, 0.227461, 9.000000, 1.000000, 0.000000, 0.000000, -22.796879, 25.804718, 59.425835, -0.831736, 0.401604, -0.383314, 0.412657, 0.199495, 9.000000, 1.000000, 0.000000, 0.000000, -22.273533, 25.403990, 57.516708, -0.831736, 0.401604, -0.383314, 0.426133, 0.210707, 9.000000, 1.000000, 0.000000, 0.000000, -23.158104, 23.577215, 57.875854, -0.831736, 0.401604, -0.383314, 0.518999, 0.240360, 9.000000, 1.000000, 0.000000, 0.000000, -26.194130, 21.632441, 56.962494, 0.462961, -0.337882, -0.819453, 0.708696, 0.231213, 9.000000, 1.000000, 0.000000, 0.000000, -23.158104, 23.577215, 57.875854, 0.462961, -0.337882, -0.819453, 0.518999, 0.240360, 9.000000, 1.000000, 0.000000, 0.000000, -19.536709, 18.096531, 62.181637, 0.462961, -0.337882, -0.819453, 0.511577, 0.441394, 9.000000, 1.000000, 0.000000, 0.000000, -26.194130, 21.632441, 56.962494, -0.535212, -0.836739, 0.115826, 0.708696, 0.231213, 9.000000, 1.000000, 0.000000, 0.000000, -19.536709, 18.096531, 62.181637, -0.535212, -0.836739, 0.115826, 0.511577, 0.441394, 9.000000, 1.000000, 0.000000, 0.000000, -26.577820, 22.116970, 58.689842, -0.535212, -0.836739, 0.115826, 0.698236, 0.220504, 9.000000, 1.000000, 0.000000, 0.000000, -26.577820, 22.116970, 58.689842, -0.346953, 0.190037, 0.918428, 0.698236, 0.220504, 9.000000, 1.000000, 0.000000, 0.000000, -19.536709, 18.096531, 62.181637, -0.346953, 0.190037, 0.918428, 0.511577, 0.441394, 9.000000, 1.000000, 0.000000, 0.000000, -23.847012, 23.897877, 59.352955, -0.346953, 0.190037, 0.918428, 0.522303, 0.227461, 9.000000, 1.000000, 0.000000, 0.000000, -23.847012, 23.897877, 59.352955, -0.371078, 0.169466, 0.913007, 0.522303, 0.227461, 9.000000, 1.000000, 0.000000, 0.000000, -19.536709, 18.096531, 62.181637, -0.371078, 0.169466, 0.913007, 0.511577, 0.441394, 9.000000, 1.000000, 0.000000, 0.000000, -22.796879, 25.804718, 59.425835, -0.371078, 0.169466, 0.913007, 0.412657, 0.199495, 9.000000, 1.000000, 0.000000, 0.000000, -22.796879, 25.804718, 59.425835, 0.889265, 0.430930, 0.153321, 0.412657, 0.199495, 9.000000, 1.000000, 0.000000, 0.000000, -19.536709, 18.096531, 62.181637, 0.889265, 0.430930, 0.153321, 0.511577, 0.441394, 9.000000, 1.000000, 0.000000, 0.000000, -22.273533, 25.403990, 57.516708, 0.889265, 0.430930, 0.153321, 0.426133, 0.210707, 9.000000, 1.000000, 0.000000, 0.000000, -22.273533, 25.403990, 57.516708, 0.425272, -0.368453, -0.826672, 0.426133, 0.210707, 9.000000, 1.000000, 0.000000, 0.000000, -19.536709, 18.096531, 62.181637, 0.425272, -0.368453, -0.826672, 0.511577, 0.441394, 9.000000, 1.000000, 0.000000, 0.000000, -23.158104, 23.577215, 57.875854, 0.425272, -0.368453, -0.826672, 0.518999, 0.240360, 9.000000, 1.000000, 0.000000, 0.000000, 29.120960, -6.832658, 43.104843, 0.847180, -0.388427, 0.362506, 0.583210, 0.045239, 0.000000, 1.000000, 0.000000, 0.000000, 26.729801, -7.491686, 47.986855, 0.847180, -0.388427, 0.362506, 0.493750, 0.111556, 0.000000, 1.000000, 0.000000, 0.000000, 28.494316, -8.289588, 43.008217, 0.847180, -0.388427, 0.362506, 0.499295, 0.050753, 0.000000, 1.000000, 0.000000, 0.000000, 26.729801, -7.491686, 47.986855, -0.299845, 0.953816, -0.018104, 0.493750, 0.111556, 0.000000, 1.000000, 0.000000, 0.000000, 29.120960, -6.832658, 43.104843, -0.299845, 0.953816, -0.018104, 0.583210, 0.045239, 0.000000, 1.000000, 0.000000, 0.000000, 28.216080, -7.124796, 42.700397, -0.299845, 0.953816, -0.018104, 0.558452, 0.066630, 0.000000, 1.000000, 0.000000, 0.000000, 29.120960, -6.832658, 43.104843, 0.856099, -0.390659, 0.338349, 0.583210, 0.045239, 0.000000, 1.000000, 0.000000, 0.000000, 28.494316, -8.289588, 43.008217, 0.856099, -0.390659, 0.338349, 0.499295, 0.050753, 0.000000, 1.000000, 0.000000, 0.000000, 29.594318, -9.306597, 39.050716, 0.856099, -0.390659, 0.338349, 0.487703, 0.010874, 0.000000, 1.000000, 0.000000, 0.000000, 28.507885, -10.025791, 43.156292, -0.327723, -0.912052, -0.246492, 0.407066, 0.037220, 0.000000, 1.000000, 0.000000, 0.000000, 27.746517, -9.707351, 42.990303, -0.327723, -0.912052, -0.246492, 0.415686, 0.059874, 0.000000, 1.000000, 0.000000, 0.000000, 29.594318, -9.306597, 39.050716, -0.327723, -0.912052, -0.246492, 0.487703, 0.010874, 0.000000, 1.000000, 0.000000, 0.000000, 27.746517, -9.707351, 42.990303, -0.422658, -0.857234, 0.294125, 0.415686, 0.059874, 0.000000, 1.000000, 0.000000, 0.000000, 28.507885, -10.025791, 43.156292, -0.422658, -0.857234, 0.294125, 0.407066, 0.037220, 0.000000, 1.000000, 0.000000, 0.000000, 26.729801, -7.491686, 47.986855, -0.422658, -0.857234, 0.294125, 0.493750, 0.111556, 0.000000, 1.000000, 0.000000, 0.000000, 28.216080, -7.124796, 42.700397, -0.040511, 0.850807, -0.523915, 0.558452, 0.066630, 0.000000, 1.000000, 0.000000, 0.000000, 29.120960, -6.832658, 43.104843, -0.040511, 0.850807, -0.523915, 0.583210, 0.045239, 0.000000, 1.000000, 0.000000, 0.000000, 29.594318, -9.306597, 39.050716, -0.040511, 0.850807, -0.523915, 0.487703, 0.010874, 0.000000, 1.000000, 0.000000, 0.000000, 28.494316, -8.289588, 43.008217, 0.964995, 0.029763, 0.260575, 0.499295, 0.050753, 0.000000, 1.000000, 0.000000, 0.000000, 28.507885, -10.025791, 43.156292, 0.964995, 0.029763, 0.260575, 0.407066, 0.037220, 0.000000, 1.000000, 0.000000, 0.000000, 29.594318, -9.306597, 39.050716, 0.964995, 0.029763, 0.260575, 0.487703, 0.010874, 0.000000, 1.000000, 0.000000, 0.000000, 29.594318, -9.306597, 39.050716, -0.921769, 0.058820, -0.383252, 0.487703, 0.010874, 0.000000, 1.000000, 0.000000, 0.000000, 28.128296, -8.204348, 42.745846, -0.921769, 0.058820, -0.383252, 0.500857, 0.060829, 0.000000, 1.000000, 0.000000, 0.000000, 28.216080, -7.124796, 42.700397, -0.921769, 0.058820, -0.383252, 0.558452, 0.066630, 0.000000, 1.000000, 0.000000, 0.000000, 28.216080, -7.124796, 42.700397, -0.961715, 0.067014, -0.265733, 0.558452, 0.066630, 0.000000, 1.000000, 0.000000, 0.000000, 28.128296, -8.204348, 42.745846, -0.961715, 0.067014, -0.265733, 0.500857, 0.060829, 0.000000, 1.000000, 0.000000, 0.000000, 26.729801, -7.491686, 47.986855, -0.961715, 0.067014, -0.265733, 0.493750, 0.111556, 0.000000, 1.000000, 0.000000, 0.000000, 28.128296, -8.204348, 42.745846, -0.940971, 0.193893, -0.277450, 0.500857, 0.060829, 0.000000, 1.000000, 0.000000, 0.000000, 27.746517, -9.707351, 42.990303, -0.940971, 0.193893, -0.277450, 0.415686, 0.059874, 0.000000, 1.000000, 0.000000, 0.000000, 26.729801, -7.491686, 47.986855, -0.940971, 0.193893, -0.277450, 0.493750, 0.111556, 0.000000, 1.000000, 0.000000, 0.000000, 27.746517, -9.707351, 42.990303, -0.899571, 0.162565, -0.405394, 0.415686, 0.059874, 0.000000, 1.000000, 0.000000, 0.000000, 28.128296, -8.204348, 42.745846, -0.899571, 0.162565, -0.405394, 0.500857, 0.060829, 0.000000, 1.000000, 0.000000, 0.000000, 29.594318, -9.306597, 39.050716, -0.899571, 0.162565, -0.405394, 0.487703, 0.010874, 0.000000, 1.000000, 0.000000, 0.000000, 28.494316, -8.289588, 43.008217, 0.943735, 0.035420, 0.328800, 0.499295, 0.050753, 0.000000, 1.000000, 0.000000, 0.000000, 26.729801, -7.491686, 47.986855, 0.943735, 0.035420, 0.328800, 0.493750, 0.111556, 0.000000, 1.000000, 0.000000, 0.000000, 28.507885, -10.025791, 43.156292, 0.943735, 0.035420, 0.328800, 0.407066, 0.037220, 0.000000, 1.000000, 0.000000, 0.000000, 13.488275, 4.507693, 58.836990, 0.905083, -0.424307, 0.028085, 0.935766, 0.661609, 1.000000, 1.000000, 0.000000, 0.000000, 10.317828, -2.328283, 57.732304, 0.905083, -0.424307, 0.028085, 0.506003, 0.677257, 1.000000, 1.000000, 0.000000, 0.000000, 13.729058, 4.830844, 56.702797, 0.905083, -0.424307, 0.028085, 0.959874, 0.632882, 1.000000, 1.000000, 0.000000, 0.000000, 10.323464, -2.225809, 59.842152, 0.905083, -0.424307, 0.028085, 0.507246, 0.714483, 1.000000, 1.000000, 0.000000, 0.000000, 11.171061, -8.219138, 59.405148, 0.985867, 0.158337, 0.054736, 0.103771, 0.630308, 1.000000, 1.000000, 0.000000, 0.000000, 10.317828, -2.328283, 57.732304, 0.985867, 0.158337, 0.054736, 0.506003, 0.677257, 1.000000, 1.000000, 0.000000, 0.000000, 10.323464, -2.225809, 59.842152, 0.985867, 0.158337, 0.054736, 0.507246, 0.714483, 1.000000, 1.000000, 0.000000, 0.000000, 11.398424, -7.921073, 56.955620, 0.985867, 0.158337, 0.054736, 0.160358, 0.599030, 1.000000, 1.000000, 0.000000, 0.000000, 13.729058, 4.830844, 56.702797, -0.176669, -0.057122, -0.982611, 0.959874, 0.632882, 1.000000, 1.000000, 0.000000, 0.000000, 10.317828, -2.328283, 57.732304, -0.176669, -0.057122, -0.982611, 0.506003, 0.677257, 1.000000, 1.000000, 0.000000, 0.000000, 0.176573, 0.055454, 59.417080, -0.176669, -0.057122, -0.982611, 0.500952, 0.980648, 1.000000, 1.000000, 0.000000, 0.000000, 13.729058, 4.830844, 56.702797, -0.311109, 0.944232, 0.107872, 0.959874, 0.632882, 1.000000, 1.000000, 0.000000, 0.000000, 0.176573, 0.055454, 59.417080, -0.311109, 0.944232, 0.107872, 0.500952, 0.980648, 1.000000, 1.000000, 0.000000, 0.000000, 13.488275, 4.507693, 58.836990, -0.311109, 0.944232, 0.107872, 0.935766, 0.661609, 1.000000, 1.000000, 0.000000, 0.000000, 13.488275, 4.507693, 58.836990, -0.007447, 0.151061, 0.988496, 0.935766, 0.661609, 1.000000, 1.000000, 0.000000, 0.000000, 0.176573, 0.055454, 59.417080, -0.007447, 0.151061, 0.988496, 0.500952, 0.980648, 1.000000, 1.000000, 0.000000, 0.000000, 10.323464, -2.225809, 59.842152, -0.007447, 0.151061, 0.988496, 0.507246, 0.714483, 1.000000, 1.000000, 0.000000, 0.000000, 10.323464, -2.225809, 59.842152, -0.059892, -0.081014, 0.994912, 0.507246, 0.714483, 1.000000, 1.000000, 0.000000, 0.000000, 0.176573, 0.055454, 59.417080, -0.059892, -0.081014, 0.994912, 0.500952, 0.980648, 1.000000, 1.000000, 0.000000, 0.000000, 11.171061, -8.219138, 59.405148, -0.059892, -0.081014, 0.994912, 0.103771, 0.630308, 1.000000, 1.000000, 0.000000, 0.000000, 11.171061, -8.219138, 59.405148, -0.594519, -0.789723, -0.151278, 0.103771, 0.630308, 1.000000, 1.000000, 0.000000, 0.000000, 0.176573, 0.055454, 59.417080, -0.594519, -0.789723, -0.151278, 0.500952, 0.980648, 1.000000, 1.000000, 0.000000, 0.000000, 11.398424, -7.921073, 56.955620, -0.594519, -0.789723, -0.151278, 0.160358, 0.599030, 1.000000, 1.000000, 0.000000, 0.000000, 11.398424, -7.921073, 56.955620, -0.137648, 0.110102, -0.984343, 0.160358, 0.599030, 1.000000, 1.000000, 0.000000, 0.000000, 0.176573, 0.055454, 59.417080, -0.137648, 0.110102, -0.984343, 0.500952, 0.980648, 1.000000, 1.000000, 0.000000, 0.000000, 10.317828, -2.328283, 57.732304, -0.137648, 0.110102, -0.984343, 0.506003, 0.677257, 1.000000, 1.000000, 0.000000, 0.000000, 21.965195, 2.273409, 55.897770, 0.887051, -0.438932, -0.143107, 0.947465, 0.368700, 2.000000, 1.000000, 0.000000, 0.000000, 18.804234, -3.594640, 54.302731, 0.887051, -0.438932, -0.143107, 0.511730, 0.393072, 2.000000, 1.000000, 0.000000, 0.000000, 21.589821, 2.405398, 53.273041, 0.887051, -0.438932, -0.143107, 0.949663, 0.363207, 2.000000, 1.000000, 0.000000, 0.000000, 19.354874, -3.150747, 56.461254, 0.887051, -0.438932, -0.143107, 0.503939, 0.399140, 2.000000, 1.000000, 0.000000, 0.000000, 19.611259, -9.735069, 57.566856, 0.982113, 0.030289, -0.185839, 0.148302, 0.347262, 2.000000, 1.000000, 0.000000, 0.000000, 18.804234, -3.594640, 54.302731, 0.982113, 0.030289, -0.185839, 0.511730, 0.393072, 2.000000, 1.000000, 0.000000, 0.000000, 19.354874, -3.150747, 56.461254, 0.982113, 0.030289, -0.185839, 0.503939, 0.399140, 2.000000, 1.000000, 0.000000, 0.000000, 19.230759, -9.825526, 54.717438, 0.982113, 0.030289, -0.185839, 0.177215, 0.339442, 2.000000, 1.000000, 0.000000, 0.000000, 21.589821, 2.405398, 53.273041, -0.412528, 0.035308, -0.910260, 0.949663, 0.363207, 2.000000, 1.000000, 0.000000, 0.000000, 18.804234, -3.594640, 54.302731, -0.412528, 0.035308, -0.910260, 0.511730, 0.393072, 2.000000, 1.000000, 0.000000, 0.000000, 8.482611, -1.070565, 59.078381, -0.412528, 0.035308, -0.910260, 0.503388, 0.669188, 2.000000, 1.000000, 0.000000, 0.000000, 21.589821, 2.405398, 53.273041, -0.221988, 0.971711, 0.080612, 0.949663, 0.363207, 2.000000, 1.000000, 0.000000, 0.000000, 8.482611, -1.070565, 59.078381, -0.221988, 0.971711, 0.080612, 0.503388, 0.669188, 2.000000, 1.000000, 0.000000, 0.000000, 21.965195, 2.273409, 55.897770, -0.221988, 0.971711, 0.080612, 0.947465, 0.368700, 2.000000, 1.000000, 0.000000, 0.000000, 21.965195, 2.273409, 55.897770, 0.232091, -0.010650, 0.972636, 0.947465, 0.368700, 2.000000, 1.000000, 0.000000, 0.000000, 8.482611, -1.070565, 59.078381, 0.232091, -0.010650, 0.972636, 0.503388, 0.669188, 2.000000, 1.000000, 0.000000, 0.000000, 19.354874, -3.150747, 56.461254, 0.232091, -0.010650, 0.972636, 0.503939, 0.399140, 2.000000, 1.000000, 0.000000, 0.000000, 19.354874, -3.150747, 56.461254, 0.261213, 0.169731, 0.950242, 0.503939, 0.399140, 2.000000, 1.000000, 0.000000, 0.000000, 8.482611, -1.070565, 59.078381, 0.261213, 0.169731, 0.950242, 0.503388, 0.669188, 2.000000, 1.000000, 0.000000, 0.000000, 19.611259, -9.735069, 57.566856, 0.261213, 0.169731, 0.950242, 0.148302, 0.347262, 2.000000, 1.000000, 0.000000, 0.000000, 19.611259, -9.735069, 57.566856, -0.601943, -0.791538, 0.105509, 0.148302, 0.347262, 2.000000, 1.000000, 0.000000, 0.000000, 8.482611, -1.070565, 59.078381, -0.601943, -0.791538, 0.105509, 0.503388, 0.669188, 2.000000, 1.000000, 0.000000, 0.000000, 19.230759, -9.825526, 54.717438, -0.601943, -0.791538, 0.105509, 0.177215, 0.339442, 2.000000, 1.000000, 0.000000, 0.000000, 19.230759, -9.825526, 54.717438, -0.436166, -0.089452, -0.895409, 0.177215, 0.339442, 2.000000, 1.000000, 0.000000, 0.000000, 8.482611, -1.070565, 59.078381, -0.436166, -0.089452, -0.895409, 0.503388, 0.669188, 2.000000, 1.000000, 0.000000, 0.000000, 18.804234, -3.594640, 54.302731, -0.436166, -0.089452, -0.895409, 0.511730, 0.393072, 2.000000, 1.000000, 0.000000, 0.000000, 27.621899, -1.162090, 49.955933, 0.701907, -0.550484, -0.451988, 0.845115, 0.145421, 3.000000, 1.000000, 0.000000, 0.000000, 23.939461, -6.023878, 50.158607, 0.701907, -0.550484, -0.451988, 0.504248, 0.207955, 2.000000, 0.500000, 3.000000, 0.500000, 26.566208, -1.070157, 48.213615, 0.701907, -0.550484, -0.451988, 0.837385, 0.170929, 3.000000, 1.000000, 0.000000, 0.000000, 25.039463, -5.639076, 51.407246, 0.701907, -0.550484, -0.451988, 0.505157, 0.186659, 3.000000, 1.000000, 0.000000, 0.000000, 25.193619, -10.060054, 52.287796, 0.806948, -0.059254, -0.587643, 0.272798, 0.148793, 3.000000, 1.000000, 0.000000, 0.000000, 23.939461, -6.023878, 50.158607, 0.806948, -0.059254, -0.587643, 0.504248, 0.207955, 2.000000, 0.500000, 3.000000, 0.500000, 25.039463, -5.639076, 51.407246, 0.806948, -0.059254, -0.587643, 0.505157, 0.186659, 3.000000, 1.000000, 0.000000, 0.000000, 24.040104, -10.235310, 50.498386, 0.806948, -0.059254, -0.587643, 0.267601, 0.175627, 3.000000, 1.000000, 0.000000, 0.000000, 26.566208, -1.070157, 48.213615, -0.712675, 0.105611, -0.693499, 0.837385, 0.170929, 3.000000, 1.000000, 0.000000, 0.000000, 23.939461, -6.023878, 50.158607, -0.712675, 0.105611, -0.693499, 0.504248, 0.207955, 2.000000, 0.500000, 3.000000, 0.500000, 18.538929, -2.637486, 56.224178, -0.712675, 0.105611, -0.693499, 0.511602, 0.410374, 2.000000, 0.500000, 3.000000, 0.500000, 26.566208, -1.070157, 48.213615, -0.088020, 0.990506, 0.105596, 0.837385, 0.170929, 3.000000, 1.000000, 0.000000, 0.000000, 18.538929, -2.637486, 56.224178, -0.088020, 0.990506, 0.105596, 0.511602, 0.410374, 2.000000, 0.500000, 3.000000, 0.500000, 27.621899, -1.162090, 49.955933, -0.088020, 0.990506, 0.105596, 0.845115, 0.145421, 3.000000, 1.000000, 0.000000, 0.000000, 27.621899, -1.162090, 49.955933, 0.574027, -0.066547, 0.816127, 0.845115, 0.145421, 3.000000, 1.000000, 0.000000, 0.000000, 18.538929, -2.637486, 56.224178, 0.574027, -0.066547, 0.816127, 0.511602, 0.410374, 2.000000, 0.500000, 3.000000, 0.500000, 25.039463, -5.639076, 51.407246, 0.574027, -0.066547, 0.816127, 0.505157, 0.186659, 3.000000, 1.000000, 0.000000, 0.000000, 25.039463, -5.639076, 51.407246, 0.636521, 0.171945, 0.751849, 0.505157, 0.186659, 3.000000, 1.000000, 0.000000, 0.000000, 18.538929, -2.637486, 56.224178, 0.636521, 0.171945, 0.751849, 0.511602, 0.410374, 2.000000, 0.500000, 3.000000, 0.500000, 25.193619, -10.060054, 52.287796, 0.636521, 0.171945, 0.751849, 0.272798, 0.148793, 3.000000, 1.000000, 0.000000, 0.000000, 25.193619, -10.060054, 52.287796, -0.550217, -0.718726, 0.425081, 0.272798, 0.148793, 3.000000, 1.000000, 0.000000, 0.000000, 18.538929, -2.637486, 56.224178, -0.550217, -0.718726, 0.425081, 0.511602, 0.410374, 2.000000, 0.500000, 3.000000, 0.500000, 24.040104, -10.235310, 50.498386, -0.550217, -0.718726, 0.425081, 0.267601, 0.175627, 3.000000, 1.000000, 0.000000, 0.000000, 24.040104, -10.235310, 50.498386, -0.764121, -0.069999, -0.641263, 0.267601, 0.175627, 3.000000, 1.000000, 0.000000, 0.000000, 18.538929, -2.637486, 56.224178, -0.764121, -0.069999, -0.641263, 0.511602, 0.410374, 2.000000, 0.500000, 3.000000, 0.500000, 23.939461, -6.023878, 50.158607, -0.764121, -0.069999, -0.641263, 0.504248, 0.207955, 2.000000, 0.500000, 3.000000, 0.500000, 26.534973, -8.122880, 46.082848, 0.582606, -0.506657, -0.635507, 0.488699, 0.106466, 4.000000, 1.000000, 0.000000, 0.000000, 27.463444, -5.278156, 44.623589, 0.582606, -0.506657, -0.635507, 0.634988, 0.104146, 4.000000, 1.000000, 0.000000, 0.000000, 27.676327, -7.915838, 46.921638, 0.582606, -0.506657, -0.635507, 0.490940, 0.080567, 4.000000, 1.000000, 0.000000, 0.000000, 28.639332, -5.393721, 45.836220, 0.582606, -0.506657, -0.635507, 0.638995, 0.073291, 4.000000, 1.000000, 0.000000, 0.000000, 27.967442, -10.027791, 47.258568, 0.655856, 0.027590, -0.754382, 0.364022, 0.057027, 4.000000, 1.000000, 0.000000, 0.000000, 26.534973, -8.122880, 46.082848, 0.655856, 0.027590, -0.754382, 0.488699, 0.106466, 4.000000, 1.000000, 0.000000, 0.000000, 27.676327, -7.915838, 46.921638, 0.655856, 0.027590, -0.754382, 0.490940, 0.080567, 4.000000, 1.000000, 0.000000, 0.000000, 26.703583, -10.093825, 45.996281, 0.655856, 0.027590, -0.754382, 0.355915, 0.089939, 4.000000, 1.000000, 0.000000, 0.000000, 27.463444, -5.278156, 44.623589, -0.867268, 0.028092, -0.497048, 0.634988, 0.104146, 4.000000, 1.000000, 0.000000, 0.000000, 26.534973, -8.122880, 46.082848, -0.867268, 0.028092, -0.497048, 0.488699, 0.106466, 4.000000, 1.000000, 0.000000, 0.000000, 23.419350, -4.789264, 51.707508, -0.867268, 0.028092, -0.497048, 0.508693, 0.235572, 4.000000, 1.000000, 0.000000, 0.000000, 27.463444, -5.278156, 44.623589, 0.106053, 0.994328, -0.008079, 0.634988, 0.104146, 4.000000, 1.000000, 0.000000, 0.000000, 23.419350, -4.789264, 51.707508, 0.106053, 0.994328, -0.008079, 0.508693, 0.235572, 4.000000, 1.000000, 0.000000, 0.000000, 28.639332, -5.393721, 45.836220, 0.106053, 0.994328, -0.008079, 0.638995, 0.073291, 4.000000, 1.000000, 0.000000, 0.000000, 28.639332, -5.393721, 45.836220, 0.747372, 0.000570, 0.664406, 0.638995, 0.073291, 4.000000, 1.000000, 0.000000, 0.000000, 23.419350, -4.789264, 51.707508, 0.747372, 0.000570, 0.664406, 0.508693, 0.235572, 4.000000, 1.000000, 0.000000, 0.000000, 27.676327, -7.915838, 46.921638, 0.747372, 0.000570, 0.664406, 0.490940, 0.080567, 4.000000, 1.000000, 0.000000, 0.000000, 27.676327, -7.915838, 46.921638, 0.793469, 0.201017, 0.574456, 0.490940, 0.080567, 4.000000, 1.000000, 0.000000, 0.000000, 23.419350, -4.789264, 51.707508, 0.793469, 0.201017, 0.574456, 0.508693, 0.235572, 4.000000, 1.000000, 0.000000, 0.000000, 27.967442, -10.027791, 47.258568, 0.793469, 0.201017, 0.574456, 0.364022, 0.057027, 4.000000, 1.000000, 0.000000, 0.000000, 27.967442, -10.027791, 47.258568, -0.428982, -0.771489, 0.469872, 0.364022, 0.057027, 4.000000, 1.000000, 0.000000, 0.000000, 23.419350, -4.789264, 51.707508, -0.428982, -0.771489, 0.469872, 0.508693, 0.235572, 4.000000, 1.000000, 0.000000, 0.000000, 26.703583, -10.093825, 45.996281, -0.428982, -0.771489, 0.469872, 0.355915, 0.089939, 4.000000, 1.000000, 0.000000, 0.000000, 26.703583, -10.093825, 45.996281, -0.887042, -0.055754, -0.458310, 0.355915, 0.089939, 4.000000, 1.000000, 0.000000, 0.000000, 23.419350, -4.789264, 51.707508, -0.887042, -0.055754, -0.458310, 0.508693, 0.235572, 4.000000, 1.000000, 0.000000, 0.000000, 26.534973, -8.122880, 46.082848, -0.887042, -0.055754, -0.458310, 0.488699, 0.106466, 4.000000, 1.000000, 0.000000, 0.000000, 17.460365, 32.927814, 62.917564, 0.577971, 0.227961, 0.783571, 0.588486, 0.118697, 5.000000, 1.000000, 0.000000, 0.000000, 16.841507, 27.497791, 64.953773, 0.577971, 0.227961, 0.783571, 0.513632, 0.225386, 5.000000, 1.000000, 0.000000, 0.000000, 18.810143, 32.094006, 62.164539, 0.577971, 0.227961, 0.783571, 0.502922, 0.115809, 5.000000, 1.000000, 0.000000, 0.000000, 16.841507, 27.497791, 64.953773, -0.993858, 0.088210, -0.066827, 0.513632, 0.225386, 5.000000, 1.000000, 0.000000, 0.000000, 17.460365, 32.927814, 62.917564, -0.993858, 0.088210, -0.066827, 0.588486, 0.118697, 5.000000, 1.000000, 0.000000, 0.000000, 17.478725, 32.388824, 61.933060, -0.993858, 0.088210, -0.066827, 0.573063, 0.130913, 5.000000, 1.000000, 0.000000, 0.000000, 17.460365, 32.927814, 62.917564, 0.624910, 0.413661, 0.662096, 0.588486, 0.118697, 5.000000, 1.000000, 0.000000, 0.000000, 18.810143, 32.094006, 62.164539, 0.624910, 0.413661, 0.662096, 0.502922, 0.115809, 5.000000, 1.000000, 0.000000, 0.000000, 19.937237, 35.443581, 59.008015, 0.624910, 0.413661, 0.662096, 0.506183, 0.012337, 5.000000, 1.000000, 0.000000, 0.000000, 20.493969, 31.550346, 61.822903, 0.769413, -0.298336, -0.564800, 0.409360, 0.100134, 5.000000, 1.000000, 0.000000, 0.000000, 19.905617, 31.128330, 61.244320, 0.769413, -0.298336, -0.564800, 0.427318, 0.120501, 5.000000, 1.000000, 0.000000, 0.000000, 19.937237, 35.443581, 59.008015, 0.769413, -0.298336, -0.564800, 0.506183, 0.012337, 5.000000, 1.000000, 0.000000, 0.000000, 19.905617, 31.128330, 61.244320, 0.671622, -0.724621, -0.154426, 0.427318, 0.120501, 5.000000, 1.000000, 0.000000, 0.000000, 20.493969, 31.550346, 61.822903, 0.671622, -0.724621, -0.154426, 0.409360, 0.100134, 5.000000, 1.000000, 0.000000, 0.000000, 16.841507, 27.497791, 64.953773, 0.671622, -0.724621, -0.154426, 0.513632, 0.225386, 5.000000, 1.000000, 0.000000, 0.000000, 17.478725, 32.388824, 61.933060, -0.858329, 0.443153, -0.258623, 0.573063, 0.130913, 5.000000, 1.000000, 0.000000, 0.000000, 17.460365, 32.927814, 62.917564, -0.858329, 0.443153, -0.258623, 0.588486, 0.118697, 5.000000, 1.000000, 0.000000, 0.000000, 19.937237, 35.443581, 59.008015, -0.858329, 0.443153, -0.258623, 0.506183, 0.012337, 5.000000, 1.000000, 0.000000, 0.000000, 18.810143, 32.094006, 62.164539, 0.338079, 0.582686, 0.739039, 0.502922, 0.115809, 5.000000, 1.000000, 0.000000, 0.000000, 20.493969, 31.550346, 61.822903, 0.338079, 0.582686, 0.739039, 0.409360, 0.100134, 5.000000, 1.000000, 0.000000, 0.000000, 19.937237, 35.443581, 59.008015, 0.338079, 0.582686, 0.739039, 0.506183, 0.012337, 5.000000, 1.000000, 0.000000, 0.000000, 19.937237, 35.443581, 59.008015, -0.331750, -0.499373, -0.800355, 0.506183, 0.012337, 5.000000, 1.000000, 0.000000, 0.000000, 18.595573, 31.998127, 61.713898, -0.331750, -0.499373, -0.800355, 0.510843, 0.121408, 5.000000, 1.000000, 0.000000, 0.000000, 17.478725, 32.388824, 61.933060, -0.331750, -0.499373, -0.800355, 0.573063, 0.130913, 5.000000, 1.000000, 0.000000, 0.000000, 17.478725, 32.388824, 61.933060, -0.324554, -0.466053, -0.823079, 0.573063, 0.130913, 5.000000, 1.000000, 0.000000, 0.000000, 18.595573, 31.998127, 61.713898, -0.324554, -0.466053, -0.823079, 0.510843, 0.121408, 5.000000, 1.000000, 0.000000, 0.000000, 16.841507, 27.497791, 64.953773, -0.324554, -0.466053, -0.823079, 0.513632, 0.225386, 5.000000, 1.000000, 0.000000, 0.000000, 18.595573, 31.998127, 61.713898, -0.516671, -0.358401, -0.777560, 0.510843, 0.121408, 5.000000, 1.000000, 0.000000, 0.000000, 19.905617, 31.128330, 61.244320, -0.516671, -0.358401, -0.777560, 0.427318, 0.120501, 5.000000, 1.000000, 0.000000, 0.000000, 16.841507, 27.497791, 64.953773, -0.516671, -0.358401, -0.777560, 0.513632, 0.225386, 5.000000, 1.000000, 0.000000, 0.000000, 19.905617, 31.128330, 61.244320, -0.528175, -0.387648, -0.755487, 0.427318, 0.120501, 5.000000, 1.000000, 0.000000, 0.000000, 18.595573, 31.998127, 61.713898, -0.528175, -0.387648, -0.755487, 0.510843, 0.121408, 5.000000, 1.000000, 0.000000, 0.000000, 19.937237, 35.443581, 59.008015, -0.528175, -0.387648, -0.755487, 0.506183, 0.012337, 5.000000, 1.000000, 0.000000, 0.000000, 18.810143, 32.094006, 62.164539, 0.303651, 0.395871, 0.866650, 0.502922, 0.115809, 5.000000, 1.000000, 0.000000, 0.000000, 16.841507, 27.497791, 64.953773, 0.303651, 0.395871, 0.866650, 0.513632, 0.225386, 5.000000, 1.000000, 0.000000, 0.000000, 20.493969, 31.550346, 61.822903, 0.303651, 0.395871, 0.866650, 0.409360, 0.100134, 5.000000, 1.000000, 0.000000, 0.000000, 5.232845, 9.172714, 63.650463, 0.718265, 0.531102, 0.449473, 0.522043, 0.810146, 6.000000, 1.000000, 0.000000, 0.000000, 0.584243, 12.190988, 67.512604, 0.718265, 0.531102, 0.449473, 0.779570, 0.843901, 6.000000, 1.000000, 0.000000, 0.000000, 5.077756, 7.774758, 65.468918, 0.718265, 0.531102, 0.449473, 0.495160, 0.856527, 6.000000, 1.000000, 0.000000, 0.000000, 0.297916, 13.671979, 66.138985, 0.718265, 0.531102, 0.449473, 0.824215, 0.807817, 6.000000, 1.000000, 0.000000, 0.000000, 11.194009, 7.573499, 64.500954, 0.105528, 0.744156, 0.659618, 0.258109, 0.840392, 6.000000, 1.000000, 0.000000, 0.000000, 5.232845, 9.172714, 63.650463, 0.105528, 0.744156, 0.659618, 0.522043, 0.810146, 6.000000, 1.000000, 0.000000, 0.000000, 5.077756, 7.774758, 65.468918, 0.105528, 0.744156, 0.659618, 0.495160, 0.856527, 6.000000, 1.000000, 0.000000, 0.000000, 11.263618, 9.057257, 63.032425, 0.105528, 0.744156, 0.659618, 0.262379, 0.788264, 6.000000, 1.000000, 0.000000, 0.000000, 0.297916, 13.671979, 66.138985, -0.019866, 0.467126, -0.883968, 0.824215, 0.807817, 6.000000, 1.000000, 0.000000, 0.000000, 5.232845, 9.172714, 63.650463, -0.019866, 0.467126, -0.883968, 0.522043, 0.810146, 6.000000, 1.000000, 0.000000, 0.000000, 0.311420, -0.117161, 58.851913, -0.019866, 0.467126, -0.883968, 0.500831, 0.984723, 6.000000, 1.000000, 0.000000, 0.000000, 0.297916, 13.671979, 66.138985, -0.988952, -0.070016, 0.130656, 0.824215, 0.807817, 6.000000, 1.000000, 0.000000, 0.000000, 0.311420, -0.117161, 58.851913, -0.988952, -0.070016, 0.130656, 0.500831, 0.984723, 6.000000, 1.000000, 0.000000, 0.000000, 0.584243, 12.190988, 67.512604, -0.988952, -0.070016, 0.130656, 0.779570, 0.843901, 6.000000, 1.000000, 0.000000, 0.000000, 0.584243, 12.190988, 67.512604, -0.186609, -0.562588, 0.805401, 0.779570, 0.843901, 6.000000, 1.000000, 0.000000, 0.000000, 0.311420, -0.117161, 58.851913, -0.186609, -0.562588, 0.805401, 0.500831, 0.984723, 6.000000, 1.000000, 0.000000, 0.000000, 5.077756, 7.774758, 65.468918, -0.186609, -0.562588, 0.805401, 0.495160, 0.856527, 6.000000, 1.000000, 0.000000, 0.000000, 5.077756, 7.774758, 65.468918, 0.094067, -0.672396, 0.734190, 0.495160, 0.856527, 6.000000, 1.000000, 0.000000, 0.000000, 0.311420, -0.117161, 58.851913, 0.094067, -0.672396, 0.734190, 0.500831, 0.984723, 6.000000, 1.000000, 0.000000, 0.000000, 11.194009, 7.573499, 64.500954, 0.094067, -0.672396, 0.734190, 0.258109, 0.840392, 6.000000, 1.000000, 0.000000, 0.000000, 11.194009, 7.573499, 64.500954, 0.656227, -0.546126, -0.520684, 0.258109, 0.840392, 6.000000, 1.000000, 0.000000, 0.000000, 0.311420, -0.117161, 58.851913, 0.656227, -0.546126, -0.520684, 0.500831, 0.984723, 6.000000, 1.000000, 0.000000, 0.000000, 11.263618, 9.057257, 63.032425, 0.656227, -0.546126, -0.520684, 0.262379, 0.788264, 6.000000, 1.000000, 0.000000, 0.000000, 11.263618, 9.057257, 63.032425, -0.079551, 0.490417, -0.867850, 0.262379, 0.788264, 6.000000, 1.000000, 0.000000, 0.000000, 0.311420, -0.117161, 58.851913, -0.079551, 0.490417, -0.867850, 0.500831, 0.984723, 6.000000, 1.000000, 0.000000, 0.000000, 5.232845, 9.172714, 63.650463, -0.079551, 0.490417, -0.867850, 0.522043, 0.810146, 6.000000, 1.000000, 0.000000, 0.000000, 9.922668, 16.811310, 68.362305, 0.684373, 0.659538, 0.310875, 0.506373, 0.639568, 7.000000, 1.000000, 0.000000, 0.000000, 9.858316, 17.897455, 65.973808, 0.684373, 0.659538, 0.310875, 0.514969, 0.590841, 7.000000, 1.000000, 0.000000, 0.000000, 4.799379, 22.221598, 68.162720, 0.684373, 0.659538, 0.310875, 0.869732, 0.592088, 7.000000, 1.000000, 0.000000, 0.000000, 5.108080, 20.627426, 70.639404, 0.684373, 0.659538, 0.310875, 0.855442, 0.631617, 7.000000, 1.000000, 0.000000, 0.000000, 16.797058, 14.500792, 68.045860, 0.282339, 0.849103, 0.446439, 0.201203, 0.630440, 7.000000, 1.000000, 0.000000, 0.000000, 9.858316, 17.897455, 65.973808, 0.282339, 0.849103, 0.446439, 0.514969, 0.590841, 7.000000, 1.000000, 0.000000, 0.000000, 9.922668, 16.811310, 68.362305, 0.282339, 0.849103, 0.446439, 0.506373, 0.639568, 7.000000, 1.000000, 0.000000, 0.000000, 16.770622, 16.125168, 65.336517, 0.282339, 0.849103, 0.446439, 0.218388, 0.576381, 7.000000, 1.000000, 0.000000, 0.000000, 4.799379, 22.221598, 68.162720, -0.175759, 0.273137, -0.945783, 0.869732, 0.592088, 7.000000, 1.000000, 0.000000, 0.000000, 9.858316, 17.897455, 65.973808, -0.175759, 0.273137, -0.945783, 0.514969, 0.590841, 7.000000, 1.000000, 0.000000, 0.000000, 3.869637, 6.750414, 63.867508, -0.175759, 0.273137, -0.945783, 0.507511, 0.828211, 7.000000, 1.000000, 0.000000, 0.000000, 4.799379, 22.221598, 68.162720, -0.990309, 0.021417, 0.137220, 0.869732, 0.592088, 7.000000, 1.000000, 0.000000, 0.000000, 3.869637, 6.750414, 63.867508, -0.990309, 0.021417, 0.137220, 0.507511, 0.828211, 7.000000, 1.000000, 0.000000, 0.000000, 5.108080, 20.627426, 70.639404, -0.990309, 0.021417, 0.137220, 0.855442, 0.631617, 7.000000, 1.000000, 0.000000, 0.000000, 5.108080, 20.627426, 70.639404, 0.071931, -0.442602, 0.893828, 0.855442, 0.631617, 7.000000, 1.000000, 0.000000, 0.000000, 3.869637, 6.750414, 63.867508, 0.071931, -0.442602, 0.893828, 0.507511, 0.828211, 7.000000, 1.000000, 0.000000, 0.000000, 9.922668, 16.811310, 68.362305, 0.071931, -0.442602, 0.893828, 0.506373, 0.639568, 7.000000, 1.000000, 0.000000, 0.000000, 9.922668, 16.811310, 68.362305, -0.080304, -0.365911, 0.927179, 0.506373, 0.639568, 7.000000, 1.000000, 0.000000, 0.000000, 3.869637, 6.750414, 63.867508, -0.080304, -0.365911, 0.927179, 0.507511, 0.828211, 7.000000, 1.000000, 0.000000, 0.000000, 16.797058, 14.500792, 68.045860, -0.080304, -0.365911, 0.927179, 0.201203, 0.630440, 7.000000, 1.000000, 0.000000, 0.000000, 16.797058, 14.500792, 68.045860, 0.562426, -0.706726, -0.429203, 0.201203, 0.630440, 7.000000, 1.000000, 0.000000, 0.000000, 3.869637, 6.750414, 63.867508, 0.562426, -0.706726, -0.429203, 0.507511, 0.828211, 7.000000, 1.000000, 0.000000, 0.000000, 16.770622, 16.125168, 65.336517, 0.562426, -0.706726, -0.429203, 0.218388, 0.576381, 7.000000, 1.000000, 0.000000, 0.000000, 16.770622, 16.125168, 65.336517, -0.037607, 0.205011, -0.978037, 0.218388, 0.576381, 7.000000, 1.000000, 0.000000, 0.000000, 3.869637, 6.750414, 63.867508, -0.037607, 0.205011, -0.978037, 0.507511, 0.828211, 7.000000, 1.000000, 0.000000, 0.000000, 9.858316, 17.897455, 65.973808, -0.037607, 0.205011, -0.978037, 0.514969, 0.590841, 7.000000, 1.000000, 0.000000, 0.000000, 14.346985, 24.418354, 67.162056, 0.725117, 0.687371, -0.041537, 0.502873, 0.395151, 8.000000, 1.000000, 0.000000, 0.000000, 10.035475, 28.917551, 66.350174, 0.725117, 0.687371, -0.041537, 0.821535, 0.351606, 8.000000, 1.000000, 0.000000, 0.000000, 10.422920, 28.608490, 68.492867, 0.725117, 0.687371, -0.041537, 0.801005, 0.361745, 8.000000, 1.000000, 0.000000, 0.000000, 14.284961, 24.338720, 65.254967, 0.725117, 0.687371, -0.041537, 0.505469, 0.389493, 8.000000, 1.000000, 0.000000, 0.000000, 18.892815, 22.762550, 67.017738, 0.316296, 0.948423, 0.021234, 0.243749, 0.362352, 8.000000, 1.000000, 0.000000, 0.000000, 14.284961, 24.338720, 65.254967, 0.316296, 0.948423, 0.021234, 0.505469, 0.389493, 8.000000, 1.000000, 0.000000, 0.000000, 14.346985, 24.418354, 67.162056, 0.316296, 0.948423, 0.021234, 0.502873, 0.395151, 8.000000, 1.000000, 0.000000, 0.000000, 18.670532, 23.032116, 64.676369, 0.316296, 0.948423, 0.021234, 0.270286, 0.349805, 8.000000, 1.000000, 0.000000, 0.000000, 10.035475, 28.917551, 66.350174, -0.317984, -0.068937, -0.945586, 0.821535, 0.351606, 8.000000, 1.000000, 0.000000, 0.000000, 14.284961, 24.338720, 65.254967, -0.317984, -0.068937, -0.945586, 0.505469, 0.389493, 8.000000, 1.000000, 0.000000, 0.000000, 8.857051, 16.547382, 67.648293, -0.317984, -0.068937, -0.945586, 0.516205, 0.622516, 8.000000, 1.000000, 0.000000, 0.000000, 10.035475, 28.917551, 66.350174, -0.974749, 0.113066, 0.192565, 0.821535, 0.351606, 8.000000, 1.000000, 0.000000, 0.000000, 8.857051, 16.547382, 67.648293, -0.974749, 0.113066, 0.192565, 0.516205, 0.622516, 8.000000, 1.000000, 0.000000, 0.000000, 10.422920, 28.608490, 68.492867, -0.974749, 0.113066, 0.192565, 0.801005, 0.361745, 8.000000, 1.000000, 0.000000, 0.000000, 10.422920, 28.608490, 68.492867, 0.225096, -0.097111, 0.969485, 0.801005, 0.361745, 8.000000, 1.000000, 0.000000, 0.000000, 8.857051, 16.547382, 67.648293, 0.225096, -0.097111, 0.969485, 0.516205, 0.622516, 8.000000, 1.000000, 0.000000, 0.000000, 14.346985, 24.418354, 67.162056, 0.225096, -0.097111, 0.969485, 0.502873, 0.395151, 8.000000, 1.000000, 0.000000, 0.000000, 14.346985, 24.418354, 67.162056, 0.043196, 0.031558, 0.998568, 0.502873, 0.395151, 8.000000, 1.000000, 0.000000, 0.000000, 8.857051, 16.547382, 67.648293, 0.043196, 0.031558, 0.998568, 0.516205, 0.622516, 8.000000, 1.000000, 0.000000, 0.000000, 18.892815, 22.762550, 67.017738, 0.043196, 0.031558, 0.998568, 0.243749, 0.362352, 8.000000, 1.000000, 0.000000, 0.000000, 18.892815, 22.762550, 67.017738, 0.514208, -0.845127, -0.146118, 0.243749, 0.362352, 8.000000, 1.000000, 0.000000, 0.000000, 8.857051, 16.547382, 67.648293, 0.514208, -0.845127, -0.146118, 0.516205, 0.622516, 8.000000, 1.000000, 0.000000, 0.000000, 18.670532, 23.032116, 64.676369, 0.514208, -0.845127, -0.146118, 0.270286, 0.349805, 8.000000, 1.000000, 0.000000, 0.000000, 18.670532, 23.032116, 64.676369, -0.179223, -0.172657, -0.968539, 0.270286, 0.349805, 8.000000, 1.000000, 0.000000, 0.000000, 8.857051, 16.547382, 67.648293, -0.179223, -0.172657, -0.968539, 0.516205, 0.622516, 8.000000, 1.000000, 0.000000, 0.000000, 14.284961, 24.338720, 65.254967, -0.179223, -0.172657, -0.968539, 0.505469, 0.389493, 8.000000, 1.000000, 0.000000, 0.000000, 17.528423, 28.453564, 63.137985, 0.670779, 0.701865, -0.239667, 0.501453, 0.226205, 9.000000, 1.000000, 0.000000, 0.000000, 15.450564, 31.051624, 64.930939, 0.670779, 0.701865, -0.239667, 0.631485, 0.205288, 9.000000, 1.000000, 0.000000, 0.000000, 17.688663, 28.862041, 64.646049, 0.670779, 0.701865, -0.239667, 0.499987, 0.219735, 9.000000, 1.000000, 0.000000, 0.000000, 14.971291, 30.955544, 63.171528, 0.670779, 0.701865, -0.239667, 0.649807, 0.211634, 9.000000, 1.000000, 0.000000, 0.000000, 17.688663, 28.862041, 64.646049, 0.176118, 0.965466, -0.191986, 0.499987, 0.219735, 9.000000, 1.000000, 0.000000, 0.000000, 19.939102, 28.313244, 64.643768, 0.176118, 0.965466, -0.191986, 0.344156, 0.197990, 9.000000, 1.000000, 0.000000, 0.000000, 19.605209, 28.132072, 62.733280, 0.176118, 0.965466, -0.191986, 0.360801, 0.203899, 9.000000, 1.000000, 0.000000, 0.000000, 17.528423, 28.453564, 63.137985, 0.176118, 0.965466, -0.191986, 0.501453, 0.226205, 9.000000, 1.000000, 0.000000, 0.000000, 14.971291, 30.955544, 63.171528, -0.313008, -0.307860, -0.898470, 0.649807, 0.211634, 9.000000, 1.000000, 0.000000, 0.000000, 17.528423, 28.453564, 63.137985, -0.313008, -0.307860, -0.898470, 0.501453, 0.226205, 9.000000, 1.000000, 0.000000, 0.000000, 12.997569, 23.156515, 66.531456, -0.313008, -0.307860, -0.898470, 0.501631, 0.427338, 9.000000, 1.000000, 0.000000, 0.000000, 14.971291, 30.955544, 63.171528, -0.914852, 0.331097, 0.231130, 0.649807, 0.211634, 9.000000, 1.000000, 0.000000, 0.000000, 12.997569, 23.156515, 66.531456, -0.914852, 0.331097, 0.231130, 0.501631, 0.427338, 9.000000, 1.000000, 0.000000, 0.000000, 15.450564, 31.051624, 64.930939, -0.914852, 0.331097, 0.231130, 0.631485, 0.205288, 9.000000, 1.000000, 0.000000, 0.000000, 15.450564, 31.051624, 64.930939, 0.240510, 0.120524, 0.963135, 0.631485, 0.205288, 9.000000, 1.000000, 0.000000, 0.000000, 12.997569, 23.156515, 66.531456, 0.240510, 0.120524, 0.963135, 0.501631, 0.427338, 9.000000, 1.000000, 0.000000, 0.000000, 17.688663, 28.862041, 64.646049, 0.240510, 0.120524, 0.963135, 0.499987, 0.219735, 9.000000, 1.000000, 0.000000, 0.000000, 17.688663, 28.862041, 64.646049, 0.065405, 0.264202, 0.962247, 0.499987, 0.219735, 9.000000, 1.000000, 0.000000, 0.000000, 12.997569, 23.156515, 66.531456, 0.065405, 0.264202, 0.962247, 0.501631, 0.427338, 9.000000, 1.000000, 0.000000, 0.000000, 19.939102, 28.313244, 64.643768, 0.065405, 0.264202, 0.962247, 0.344156, 0.197990, 9.000000, 1.000000, 0.000000, 0.000000, 19.939102, 28.313244, 64.643768, 0.591390, -0.805936, -0.026930, 0.344156, 0.197990, 9.000000, 1.000000, 0.000000, 0.000000, 12.997569, 23.156515, 66.531456, 0.591390, -0.805936, -0.026930, 0.501631, 0.427338, 9.000000, 1.000000, 0.000000, 0.000000, 19.605209, 28.132072, 62.733280, 0.591390, -0.805936, -0.026930, 0.360801, 0.203899, 9.000000, 1.000000, 0.000000, 0.000000, 19.605209, 28.132072, 62.733280, -0.232937, -0.375461, -0.897089, 0.360801, 0.203899, 9.000000, 1.000000, 0.000000, 0.000000, 12.997569, 23.156515, 66.531456, -0.232937, -0.375461, -0.897089, 0.501631, 0.427338, 9.000000, 1.000000, 0.000000, 0.000000, 17.528423, 28.453564, 63.137985, -0.232937, -0.375461, -0.897089, 0.501453, 0.226205, 9.000000, 1.000000, 0.000000, 0.000000, -27.035938, -17.570440, 65.253693, -0.404665, -0.087656, 0.910254, 0.587383, 0.047594, 0.000000, 1.000000, 0.000000, 0.000000, -23.583351, -14.198200, 67.113350, -0.404665, -0.087656, 0.910254, 0.502489, 0.148724, 1.000000, 0.905086, 0.000000, 0.094914, -27.759468, -16.215469, 65.062515, -0.404665, -0.087656, 0.910254, 0.500805, 0.052577, 0.000000, 1.000000, 0.000000, 0.000000, -23.583351, -14.198200, 67.113350, 0.742339, -0.545431, -0.389150, 0.502489, 0.148724, 1.000000, 0.905086, 0.000000, 0.094914, -27.035938, -17.570440, 65.253693, 0.742339, -0.545431, -0.389150, 0.587383, 0.047594, 0.000000, 1.000000, 0.000000, 0.000000, -27.001362, -16.965387, 64.471611, 0.742339, -0.545431, -0.389150, 0.563687, 0.069338, 0.000000, 1.000000, 0.000000, 0.000000, -27.035938, -17.570440, 65.253693, -0.568362, -0.190563, 0.800406, 0.587383, 0.047594, 0.000000, 1.000000, 0.000000, 0.000000, -27.759468, -16.215469, 65.062515, -0.568362, -0.190563, 0.800406, 0.500805, 0.052577, 0.000000, 1.000000, 0.000000, 0.000000, -30.821674, -17.569145, 62.565781, -0.568362, -0.190563, 0.800406, 0.501485, 0.006321, 0.000000, 1.000000, 0.000000, 0.000000, -28.771408, -15.012947, 65.292236, -0.595916, 0.758694, -0.263186, 0.410117, 0.041820, 0.000000, 1.000000, 0.000000, 0.000000, -28.274815, -14.839731, 64.667160, -0.595916, 0.758694, -0.263186, 0.421681, 0.065901, 0.000000, 1.000000, 0.000000, 0.000000, -30.821674, -17.569145, 62.565781, -0.595916, 0.758694, -0.263186, 0.501485, 0.006321, 0.000000, 1.000000, 0.000000, 0.000000, -28.274815, -14.839731, 64.667160, -0.193720, 0.974169, 0.116052, 0.421681, 0.065901, 0.000000, 1.000000, 0.000000, 0.000000, -28.771408, -15.012947, 65.292236, -0.193720, 0.974169, 0.116052, 0.410117, 0.041820, 0.000000, 1.000000, 0.000000, 0.000000, -23.583351, -14.198200, 67.113350, -0.193720, 0.974169, 0.116052, 0.502489, 0.148724, 1.000000, 0.905086, 0.000000, 0.094914, -27.001362, -16.965387, 64.471611, 0.391744, -0.736017, -0.552100, 0.563687, 0.069338, 0.000000, 1.000000, 0.000000, 0.000000, -27.035938, -17.570440, 65.253693, 0.391744, -0.736017, -0.552100, 0.587383, 0.047594, 0.000000, 1.000000, 0.000000, 0.000000, -30.821674, -17.569145, 62.565781, 0.391744, -0.736017, -0.552100, 0.501485, 0.006321, 0.000000, 1.000000, 0.000000, 0.000000, -27.759468, -16.215469, 65.062515, -0.409478, -0.491422, 0.768656, 0.500805, 0.052577, 0.000000, 1.000000, 0.000000, 0.000000, -28.771408, -15.012947, 65.292236, -0.409478, -0.491422, 0.768656, 0.410117, 0.041820, 0.000000, 1.000000, 0.000000, 0.000000, -30.821674, -17.569145, 62.565781, -0.409478, -0.491422, 0.768656, 0.501485, 0.006321, 0.000000, 1.000000, 0.000000, 0.000000, -30.821674, -17.569145, 62.565781, 0.344716, 0.438603, -0.829939, 0.501485, 0.006321, 0.000000, 1.000000, 0.000000, 0.000000, -27.656689, -16.146996, 64.631920, 0.344716, 0.438603, -0.829939, 0.503820, 0.062860, 0.000000, 1.000000, 0.000000, 0.000000, -27.001362, -16.965387, 64.471611, 0.344716, 0.438603, -0.829939, 0.563687, 0.069338, 0.000000, 1.000000, 0.000000, 0.000000, -27.001362, -16.965387, 64.471611, 0.316886, 0.420295, -0.850256, 0.563687, 0.069338, 0.000000, 1.000000, 0.000000, 0.000000, -27.656689, -16.146996, 64.631920, 0.316886, 0.420295, -0.850256, 0.503820, 0.062860, 0.000000, 1.000000, 0.000000, 0.000000, -23.583351, -14.198200, 67.113350, 0.316886, 0.420295, -0.850256, 0.502489, 0.148724, 1.000000, 0.905086, 0.000000, 0.094914, -27.656689, -16.146996, 64.631920, 0.426098, 0.225096, -0.876226, 0.503820, 0.062860, 0.000000, 1.000000, 0.000000, 0.000000, -28.274815, -14.839731, 64.667160, 0.426098, 0.225096, -0.876226, 0.421681, 0.065901, 0.000000, 1.000000, 0.000000, 0.000000, -23.583351, -14.198200, 67.113350, 0.426098, 0.225096, -0.876226, 0.502489, 0.148724, 1.000000, 0.905086, 0.000000, 0.094914, -28.274815, -14.839731, 64.667160, 0.453811, 0.237730, -0.858802, 0.421681, 0.065901, 0.000000, 1.000000, 0.000000, 0.000000, -27.656689, -16.146996, 64.631920, 0.453811, 0.237730, -0.858802, 0.503820, 0.062860, 0.000000, 1.000000, 0.000000, 0.000000, -30.821674, -17.569145, 62.565781, 0.453811, 0.237730, -0.858802, 0.501485, 0.006321, 0.000000, 1.000000, 0.000000, 0.000000, -27.759468, -16.215469, 65.062515, -0.252109, -0.382001, 0.889110, 0.500805, 0.052577, 0.000000, 1.000000, 0.000000, 0.000000, -23.583351, -14.198200, 67.113350, -0.252109, -0.382001, 0.889110, 0.502489, 0.148724, 1.000000, 0.905086, 0.000000, 0.094914, -28.771408, -15.012947, 65.292236, -0.252109, -0.382001, 0.889110, 0.410117, 0.041820, 0.000000, 1.000000, 0.000000, 0.000000, -6.908089, -5.366500, 63.764595, -0.727406, -0.234813, 0.644781, 0.504412, 0.719658, 2.000000, 1.000000, 0.000000, 0.000000, -3.181688, -11.573628, 65.708031, -0.727406, -0.234813, 0.644781, 0.958199, 0.720202, 2.000000, 1.000000, 0.000000, 0.000000, -5.732576, -4.803636, 65.302483, -0.727406, -0.234813, 0.644781, 0.514511, 0.750456, 2.000000, 1.000000, 0.000000, 0.000000, -4.289087, -12.775501, 64.027794, -0.727406, -0.234813, 0.644781, 0.982457, 0.679474, 2.000000, 1.000000, 0.000000, 0.000000, -11.078429, -0.170952, 66.590996, -0.390747, -0.661733, 0.639864, 0.099720, 0.687030, 2.000000, 1.000000, 0.000000, 0.000000, -6.908089, -5.366500, 63.764595, -0.390747, -0.661733, 0.639864, 0.504412, 0.719658, 2.000000, 1.000000, 0.000000, 0.000000, -5.732576, -4.803636, 65.302483, -0.390747, -0.661733, 0.639864, 0.514511, 0.750456, 2.000000, 1.000000, 0.000000, 0.000000, -12.452875, -1.293007, 64.829178, -0.390747, -0.661733, 0.639864, 0.147101, 0.641727, 2.000000, 1.000000, 0.000000, 0.000000, -4.289087, -12.775501, 64.027794, -0.456027, -0.192071, -0.868993, 0.982457, 0.679474, 2.000000, 1.000000, 0.000000, 0.000000, -6.908089, -5.366500, 63.764595, -0.456027, -0.192071, -0.868993, 0.504412, 0.719658, 2.000000, 1.000000, 0.000000, 0.000000, 0.155936, 0.072871, 58.855320, -0.456027, -0.192071, -0.868993, 0.497189, 0.976739, 2.000000, 1.000000, 0.000000, 0.000000, -4.289087, -12.775501, 64.027794, 0.867961, -0.411949, -0.277384, 0.982457, 0.679474, 2.000000, 1.000000, 0.000000, 0.000000, 0.155936, 0.072871, 58.855320, 0.867961, -0.411949, -0.277384, 0.497189, 0.976739, 2.000000, 1.000000, 0.000000, 0.000000, -3.181688, -11.573628, 65.708031, 0.867961, -0.411949, -0.277384, 0.958199, 0.720202, 2.000000, 1.000000, 0.000000, 0.000000, -3.181688, -11.573628, 65.708031, 0.599773, 0.271089, 0.752850, 0.958199, 0.720202, 2.000000, 1.000000, 0.000000, 0.000000, 0.155936, 0.072871, 58.855320, 0.599773, 0.271089, 0.752850, 0.497189, 0.976739, 2.000000, 1.000000, 0.000000, 0.000000, -5.732576, -4.803636, 65.302483, 0.599773, 0.271089, 0.752850, 0.514511, 0.750456, 2.000000, 1.000000, 0.000000, 0.000000, -5.732576, -4.803636, 65.302483, 0.517745, 0.384940, 0.764043, 0.514511, 0.750456, 2.000000, 1.000000, 0.000000, 0.000000, 0.155936, 0.072871, 58.855320, 0.517745, 0.384940, 0.764043, 0.497189, 0.976739, 2.000000, 1.000000, 0.000000, 0.000000, -11.078429, -0.170952, 66.590996, 0.517745, 0.384940, 0.764043, 0.099720, 0.687030, 2.000000, 1.000000, 0.000000, 0.000000, -11.078429, -0.170952, 66.590996, -0.267550, 0.893608, -0.360392, 0.099720, 0.687030, 2.000000, 1.000000, 0.000000, 0.000000, 0.155936, 0.072871, 58.855320, -0.267550, 0.893608, -0.360392, 0.497189, 0.976739, 2.000000, 1.000000, 0.000000, 0.000000, -12.452875, -1.293007, 64.829178, -0.267550, 0.893608, -0.360392, 0.147101, 0.641727, 2.000000, 1.000000, 0.000000, 0.000000, -12.452875, -1.293007, 64.829178, -0.383304, -0.292817, -0.875977, 0.147101, 0.641727, 2.000000, 1.000000, 0.000000, 0.000000, 0.155936, 0.072871, 58.855320, -0.383304, -0.292817, -0.875977, 0.497189, 0.976739, 2.000000, 1.000000, 0.000000, 0.000000, -6.908089, -5.366500, 63.764595, -0.383304, -0.292817, -0.875977, 0.504412, 0.719658, 2.000000, 1.000000, 0.000000, 0.000000, -14.096881, -9.868227, 66.763664, -0.817790, -0.309723, 0.485067, 0.512161, 0.450689, 3.000000, 1.000000, 0.000000, 0.000000, -10.767291, -15.387712, 68.852852, -0.817790, -0.309723, 0.485067, 0.925066, 0.439433, 3.000000, 1.000000, 0.000000, 0.000000, -13.023705, -9.733191, 68.730705, -0.817790, -0.309723, 0.485067, 0.510912, 0.472544, 3.000000, 1.000000, 0.000000, 0.000000, -11.829906, -16.202747, 66.612457, -0.817790, -0.309723, 0.485067, 0.932014, 0.420468, 3.000000, 1.000000, 0.000000, 0.000000, -16.720821, -5.254642, 70.399338, -0.578336, -0.681864, 0.447873, 0.145138, 0.425384, 3.000000, 1.000000, 0.000000, 0.000000, -14.096881, -9.868227, 66.763664, -0.578336, -0.681864, 0.447873, 0.512161, 0.450689, 3.000000, 1.000000, 0.000000, 0.000000, -13.023705, -9.733191, 68.730705, -0.578336, -0.681864, 0.447873, 0.510912, 0.472544, 3.000000, 1.000000, 0.000000, 0.000000, -18.047771, -5.922734, 68.044395, -0.578336, -0.681864, 0.447873, 0.179148, 0.403020, 3.000000, 1.000000, 0.000000, 0.000000, -11.829906, -16.202747, 66.612457, -0.272067, -0.074465, -0.959393, 0.932014, 0.420468, 3.000000, 1.000000, 0.000000, 0.000000, -14.096881, -9.868227, 66.763664, -0.272067, -0.074465, -0.959393, 0.512161, 0.450689, 3.000000, 1.000000, 0.000000, 0.000000, -4.725222, -4.293661, 63.673347, -0.272067, -0.074465, -0.959393, 0.511799, 0.788389, 3.000000, 1.000000, 0.000000, 0.000000, -11.829906, -16.202747, 66.612457, 0.820736, -0.537449, -0.193754, 0.932014, 0.420468, 3.000000, 1.000000, 0.000000, 0.000000, -4.725222, -4.293661, 63.673347, 0.820736, -0.537449, -0.193754, 0.511799, 0.788389, 3.000000, 1.000000, 0.000000, 0.000000, -10.767291, -15.387712, 68.852852, 0.820736, -0.537449, -0.193754, 0.925066, 0.439433, 3.000000, 1.000000, 0.000000, 0.000000, -10.767291, -15.387712, 68.852852, 0.419246, 0.186491, 0.888512, 0.925066, 0.439433, 3.000000, 1.000000, 0.000000, 0.000000, -4.725222, -4.293661, 63.673347, 0.419246, 0.186491, 0.888512, 0.511799, 0.788389, 3.000000, 1.000000, 0.000000, 0.000000, -13.023705, -9.733191, 68.730705, 0.419246, 0.186491, 0.888512, 0.510912, 0.472544, 3.000000, 1.000000, 0.000000, 0.000000, -13.023705, -9.733191, 68.730705, 0.483225, 0.073879, 0.872373, 0.510912, 0.472544, 3.000000, 1.000000, 0.000000, 0.000000, -4.725222, -4.293661, 63.673347, 0.483225, 0.073879, 0.872373, 0.511799, 0.788389, 3.000000, 1.000000, 0.000000, 0.000000, -16.720821, -5.254642, 70.399338, 0.483225, 0.073879, 0.872373, 0.145138, 0.425384, 3.000000, 1.000000, 0.000000, 0.000000, -16.720821, -5.254642, 70.399338, -0.176049, 0.968594, -0.175589, 0.145138, 0.425384, 3.000000, 1.000000, 0.000000, 0.000000, -4.725222, -4.293661, 63.673347, -0.176049, 0.968594, -0.175589, 0.511799, 0.788389, 3.000000, 1.000000, 0.000000, 0.000000, -18.047771, -5.922734, 68.044395, -0.176049, 0.968594, -0.175589, 0.179148, 0.403020, 3.000000, 1.000000, 0.000000, 0.000000, -18.047771, -5.922734, 68.044395, -0.311374, -0.003333, -0.950282, 0.179148, 0.403020, 3.000000, 1.000000, 0.000000, 0.000000, -4.725222, -4.293661, 63.673347, -0.311374, -0.003333, -0.950282, 0.511799, 0.788389, 3.000000, 1.000000, 0.000000, 0.000000, -14.096881, -9.868227, 66.763664, -0.311374, -0.003333, -0.950282, 0.512161, 0.450689, 3.000000, 1.000000, 0.000000, 0.000000, -19.888485, -13.120079, 68.613960, -0.967088, -0.204684, 0.151145, 0.509246, 0.237055, 4.000000, 1.000000, 0.000000, 0.000000, -19.120735, -18.519083, 66.214920, -0.967088, -0.204684, 0.151145, 0.828157, 0.209081, 4.000000, 1.000000, 0.000000, 0.000000, -18.795708, -18.553457, 68.125580, -0.967088, -0.204684, 0.151145, 0.838437, 0.189518, 4.000000, 1.000000, 0.000000, 0.000000, -20.211788, -12.661311, 67.044144, -0.967088, -0.204684, 0.151145, 0.505370, 0.260684, 4.000000, 1.000000, 0.000000, 0.000000, -19.888485, -13.120079, 68.613960, -0.746776, -0.663698, 0.042782, 0.509246, 0.237055, 4.000000, 1.000000, 0.000000, 0.000000, -22.339767, -10.089949, 69.790207, -0.746776, -0.663698, 0.042782, 0.251676, 0.202876, 4.000000, 1.000000, 0.000000, 0.000000, -22.808884, -9.887461, 67.786476, -0.746776, -0.663698, 0.042782, 0.253564, 0.222811, 4.000000, 1.000000, 0.000000, 0.000000, -20.211788, -12.661311, 67.044144, -0.746776, -0.663698, 0.042782, 0.505370, 0.260684, 4.000000, 1.000000, 0.000000, 0.000000, -19.120735, -18.519083, 66.214920, 0.057884, 0.150488, -0.986916, 0.828157, 0.209081, 4.000000, 1.000000, 0.000000, 0.000000, -20.211788, -12.661311, 67.044144, 0.057884, 0.150488, -0.986916, 0.505370, 0.260684, 4.000000, 1.000000, 0.000000, 0.000000, -12.376906, -9.722403, 67.951790, 0.057884, 0.150488, -0.986916, 0.508279, 0.487738, 4.000000, 1.000000, 0.000000, 0.000000, -19.120735, -18.519083, 66.214920, 0.798813, -0.583497, -0.146386, 0.828157, 0.209081, 4.000000, 1.000000, 0.000000, 0.000000, -12.376906, -9.722403, 67.951790, 0.798813, -0.583497, -0.146386, 0.508279, 0.487738, 4.000000, 1.000000, 0.000000, 0.000000, -18.795708, -18.553457, 68.125580, 0.798813, -0.583497, -0.146386, 0.838437, 0.189518, 4.000000, 1.000000, 0.000000, 0.000000, -18.795708, -18.553457, 68.125580, 0.117002, -0.065541, 0.990967, 0.838437, 0.189518, 4.000000, 1.000000, 0.000000, 0.000000, -12.376906, -9.722403, 67.951790, 0.117002, -0.065541, 0.990967, 0.508279, 0.487738, 4.000000, 1.000000, 0.000000, 0.000000, -19.888485, -13.120079, 68.613960, 0.117002, -0.065541, 0.990967, 0.509246, 0.237055, 4.000000, 1.000000, 0.000000, 0.000000, -19.888485, -13.120079, 68.613960, 0.184850, -0.222088, 0.957344, 0.509246, 0.237055, 4.000000, 1.000000, 0.000000, 0.000000, -12.376906, -9.722403, 67.951790, 0.184850, -0.222088, 0.957344, 0.508279, 0.487738, 4.000000, 1.000000, 0.000000, 0.000000, -22.339767, -10.089949, 69.790207, 0.184850, -0.222088, 0.957344, 0.251676, 0.202876, 4.000000, 1.000000, 0.000000, 0.000000, -22.339767, -10.089949, 69.790207, -0.017390, 0.994367, 0.104558, 0.251676, 0.202876, 4.000000, 1.000000, 0.000000, 0.000000, -12.376906, -9.722403, 67.951790, -0.017390, 0.994367, 0.104558, 0.508279, 0.487738, 4.000000, 1.000000, 0.000000, 0.000000, -22.808884, -9.887461, 67.786476, -0.017390, 0.994367, 0.104558, 0.253564, 0.222811, 4.000000, 1.000000, 0.000000, 0.000000, -22.808884, -9.887461, 67.786476, 0.011023, 0.268123, -0.963322, 0.253564, 0.222811, 4.000000, 1.000000, 0.000000, 0.000000, -12.376906, -9.722403, 67.951790, 0.011023, 0.268123, -0.963322, 0.508279, 0.487738, 4.000000, 1.000000, 0.000000, 0.000000, -20.211788, -12.661311, 67.044144, 0.011023, 0.268123, -0.963322, 0.505370, 0.260684, 4.000000, 1.000000, 0.000000, 0.000000, -24.900028, -14.809280, 66.993881, -0.977493, -0.203818, -0.054453, 0.500160, 0.108011, 1.000000, 1.000000, 0.000000, 0.000000, -24.274021, -17.243259, 64.866737, -0.977493, -0.203818, -0.054453, 0.616367, 0.123356, 1.000000, 1.000000, 0.000000, 0.000000, -24.288033, -17.460386, 66.461426, -0.977493, -0.203818, -0.054453, 0.618613, 0.095268, 1.000000, 1.000000, 0.000000, 0.000000, -24.911274, -14.272742, 65.717949, -0.977493, -0.203818, -0.054453, 0.502869, 0.134458, 1.000000, 1.000000, 0.000000, 0.000000, -26.321823, -13.052693, 65.993462, -0.708431, -0.680346, -0.187763, 0.337536, 0.116506, 1.000000, 1.000000, 0.000000, 0.000000, -24.900028, -14.809280, 66.993881, -0.708431, -0.680346, -0.187763, 0.500160, 0.108011, 1.000000, 1.000000, 0.000000, 0.000000, -26.240833, -13.426279, 67.667290, -0.708431, -0.680346, -0.187763, 0.340621, 0.086227, 1.000000, 1.000000, 0.000000, 0.000000, -24.911274, -14.272742, 65.717949, -0.708431, -0.680346, -0.187763, 0.502869, 0.134458, 1.000000, 1.000000, 0.000000, 0.000000, -24.274021, -17.243259, 64.866737, 0.216747, 0.311606, -0.925161, 0.616367, 0.123356, 1.000000, 1.000000, 0.000000, 0.000000, -24.911274, -14.272742, 65.717949, 0.216747, 0.311606, -0.925161, 0.502869, 0.134458, 1.000000, 1.000000, 0.000000, 0.000000, -18.493877, -12.479353, 67.825447, 0.216747, 0.311606, -0.925161, 0.506132, 0.280374, 1.000000, 1.000000, 0.000000, 0.000000, -24.274021, -17.243259, 64.866737, 0.661737, -0.743637, -0.095437, 0.616367, 0.123356, 1.000000, 1.000000, 0.000000, 0.000000, -18.493877, -12.479353, 67.825447, 0.661737, -0.743637, -0.095437, 0.506132, 0.280374, 1.000000, 1.000000, 0.000000, 0.000000, -24.288033, -17.460386, 66.461426, 0.661737, -0.743637, -0.095437, 0.618613, 0.095268, 1.000000, 1.000000, 0.000000, 0.000000, -24.288033, -17.460386, 66.461426, -0.051146, -0.207989, 0.976793, 0.618613, 0.095268, 1.000000, 1.000000, 0.000000, 0.000000, -18.493877, -12.479353, 67.825447, -0.051146, -0.207989, 0.976793, 0.506132, 0.280374, 1.000000, 1.000000, 0.000000, 0.000000, -24.900028, -14.809280, 66.993881, -0.051146, -0.207989, 0.976793, 0.500160, 0.108011, 1.000000, 1.000000, 0.000000, 0.000000, -24.900028, -14.809280, 66.993881, 0.031826, -0.412447, 0.910426, 0.500160, 0.108011, 1.000000, 1.000000, 0.000000, 0.000000, -18.493877, -12.479353, 67.825447, 0.031826, -0.412447, 0.910426, 0.506132, 0.280374, 1.000000, 1.000000, 0.000000, 0.000000, -26.240833, -13.426279, 67.667290, 0.031826, -0.412447, 0.910426, 0.340621, 0.086227, 1.000000, 1.000000, 0.000000, 0.000000, -26.240833, -13.426279, 67.667290, -0.122767, 0.967324, 0.221839, 0.340621, 0.086227, 1.000000, 1.000000, 0.000000, 0.000000, -18.493877, -12.479353, 67.825447, -0.122767, 0.967324, 0.221839, 0.506132, 0.280374, 1.000000, 1.000000, 0.000000, 0.000000, -26.321823, -13.052693, 65.993462, -0.122767, 0.967324, 0.221839, 0.337536, 0.116506, 1.000000, 1.000000, 0.000000, 0.000000, -26.321823, -13.052693, 65.993462, 0.179370, 0.409387, -0.894555, 0.337536, 0.116506, 1.000000, 1.000000, 0.000000, 0.000000, -18.493877, -12.479353, 67.825447, 0.179370, 0.409387, -0.894555, 0.506132, 0.280374, 1.000000, 1.000000, 0.000000, 0.000000, -24.911274, -14.272742, 65.717949, 0.179370, 0.409387, -0.894555, 0.502869, 0.134458, 1.000000, 1.000000, 0.000000, 0.000000, 6.490732, 2.086516, 12.560350, 0.597922, 0.779337, 0.187412, -0.042226, -1.038696, 0.000000, 1.000000, 0.000000, 0.000000, 0.114397, 10.035635, -0.152218, 0.597922, 0.779337, 0.187412, 0.383360, -2.269913, 0.000000, 1.000000, 0.000000, 0.000000, 0.066509, 7.296290, 12.651642, 0.597922, 0.779337, 0.187412, 0.382669, -1.029855, 0.000000, 1.000000, 0.000000, 0.000000, 9.510592, 3.090170, 0.011892, 0.597922, 0.779337, 0.187412, -0.026992, -2.254019, 0.000000, 1.000000, 0.000000, 0.000000, 4.454815, -6.041144, 12.675422, 0.944484, -0.276231, 0.177893, -0.400884, -1.027552, 0.000000, 1.000000, 0.000000, 0.000000, 9.510592, 3.090170, 0.011892, 0.944484, -0.276231, 0.177893, -0.026992, -2.254019, 0.000000, 1.000000, 0.000000, 0.000000, 6.490732, 2.086516, 12.560350, 0.944484, -0.276231, 0.177893, -0.042226, -1.038696, 0.000000, 1.000000, 0.000000, 0.000000, 5.877870, -8.090168, 0.011892, 0.944484, -0.276231, 0.177893, -0.398618, -2.254019, 0.000000, 1.000000, 0.000000, 0.000000, -4.103505, -5.737158, 12.614674, -0.015249, -0.985009, 0.171829, 1.192693, -1.033435, 0.000000, 1.000000, 0.000000, 0.000000, 5.877870, -8.090168, 0.011892, -0.015249, -0.985009, 0.171829, 1.538389, -2.254019, 0.000000, 1.000000, 0.000000, 0.000000, 4.454815, -6.041144, 12.675422, -0.015249, -0.985009, 0.171829, 1.506567, -1.027552, 0.000000, 1.000000, 0.000000, 0.000000, -5.877954, -8.090287, 0.011740, -0.015249, -0.985009, 0.171829, 1.183656, -2.254033, 0.000000, 1.000000, 0.000000, 0.000000, -4.103505, -5.737158, 12.614674, -0.936550, -0.270012, 0.223535, 1.192693, -1.033435, 0.000000, 1.000000, 0.000000, 0.000000, -5.786043, 1.871028, 12.429279, -0.936550, -0.270012, 0.223535, 0.826362, -1.051391, 0.000000, 1.000000, 0.000000, 0.000000, -9.692420, 3.148932, -0.067627, -0.936550, -0.270012, 0.223535, 0.805880, -2.261720, 0.000000, 1.000000, 0.000000, 0.000000, -5.877954, -8.090287, 0.011740, -0.936550, -0.270012, 0.223535, 1.183656, -2.254033, 0.000000, 1.000000, 0.000000, 0.000000, 0.066509, 7.296290, 12.651642, -0.604915, 0.766986, 0.214034, 0.382669, -1.029855, 0.000000, 1.000000, 0.000000, 0.000000, 0.114397, 10.035635, -0.152218, -0.604915, 0.766986, 0.214034, 0.383360, -2.269913, 0.000000, 1.000000, 0.000000, 0.000000, -5.786043, 1.871028, 12.429279, -0.604915, 0.766986, 0.214034, 0.826362, -1.051391, 0.000000, 1.000000, 0.000000, 0.000000, -9.692420, 3.148932, -0.067627, -0.604915, 0.766986, 0.214034, 0.805880, -2.261720, 0.000000, 1.000000, 0.000000, 0.000000, 2.913323, 1.318645, 26.504801, 0.616681, 0.760955, 0.201625, -0.058563, 0.311828, 1.000000, 0.505965, 0.000000, 0.494035, 0.066509, 7.296290, 12.651642, 0.616681, 0.760955, 0.201625, 0.382669, -1.029855, 0.000000, 1.000000, 0.000000, 0.000000, -0.353391, 3.918231, 26.580362, 0.616681, 0.760955, 0.201625, 0.417741, 0.319147, 1.000000, 0.513745, 0.000000, 0.486255, 6.490732, 2.086516, 12.560350, 0.616681, 0.760955, 0.201625, -0.042226, -1.038696, 0.000000, 1.000000, 0.000000, 0.000000, 1.913219, -3.071691, 26.587095, 0.947490, -0.226234, 0.226010, -0.436329, 0.319799, 1.000000, 0.507857, 0.000000, 0.492143, 6.490732, 2.086516, 12.560350, 0.947490, -0.226234, 0.226010, -0.042226, -1.038696, 0.000000, 1.000000, 0.000000, 0.000000, 2.913323, 1.318645, 26.504801, 0.947490, -0.226234, 0.226010, -0.058563, 0.311828, 1.000000, 0.505965, 0.000000, 0.494035, 4.454815, -6.041144, 12.675422, 0.947490, -0.226234, 0.226010, -0.400884, -1.027552, 0.000000, 1.000000, 0.000000, 0.000000, -3.120065, -4.125015, 26.793989, 0.056061, -0.984908, 0.163747, 1.193557, 0.339836, 0.000000, 0.913997, 1.000000, 0.086003, -4.103505, -5.737158, 12.614674, 0.056061, -0.984908, 0.163747, 1.192693, -1.033435, 0.000000, 1.000000, 0.000000, 0.000000, 1.913219, -3.071691, 26.587095, 0.056061, -0.984908, 0.163747, 1.500678, 0.319799, 1.000000, 0.507857, 0.000000, 0.492143, 4.454815, -6.041144, 12.675422, 0.056061, -0.984908, 0.163747, 1.506567, -1.027552, 0.000000, 1.000000, 0.000000, 0.000000, -4.491728, 1.445731, 26.711491, -0.970875, -0.223230, 0.087007, 0.841582, 0.331847, 0.000000, 0.546324, 1.000000, 0.453676, -5.786043, 1.871028, 12.429279, -0.970875, -0.223230, 0.087007, 0.826362, -1.051391, 0.000000, 1.000000, 0.000000, 0.000000, -3.120065, -4.125015, 26.793989, -0.970875, -0.223230, 0.087007, 1.193557, 0.339836, 0.000000, 0.913997, 1.000000, 0.086003, -4.103505, -5.737158, 12.614674, -0.970875, -0.223230, 0.087007, 1.192693, -1.033435, 0.000000, 1.000000, 0.000000, 0.000000, -0.353391, 3.918231, 26.580362, -0.616051, 0.777890, 0.123969, 0.417741, 0.319147, 1.000000, 0.513745, 0.000000, 0.486255, 0.066509, 7.296290, 12.651642, -0.616051, 0.777890, 0.123969, 0.382669, -1.029855, 0.000000, 1.000000, 0.000000, 0.000000, -4.491728, 1.445731, 26.711491, -0.616051, 0.777890, 0.123969, 0.841582, 0.331847, 0.000000, 0.546324, 1.000000, 0.453676, -5.786043, 1.871028, 12.429279, -0.616051, 0.777890, 0.123969, 0.826362, -1.051391, 0.000000, 1.000000, 0.000000, 0.000000, 4.072278, 0.781711, 41.494450, 0.575303, 0.817939, 0.001300, -0.108040, 1.763581, 1.000000, 0.500000, 2.000000, 0.500000, 2.913323, 1.318645, 26.504801, 0.575303, 0.817939, 0.001300, -0.058563, 0.311828, 1.000000, 0.505965, 0.000000, 0.494035, 1.721127, 2.133498, 41.411987, 0.575303, 0.817939, 0.001300, 0.081736, 1.755594, 1.000000, 0.500000, 2.000000, 0.500000, -0.353391, 3.918231, 26.580362, 0.575303, 0.817939, 0.001300, 0.417741, 0.319147, 1.000000, 0.513745, 0.000000, 0.486255, 3.457617, -1.253197, 41.624363, 0.966397, -0.245398, -0.076532, -0.266619, 1.776163, 1.000000, 0.500000, 2.000000, 0.500000, 2.913323, 1.318645, 26.504801, 0.966397, -0.245398, -0.076532, -0.058563, 0.311828, 1.000000, 0.505965, 0.000000, 0.494035, 4.072278, 0.781711, 41.494450, 0.966397, -0.245398, -0.076532, -0.108040, 1.763581, 1.000000, 0.500000, 2.000000, 0.500000, 1.913219, -3.071691, 26.587095, 0.966397, -0.245398, -0.076532, -0.436329, 0.319799, 1.000000, 0.507857, 0.000000, 0.492143, 0.096389, -1.781361, 41.168335, 0.180909, -0.977437, 0.109037, 1.379780, 1.731996, 2.000000, 0.505928, 1.000000, 0.494072, 1.913219, -3.071691, 26.587095, 0.180909, -0.977437, 0.109037, 1.500678, 0.319799, 1.000000, 0.507857, 0.000000, 0.492143, 3.457617, -1.253197, 41.624363, 0.180909, -0.977437, 0.109037, 1.670388, 1.776163, 1.000000, 0.500000, 2.000000, 0.500000, -3.120065, -4.125015, 26.793989, 0.180909, -0.977437, 0.109037, 1.193557, 0.339836, 0.000000, 0.913997, 1.000000, 0.086003, -1.579241, 0.722903, 41.196098, -0.914499, -0.343660, 0.213519, 0.925853, 1.734685, 2.000000, 0.504437, 1.000000, 0.495563, -4.491728, 1.445731, 26.711491, -0.914499, -0.343660, 0.213519, 0.841582, 0.331847, 0.000000, 0.546324, 1.000000, 0.453676, 0.096389, -1.781361, 41.168335, -0.914499, -0.343660, 0.213519, 1.379780, 1.731996, 2.000000, 0.505928, 1.000000, 0.494072, -3.120065, -4.125015, 26.793989, -0.914499, -0.343660, 0.213519, 1.193557, 0.339836, 0.000000, 0.913997, 1.000000, 0.086003, 1.721127, 2.133498, 41.411987, -0.458684, 0.875346, 0.152900, 0.081736, 1.755594, 1.000000, 0.500000, 2.000000, 0.500000, -0.353391, 3.918231, 26.580362, -0.458684, 0.875346, 0.152900, 0.417741, 0.319147, 1.000000, 0.513745, 0.000000, 0.486255, -1.579241, 0.722903, 41.196098, -0.458684, 0.875346, 0.152900, 0.925853, 1.734685, 2.000000, 0.504437, 1.000000, 0.495563, -4.491728, 1.445731, 26.711491, -0.458684, 0.875346, 0.152900, 0.841582, 0.331847, 0.000000, 0.546324, 1.000000, 0.453676, 1.017352, 1.032964, 59.225449, 0.457705, 0.886116, 0.072828, -0.077155, 3.480834, 2.000000, 1.000000, 0.000000, 0.000000, 4.072278, 0.781711, 41.494450, 0.457705, 0.886116, 0.072828, -0.108040, 1.763581, 1.000000, 0.500000, 2.000000, 0.500000, 0.041473, 1.427037, 58.975128, 0.457705, 0.886116, 0.072828, 0.302937, 3.456590, 2.000000, 1.000000, 0.000000, 0.000000, 1.721127, 2.133498, 41.411987, 0.457705, 0.886116, 0.072828, 0.081736, 1.755594, 1.000000, 0.500000, 2.000000, 0.500000, 0.738488, -0.540174, 59.076302, 0.957388, -0.237967, 0.163644, -0.423560, 3.466389, 2.000000, 1.000000, 0.000000, 0.000000, 4.072278, 0.781711, 41.494450, 0.957388, -0.237967, 0.163644, -0.108040, 1.763581, 1.000000, 0.500000, 2.000000, 0.500000, 1.017352, 1.032964, 59.225449, 0.957388, -0.237967, 0.163644, -0.077155, 3.480834, 2.000000, 1.000000, 0.000000, 0.000000, 3.457617, -1.253197, 41.624363, 0.957388, -0.237967, 0.163644, -0.266619, 1.776163, 1.000000, 0.500000, 2.000000, 0.500000, -0.456246, -0.453670, 58.716446, 0.084585, -0.994236, 0.065877, 1.281547, 3.431537, 2.000000, 1.000000, 0.000000, 0.000000, 3.457617, -1.253197, 41.624363, 0.084585, -0.994236, 0.065877, 1.670388, 1.776163, 1.000000, 0.500000, 2.000000, 0.500000, 0.738488, -0.540174, 59.076302, 0.084585, -0.994236, 0.065877, 1.513447, 3.466389, 2.000000, 1.000000, 0.000000, 0.000000, 0.096389, -1.781361, 41.168335, 0.084585, -0.994236, 0.065877, 1.379780, 1.731996, 2.000000, 0.505928, 1.000000, 0.494072, -1.527978, 0.347723, 58.566208, -0.769163, -0.639021, 0.006387, 1.001056, 3.416986, 2.000000, 1.000000, 0.000000, 0.000000, 0.096389, -1.781361, 41.168335, -0.769163, -0.639021, 0.006387, 1.379780, 1.731996, 2.000000, 0.505928, 1.000000, 0.494072, -0.456246, -0.453670, 58.716446, -0.769163, -0.639021, 0.006387, 1.281547, 3.431537, 2.000000, 1.000000, 0.000000, 0.000000, -1.579241, 0.722903, 41.196098, -0.769163, -0.639021, 0.006387, 0.925853, 1.734685, 2.000000, 0.504437, 1.000000, 0.495563, 0.041473, 1.427037, 58.975128, -0.455872, 0.890023, 0.006308, 0.302937, 3.456590, 2.000000, 1.000000, 0.000000, 0.000000, 1.721127, 2.133498, 41.411987, -0.455872, 0.890023, 0.006308, 0.081736, 1.755594, 1.000000, 0.500000, 2.000000, 0.500000, -1.527978, 0.347723, 58.566208, -0.455872, 0.890023, 0.006308, 1.001056, 3.416986, 2.000000, 1.000000, 0.000000, 0.000000, -1.579241, 0.722903, 41.196098, -0.455872, 0.890023, 0.006308, 0.925853, 1.734685, 2.000000, 0.504437, 1.000000, 0.495563, -0.456246, -0.453670, 58.716446, -0.249823, -0.062114, 0.966297, 1.281547, 3.431537, 2.000000, 1.000000, 0.000000, 0.000000, 0.041473, 1.427037, 58.975128, -0.249823, -0.062114, 0.966297, 0.438854, 3.687499, 2.000000, 1.000000, 0.000000, 0.000000, -1.527978, 0.347723, 58.566208, -0.249823, -0.062114, 0.966297, 1.001056, 3.416986, 2.000000, 1.000000, 0.000000, 0.000000, 1.017352, 1.032964, 59.225449, -0.249823, -0.062114, 0.966297, 1.074761, 3.665561, 2.000000, 1.000000, 0.000000, 0.000000, 0.738488, -0.540174, 59.076302, -0.249823, -0.062114, 0.966297, 1.513447, 3.466389, 2.000000, 1.000000, 0.000000, 0.000000, 0.114397, 10.035635, -0.152218, 0.001545, -0.014482, -0.999894, 0.383360, -2.269913, 0.000000, 1.000000, 0.000000, 0.000000, -0.514693, -0.541217, 0.000001, 0.001545, -0.014482, -0.999894, 0.941538, -2.506981, 0.000000, 1.000000, 0.000000, 0.000000, -9.692420, 3.148932, -0.067627, 0.001545, -0.014482, -0.999894, 0.805880, -2.261720, 0.000000, 1.000000, 0.000000, 0.000000, -9.692420, 3.148932, -0.067627, 0.005245, -0.005281, -0.999972, 0.805880, -2.261720, 0.000000, 1.000000, 0.000000, 0.000000, -0.514693, -0.541217, 0.000001, 0.005245, -0.005281, -0.999972, 0.941538, -2.506981, 0.000000, 1.000000, 0.000000, 0.000000, -5.877954, -8.090287, 0.011740, 0.005245, -0.005281, -0.999972, 1.183656, -2.254033, 0.000000, 1.000000, 0.000000, 0.000000, -5.877954, -8.090287, 0.011740, 0.000013, -0.001564, -0.999999, 1.183656, -2.254033, 0.000000, 1.000000, 0.000000, 0.000000, -0.514693, -0.541217, 0.000001, 0.000013, -0.001564, -0.999999, 0.941538, -2.506981, 0.000000, 1.000000, 0.000000, 0.000000, 5.877870, -8.090168, 0.011892, 0.000013, -0.001564, -0.999999, 1.538389, -2.254019, 0.000000, 1.000000, 0.000000, 0.000000, 5.877870, -8.090168, 0.011892, 0.001344, -0.000437, -0.999999, 1.538389, -2.254019, 0.000000, 1.000000, 0.000000, 0.000000, -0.514693, -0.541217, 0.000001, 0.001344, -0.000437, -0.999999, 0.941538, -2.506981, 0.000000, 1.000000, 0.000000, 0.000000, 9.510592, 3.090170, 0.011892, 0.001344, -0.000437, -0.999999, 0.964756, -2.912601, 0.000000, 1.000000, 0.000000, 0.000000, 9.510592, 3.090170, 0.011892, 0.006539, -0.014779, -0.999869, 0.964756, -2.912601, 0.000000, 1.000000, 0.000000, 0.000000, -0.514693, -0.541217, 0.000001, 0.006539, -0.014779, -0.999869, 0.941538, -2.506981, 0.000000, 1.000000, 0.000000, 0.000000, 0.114397, 10.035635, -0.152218, 0.006539, -0.014779, -0.999869, 0.383360, -2.269913, 0.000000, 1.000000, 0.000000, 0.000000 ], "parts": [ { "id": "shape1_part1", "type": "TRIANGLES", "indices": [ 700, 701, 702, 701, 700, 703, 704, 705, 706, 705, 704, 707, 708, 709, 710, 709, 708, 711, 712, 713, 714, 714, 715, 712, 716, 717, 718, 717, 719, 718, 720, 721, 722, 721, 720, 723, 724, 725, 726, 725, 724, 727, 728, 729, 730, 729, 731, 730, 732, 733, 734, 733, 735, 734, 736, 737, 738, 737, 739, 738, 740, 741, 742, 741, 743, 742, 744, 745, 746, 745, 744, 747, 748, 749, 750, 749, 748, 751, 752, 753, 754, 753, 755, 754, 756, 757, 758, 757, 759, 758, 760, 761, 762, 762, 761, 763, 764, 765, 766, 765, 764, 767, 768, 769, 770, 769, 768, 771, 772, 773, 774, 773, 772, 775, 776, 777, 778, 778, 777, 779, 780, 781, 782, 781, 780, 783, 783, 780, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799 ] }, { "id": "shape1_part2", "type": "TRIANGLES", "indices": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 37, 36, 39, 40, 41, 42, 40, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 63, 62, 65, 66, 67, 68, 66, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 89, 88, 91, 92, 93, 94, 93, 92, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 115, 114, 117, 118, 119, 120, 119, 118, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 177, 176, 179, 180, 181, 182, 181, 180, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 203, 202, 205, 206, 207, 208, 207, 206, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 229, 228, 231, 232, 233, 234, 232, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 255, 254, 257, 258, 259, 260, 260, 261, 258, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279 ] }, { "id": "shape1_part3", "type": "TRIANGLES", "indices": [ 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 317, 316, 319, 320, 321, 322, 321, 320, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 343, 342, 345, 346, 347, 348, 347, 346, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 369, 368, 371, 372, 373, 374, 373, 372, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 395, 397, 396, 398, 399, 400, 399, 398, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 457, 456, 459, 460, 461, 462, 461, 460, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 482, 484, 485, 486, 487, 488, 487, 486, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 509, 508, 511, 512, 513, 514, 513, 512, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 535, 534, 537, 538, 539, 540, 538, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559 ] }, { "id": "shape1_part4", "type": "TRIANGLES", "indices": [ 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 597, 596, 599, 600, 601, 602, 601, 600, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 623, 622, 625, 626, 627, 628, 627, 626, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 649, 648, 651, 652, 653, 654, 652, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 675, 674, 677, 678, 679, 680, 679, 678, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699 ] } ] } ], "materials": [ { "id": "bark__bark_jpg", "ambient": [ 1.000000, 1.000000, 1.000000], "diffuse": [ 0.800000, 0.800000, 0.800000], "emissive": [ 0.800000, 0.800000, 0.800000], "textures": [ { "id": "bark_jpg", "filename": "bark.png", "type": "DIFFUSE" } ] }, { "id": "leaf__leaf_png", "ambient": [ 1.000000, 1.000000, 1.000000], "diffuse": [ 1.000000, 1.000000, 1.000000], "emissive": [ 1.000000, 1.000000, 1.000000], "textures": [ { "id": "leaf_png", "filename": "leaf.png", "type": "DIFFUSE" } ] } ], "nodes": [ { "id": "trunk", "rotation": [ 0.038322, 0.041444, 0.001591, 0.998404], "scale": [ 0.052866, 0.052866, 0.052866], "translation": [-0.046604, 0.043298, -0.022254], "parts": [ { "meshpartid": "shape1_part1", "materialid": "bark__bark_jpg", "bones": [ { "node": "Bone", "translation": [ 0.838526, -0.784323, 0.553893, 0.000000], "rotation": [ 0.466923, -0.504260, 0.530575, 0.496181], "scale": [ 18.915624, 18.915621, 18.915623, 0.000000] }, { "node": "Bone_001", "translation": [-1.027346, 0.665645, 26.515472, 0.000000], "rotation": [ 0.684531, -0.289140, 0.585711, 0.323664], "scale": [ 18.915625, 18.915621, 18.915625, 0.000000] }, { "node": "Bone_002", "translation": [ 1.193254, 0.412769, 41.488463, 0.000000], "rotation": [ 0.504640, -0.502504, 0.529769, 0.460622], "scale": [ 18.915626, 18.915629, 18.915626, 0.000000] } ], "uvMapping": [[ 0]] }, { "meshpartid": "shape1_part2", "materialid": "leaf__leaf_png", "bones": [ { "node": "Bone_025", "translation": [ 5.094653, -33.693921, 58.399157, 0.000000], "rotation": [ 0.687213, -0.617883, -0.224293, -0.309275], "scale": [ 18.915623, 18.915629, 18.915626, 0.000000] }, { "node": "Bone_011", "translation": [ 0.023526, 0.075589, 59.080889, 0.000000], "rotation": [ 0.689324, -0.609296, -0.130906, 0.369397], "scale": [ 18.915626, 18.915629, 18.915627, 0.000000] }, { "node": "Bone_012", "translation": [ 2.640229, -10.903910, 62.241767, 0.000000], "rotation": [ 0.009430, -0.131544, -0.632966, 0.762864], "scale": [ 18.915625, 18.915632, 18.915630, 0.000000] }, { "node": "Bone_013", "translation": [ 4.230119, -20.284474, 64.070591, 0.000000], "rotation": [ 0.721236, -0.680000, -0.067384, -0.113480], "scale": [ 18.915622, 18.915630, 18.915625, 0.000000] }, { "node": "Bone_014", "translation": [ 4.791018, -28.475910, 61.936757, 0.000000], "rotation": [-0.670935, 0.674614, 0.144367, 0.271847], "scale": [ 18.915622, 18.915628, 18.915625, 0.000000] }, { "node": "Bone_023", "translation": [-23.443768, 23.587707, 58.909280, 0.000000], "rotation": [-0.381975, 0.050467, 0.876991, 0.287115], "scale": [ 18.915631, 18.915630, 18.915627, 0.000000] }, { "node": "Bone_019", "translation": [ 0.023522, 0.075588, 59.080889, 0.000000], "rotation": [ 0.194508, 0.057470, 0.935756, 0.288485], "scale": [ 18.915629, 18.915627, 18.915627, 0.000000] }, { "node": "Bone_020", "translation": [-8.003475, 6.030660, 62.585183, 0.000000], "rotation": [-0.042408, -0.293792, 0.886600, 0.354723], "scale": [ 18.915625, 18.915627, 18.915627, 0.000000] }, { "node": "Bone_021", "translation": [-15.674405, 12.766019, 63.957478, 0.000000], "rotation": [-0.398810, -0.594992, 0.658639, 0.230499], "scale": [ 18.915625, 18.915624, 18.915628, 0.000000] }, { "node": "Bone_022", "translation": [-20.371124, 19.115513, 61.909107, 0.000000], "rotation": [-0.449148, -0.426780, 0.752097, 0.224666], "scale": [ 18.915628, 18.915626, 18.915626, 0.000000] } ], "uvMapping": [[ 0]] }, { "meshpartid": "shape1_part3", "materialid": "leaf__leaf_png", "bones": [ { "node": "Bone_026", "translation": [ 27.262427, -7.734200, 46.721832, 0.000000], "rotation": [ 0.656320, -0.439787, -0.403123, -0.461869], "scale": [ 18.915633, 18.915630, 18.915628, 0.000000] }, { "node": "Bone_003", "translation": [ 0.023523, 0.075590, 59.080886, 0.000000], "rotation": [-0.000094, 0.023361, -0.080952, 0.996444], "scale": [ 18.915627, 18.915628, 18.915627, 0.000000] }, { "node": "Bone_004", "translation": [ 10.529839, -1.643844, 58.584862, 0.000000], "rotation": [ 0.130240, 0.145062, -0.103104, 0.975379], "scale": [ 18.915630, 18.915627, 18.915624, 0.000000] }, { "node": "Bone_005", "translation": [ 19.211720, -3.157890, 55.712979, 0.000000], "rotation": [ 0.155730, 0.299504, -0.240990, 0.909928], "scale": [ 18.915628, 18.915627, 18.915626, 0.000000] }, { "node": "Bone_006", "translation": [ 24.188332, -5.597185, 51.332119, 0.000000], "rotation": [ 0.768884, -0.391725, -0.296219, -0.409419], "scale": [ 18.915633, 18.915629, 18.915625, 0.000000] }, { "node": "Bone_027", "translation": [ 17.336297, 29.132328, 64.079045, 0.000000], "rotation": [-0.581171, -0.085101, 0.577511, 0.566992], "scale": [ 18.915628, 18.915630, 18.915627, 0.000000] }, { "node": "Bone_015", "translation": [ 0.023526, 0.075588, 59.080884, 0.000000], "rotation": [ 0.029733, -0.253413, 0.444582, 0.858629], "scale": [ 18.915626, 18.915627, 18.915628, 0.000000] }, { "node": "Bone_016", "translation": [ 5.637949, 8.898145, 64.522682, 0.000000], "rotation": [-0.017146, -0.185228, 0.525749, 0.830051], "scale": [ 18.915627, 18.915628, 18.915628, 0.000000] }, { "node": "Bone_017", "translation": [ 9.378236, 17.584474, 67.382742, 0.000000], "rotation": [-0.147773, -0.022984, 0.457018, 0.876795], "scale": [ 18.915626, 18.915628, 18.915626, 0.000000] }, { "node": "Bone_018", "translation": [ 14.137878, 24.203086, 66.606698, 0.000000], "rotation": [-0.187807, 0.126232, 0.483793, 0.845422], "scale": [ 18.915625, 18.915628, 18.915628, 0.000000] } ], "uvMapping": [[ 0]] }, { "meshpartid": "shape1_part4", "materialid": "leaf__leaf_png", "bones": [ { "node": "Bone_024", "translation": [-24.865736, -14.465116, 66.397003, 0.000000], "rotation": [-0.233776, 0.000243, 0.947020, -0.220233], "scale": [ 18.915621, 18.915623, 18.915620, 0.000000] }, { "node": "Bone_010", "translation": [-19.669415, -12.812177, 67.787468, 0.000000], "rotation": [-0.129909, 0.026020, 0.980318, -0.146367], "scale": [ 18.915624, 18.915624, 18.915623, 0.000000] }, { "node": "Bone_007", "translation": [ 0.023522, 0.075592, 59.080884, 0.000000], "rotation": [ 0.221948, 0.231680, 0.879585, -0.351274], "scale": [ 18.915624, 18.915625, 18.915624, 0.000000] }, { "node": "Bone_008", "translation": [-6.619456, -5.151087, 64.694166, 0.000000], "rotation": [-0.278874, 0.922584, 0.132094, -0.231557], "scale": [ 18.915624, 18.915625, 18.915624, 0.000000] }, { "node": "Bone_009", "translation": [-13.068931, -10.187913, 67.787473, 0.000000], "rotation": [-0.014955, 0.078095, 0.979043, -0.187489], "scale": [ 18.915624, 18.915625, 18.915622, 0.000000] } ], "uvMapping": [[ 0]] } ] }, { "id": "Armature", "rotation": [ 0.998404, 0.001591, -0.041444, 0.038321], "scale": [ 1.457911, 1.457911, 1.457911], "translation": [ 1.000000, 1.000000, 0.000000], "children": [ { "id": "Bone", "rotation": [ 0.507984, -0.502482, 0.491841, 0.497550], "scale": [ 1.000000, 1.000000, 1.000000], "children": [ { "id": "Bone_001", "rotation": [ 0.330464, -0.069968, -0.091285, 0.936784], "scale": [ 1.000000, 1.000000, 1.000000], "translation": [ 1.378168, 0.000000, 0.000000], "children": [ { "id": "Bone_002", "rotation": [-0.293120, 0.037612, 0.099744, 0.950114], "scale": [ 1.000000, 1.000000, 1.000000], "translation": [ 0.800337, 0.000000, -0.000000], "children": [ { "id": "Bone_003", "rotation": [ 0.531192, -0.470676, 0.576916, -0.404311], "scale": [ 1.000000, 1.000000, 1.000000], "translation": [ 0.932270, 0.000000, -0.000000], "children": [ { "id": "Bone_004", "rotation": [ 0.120534, 0.132313, -0.020722, 0.983634], "scale": [ 1.000000, 1.000000, 1.000000], "translation": [ 0.563430, 0.000000, -0.000000], "children": [ { "id": "Bone_005", "rotation": [ 0.037465, 0.144803, -0.157657, 0.976101], "scale": [ 1.000000, 1.000000, 1.000000], "translation": [ 0.490020, 0.000000, 0.000000], "children": [ { "id": "Bone_006", "rotation": [ 0.946508, -0.094656, -0.076917, -0.298740], "scale": [ 1.000000, 1.000000, 1.000000], "translation": [ 0.373480, 0.000000, 0.000000], "children": [ { "id": "Bone_026", "rotation": [ 0.058774, -0.116409, 0.109280, 0.985420], "scale": [ 1.000000, 1.000000, 1.000000], "translation": [ 0.313973, -0.000000, -0.000000] } ] } ] } ] } ] }, { "id": "Bone_007", "rotation": [ 0.844233, 0.256493, 0.362806, 0.299756], "scale": [ 1.000000, 1.000000, 1.000000], "translation": [ 0.932270, 0.000000, -0.000000], "children": [ { "id": "Bone_008", "rotation": [ 0.930243, 0.004179, -0.112102, 0.349376], "scale": [ 1.000000, 1.000000, 1.000000], "translation": [ 0.536421, 0.000000, 0.000000], "children": [ { "id": "Bone_009", "rotation": [ 0.941757, 0.116163, 0.193957, -0.248960], "scale": [ 1.000000, 1.000000, 1.000000], "translation": [ 0.462494, -0.000000, 0.000000], "children": [ { "id": "Bone_010", "rotation": [-0.028916, 0.119078, -0.050256, 0.991191], "scale": [ 1.000000, 1.000000, 1.000000], "translation": [ 0.375512, 0.000000, -0.000000], "children": [ { "id": "Bone_024", "rotation": [-0.018797, 0.111843, 0.071235, 0.990991], "scale": [ 1.000000, 1.000000, 1.000000], "translation": [ 0.297499, 0.000000, 0.000000] } ] } ] } ] } ] }, { "id": "Bone_011", "rotation": [-0.257462, -0.526275, -0.294907, 0.754836], "scale": [ 1.000000, 1.000000, 1.000000], "translation": [ 0.932270, 0.000000, -0.000000], "children": [ { "id": "Bone_012", "rotation": [ 0.890821, 0.018866, 0.049021, -0.451308], "scale": [ 1.000000, 1.000000, 1.000000], "translation": [ 0.619660, 0.000000, -0.000000], "children": [ { "id": "Bone_013", "rotation": [ 0.972828, -0.077794, -0.211695, 0.052333], "scale": [ 1.000000, 1.000000, 1.000000], "translation": [ 0.512197, -0.000000, -0.000000], "children": [ { "id": "Bone_014", "rotation": [ 0.067216, -0.167213, 0.028384, 0.983217], "scale": [ 1.000000, 1.000000, 1.000000], "translation": [ 0.448485, 0.000000, 0.000000], "children": [ { "id": "Bone_025", "rotation": [-0.041422, -0.091947, -0.032720, 0.994364], "scale": [ 1.000000, 1.000000, 1.000000], "translation": [ 0.333663, -0.000000, 0.000000] } ] } ] } ] } ] }, { "id": "Bone_015", "rotation": [-0.330449, 0.523340, -0.137149, 0.773375], "scale": [ 1.000000, 1.000000, 1.000000], "translation": [ 0.932270, 0.000000, -0.000000], "children": [ { "id": "Bone_016", "rotation": [ 0.011480, 0.074558, 0.092250, 0.992874], "scale": [ 1.000000, 1.000000, 1.000000], "translation": [ 0.623223, 0.000000, 0.000000], "children": [ { "id": "Bone_017", "rotation": [-0.035056, 0.213184, -0.054648, 0.974852], "scale": [ 1.000000, 1.000000, 1.000000], "translation": [ 0.522340, 0.000000, 0.000000], "children": [ { "id": "Bone_018", "rotation": [ 0.029072, 0.144451, 0.060785, 0.987215], "scale": [ 1.000000, 1.000000, 1.000000], "translation": [ 0.432931, 0.000000, -0.000000], "children": [ { "id": "Bone_027", "rotation": [-0.498921, 0.029187, 0.124588, 0.857149], "scale": [ 1.000000, 1.000000, 1.000000], "translation": [ 0.338164, 0.000000, 0.000000] } ] } ] } ] } ] }, { "id": "Bone_019", "rotation": [ 0.444681, 0.540613, 0.151456, 0.697895], "scale": [ 1.000000, 1.000000, 1.000000], "translation": [ 0.932270, 0.000000, -0.000000], "children": [ { "id": "Bone_020", "rotation": [-0.407102, 0.106994, -0.021456, 0.906841], "scale": [ 1.000000, 1.000000, 1.000000], "translation": [ 0.559923, 0.000000, -0.000000], "children": [ { "id": "Bone_021", "rotation": [-0.465709, 0.182314, 0.121209, 0.857429], "scale": [ 1.000000, 1.000000, 1.000000], "translation": [ 0.544527, -0.000000, -0.000000], "children": [ { "id": "Bone_022", "rotation": [ 0.152469, 0.031184, 0.122420, 0.980201], "scale": [ 1.000000, 1.000000, 1.000000], "translation": [ 0.431342, -0.000000, -0.000000], "children": [ { "id": "Bone_023", "rotation": [ 0.455379, 0.027257, 0.166778, 0.874112], "scale": [ 1.000000, 1.000000, 1.000000], "translation": [ 0.327774, 0.000000, 0.000000] } ] } ] } ] } ] } ] } ] } ] } ] } ], "animations": [ { "id": "birth", "bones": [ { "boneId": "Bone", "keyframes": [ { "keytime": 41.000000, "scale": [ 0.064031, 0.030478, 0.030368] }, { "keytime": 74.333328, "scale": [ 0.064473, 0.030708, 0.030598] }, { "keytime": 107.666664, "scale": [ 0.065574, 0.031284, 0.031172] }, { "keytime": 141.000000, "scale": [ 0.067409, 0.032245, 0.032131] }, { "keytime": 174.333328, "scale": [ 0.069878, 0.033541, 0.033424] }, { "keytime": 207.666656, "scale": [ 0.073046, 0.035208, 0.035086] }, { "keytime": 240.999985, "scale": [ 0.077126, 0.037361, 0.037234] }, { "keytime": 274.333313, "scale": [ 0.082051, 0.039967, 0.039834] }, { "keytime": 307.666656, "scale": [ 0.087544, 0.042881, 0.042741] }, { "keytime": 341.000000, "scale": [ 0.093939, 0.046284, 0.046136] }, { "keytime": 374.333344, "scale": [ 0.100853, 0.049973, 0.049816] }, { "keytime": 407.666687, "scale": [ 0.108688, 0.054170, 0.054003] }, { "keytime": 441.000031, "scale": [ 0.117463, 0.058887, 0.058709] }, { "keytime": 474.333374, "scale": [ 0.126665, 0.063850, 0.063660] }, { "keytime": 507.666718, "scale": [ 0.136520, 0.069183, 0.068981] }, { "keytime": 541.000061, "scale": [ 0.147360, 0.075071, 0.074856] }, { "keytime": 574.333374, "scale": [ 0.158714, 0.081270, 0.081040] }, { "keytime": 607.666687, "scale": [ 0.170650, 0.087814, 0.087569] }, { "keytime": 641.000000, "scale": [ 0.183535, 0.094908, 0.094648] }, { "keytime": 674.333313, "scale": [ 0.196583, 0.102125, 0.101849] }, { "keytime": 707.666626, "scale": [ 0.210148, 0.109662, 0.109369] }, { "keytime": 740.999939, "scale": [ 0.224318, 0.117586, 0.117277] }, { "keytime": 774.333252, "scale": [ 0.239337, 0.126030, 0.125703] }, { "keytime": 807.666565, "scale": [ 0.254290, 0.134485, 0.134140] }, { "keytime": 840.999878, "scale": [ 0.269570, 0.143173, 0.142809] }, { "keytime": 874.333191, "scale": [ 0.285622, 0.152356, 0.151974] }, { "keytime": 907.666504, "scale": [ 0.301497, 0.161516, 0.161115] }, { "keytime": 940.999817, "scale": [ 0.317529, 0.170828, 0.170410] }, { "keytime": 974.333130, "scale": [ 0.334173, 0.180562, 0.180124] }, { "keytime": 1007.666443, "scale": [ 0.350400, 0.190134, 0.189679] }, { "keytime": 1040.999756, "scale": [ 0.366626, 0.199837, 0.199365] }, { "keytime": 1074.333130, "scale": [ 0.383237, 0.209834, 0.209345] }, { "keytime": 1107.666504, "scale": [ 0.399356, 0.219538, 0.219031] }, { "keytime": 1140.999878, "scale": [ 0.415339, 0.229241, 0.228718] }, { "keytime": 1174.333252, "scale": [ 0.431580, 0.239238, 0.238698] }, { "keytime": 1207.666626, "scale": [ 0.447119, 0.248941, 0.248384] }, { "keytime": 1241.000000, "scale": [ 0.462765, 0.258938, 0.258364] }, { "keytime": 1274.333374, "scale": [ 0.477628, 0.268437, 0.267848] }, { "keytime": 1307.666748, "scale": [ 0.492152, 0.277866, 0.277264] }, { "keytime": 1341.000122, "scale": [ 0.506729, 0.287518, 0.286902] }, { "keytime": 1374.333496, "scale": [ 0.520480, 0.296697, 0.296068] }, { "keytime": 1407.666870, "scale": [ 0.533667, 0.305677, 0.305037] }, { "keytime": 1441.000244, "scale": [ 0.546790, 0.314759, 0.314108] }, { "keytime": 1474.333618, "scale": [ 0.559053, 0.323395, 0.322734] }, { "keytime": 1507.666992, "scale": [ 0.570843, 0.331851, 0.331181] }, { "keytime": 1541.000366, "scale": [ 0.582471, 0.340360, 0.339681] }, { "keytime": 1574.333740, "scale": [ 0.593082, 0.348349, 0.347664] }, { "keytime": 1607.667114, "scale": [ 0.603185, 0.356133, 0.355441] }, { "keytime": 1641.000488, "scale": [ 0.613056, 0.363931, 0.363234] }, { "keytime": 1674.333862, "scale": [ 0.622110, 0.371282, 0.370581] }, { "keytime": 1707.667236, "scale": [ 0.630633, 0.378411, 0.377706] }, { "keytime": 1741.000610, "scale": [ 0.638702, 0.385448, 0.384740] }, { "keytime": 1774.333984, "scale": [ 0.646241, 0.392272, 0.391562] }, { "keytime": 1807.667358, "scale": [ 0.653626, 0.399095, 0.398384] }, { "keytime": 1841.000732, "scale": [ 0.661170, 0.406195, 0.405482] }, { "keytime": 1907.667480, "scale": [ 0.675814, 0.420387, 0.419673] }, { "keytime": 1941.000854, "scale": [ 0.683358, 0.427902, 0.427189] }, { "keytime": 1974.334229, "scale": [ 0.690584, 0.435269, 0.434556] }, { "keytime": 2007.667603, "scale": [ 0.697712, 0.442696, 0.441983] }, { "keytime": 2041.000977, "scale": [ 0.705055, 0.450555, 0.449844] }, { "keytime": 2074.334473, "scale": [ 0.712182, 0.458183, 0.457474] }, { "keytime": 2107.667725, "scale": [ 0.719166, 0.465997, 0.465290] }, { "keytime": 2141.000977, "scale": [ 0.726309, 0.474115, 0.473412] }, { "keytime": 2174.334229, "scale": [ 0.733242, 0.482053, 0.481352] }, { "keytime": 2207.667480, "scale": [ 0.740175, 0.490171, 0.489474] }, { "keytime": 2241.000732, "scale": [ 0.747094, 0.498535, 0.497842] }, { "keytime": 2274.333984, "scale": [ 0.753806, 0.506819, 0.506130] }, { "keytime": 2307.667236, "scale": [ 0.760517, 0.515159, 0.514475] }, { "keytime": 2341.000488, "scale": [ 0.767380, 0.523803, 0.523124] }, { "keytime": 2407.666992, "scale": [ 0.780392, 0.540888, 0.540221] }, { "keytime": 2441.000244, "scale": [ 0.786959, 0.549826, 0.549165] }, { "keytime": 2474.333496, "scale": [ 0.793285, 0.558548, 0.557894] }, { "keytime": 2507.666748, "scale": [ 0.799567, 0.567313, 0.566666] }, { "keytime": 2541.000000, "scale": [ 0.805887, 0.576490, 0.575851] }, { "keytime": 2574.333252, "scale": [ 0.812020, 0.585397, 0.584765] }, { "keytime": 2607.666504, "scale": [ 0.818002, 0.594303, 0.593680] }, { "keytime": 2640.999756, "scale": [ 0.823930, 0.603302, 0.602688] }, { "keytime": 2674.333008, "scale": [ 0.829985, 0.612677, 0.612075] }, { "keytime": 2740.999512, "scale": [ 0.841404, 0.630877, 0.630295] }, { "keytime": 2774.332764, "scale": [ 0.847114, 0.640252, 0.639682] }, { "keytime": 2807.666016, "scale": [ 0.852593, 0.649352, 0.648792] }, { "keytime": 2840.999268, "scale": [ 0.858018, 0.658452, 0.657902] }, { "keytime": 2874.332520, "scale": [ 0.863414, 0.667827, 0.667289] }, { "keytime": 2907.665771, "scale": [ 0.868650, 0.676927, 0.676399] }, { "keytime": 2940.999023, "scale": [ 0.873704, 0.686026, 0.685510] }, { "keytime": 2974.332275, "scale": [ 0.878839, 0.695402, 0.694896] }, { "keytime": 3007.665527, "scale": [ 0.883763, 0.704502, 0.704006] }, { "keytime": 3040.998779, "scale": [ 0.888486, 0.713601, 0.713117] }, { "keytime": 3074.332031, "scale": [ 0.893353, 0.722977, 0.722503] }, { "keytime": 3107.665283, "scale": [ 0.897878, 0.731914, 0.731453] }, { "keytime": 3140.998535, "scale": [ 0.902333, 0.740794, 0.740345] }, { "keytime": 3174.331787, "scale": [ 0.906856, 0.749943, 0.749507] }, { "keytime": 3207.665039, "scale": [ 0.911037, 0.758823, 0.758399] }, { "keytime": 3240.998291, "scale": [ 0.915217, 0.767477, 0.767066] }, { "keytime": 3274.331543, "scale": [ 0.919317, 0.776388, 0.775990] }, { "keytime": 3307.664795, "scale": [ 0.923220, 0.784922, 0.784537] }, { "keytime": 3340.998047, "scale": [ 0.927062, 0.793333, 0.792961] }, { "keytime": 3374.331299, "scale": [ 0.930796, 0.801998, 0.801640] }, { "keytime": 3407.664551, "scale": [ 0.934420, 0.810130, 0.809784] }, { "keytime": 3440.997803, "scale": [ 0.937842, 0.818258, 0.817926] }, { "keytime": 3474.331055, "scale": [ 0.941290, 0.826516, 0.826196] }, { "keytime": 3507.664307, "scale": [ 0.944572, 0.834366, 0.834060] }, { "keytime": 3540.997559, "scale": [ 0.947643, 0.842085, 0.841791] }, { "keytime": 3574.330811, "scale": [ 0.950806, 0.849856, 0.849576] }, { "keytime": 3607.664062, "scale": [ 0.953678, 0.857253, 0.856985] }, { "keytime": 3640.997314, "scale": [ 0.956478, 0.864506, 0.864250] }, { "keytime": 3674.330566, "scale": [ 0.959299, 0.871821, 0.871578] }, { "keytime": 3707.663818, "scale": [ 0.961835, 0.878763, 0.878532] }, { "keytime": 3740.997070, "scale": [ 0.964371, 0.885496, 0.885277] }, { "keytime": 3774.330322, "scale": [ 0.966793, 0.892264, 0.892057] }, { "keytime": 3807.663574, "scale": [ 0.969074, 0.898662, 0.898466] }, { "keytime": 3840.996826, "scale": [ 0.971299, 0.904892, 0.904707] }, { "keytime": 3874.330078, "scale": [ 0.973395, 0.911124, 0.910951] }, { "keytime": 3907.663330, "scale": [ 0.975430, 0.916939, 0.916776] }, { "keytime": 3940.996582, "scale": [ 0.977293, 0.922576, 0.922424] }, { "keytime": 3974.329834, "scale": [ 0.979146, 0.928194, 0.928053] }, { "keytime": 4007.663086, "scale": [ 0.980893, 0.933462, 0.933331] }, { "keytime": 4040.996338, "scale": [ 0.982468, 0.938540, 0.938418] }, { "keytime": 4074.329590, "scale": [ 0.984091, 0.943520, 0.943407] }, { "keytime": 4107.663086, "scale": [ 0.985509, 0.948160, 0.948056] }, { "keytime": 4140.996094, "scale": [ 0.986872, 0.952612, 0.952517] }, { "keytime": 4174.329590, "scale": [ 0.988229, 0.956999, 0.956913] }, { "keytime": 4207.663086, "scale": [ 0.989393, 0.961062, 0.960983] }, { "keytime": 4240.996582, "scale": [ 0.990556, 0.964873, 0.964802] }, { "keytime": 4274.330078, "scale": [ 0.991616, 0.968603, 0.968539] }, { "keytime": 4307.663574, "scale": [ 0.992593, 0.972028, 0.971971] }, { "keytime": 4340.997070, "scale": [ 0.993531, 0.975264, 0.975213] }, { "keytime": 4374.330566, "scale": [ 0.994358, 0.978392, 0.978348] }, { "keytime": 4407.664062, "scale": [ 0.995161, 0.981177, 0.981138] }, { "keytime": 4440.997559, "scale": [ 0.995846, 0.983774, 0.983740] }, { "keytime": 4474.331055, "scale": [ 0.996506, 0.986254, 0.986225] }, { "keytime": 4507.664551, "scale": [ 0.997104, 0.988471, 0.988447] }, { "keytime": 4540.998047, "scale": [ 0.997560, 0.990496, 0.990476] }, { "keytime": 4574.331543, "scale": [ 0.998029, 0.992334, 0.992318] }, { "keytime": 4607.665039, "scale": [ 0.998485, 0.993930, 0.993917] }, { "keytime": 4640.998535, "scale": [ 0.998846, 0.995345, 0.995335] }, { "keytime": 4674.332031, "scale": [ 0.999110, 0.996613, 0.996606] }, { "keytime": 4707.665527, "scale": [ 0.999367, 0.997659, 0.997654] }, { "keytime": 4740.999023, "scale": [ 0.999623, 0.998472, 0.998469] }, { "keytime": 4774.332520, "scale": [ 0.999755, 0.999130, 0.999128] }, { "keytime": 4807.666016, "scale": [ 0.999836, 0.999591, 0.999590] }, { "keytime": 4832.000000, "scale": [ 0.999897, 0.999850, 0.999850] } ] }, { "boneId": "Bone_026", "keyframes": [ { "keytime": 41.000000, "scale": [ 0.610000, 0.610000, 0.610000], "translation": [ 0.313970, -0.000000, 0.000001] }, { "keytime": 107.666664, "scale": [ 0.609734, 0.609733, 0.609733], "translation": [ 0.313973, -0.000003, -0.000002] }, { "keytime": 141.000000, "scale": [ 0.609464, 0.609464, 0.609464], "translation": [ 0.313975, -0.000004, -0.000003] }, { "keytime": 207.666656, "scale": [ 0.608674, 0.608674, 0.608674], "translation": [ 0.313979, -0.000006, -0.000006] }, { "keytime": 240.999985, "scale": [ 0.608029, 0.608029, 0.608029], "translation": [ 0.313980, -0.000008, -0.000008] }, { "keytime": 274.333313, "scale": [ 0.607360, 0.607360, 0.607360], "translation": [ 0.313982, -0.000009, -0.000009] }, { "keytime": 307.666656, "scale": [ 0.606590, 0.606590, 0.606590], "translation": [ 0.313984, -0.000010, -0.000011] }, { "keytime": 341.000000, "scale": [ 0.605665, 0.605665, 0.605665], "translation": [ 0.313986, -0.000011, -0.000012] }, { "keytime": 374.333344, "scale": [ 0.604768, 0.604768, 0.604768], "translation": [ 0.313987, -0.000012, -0.000014] }, { "keytime": 407.666687, "scale": [ 0.603632, 0.603631, 0.603632], "translation": [ 0.313989, -0.000014, -0.000015] }, { "keytime": 441.000031, "scale": [ 0.602459, 0.602459, 0.602459], "translation": [ 0.313991, -0.000015, -0.000017] }, { "keytime": 474.333374, "scale": [ 0.601205, 0.601204, 0.601205], "translation": [ 0.313993, -0.000016, -0.000018] }, { "keytime": 507.666718, "scale": [ 0.599832, 0.599832, 0.599832], "translation": [ 0.313995, -0.000017, -0.000020] }, { "keytime": 541.000061, "scale": [ 0.598419, 0.598419, 0.598419], "translation": [ 0.313996, -0.000018, -0.000022] }, { "keytime": 607.666687, "scale": [ 0.595221, 0.595220, 0.595220], "translation": [ 0.314000, -0.000021, -0.000025] }, { "keytime": 641.000000, "scale": [ 0.593462, 0.593462, 0.593462], "translation": [ 0.314002, -0.000022, -0.000026] }, { "keytime": 707.666626, "scale": [ 0.589824, 0.589824, 0.589824], "translation": [ 0.314005, -0.000024, -0.000029] }, { "keytime": 740.999939, "scale": [ 0.587797, 0.587797, 0.587797], "translation": [ 0.314007, -0.000025, -0.000031] }, { "keytime": 774.333252, "scale": [ 0.585704, 0.585704, 0.585704], "translation": [ 0.314009, -0.000027, -0.000032] }, { "keytime": 807.666565, "scale": [ 0.583573, 0.583573, 0.583573], "translation": [ 0.314011, -0.000028, -0.000034] }, { "keytime": 840.999878, "scale": [ 0.581335, 0.581335, 0.581335], "translation": [ 0.314013, -0.000029, -0.000035] }, { "keytime": 874.333191, "scale": [ 0.579030, 0.579030, 0.579030], "translation": [ 0.314014, -0.000030, -0.000037] }, { "keytime": 907.666504, "scale": [ 0.576597, 0.576597, 0.576597], "translation": [ 0.314016, -0.000031, -0.000038] }, { "keytime": 940.999817, "scale": [ 0.574161, 0.574161, 0.574161], "translation": [ 0.314018, -0.000033, -0.000040] }, { "keytime": 974.333130, "scale": [ 0.571557, 0.571557, 0.571557], "translation": [ 0.314020, -0.000034, -0.000041] }, { "keytime": 1040.999756, "scale": [ 0.566302, 0.566302, 0.566302], "translation": [ 0.314023, -0.000036, -0.000044] }, { "keytime": 1074.333130, "scale": [ 0.563412, 0.563412, 0.563412], "translation": [ 0.314025, -0.000037, -0.000046] }, { "keytime": 1107.666504, "scale": [ 0.560601, 0.560601, 0.560600], "translation": [ 0.314027, -0.000039, -0.000047] }, { "keytime": 1140.999878, "scale": [ 0.557705, 0.557706, 0.557705], "translation": [ 0.314029, -0.000040, -0.000049] }, { "keytime": 1174.333252, "scale": [ 0.554627, 0.554627, 0.554627], "translation": [ 0.314030, -0.000041, -0.000050] }, { "keytime": 1207.666626, "scale": [ 0.551639, 0.551639, 0.551639], "translation": [ 0.314032, -0.000042, -0.000052] }, { "keytime": 1241.000000, "scale": [ 0.548390, 0.548390, 0.548390], "translation": [ 0.314034, -0.000043, -0.000053] }, { "keytime": 1274.333374, "scale": [ 0.545233, 0.545233, 0.545233], "translation": [ 0.314036, -0.000044, -0.000055] }, { "keytime": 1307.666748, "scale": [ 0.541998, 0.541998, 0.541998], "translation": [ 0.314038, -0.000046, -0.000056] }, { "keytime": 1341.000122, "scale": [ 0.538579, 0.538579, 0.538579], "translation": [ 0.314039, -0.000047, -0.000058] }, { "keytime": 1374.333496, "scale": [ 0.535260, 0.535260, 0.535260], "translation": [ 0.314041, -0.000048, -0.000059] }, { "keytime": 1407.666870, "scale": [ 0.531753, 0.531753, 0.531753], "translation": [ 0.314043, -0.000049, -0.000061] }, { "keytime": 1441.000244, "scale": [ 0.528137, 0.528137, 0.528137], "translation": [ 0.314045, -0.000050, -0.000062] }, { "keytime": 1474.333618, "scale": [ 0.524628, 0.524627, 0.524628], "translation": [ 0.314047, -0.000052, -0.000064] }, { "keytime": 1507.666992, "scale": [ 0.521069, 0.521069, 0.521069], "translation": [ 0.314048, -0.000053, -0.000065] }, { "keytime": 1541.000366, "scale": [ 0.517233, 0.517233, 0.517233], "translation": [ 0.314050, -0.000054, -0.000067] }, { "keytime": 1607.667114, "scale": [ 0.509789, 0.509788, 0.509789], "translation": [ 0.314054, -0.000056, -0.000070] }, { "keytime": 1641.000488, "scale": [ 0.505855, 0.505855, 0.505855], "translation": [ 0.314056, -0.000058, -0.000072] }, { "keytime": 1707.667236, "scale": [ 0.498021, 0.498021, 0.498021], "translation": [ 0.314059, -0.000060, -0.000075] }, { "keytime": 1741.000610, "scale": [ 0.493985, 0.493985, 0.493985], "translation": [ 0.314061, -0.000061, -0.000076] }, { "keytime": 1774.333984, "scale": [ 0.489937, 0.489937, 0.489937], "translation": [ 0.314063, -0.000062, -0.000078] }, { "keytime": 1807.667358, "scale": [ 0.485844, 0.485844, 0.485844], "translation": [ 0.314064, -0.000063, -0.000079] }, { "keytime": 1841.000732, "scale": [ 0.481627, 0.481627, 0.481627], "translation": [ 0.314066, -0.000065, -0.000081] }, { "keytime": 1874.334106, "scale": [ 0.477535, 0.477535, 0.477535], "translation": [ 0.314068, -0.000066, -0.000082] }, { "keytime": 1907.667480, "scale": [ 0.473265, 0.473265, 0.473265], "translation": [ 0.314070, -0.000067, -0.000084] }, { "keytime": 1941.000854, "scale": [ 0.468864, 0.468864, 0.468864], "translation": [ 0.314072, -0.000068, -0.000085] }, { "keytime": 2007.667603, "scale": [ 0.460321, 0.460321, 0.460321], "translation": [ 0.314075, -0.000071, -0.000088] }, { "keytime": 2041.000977, "scale": [ 0.455920, 0.455920, 0.455920], "translation": [ 0.314077, -0.000072, -0.000090] }, { "keytime": 2074.334473, "scale": [ 0.451460, 0.451460, 0.451460], "translation": [ 0.314079, -0.000073, -0.000091] }, { "keytime": 2107.667725, "scale": [ 0.447001, 0.447001, 0.447001], "translation": [ 0.314045, -0.000074, -0.000093] }, { "keytime": 2141.000977, "scale": [ 0.442407, 0.442407, 0.442407], "translation": [ 0.313997, -0.000075, -0.000094] }, { "keytime": 2174.334229, "scale": [ 0.437948, 0.437948, 0.437948], "translation": [ 0.313951, -0.000050, -0.000064] }, { "keytime": 2207.667480, "scale": [ 0.433488, 0.433488, 0.433488], "translation": [ 0.313905, 0.000059, 0.000068] }, { "keytime": 2241.000732, "scale": [ 0.428894, 0.428894, 0.428894], "translation": [ 0.314133, 0.000003, 0.000070] }, { "keytime": 2274.333984, "scale": [ 0.424302, 0.424302, 0.424302], "translation": [ 0.314063, -0.000054, 0.000069] }, { "keytime": 2307.667236, "scale": [ 0.419665, 0.419665, 0.419665], "translation": [ 0.313963, -0.000047, 0.000068] }, { "keytime": 2341.000488, "scale": [ 0.414887, 0.414887, 0.414887], "translation": [ 0.313936, -0.000001, 0.000067] }, { "keytime": 2407.666992, "scale": [ 0.405613, 0.405613, 0.405613], "translation": [ 0.313883, -0.000101, 0.000065] }, { "keytime": 2441.000244, "scale": [ 0.400836, 0.400836, 0.400836], "translation": [ 0.313856, -0.000113, 0.000064] }, { "keytime": 2474.333496, "scale": [ 0.396199, 0.396198, 0.396199], "translation": [ 0.313869, -0.000112, 0.000064] }, { "keytime": 2507.666748, "scale": [ 0.391562, 0.391561, 0.391562], "translation": [ 0.313923, -0.000110, 0.000063] }, { "keytime": 2541.000000, "scale": [ 0.386784, 0.386784, 0.386784], "translation": [ 0.313978, -0.000109, 0.000062] }, { "keytime": 2574.333252, "scale": [ 0.382147, 0.382147, 0.382147], "translation": [ 0.314031, -0.000107, 0.000061] }, { "keytime": 2607.666504, "scale": [ 0.377510, 0.377510, 0.377510], "translation": [ 0.314013, -0.000106, 0.000060] }, { "keytime": 2640.999756, "scale": [ 0.372873, 0.372873, 0.372873], "translation": [ 0.313970, -0.000104, 0.000059] }, { "keytime": 2674.333008, "scale": [ 0.368095, 0.368095, 0.368095], "translation": [ 0.313925, -0.000102, 0.000058] }, { "keytime": 2707.666260, "scale": [ 0.363458, 0.363458, 0.363458], "translation": [ 0.313882, -0.000101, 0.000057] }, { "keytime": 2740.999512, "scale": [ 0.358821, 0.358821, 0.358821], "translation": [ 0.314023, -0.000099, 0.000056] }, { "keytime": 2774.332764, "scale": [ 0.354044, 0.354044, 0.354044], "translation": [ 0.313974, -0.000098, 0.000056] }, { "keytime": 2807.666016, "scale": [ 0.349407, 0.349407, 0.349407], "translation": [ 0.313925, -0.000096, 0.000055] }, { "keytime": 2840.999268, "scale": [ 0.344770, 0.344770, 0.344770], "translation": [ 0.313953, -0.000095, 0.000054] }, { "keytime": 2874.332520, "scale": [ 0.339992, 0.339992, 0.339992], "translation": [ 0.313982, -0.000093, 0.000053] }, { "keytime": 2907.665771, "scale": [ 0.335355, 0.335355, 0.335355], "translation": [ 0.314011, -0.000092, 0.000052] }, { "keytime": 2940.999023, "scale": [ 0.330718, 0.330718, 0.330718], "translation": [ 0.314018, -0.000090, 0.000051] }, { "keytime": 2974.332275, "scale": [ 0.325940, 0.325940, 0.325940], "translation": [ 0.314017, -0.000088, 0.000050] }, { "keytime": 3040.998779, "scale": [ 0.316666, 0.316666, 0.316666], "translation": [ 0.314015, -0.000085, 0.000049] }, { "keytime": 3074.332031, "scale": [ 0.311889, 0.311889, 0.311889], "translation": [ 0.314015, -0.000084, 0.000048] }, { "keytime": 3107.665283, "scale": [ 0.307252, 0.307252, 0.307252], "translation": [ 0.314014, -0.000082, 0.000047] }, { "keytime": 3140.998535, "scale": [ 0.302740, 0.302740, 0.302740], "translation": [ 0.314013, -0.000081, 0.000046] }, { "keytime": 3174.331787, "scale": [ 0.298234, 0.298234, 0.298234], "translation": [ 0.314012, -0.000079, 0.000045] }, { "keytime": 3240.998291, "scale": [ 0.289488, 0.289489, 0.289488], "translation": [ 0.314011, -0.000076, 0.000043] }, { "keytime": 3274.331543, "scale": [ 0.284983, 0.284983, 0.284983], "translation": [ 0.314010, -0.000074, 0.000042] }, { "keytime": 3307.664795, "scale": [ 0.280716, 0.280716, 0.280716], "translation": [ 0.314009, -0.000073, 0.000041] }, { "keytime": 3340.998047, "scale": [ 0.276563, 0.276563, 0.276563], "translation": [ 0.314009, -0.000071, 0.000041] }, { "keytime": 3374.331299, "scale": [ 0.272284, 0.272284, 0.272284], "translation": [ 0.314008, -0.000070, 0.000040] }, { "keytime": 3407.664551, "scale": [ 0.268130, 0.268130, 0.268130], "translation": [ 0.314007, -0.000068, 0.000039] }, { "keytime": 3440.997803, "scale": [ 0.264122, 0.264122, 0.264122], "translation": [ 0.314006, -0.000067, 0.000038] }, { "keytime": 3474.331055, "scale": [ 0.260049, 0.260049, 0.260049], "translation": [ 0.314005, -0.000065, 0.000037] }, { "keytime": 3507.664307, "scale": [ 0.256140, 0.256140, 0.256139], "translation": [ 0.314005, -0.000064, 0.000036] }, { "keytime": 3540.997559, "scale": [ 0.252376, 0.252376, 0.252376], "translation": [ 0.314004, -0.000062, 0.000035] }, { "keytime": 3574.330811, "scale": [ 0.248499, 0.248499, 0.248499], "translation": [ 0.314003, -0.000060, 0.000034] }, { "keytime": 3607.664062, "scale": [ 0.244896, 0.244896, 0.244896], "translation": [ 0.314002, -0.000059, 0.000034] }, { "keytime": 3640.997314, "scale": [ 0.241351, 0.241351, 0.241351], "translation": [ 0.314002, -0.000057, 0.000033] }, { "keytime": 3674.330566, "scale": [ 0.237760, 0.237760, 0.237760], "translation": [ 0.314001, -0.000056, 0.000032] }, { "keytime": 3740.997070, "scale": [ 0.231169, 0.231169, 0.231169], "translation": [ 0.313999, -0.000053, 0.000030] }, { "keytime": 3774.330322, "scale": [ 0.227986, 0.227987, 0.227986], "translation": [ 0.313999, -0.000051, 0.000029] }, { "keytime": 3807.663574, "scale": [ 0.224975, 0.224975, 0.224975], "translation": [ 0.313998, -0.000050, 0.000028] }, { "keytime": 3840.996826, "scale": [ 0.222017, 0.222017, 0.222017], "translation": [ 0.313997, -0.000048, 0.000027] }, { "keytime": 3874.330078, "scale": [ 0.219158, 0.219158, 0.219158], "translation": [ 0.313996, -0.000046, 0.000026] }, { "keytime": 3907.663330, "scale": [ 0.216553, 0.216553, 0.216553], "translation": [ 0.313995, -0.000045, 0.000026] }, { "keytime": 3940.996582, "scale": [ 0.214083, 0.214083, 0.214083], "translation": [ 0.313995, -0.000043, 0.000025] }, { "keytime": 3974.329834, "scale": [ 0.211684, 0.211684, 0.211684], "translation": [ 0.313994, -0.000042, 0.000024] }, { "keytime": 4007.663086, "scale": [ 0.209505, 0.209505, 0.209505], "translation": [ 0.313993, -0.000040, 0.000023] }, { "keytime": 4040.996338, "scale": [ 0.207483, 0.207483, 0.207483], "translation": [ 0.313992, -0.000039, 0.000022] }, { "keytime": 4074.329590, "scale": [ 0.205619, 0.205619, 0.205619], "translation": [ 0.313992, -0.000037, 0.000021] }, { "keytime": 4107.663086, "scale": [ 0.203988, 0.203988, 0.203988], "translation": [ 0.313991, -0.000036, 0.000020] }, { "keytime": 4140.996094, "scale": [ 0.202536, 0.202536, 0.202536], "translation": [ 0.313990, -0.000034, 0.000019] }, { "keytime": 4174.329590, "scale": [ 0.201237, 0.201237, 0.201237], "translation": [ 0.313989, -0.000032, 0.000019] }, { "keytime": 4207.663086, "scale": [ 0.200177, 0.200177, 0.200177], "translation": [ 0.313989, -0.000031, 0.000018] }, { "keytime": 4240.996582, "scale": [ 0.199392, 0.199392, 0.199392], "translation": [ 0.313988, -0.000029, 0.000017] }, { "keytime": 4274.330078, "scale": [ 0.198811, 0.198811, 0.198811], "translation": [ 0.313987, -0.000028, 0.000016] }, { "keytime": 4307.663574, "scale": [ 0.198482, 0.198482, 0.198482], "translation": [ 0.313986, -0.000026, 0.000015] }, { "keytime": 4340.997070, "scale": [ 0.200200, 0.200200, 0.200200], "translation": [ 0.313985, -0.000025, 0.000014] }, { "keytime": 4374.330566, "scale": [ 0.208762, 0.208762, 0.208762], "translation": [ 0.313985, -0.000023, 0.000013] }, { "keytime": 4407.664062, "scale": [ 0.233695, 0.233695, 0.233695], "translation": [ 0.313984, -0.000022, 0.000012] }, { "keytime": 4440.997559, "scale": [ 0.270767, 0.270767, 0.270767], "translation": [ 0.313983, -0.000020, 0.000011] }, { "keytime": 4474.331055, "scale": [ 0.321035, 0.321036, 0.321036], "translation": [ 0.313982, -0.000018, 0.000011] }, { "keytime": 4507.664551, "scale": [ 0.380502, 0.380502, 0.380502], "translation": [ 0.313982, -0.000017, 0.000010] }, { "keytime": 4540.998047, "scale": [ 0.449405, 0.449405, 0.449405], "translation": [ 0.313981, -0.000015, 0.000009] }, { "keytime": 4574.331543, "scale": [ 0.528521, 0.528521, 0.528521], "translation": [ 0.313980, -0.000014, 0.000008] }, { "keytime": 4607.665039, "scale": [ 0.607649, 0.607649, 0.607649], "translation": [ 0.313979, -0.000012, 0.000007] }, { "keytime": 4640.998535, "scale": [ 0.686172, 0.686172, 0.686172], "translation": [ 0.313979, -0.000011, 0.000006] }, { "keytime": 4674.332031, "scale": [ 0.763564, 0.763564, 0.763564], "translation": [ 0.313978, -0.000009, 0.000005] }, { "keytime": 4707.665527, "scale": [ 0.832468, 0.832468, 0.832468], "translation": [ 0.313977, -0.000008, 0.000004] }, { "keytime": 4740.999023, "scale": [ 0.889326, 0.889327, 0.889327], "translation": [ 0.313976, -0.000006, 0.000004] }, { "keytime": 4774.332520, "scale": [ 0.936403, 0.936403, 0.936403], "translation": [ 0.313976, -0.000005, 0.000003] }, { "keytime": 4807.666016, "scale": [ 0.969984, 0.969984, 0.969984], "translation": [ 0.313975, -0.000003, 0.000002] }, { "keytime": 4832.000000, "scale": [ 0.989001, 0.989001, 0.989001], "translation": [ 0.313974, -0.000002, 0.000001] } ] }, { "boneId": "Bone_007", "keyframes": [ { "keytime": 41.000000, "scale": [ 0.200000, 0.200000, 0.200000] }, { "keytime": 307.666656, "scale": [ 0.200220, 0.200220, 0.200220] }, { "keytime": 341.000000, "scale": [ 0.200287, 0.200287, 0.200287] }, { "keytime": 407.666687, "scale": [ 0.200646, 0.200646, 0.200646] }, { "keytime": 441.000031, "scale": [ 0.200832, 0.200832, 0.200832] }, { "keytime": 507.666718, "scale": [ 0.201191, 0.201191, 0.201191] }, { "keytime": 541.000061, "scale": [ 0.201376, 0.201376, 0.201376] }, { "keytime": 607.666687, "scale": [ 0.202166, 0.202166, 0.202166] }, { "keytime": 641.000000, "scale": [ 0.202572, 0.202572, 0.202572] }, { "keytime": 674.333313, "scale": [ 0.203013, 0.203013, 0.203013] }, { "keytime": 740.999939, "scale": [ 0.204180, 0.204180, 0.204180] }, { "keytime": 774.333252, "scale": [ 0.204917, 0.204917, 0.204917] }, { "keytime": 807.666565, "scale": [ 0.205682, 0.205682, 0.205682] }, { "keytime": 840.999878, "scale": [ 0.206492, 0.206492, 0.206492] }, { "keytime": 874.333191, "scale": [ 0.207490, 0.207490, 0.207490] }, { "keytime": 907.666504, "scale": [ 0.208458, 0.208458, 0.208458] }, { "keytime": 940.999817, "scale": [ 0.209588, 0.209588, 0.209588] }, { "keytime": 974.333130, "scale": [ 0.210814, 0.210814, 0.210814] }, { "keytime": 1007.666443, "scale": [ 0.212058, 0.212058, 0.212058] }, { "keytime": 1040.999756, "scale": [ 0.213482, 0.213482, 0.213482] }, { "keytime": 1074.333130, "scale": [ 0.214949, 0.214949, 0.214949] }, { "keytime": 1107.666504, "scale": [ 0.216549, 0.216549, 0.216549] }, { "keytime": 1140.999878, "scale": [ 0.218213, 0.218213, 0.218213] }, { "keytime": 1174.333252, "scale": [ 0.219985, 0.219985, 0.219985] }, { "keytime": 1207.666626, "scale": [ 0.221888, 0.221888, 0.221888] }, { "keytime": 1241.000000, "scale": [ 0.223848, 0.223848, 0.223848] }, { "keytime": 1274.333374, "scale": [ 0.225926, 0.225926, 0.225926] }, { "keytime": 1307.666748, "scale": [ 0.228063, 0.228063, 0.228063] }, { "keytime": 1341.000122, "scale": [ 0.230322, 0.230322, 0.230321] }, { "keytime": 1407.666870, "scale": [ 0.235044, 0.235044, 0.235044] }, { "keytime": 1441.000244, "scale": [ 0.237636, 0.237636, 0.237636] }, { "keytime": 1474.333618, "scale": [ 0.240208, 0.240208, 0.240208] }, { "keytime": 1507.666992, "scale": [ 0.242826, 0.242826, 0.242826] }, { "keytime": 1541.000366, "scale": [ 0.245678, 0.245678, 0.245678] }, { "keytime": 1574.333740, "scale": [ 0.248446, 0.248446, 0.248446] }, { "keytime": 1607.667114, "scale": [ 0.251347, 0.251347, 0.251347] }, { "keytime": 1641.000488, "scale": [ 0.254386, 0.254386, 0.254386] }, { "keytime": 1674.333862, "scale": [ 0.257374, 0.257374, 0.257374] }, { "keytime": 1707.667236, "scale": [ 0.260487, 0.260487, 0.260487] }, { "keytime": 1741.000610, "scale": [ 0.263695, 0.263695, 0.263695] }, { "keytime": 1774.333984, "scale": [ 0.266993, 0.266993, 0.266993] }, { "keytime": 1807.667358, "scale": [ 0.270519, 0.270519, 0.270519] }, { "keytime": 1841.000732, "scale": [ 0.274419, 0.274419, 0.274419] }, { "keytime": 1874.334106, "scale": [ 0.278462, 0.278462, 0.278462] }, { "keytime": 1907.667480, "scale": [ 0.282845, 0.282845, 0.282845] }, { "keytime": 1941.000854, "scale": [ 0.287624, 0.287624, 0.287624] }, { "keytime": 1974.334229, "scale": [ 0.292524, 0.292524, 0.292524] }, { "keytime": 2007.667603, "scale": [ 0.297676, 0.297676, 0.297676] }, { "keytime": 2041.000977, "scale": [ 0.303255, 0.303254, 0.303254] }, { "keytime": 2074.334473, "scale": [ 0.309011, 0.309011, 0.309011] }, { "keytime": 2107.667725, "scale": [ 0.315017, 0.315017, 0.315017] }, { "keytime": 2141.000977, "scale": [ 0.321468, 0.321468, 0.321468] }, { "keytime": 2174.334229, "scale": [ 0.327982, 0.327982, 0.327982] }, { "keytime": 2207.667480, "scale": [ 0.334749, 0.334749, 0.334749] }, { "keytime": 2241.000732, "scale": [ 0.342056, 0.342056, 0.342056] }, { "keytime": 2274.333984, "scale": [ 0.349398, 0.349398, 0.349398] }, { "keytime": 2307.667236, "scale": [ 0.356979, 0.356979, 0.356979] }, { "keytime": 2374.333740, "scale": [ 0.373102, 0.373102, 0.373102] }, { "keytime": 2407.666992, "scale": [ 0.381470, 0.381470, 0.381470] }, { "keytime": 2441.000244, "scale": [ 0.390323, 0.390323, 0.390323] }, { "keytime": 2474.333496, "scale": [ 0.399141, 0.399141, 0.399141] }, { "keytime": 2507.666748, "scale": [ 0.408173, 0.408173, 0.408173] }, { "keytime": 2541.000000, "scale": [ 0.417703, 0.417703, 0.417703] }, { "keytime": 2574.333252, "scale": [ 0.427227, 0.427227, 0.427227] }, { "keytime": 2607.666504, "scale": [ 0.436945, 0.436945, 0.436945] }, { "keytime": 2640.999756, "scale": [ 0.446850, 0.446850, 0.446850] }, { "keytime": 2674.333008, "scale": [ 0.457249, 0.457249, 0.457249] }, { "keytime": 2707.666260, "scale": [ 0.467524, 0.467524, 0.467524] }, { "keytime": 2740.999512, "scale": [ 0.478018, 0.478018, 0.478018] }, { "keytime": 2774.332764, "scale": [ 0.488991, 0.488991, 0.488991] }, { "keytime": 2807.666016, "scale": [ 0.499792, 0.499792, 0.499792] }, { "keytime": 2840.999268, "scale": [ 0.510732, 0.510732, 0.510732] }, { "keytime": 2874.332520, "scale": [ 0.522145, 0.522145, 0.522145] }, { "keytime": 2907.665771, "scale": [ 0.533449, 0.533449, 0.533449] }, { "keytime": 2940.999023, "scale": [ 0.544755, 0.544755, 0.544755] }, { "keytime": 2974.332275, "scale": [ 0.556523, 0.556524, 0.556523] }, { "keytime": 3040.998779, "scale": [ 0.579621, 0.579621, 0.579621] }, { "keytime": 3074.332031, "scale": [ 0.591712, 0.591712, 0.591712] }, { "keytime": 3140.998535, "scale": [ 0.615195, 0.615195, 0.615195] }, { "keytime": 3174.331787, "scale": [ 0.627292, 0.627292, 0.627292] }, { "keytime": 3240.998291, "scale": [ 0.650774, 0.650774, 0.650774] }, { "keytime": 3274.331543, "scale": [ 0.662871, 0.662871, 0.662871] }, { "keytime": 3340.998047, "scale": [ 0.686354, 0.686354, 0.686354] }, { "keytime": 3374.331299, "scale": [ 0.698451, 0.698451, 0.698451] }, { "keytime": 3407.664551, "scale": [ 0.709952, 0.709952, 0.709952] }, { "keytime": 3440.997803, "scale": [ 0.721451, 0.721451, 0.721451] }, { "keytime": 3474.331055, "scale": [ 0.733164, 0.733165, 0.733165] }, { "keytime": 3540.997559, "scale": [ 0.755621, 0.755621, 0.755621] }, { "keytime": 3574.330811, "scale": [ 0.766936, 0.766936, 0.766936] }, { "keytime": 3607.664062, "scale": [ 0.777765, 0.777765, 0.777765] }, { "keytime": 3640.997314, "scale": [ 0.788441, 0.788441, 0.788441] }, { "keytime": 3674.330566, "scale": [ 0.799268, 0.799268, 0.799268] }, { "keytime": 3707.663818, "scale": [ 0.809599, 0.809599, 0.809599] }, { "keytime": 3740.997070, "scale": [ 0.819685, 0.819685, 0.819685] }, { "keytime": 3774.330322, "scale": [ 0.829871, 0.829872, 0.829872] }, { "keytime": 3807.663574, "scale": [ 0.839549, 0.839549, 0.839549] }, { "keytime": 3840.996826, "scale": [ 0.849016, 0.849016, 0.849016] }, { "keytime": 3874.330078, "scale": [ 0.858532, 0.858532, 0.858532] }, { "keytime": 3907.663330, "scale": [ 0.867461, 0.867461, 0.867461] }, { "keytime": 3940.996582, "scale": [ 0.876154, 0.876154, 0.876154] }, { "keytime": 3974.329834, "scale": [ 0.884854, 0.884854, 0.884854] }, { "keytime": 4007.663086, "scale": [ 0.893045, 0.893045, 0.893045] }, { "keytime": 4040.996338, "scale": [ 0.900972, 0.900972, 0.900972] }, { "keytime": 4074.329590, "scale": [ 0.908787, 0.908786, 0.908786] }, { "keytime": 4107.663086, "scale": [ 0.916094, 0.916094, 0.916094] }, { "keytime": 4140.996094, "scale": [ 0.923131, 0.923131, 0.923131] }, { "keytime": 4174.329590, "scale": [ 0.930090, 0.930090, 0.930090] }, { "keytime": 4207.663086, "scale": [ 0.936558, 0.936558, 0.936558] }, { "keytime": 4240.996582, "scale": [ 0.942652, 0.942652, 0.942652] }, { "keytime": 4274.330078, "scale": [ 0.948634, 0.948634, 0.948634] }, { "keytime": 4307.663574, "scale": [ 0.954146, 0.954146, 0.954146] }, { "keytime": 4340.997070, "scale": [ 0.959369, 0.959369, 0.959369] }, { "keytime": 4374.330566, "scale": [ 0.964436, 0.964436, 0.964436] }, { "keytime": 4407.664062, "scale": [ 0.968962, 0.968962, 0.968962] }, { "keytime": 4440.997559, "scale": [ 0.973195, 0.973195, 0.973195] }, { "keytime": 4474.331055, "scale": [ 0.977249, 0.977249, 0.977249] }, { "keytime": 4507.664551, "scale": [ 0.980884, 0.980884, 0.980884] }, { "keytime": 4540.998047, "scale": [ 0.984213, 0.984213, 0.984213] }, { "keytime": 4574.331543, "scale": [ 0.987245, 0.987245, 0.987245] }, { "keytime": 4607.665039, "scale": [ 0.989883, 0.989883, 0.989883] }, { "keytime": 4640.998535, "scale": [ 0.992229, 0.992229, 0.992229] }, { "keytime": 4674.332031, "scale": [ 0.994335, 0.994335, 0.994335] }, { "keytime": 4707.665527, "scale": [ 0.996079, 0.996079, 0.996079] }, { "keytime": 4740.999023, "scale": [ 0.997438, 0.997438, 0.997438] }, { "keytime": 4774.332520, "scale": [ 0.998538, 0.998539, 0.998538] }, { "keytime": 4807.666016, "scale": [ 0.999312, 0.999312, 0.999312] }, { "keytime": 4832.000000, "scale": [ 0.999748, 0.999748, 0.999748] } ] }, { "boneId": "Bone_008", "keyframes": [ { "keytime": 41.000000, "scale": [ 1.000000, 1.000000, 1.000000], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 74.333328, "scale": [ 0.999539, 0.999539, 0.999539], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 107.666664, "scale": [ 0.998395, 0.998395, 0.998395], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 141.000000, "scale": [ 0.996495, 0.996495, 0.996495], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 174.333328, "scale": [ 0.993948, 0.993948, 0.993948], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 207.666656, "scale": [ 0.990690, 0.990690, 0.990690], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 240.999985, "scale": [ 0.986510, 0.986510, 0.986510], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 274.333313, "scale": [ 0.981479, 0.981479, 0.981478], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 307.666656, "scale": [ 0.975880, 0.975880, 0.975880], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 341.000000, "scale": [ 0.969374, 0.969374, 0.969375], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 374.333344, "scale": [ 0.962352, 0.962351, 0.962352], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 407.666687, "scale": [ 0.954404, 0.954404, 0.954404], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 441.000031, "scale": [ 0.945505, 0.945505, 0.945505], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 474.333374, "scale": [ 0.936170, 0.936170, 0.936170], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 507.666718, "scale": [ 0.926164, 0.926164, 0.926164], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 541.000061, "scale": [ 0.915142, 0.915142, 0.915142], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 574.333374, "scale": [ 0.903561, 0.903561, 0.903561], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 607.666687, "scale": [ 0.891344, 0.891344, 0.891344], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 641.000000, "scale": [ 0.878101, 0.878101, 0.878101], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 674.333313, "scale": [ 0.864624, 0.864624, 0.864624], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 707.666626, "scale": [ 0.850534, 0.850534, 0.850533], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 740.999939, "scale": [ 0.835682, 0.835682, 0.835682], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 774.333252, "scale": [ 0.819810, 0.819810, 0.819810], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 807.666565, "scale": [ 0.803862, 0.803862, 0.803862], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 840.999878, "scale": [ 0.787408, 0.787408, 0.787408], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 874.333191, "scale": [ 0.769929, 0.769929, 0.769929], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 907.666504, "scale": [ 0.752363, 0.752363, 0.752363], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 940.999817, "scale": [ 0.734387, 0.734387, 0.734386], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 974.333130, "scale": [ 0.715462, 0.715462, 0.715462], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 1007.666443, "scale": [ 0.696731, 0.696731, 0.696731], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 1040.999756, "scale": [ 0.677662, 0.677662, 0.677662], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 1074.333130, "scale": [ 0.657637, 0.657637, 0.657637], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 1107.666504, "scale": [ 0.637958, 0.637958, 0.637958], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 1140.999878, "scale": [ 0.618080, 0.618080, 0.618080], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 1174.333252, "scale": [ 0.597406, 0.597405, 0.597405], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 1207.666626, "scale": [ 0.577149, 0.577149, 0.577149], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 1241.000000, "scale": [ 0.556279, 0.556279, 0.556279], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 1307.666748, "scale": [ 0.515766, 0.515766, 0.515766], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 1341.000122, "scale": [ 0.494896, 0.494896, 0.494896], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 1374.333496, "scale": [ 0.474639, 0.474639, 0.474639], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 1407.666870, "scale": [ 0.454629, 0.454629, 0.454629], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 1441.000244, "scale": [ 0.434202, 0.434202, 0.434202], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 1474.333618, "scale": [ 0.414596, 0.414596, 0.414596], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 1507.666992, "scale": [ 0.395236, 0.395236, 0.395236], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 1541.000366, "scale": [ 0.375589, 0.375589, 0.375590], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 1574.333740, "scale": [ 0.356961, 0.356961, 0.356961], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 1607.667114, "scale": [ 0.338702, 0.338702, 0.338702], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 1641.000488, "scale": [ 0.320305, 0.320305, 0.320305], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 1674.333862, "scale": [ 0.302880, 0.302880, 0.302880], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 1707.667236, "scale": [ 0.285916, 0.285916, 0.285916], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 1741.000610, "scale": [ 0.269099, 0.269100, 0.269100], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 1774.333984, "scale": [ 0.253315, 0.253315, 0.253315], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 1807.667358, "scale": [ 0.238066, 0.238066, 0.238066], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 1841.000732, "scale": [ 0.222944, 0.222944, 0.222944], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 1874.334106, "scale": [ 0.208853, 0.208853, 0.208854], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 1907.667480, "scale": [ 0.195564, 0.195564, 0.195564], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 1941.000854, "scale": [ 0.182516, 0.182516, 0.182516], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 1974.334229, "scale": [ 0.170499, 0.170499, 0.170499], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 2007.667603, "scale": [ 0.159123, 0.159123, 0.159123], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 2041.000977, "scale": [ 0.148102, 0.148102, 0.148102], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 2074.334473, "scale": [ 0.138304, 0.138304, 0.138304], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 2107.667725, "scale": [ 0.129182, 0.129182, 0.129182], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 2141.000977, "scale": [ 0.120498, 0.120498, 0.120498], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 2174.334229, "scale": [ 0.112767, 0.112767, 0.112767], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 2207.667480, "scale": [ 0.105744, 0.105744, 0.105744], "translation": [ 0.536420, 0.000000, -0.000001] }, { "keytime": 2241.000732, "scale": [ 0.099457, 0.099457, 0.099457], "translation": [ 0.536420, 0.000000, -0.000001] }, { "keytime": 2274.333984, "scale": [ 0.094078, 0.094078, 0.094078], "translation": [ 0.536420, 0.000000, -0.000001] }, { "keytime": 2307.667236, "scale": [ 0.089393, 0.089393, 0.089393], "translation": [ 0.536420, 0.000000, -0.000001] }, { "keytime": 2341.000488, "scale": [ 0.085304, 0.085304, 0.085304], "translation": [ 0.536420, 0.000000, -0.000001] }, { "keytime": 2374.333740, "scale": [ 0.082046, 0.082046, 0.082046], "translation": [ 0.536420, 0.000000, -0.000001] }, { "keytime": 2407.666992, "scale": [ 0.079717, 0.079717, 0.079717], "translation": [ 0.536420, 0.000000, -0.000001] }, { "keytime": 2441.000244, "scale": [ 0.078033, 0.078033, 0.078033], "translation": [ 0.536420, 0.000000, -0.000001] }, { "keytime": 2474.333496, "scale": [ 0.077104, 0.077104, 0.077104], "translation": [ 0.536420, 0.000000, -0.000001] }, { "keytime": 2507.666748, "scale": [ 0.076865, 0.076865, 0.076865], "translation": [ 0.536420, 0.000000, -0.000001] }, { "keytime": 2541.000000, "scale": [ 0.077374, 0.077374, 0.077374], "translation": [ 0.536420, 0.000000, -0.000001] }, { "keytime": 2574.333252, "scale": [ 0.078861, 0.078861, 0.078861], "translation": [ 0.536420, 0.000000, -0.000001] }, { "keytime": 2607.666504, "scale": [ 0.081084, 0.081084, 0.081084], "translation": [ 0.536420, 0.000000, -0.000001] }, { "keytime": 2640.999756, "scale": [ 0.084048, 0.084048, 0.084048], "translation": [ 0.536420, 0.000000, -0.000001] }, { "keytime": 2674.333008, "scale": [ 0.087890, 0.087890, 0.087890], "translation": [ 0.536420, 0.000000, -0.000001] }, { "keytime": 2707.666260, "scale": [ 0.092391, 0.092391, 0.092391], "translation": [ 0.536420, 0.000000, -0.000001] }, { "keytime": 2740.999512, "scale": [ 0.097881, 0.097881, 0.097881], "translation": [ 0.536420, 0.000000, -0.000001] }, { "keytime": 2774.332764, "scale": [ 0.104313, 0.104313, 0.104313], "translation": [ 0.536420, 0.000000, -0.000001] }, { "keytime": 2807.666016, "scale": [ 0.111319, 0.111319, 0.111319], "translation": [ 0.536420, 0.000000, -0.000001] }, { "keytime": 2840.999268, "scale": [ 0.119065, 0.119065, 0.119065], "translation": [ 0.536420, 0.000000, -0.000001] }, { "keytime": 2874.332520, "scale": [ 0.127846, 0.127846, 0.127846], "translation": [ 0.536420, 0.000000, -0.000001] }, { "keytime": 2907.665771, "scale": [ 0.137347, 0.137347, 0.137347], "translation": [ 0.536421, 0.000000, -0.000001] }, { "keytime": 2940.999023, "scale": [ 0.147567, 0.147567, 0.147567], "translation": [ 0.536421, 0.000000, -0.000001] }, { "keytime": 2974.332275, "scale": [ 0.158846, 0.158846, 0.158846], "translation": [ 0.536421, 0.000000, -0.000001] }, { "keytime": 3007.665527, "scale": [ 0.170508, 0.170508, 0.170508], "translation": [ 0.536421, 0.000000, -0.000001] }, { "keytime": 3040.998779, "scale": [ 0.182889, 0.182889, 0.182889], "translation": [ 0.536421, 0.000000, -0.000001] }, { "keytime": 3074.332031, "scale": [ 0.196558, 0.196558, 0.196558], "translation": [ 0.536421, 0.000000, -0.000001] }, { "keytime": 3107.665283, "scale": [ 0.210503, 0.210503, 0.210503], "translation": [ 0.536421, 0.000000, -0.000001] }, { "keytime": 3140.998535, "scale": [ 0.225084, 0.225084, 0.225084], "translation": [ 0.536421, 0.000000, -0.000001] }, { "keytime": 3174.331787, "scale": [ 0.240762, 0.240762, 0.240762], "translation": [ 0.536421, 0.000000, -0.000001] }, { "keytime": 3207.665039, "scale": [ 0.256600, 0.256600, 0.256600], "translation": [ 0.536421, 0.000000, -0.000001] }, { "keytime": 3240.998291, "scale": [ 0.273190, 0.273190, 0.273190], "translation": [ 0.536421, 0.000000, -0.000001] }, { "keytime": 3274.331543, "scale": [ 0.290839, 0.290839, 0.290838], "translation": [ 0.536421, 0.000000, -0.000001] }, { "keytime": 3307.664795, "scale": [ 0.308490, 0.308490, 0.308490], "translation": [ 0.536421, 0.000000, -0.000001] }, { "keytime": 3340.998047, "scale": [ 0.326622, 0.326622, 0.326622], "translation": [ 0.536421, 0.000000, -0.000001] }, { "keytime": 3374.331299, "scale": [ 0.345794, 0.345794, 0.345794], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 3407.664551, "scale": [ 0.364948, 0.364948, 0.364948], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 3440.997803, "scale": [ 0.384462, 0.384462, 0.384462], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 3474.331055, "scale": [ 0.404912, 0.404912, 0.404912], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 3507.664307, "scale": [ 0.425058, 0.425058, 0.425058], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 3540.997559, "scale": [ 0.445471, 0.445471, 0.445471], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 3574.330811, "scale": [ 0.466776, 0.466776, 0.466776], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 3607.664062, "scale": [ 0.487665, 0.487665, 0.487665], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 3640.997314, "scale": [ 0.508627, 0.508627, 0.508627], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 3674.330566, "scale": [ 0.530224, 0.530224, 0.530224], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 3740.997070, "scale": [ 0.572147, 0.572147, 0.572147], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 3774.330322, "scale": [ 0.593744, 0.593744, 0.593744], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 3807.663574, "scale": [ 0.614572, 0.614572, 0.614572], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 3840.996826, "scale": [ 0.635197, 0.635197, 0.635197], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 3874.330078, "scale": [ 0.656229, 0.656229, 0.656229], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 3907.663330, "scale": [ 0.676298, 0.676298, 0.676298], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 3940.996582, "scale": [ 0.696059, 0.696059, 0.696059], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 3974.329834, "scale": [ 0.716061, 0.716061, 0.716061], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 4007.663086, "scale": [ 0.735092, 0.735092, 0.735092], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 4040.996338, "scale": [ 0.753701, 0.753701, 0.753701], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 4074.329590, "scale": [ 0.772260, 0.772260, 0.772260], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 4107.663086, "scale": [ 0.789763, 0.789763, 0.789763], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 4140.996094, "scale": [ 0.806747, 0.806747, 0.806747], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 4174.329590, "scale": [ 0.823670, 0.823670, 0.823670], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 4207.663086, "scale": [ 0.839508, 0.839508, 0.839508], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 4240.996582, "scale": [ 0.854551, 0.854551, 0.854551], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 4274.330078, "scale": [ 0.869398, 0.869398, 0.869398], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 4307.663574, "scale": [ 0.883147, 0.883147, 0.883147], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 4340.997070, "scale": [ 0.896238, 0.896238, 0.896238], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 4374.330566, "scale": [ 0.908995, 0.908995, 0.908995], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 4407.664062, "scale": [ 0.920449, 0.920448, 0.920448], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 4440.997559, "scale": [ 0.931196, 0.931196, 0.931196], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 4474.331055, "scale": [ 0.941517, 0.941517, 0.941517], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 4507.664551, "scale": [ 0.950799, 0.950799, 0.950799], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 4540.998047, "scale": [ 0.959321, 0.959321, 0.959321], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 4574.331543, "scale": [ 0.967104, 0.967104, 0.967104], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 4607.665039, "scale": [ 0.973887, 0.973887, 0.973887], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 4640.998535, "scale": [ 0.979927, 0.979928, 0.979927], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 4674.332031, "scale": [ 0.985360, 0.985360, 0.985360], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 4707.665527, "scale": [ 0.989861, 0.989860, 0.989860], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 4740.999023, "scale": [ 0.993373, 0.993373, 0.993373], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 4774.332520, "scale": [ 0.996219, 0.996219, 0.996219], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 4807.666016, "scale": [ 0.998221, 0.998221, 0.998221], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 4832.000000, "scale": [ 0.999347, 0.999346, 0.999347], "translation": [ 0.536421, 0.000000, -0.000000] } ] }, { "boneId": "Bone_009", "keyframes": [ { "keytime": 41.000000, "scale": [ 0.560000, 0.560000, 0.560000], "translation": [ 0.462493, 0.000000, 0.000001] }, { "keytime": 74.333328, "scale": [ 0.559886, 0.559886, 0.559886], "translation": [ 0.462493, 0.000000, 0.000001] }, { "keytime": 107.666664, "scale": [ 0.559605, 0.559605, 0.559605], "translation": [ 0.462493, 0.000000, 0.000001] }, { "keytime": 141.000000, "scale": [ 0.559137, 0.559137, 0.559137], "translation": [ 0.462493, 0.000000, 0.000001] }, { "keytime": 174.333328, "scale": [ 0.558511, 0.558511, 0.558511], "translation": [ 0.462493, 0.000000, 0.000001] }, { "keytime": 207.666656, "scale": [ 0.557710, 0.557710, 0.557710], "translation": [ 0.462493, 0.000000, 0.000001] }, { "keytime": 240.999985, "scale": [ 0.556682, 0.556682, 0.556682], "translation": [ 0.462493, 0.000000, 0.000001] }, { "keytime": 274.333313, "scale": [ 0.555445, 0.555445, 0.555445], "translation": [ 0.462493, 0.000000, 0.000001] }, { "keytime": 307.666656, "scale": [ 0.554069, 0.554069, 0.554069], "translation": [ 0.462493, 0.000000, 0.000001] }, { "keytime": 341.000000, "scale": [ 0.552468, 0.552468, 0.552468], "translation": [ 0.462493, 0.000000, 0.000001] }, { "keytime": 374.333344, "scale": [ 0.550739, 0.550739, 0.550739], "translation": [ 0.462493, 0.000000, 0.000001] }, { "keytime": 407.666687, "scale": [ 0.548781, 0.548781, 0.548781], "translation": [ 0.462493, 0.000000, 0.000001] }, { "keytime": 441.000031, "scale": [ 0.546585, 0.546585, 0.546585], "translation": [ 0.462493, 0.000000, 0.000001] }, { "keytime": 474.333374, "scale": [ 0.544279, 0.544279, 0.544279], "translation": [ 0.462493, 0.000000, 0.000001] }, { "keytime": 507.666718, "scale": [ 0.541802, 0.541803, 0.541802], "translation": [ 0.462493, 0.000000, 0.000001] }, { "keytime": 541.000061, "scale": [ 0.539070, 0.539070, 0.539070], "translation": [ 0.462493, 0.000000, 0.000001] }, { "keytime": 574.333374, "scale": [ 0.536191, 0.536191, 0.536191], "translation": [ 0.462493, 0.000000, 0.000001] }, { "keytime": 607.666687, "scale": [ 0.533145, 0.533145, 0.533145], "translation": [ 0.462493, 0.000000, 0.000001] }, { "keytime": 641.000000, "scale": [ 0.529834, 0.529834, 0.529834], "translation": [ 0.462493, 0.000000, 0.000001] }, { "keytime": 674.333313, "scale": [ 0.526454, 0.526454, 0.526454], "translation": [ 0.462493, 0.000000, 0.000001] }, { "keytime": 707.666626, "scale": [ 0.522908, 0.522907, 0.522907], "translation": [ 0.462493, 0.000000, 0.000001] }, { "keytime": 740.999939, "scale": [ 0.519150, 0.519150, 0.519150], "translation": [ 0.462493, 0.000000, 0.000001] }, { "keytime": 774.333252, "scale": [ 0.515116, 0.515116, 0.515116], "translation": [ 0.462493, 0.000000, 0.000001] }, { "keytime": 807.666565, "scale": [ 0.511042, 0.511042, 0.511042], "translation": [ 0.462493, 0.000000, 0.000001] }, { "keytime": 840.999878, "scale": [ 0.506817, 0.506817, 0.506817], "translation": [ 0.462493, 0.000000, 0.000001] }, { "keytime": 874.333191, "scale": [ 0.502303, 0.502303, 0.502303], "translation": [ 0.462493, 0.000000, 0.000001] }, { "keytime": 907.666504, "scale": [ 0.497728, 0.497728, 0.497728], "translation": [ 0.462493, 0.000000, 0.000001] }, { "keytime": 940.999817, "scale": [ 0.493014, 0.493014, 0.493014], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 974.333130, "scale": [ 0.488013, 0.488014, 0.488013], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 1007.666443, "scale": [ 0.483025, 0.483025, 0.483025], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 1040.999756, "scale": [ 0.477904, 0.477904, 0.477904], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 1074.333130, "scale": [ 0.472461, 0.472461, 0.472461], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 1107.666504, "scale": [ 0.467003, 0.467003, 0.467003], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 1140.999878, "scale": [ 0.461484, 0.461485, 0.461484], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 1174.333252, "scale": [ 0.455732, 0.455732, 0.455732], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 1207.666626, "scale": [ 0.449939, 0.449939, 0.449939], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 1241.000000, "scale": [ 0.443970, 0.443970, 0.443970], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 1274.333374, "scale": [ 0.438004, 0.438004, 0.438004], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 1307.666748, "scale": [ 0.431979, 0.431979, 0.431979], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 1341.000122, "scale": [ 0.425717, 0.425717, 0.425717], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 1407.666870, "scale": [ 0.413227, 0.413227, 0.413227], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 1441.000244, "scale": [ 0.406793, 0.406793, 0.406793], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 1474.333618, "scale": [ 0.400458, 0.400458, 0.400458], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 1507.666992, "scale": [ 0.394031, 0.394031, 0.394031], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 1541.000366, "scale": [ 0.387409, 0.387410, 0.387409], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 1607.667114, "scale": [ 0.374555, 0.374556, 0.374555], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 1641.000488, "scale": [ 0.367934, 0.367934, 0.367934], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 1707.667236, "scale": [ 0.355080, 0.355080, 0.355080], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 1741.000610, "scale": [ 0.348549, 0.348549, 0.348549], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 1807.667358, "scale": [ 0.335876, 0.335876, 0.335876], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 1841.000732, "scale": [ 0.329347, 0.329348, 0.329347], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 1874.334106, "scale": [ 0.323011, 0.323011, 0.323011], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 1907.667480, "scale": [ 0.316886, 0.316886, 0.316886], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 1941.000854, "scale": [ 0.310577, 0.310577, 0.310577], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 1974.334229, "scale": [ 0.304557, 0.304558, 0.304557], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 2007.667603, "scale": [ 0.298643, 0.298643, 0.298643], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 2041.000977, "scale": [ 0.292549, 0.292549, 0.292549], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 2107.667725, "scale": [ 0.281227, 0.281227, 0.281227], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 2141.000977, "scale": [ 0.275544, 0.275544, 0.275544], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 2207.667480, "scale": [ 0.264811, 0.264811, 0.264811], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 2241.000732, "scale": [ 0.259529, 0.259529, 0.259529], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 2274.333984, "scale": [ 0.254538, 0.254538, 0.254538], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 2307.667236, "scale": [ 0.249678, 0.249678, 0.249678], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 2341.000488, "scale": [ 0.244816, 0.244816, 0.244816], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 2374.333740, "scale": [ 0.240239, 0.240239, 0.240239], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 2407.666992, "scale": [ 0.235855, 0.235855, 0.235855], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 2441.000244, "scale": [ 0.231494, 0.231494, 0.231494], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 2474.333496, "scale": [ 0.227416, 0.227416, 0.227416], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 2507.666748, "scale": [ 0.223491, 0.223491, 0.223491], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 2541.000000, "scale": [ 0.219615, 0.219615, 0.219615], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 2574.333252, "scale": [ 0.216069, 0.216069, 0.216069], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 2607.666504, "scale": [ 0.212684, 0.212684, 0.212684], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 2640.999756, "scale": [ 0.209463, 0.209463, 0.209463], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 2674.333008, "scale": [ 0.206319, 0.206319, 0.206319], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 2707.666260, "scale": [ 0.203439, 0.203439, 0.203439], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 2740.999512, "scale": [ 0.200783, 0.200783, 0.200783], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 2774.332764, "scale": [ 0.198222, 0.198222, 0.198222], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 2807.666016, "scale": [ 0.195910, 0.195910, 0.195910], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 2840.999268, "scale": [ 0.193770, 0.193770, 0.193770], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 2874.332520, "scale": [ 0.191749, 0.191749, 0.191749], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 2907.665771, "scale": [ 0.190018, 0.190018, 0.190018], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 2940.999023, "scale": [ 0.188458, 0.188458, 0.188458], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 2974.332275, "scale": [ 0.187031, 0.187031, 0.187031], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 3007.665527, "scale": [ 0.185821, 0.185821, 0.185821], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 3040.998779, "scale": [ 0.184789, 0.184789, 0.184789], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 3074.332031, "scale": [ 0.183956, 0.183956, 0.183956], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 3107.665283, "scale": [ 0.183325, 0.183325, 0.183325], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 3140.998535, "scale": [ 0.182863, 0.182863, 0.182863], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 3174.331787, "scale": [ 0.182567, 0.182567, 0.182567], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 3207.665039, "scale": [ 0.182453, 0.182453, 0.182453], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 3240.998291, "scale": [ 0.183322, 0.183322, 0.183322], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 3274.331543, "scale": [ 0.185576, 0.185576, 0.185576], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 3307.664795, "scale": [ 0.189132, 0.189132, 0.189132], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 3340.998047, "scale": [ 0.194021, 0.194021, 0.194021], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 3374.331299, "scale": [ 0.200512, 0.200512, 0.200512], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 3407.664551, "scale": [ 0.208608, 0.208609, 0.208608], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 3440.997803, "scale": [ 0.218037, 0.218037, 0.218037], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 3474.331055, "scale": [ 0.229141, 0.229142, 0.229141], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 3507.664307, "scale": [ 0.241255, 0.241255, 0.241255], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 3540.997559, "scale": [ 0.254714, 0.254714, 0.254714], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 3574.330811, "scale": [ 0.270290, 0.270290, 0.270290], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 3607.664062, "scale": [ 0.286673, 0.286673, 0.286673], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 3640.997314, "scale": [ 0.304235, 0.304235, 0.304235], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 3674.330566, "scale": [ 0.323541, 0.323541, 0.323541], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 3707.663818, "scale": [ 0.343411, 0.343411, 0.343411], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 3740.997070, "scale": [ 0.364626, 0.364626, 0.364626], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 3774.330322, "scale": [ 0.387444, 0.387444, 0.387444], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 3807.663574, "scale": [ 0.410471, 0.410471, 0.410471], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 3840.996826, "scale": [ 0.434278, 0.434278, 0.434278], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 3874.330078, "scale": [ 0.459566, 0.459566, 0.459566], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 3907.663330, "scale": [ 0.484881, 0.484881, 0.484880], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 3940.996582, "scale": [ 0.510635, 0.510635, 0.510635], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 3974.329834, "scale": [ 0.537536, 0.537536, 0.537536], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 4007.663086, "scale": [ 0.563901, 0.563901, 0.563901], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 4040.996338, "scale": [ 0.590422, 0.590422, 0.590422], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 4074.329590, "scale": [ 0.617746, 0.617746, 0.617746], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 4107.663086, "scale": [ 0.644118, 0.644118, 0.644118], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 4140.996094, "scale": [ 0.670246, 0.670246, 0.670246], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 4174.329590, "scale": [ 0.696803, 0.696803, 0.696803], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 4207.663086, "scale": [ 0.722126, 0.722126, 0.722126], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 4240.996582, "scale": [ 0.746686, 0.746686, 0.746686], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 4274.330078, "scale": [ 0.771265, 0.771265, 0.771265], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 4307.663574, "scale": [ 0.794325, 0.794325, 0.794325], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 4340.997070, "scale": [ 0.816538, 0.816538, 0.816538], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 4374.330566, "scale": [ 0.838424, 0.838425, 0.838425], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 4407.664062, "scale": [ 0.858308, 0.858308, 0.858308], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 4440.997559, "scale": [ 0.877101, 0.877101, 0.877101], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 4474.331055, "scale": [ 0.895269, 0.895269, 0.895269], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 4507.664551, "scale": [ 0.911702, 0.911702, 0.911702], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 4540.998047, "scale": [ 0.926869, 0.926869, 0.926869], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 4574.331543, "scale": [ 0.940788, 0.940789, 0.940788], "translation": [ 0.462494, 0.000000, -0.000000] }, { "keytime": 4607.665039, "scale": [ 0.952955, 0.952955, 0.952955], "translation": [ 0.462494, 0.000000, -0.000000] }, { "keytime": 4640.998535, "scale": [ 0.963813, 0.963813, 0.963813], "translation": [ 0.462494, 0.000000, -0.000000] }, { "keytime": 4674.332031, "scale": [ 0.973597, 0.973597, 0.973597], "translation": [ 0.462494, 0.000000, -0.000000] }, { "keytime": 4707.665527, "scale": [ 0.981712, 0.981712, 0.981712], "translation": [ 0.462494, 0.000000, -0.000000] }, { "keytime": 4740.999023, "scale": [ 0.988049, 0.988049, 0.988049], "translation": [ 0.462494, 0.000000, -0.000000] }, { "keytime": 4774.332520, "scale": [ 0.993184, 0.993184, 0.993184], "translation": [ 0.462494, 0.000000, -0.000000] }, { "keytime": 4807.666016, "scale": [ 0.996794, 0.996794, 0.996794], "translation": [ 0.462494, 0.000000, -0.000000] }, { "keytime": 4832.000000, "scale": [ 0.998824, 0.998824, 0.998824], "translation": [ 0.462494, 0.000000, -0.000000] } ] }, { "boneId": "Bone_010", "keyframes": [ { "keytime": 41.000000, "scale": [ 0.659330, 0.659330, 0.659330], "translation": [ 0.375512, 0.000000, -0.000003] }, { "keytime": 74.333328, "scale": [ 0.659230, 0.659230, 0.659230], "translation": [ 0.375512, 0.000000, -0.000003] }, { "keytime": 107.666664, "scale": [ 0.658983, 0.658983, 0.658983], "translation": [ 0.375512, 0.000000, -0.000003] }, { "keytime": 141.000000, "scale": [ 0.658573, 0.658573, 0.658573], "translation": [ 0.375512, 0.000000, -0.000003] }, { "keytime": 174.333328, "scale": [ 0.658023, 0.658023, 0.658023], "translation": [ 0.375512, 0.000000, -0.000003] }, { "keytime": 207.666656, "scale": [ 0.657320, 0.657320, 0.657320], "translation": [ 0.375512, 0.000000, -0.000003] }, { "keytime": 240.999985, "scale": [ 0.656419, 0.656419, 0.656419], "translation": [ 0.375512, 0.000000, -0.000003] }, { "keytime": 274.333313, "scale": [ 0.655334, 0.655334, 0.655334], "translation": [ 0.375512, 0.000000, -0.000003] }, { "keytime": 307.666656, "scale": [ 0.654126, 0.654126, 0.654126], "translation": [ 0.375512, 0.000000, -0.000003] }, { "keytime": 341.000000, "scale": [ 0.652722, 0.652721, 0.652722], "translation": [ 0.375512, 0.000000, -0.000003] }, { "keytime": 374.333344, "scale": [ 0.651205, 0.651205, 0.651205], "translation": [ 0.375512, 0.000000, -0.000003] }, { "keytime": 407.666687, "scale": [ 0.649486, 0.649486, 0.649486], "translation": [ 0.375512, 0.000000, -0.000003] }, { "keytime": 441.000031, "scale": [ 0.647558, 0.647558, 0.647558], "translation": [ 0.375512, 0.000000, -0.000003] }, { "keytime": 474.333374, "scale": [ 0.645532, 0.645532, 0.645532], "translation": [ 0.375512, 0.000000, -0.000003] }, { "keytime": 507.666718, "scale": [ 0.643356, 0.643356, 0.643356], "translation": [ 0.375512, 0.000000, -0.000003] }, { "keytime": 541.000061, "scale": [ 0.640954, 0.640954, 0.640954], "translation": [ 0.375512, 0.000000, -0.000003] }, { "keytime": 574.333374, "scale": [ 0.638419, 0.638419, 0.638419], "translation": [ 0.375512, 0.000000, -0.000003] }, { "keytime": 607.666687, "scale": [ 0.635736, 0.635736, 0.635736], "translation": [ 0.375512, 0.000000, -0.000003] }, { "keytime": 641.000000, "scale": [ 0.632817, 0.632816, 0.632817], "translation": [ 0.375512, 0.000000, -0.000003] }, { "keytime": 674.333313, "scale": [ 0.629833, 0.629833, 0.629833], "translation": [ 0.375512, 0.000000, -0.000003] }, { "keytime": 707.666626, "scale": [ 0.626698, 0.626698, 0.626698], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 740.999939, "scale": [ 0.623371, 0.623371, 0.623371], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 774.333252, "scale": [ 0.619793, 0.619793, 0.619793], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 807.666565, "scale": [ 0.616175, 0.616175, 0.616175], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 840.999878, "scale": [ 0.612415, 0.612414, 0.612415], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 874.333191, "scale": [ 0.608389, 0.608389, 0.608389], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 907.666504, "scale": [ 0.604298, 0.604297, 0.604298], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 940.999817, "scale": [ 0.600071, 0.600071, 0.600071], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 1007.666443, "scale": [ 0.591081, 0.591081, 0.591081], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 1040.999756, "scale": [ 0.586451, 0.586451, 0.586451], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 1074.333130, "scale": [ 0.581511, 0.581511, 0.581511], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 1107.666504, "scale": [ 0.576589, 0.576589, 0.576589], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 1140.999878, "scale": [ 0.571547, 0.571547, 0.571547], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 1174.333252, "scale": [ 0.566211, 0.566211, 0.566211], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 1207.666626, "scale": [ 0.560857, 0.560857, 0.560857], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 1241.000000, "scale": [ 0.555340, 0.555340, 0.555340], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 1274.333374, "scale": [ 0.549774, 0.549774, 0.549774], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 1307.666748, "scale": [ 0.544136, 0.544136, 0.544136], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 1341.000122, "scale": [ 0.538262, 0.538262, 0.538262], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 1407.666870, "scale": [ 0.526474, 0.526474, 0.526474], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 1441.000244, "scale": [ 0.520230, 0.520230, 0.520231], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 1474.333618, "scale": [ 0.514111, 0.514111, 0.514111], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 1507.666992, "scale": [ 0.507947, 0.507947, 0.507947], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 1541.000366, "scale": [ 0.501444, 0.501444, 0.501444], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 1574.333740, "scale": [ 0.495132, 0.495132, 0.495132], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 1607.667114, "scale": [ 0.488681, 0.488681, 0.488681], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 1641.000488, "scale": [ 0.481984, 0.481984, 0.481984], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 1707.667236, "scale": [ 0.468984, 0.468984, 0.468984], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 1741.000610, "scale": [ 0.462121, 0.462121, 0.462121], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 1807.667358, "scale": [ 0.448794, 0.448794, 0.448794], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 1841.000732, "scale": [ 0.441928, 0.441928, 0.441928], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 1907.667480, "scale": [ 0.428601, 0.428601, 0.428601], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 1941.000854, "scale": [ 0.421735, 0.421735, 0.421735], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 2007.667603, "scale": [ 0.408408, 0.408408, 0.408408], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 2041.000977, "scale": [ 0.401543, 0.401543, 0.401543], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 2107.667725, "scale": [ 0.388215, 0.388215, 0.388215], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 2141.000977, "scale": [ 0.381350, 0.381350, 0.381350], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 2174.334229, "scale": [ 0.374742, 0.374742, 0.374742], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 2207.667480, "scale": [ 0.368311, 0.368311, 0.368311], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 2241.000732, "scale": [ 0.361685, 0.361685, 0.361685], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 2274.333984, "scale": [ 0.355254, 0.355254, 0.355254], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 2307.667236, "scale": [ 0.348926, 0.348926, 0.348926], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 2341.000488, "scale": [ 0.342517, 0.342517, 0.342517], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 2374.333740, "scale": [ 0.336297, 0.336297, 0.336297], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 2407.666992, "scale": [ 0.330284, 0.330284, 0.330284], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 2441.000244, "scale": [ 0.324091, 0.324091, 0.324091], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 2474.333496, "scale": [ 0.318200, 0.318200, 0.318200], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 2507.666748, "scale": [ 0.312430, 0.312430, 0.312430], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 2541.000000, "scale": [ 0.306486, 0.306486, 0.306486], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 2607.666504, "scale": [ 0.295487, 0.295487, 0.295487], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 2674.333008, "scale": [ 0.284768, 0.284768, 0.284768], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 2707.666260, "scale": [ 0.279565, 0.279565, 0.279565], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 2740.999512, "scale": [ 0.274595, 0.274595, 0.274595], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 2774.332764, "scale": [ 0.269602, 0.269602, 0.269602], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 2807.666016, "scale": [ 0.264885, 0.264885, 0.264885], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 2874.332520, "scale": [ 0.255703, 0.255703, 0.255703], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 2907.665771, "scale": [ 0.251425, 0.251425, 0.251425], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 2940.999023, "scale": [ 0.247282, 0.247282, 0.247282], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 2974.332275, "scale": [ 0.243157, 0.243157, 0.243157], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 3007.665527, "scale": [ 0.239294, 0.239294, 0.239294], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 3040.998779, "scale": [ 0.235576, 0.235576, 0.235576], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 3074.332031, "scale": [ 0.231938, 0.231938, 0.231938], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 3107.665283, "scale": [ 0.228555, 0.228555, 0.228555], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 3140.998535, "scale": [ 0.225318, 0.225318, 0.225317], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 3174.331787, "scale": [ 0.222136, 0.222136, 0.222136], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 3207.665039, "scale": [ 0.219200, 0.219200, 0.219200], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 3240.998291, "scale": [ 0.216461, 0.216460, 0.216461], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 3274.331543, "scale": [ 0.213792, 0.213792, 0.213792], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 3307.664795, "scale": [ 0.211356, 0.211356, 0.211356], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 3340.998047, "scale": [ 0.209069, 0.209069, 0.209069], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 3374.331299, "scale": [ 0.206876, 0.206876, 0.206876], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 3407.664551, "scale": [ 0.204949, 0.204949, 0.204949], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 3440.997803, "scale": [ 0.203172, 0.203172, 0.203172], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 3474.331055, "scale": [ 0.201500, 0.201500, 0.201500], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 3507.664307, "scale": [ 0.200031, 0.200031, 0.200031], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 3540.997559, "scale": [ 0.198718, 0.198718, 0.198718], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 3574.330811, "scale": [ 0.197569, 0.197569, 0.197569], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 3607.664062, "scale": [ 0.196610, 0.196610, 0.196610], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 3640.997314, "scale": [ 0.195801, 0.195801, 0.195801], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 3674.330566, "scale": [ 0.195126, 0.195126, 0.195126], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 3707.663818, "scale": [ 0.194625, 0.194625, 0.194625], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 3740.997070, "scale": [ 0.194321, 0.194321, 0.194321], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 3774.330322, "scale": [ 0.194162, 0.194162, 0.194162], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 3807.663574, "scale": [ 0.195118, 0.195118, 0.195118], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 3840.996826, "scale": [ 0.198129, 0.198129, 0.198129], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 3874.330078, "scale": [ 0.204594, 0.204594, 0.204594], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 3907.663330, "scale": [ 0.215059, 0.215059, 0.215059], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 3940.996582, "scale": [ 0.228636, 0.228636, 0.228636], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 3974.329834, "scale": [ 0.245867, 0.245867, 0.245867], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 4007.663086, "scale": [ 0.265681, 0.265681, 0.265681], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 4040.996338, "scale": [ 0.288580, 0.288580, 0.288580], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 4074.329590, "scale": [ 0.315977, 0.315977, 0.315977], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 4107.663086, "scale": [ 0.345264, 0.345264, 0.345264], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 4140.996094, "scale": [ 0.376948, 0.376949, 0.376948], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 4174.329590, "scale": [ 0.411915, 0.411915, 0.411915], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 4207.663086, "scale": [ 0.447864, 0.447864, 0.447864], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 4240.996582, "scale": [ 0.485831, 0.485831, 0.485831], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 4274.330078, "scale": [ 0.526051, 0.526051, 0.526051], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 4307.663574, "scale": [ 0.565828, 0.565828, 0.565828], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 4340.997070, "scale": [ 0.605977, 0.605977, 0.605977], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 4374.330566, "scale": [ 0.647343, 0.647343, 0.647343], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 4407.664062, "scale": [ 0.686777, 0.686777, 0.686777], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 4440.997559, "scale": [ 0.725172, 0.725172, 0.725172], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 4474.331055, "scale": [ 0.763313, 0.763313, 0.763313], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 4507.664551, "scale": [ 0.798651, 0.798651, 0.798651], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 4540.998047, "scale": [ 0.831971, 0.831970, 0.831970], "translation": [ 0.375512, 0.000000, -0.000000] }, { "keytime": 4574.331543, "scale": [ 0.863187, 0.863187, 0.863187], "translation": [ 0.375512, 0.000000, -0.000000] }, { "keytime": 4607.665039, "scale": [ 0.890811, 0.890811, 0.890811], "translation": [ 0.375512, 0.000000, -0.000000] }, { "keytime": 4640.998535, "scale": [ 0.915708, 0.915708, 0.915708], "translation": [ 0.375512, 0.000000, -0.000000] }, { "keytime": 4674.332031, "scale": [ 0.938326, 0.938326, 0.938326], "translation": [ 0.375512, 0.000000, -0.000000] }, { "keytime": 4707.665527, "scale": [ 0.957208, 0.957208, 0.957208], "translation": [ 0.375512, 0.000000, -0.000000] }, { "keytime": 4740.999023, "scale": [ 0.972020, 0.972020, 0.972020], "translation": [ 0.375512, 0.000000, -0.000000] }, { "keytime": 4774.332520, "scale": [ 0.984040, 0.984039, 0.984040], "translation": [ 0.375512, 0.000000, -0.000000] }, { "keytime": 4807.666016, "scale": [ 0.992496, 0.992495, 0.992495], "translation": [ 0.375512, 0.000000, -0.000000] }, { "keytime": 4832.000000, "scale": [ 0.997250, 0.997250, 0.997250], "translation": [ 0.375512, 0.000000, -0.000000] } ] }, { "boneId": "Bone_006", "keyframes": [ { "keytime": 41.000000, "scale": [ 0.600000, 0.600000, 0.600000], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 74.333328, "scale": [ 0.599915, 0.599914, 0.599914], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 107.666664, "scale": [ 0.599702, 0.599702, 0.599702], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 141.000000, "scale": [ 0.599349, 0.599349, 0.599349], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 174.333328, "scale": [ 0.598876, 0.598876, 0.598876], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 207.666656, "scale": [ 0.598272, 0.598272, 0.598272], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 240.999985, "scale": [ 0.597497, 0.597497, 0.597497], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 274.333313, "scale": [ 0.596564, 0.596564, 0.596564], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 307.666656, "scale": [ 0.595526, 0.595525, 0.595525], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 341.000000, "scale": [ 0.594318, 0.594318, 0.594318], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 374.333344, "scale": [ 0.593014, 0.593014, 0.593014], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 407.666687, "scale": [ 0.591536, 0.591536, 0.591536], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 441.000031, "scale": [ 0.589879, 0.589879, 0.589878], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 474.333374, "scale": [ 0.588137, 0.588137, 0.588137], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 507.666718, "scale": [ 0.586266, 0.586266, 0.586266], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 541.000061, "scale": [ 0.584200, 0.584200, 0.584200], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 574.333374, "scale": [ 0.582021, 0.582021, 0.582021], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 607.666687, "scale": [ 0.579714, 0.579714, 0.579714], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 641.000000, "scale": [ 0.577204, 0.577204, 0.577204], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 674.333313, "scale": [ 0.574638, 0.574638, 0.574638], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 707.666626, "scale": [ 0.571943, 0.571943, 0.571943], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 740.999939, "scale": [ 0.569082, 0.569082, 0.569082], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 774.333252, "scale": [ 0.566006, 0.566006, 0.566006], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 807.666565, "scale": [ 0.562895, 0.562895, 0.562895], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 840.999878, "scale": [ 0.559662, 0.559662, 0.559662], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 874.333191, "scale": [ 0.556201, 0.556201, 0.556201], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 907.666504, "scale": [ 0.552683, 0.552683, 0.552683], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 940.999817, "scale": [ 0.548993, 0.548993, 0.548993], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 974.333130, "scale": [ 0.545126, 0.545126, 0.545126], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 1007.666443, "scale": [ 0.541302, 0.541302, 0.541302], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 1040.999756, "scale": [ 0.537248, 0.537248, 0.537248], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 1074.333130, "scale": [ 0.533071, 0.533071, 0.533071], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 1107.666504, "scale": [ 0.528808, 0.528808, 0.528808], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 1140.999878, "scale": [ 0.524470, 0.524469, 0.524469], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 1174.333252, "scale": [ 0.519936, 0.519935, 0.519935], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 1207.666626, "scale": [ 0.515332, 0.515332, 0.515332], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 1241.000000, "scale": [ 0.510589, 0.510589, 0.510589], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 1274.333374, "scale": [ 0.505803, 0.505803, 0.505803], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 1307.666748, "scale": [ 0.500955, 0.500955, 0.500955], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 1341.000122, "scale": [ 0.495905, 0.495905, 0.495905], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 1407.666870, "scale": [ 0.485769, 0.485769, 0.485769], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 1441.000244, "scale": [ 0.480401, 0.480401, 0.480401], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 1474.333618, "scale": [ 0.475140, 0.475139, 0.475139], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 1507.666992, "scale": [ 0.469840, 0.469839, 0.469839], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 1541.000366, "scale": [ 0.464248, 0.464248, 0.464248], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 1574.333740, "scale": [ 0.458821, 0.458821, 0.458821], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 1607.667114, "scale": [ 0.453275, 0.453275, 0.453275], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 1641.000488, "scale": [ 0.447517, 0.447516, 0.447516], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 1707.667236, "scale": [ 0.436339, 0.436339, 0.436339], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 1741.000610, "scale": [ 0.430424, 0.430424, 0.430424], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 1807.667358, "scale": [ 0.418936, 0.418936, 0.418936], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 1841.000732, "scale": [ 0.413018, 0.413018, 0.413018], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 1907.667480, "scale": [ 0.401530, 0.401530, 0.401530], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 1941.000854, "scale": [ 0.395612, 0.395612, 0.395612], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 2007.667603, "scale": [ 0.384124, 0.384124, 0.384124], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 2041.000977, "scale": [ 0.378206, 0.378206, 0.378206], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 2074.334473, "scale": [ 0.372462, 0.372462, 0.372462], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 2107.667725, "scale": [ 0.366815, 0.366815, 0.366815], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 2141.000977, "scale": [ 0.361032, 0.361032, 0.361032], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 2207.667480, "scale": [ 0.349805, 0.349805, 0.349805], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 2241.000732, "scale": [ 0.344022, 0.344022, 0.344022], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 2274.333984, "scale": [ 0.338578, 0.338578, 0.338578], "translation": [ 0.373480, 0.000000, -0.000001] }, { "keytime": 2307.667236, "scale": [ 0.333191, 0.333191, 0.333191], "translation": [ 0.373480, 0.000000, -0.000001] }, { "keytime": 2341.000488, "scale": [ 0.327641, 0.327641, 0.327641], "translation": [ 0.373480, 0.000000, -0.000001] }, { "keytime": 2374.333740, "scale": [ 0.322254, 0.322254, 0.322254], "translation": [ 0.373480, 0.000000, -0.000001] }, { "keytime": 2407.666992, "scale": [ 0.317084, 0.317084, 0.317084], "translation": [ 0.373480, 0.000000, -0.000001] }, { "keytime": 2441.000244, "scale": [ 0.311759, 0.311759, 0.311759], "translation": [ 0.373480, 0.000000, -0.000001] }, { "keytime": 2474.333496, "scale": [ 0.306693, 0.306693, 0.306693], "translation": [ 0.373480, 0.000000, -0.000001] }, { "keytime": 2507.666748, "scale": [ 0.301733, 0.301732, 0.301732], "translation": [ 0.373480, 0.000000, -0.000001] }, { "keytime": 2541.000000, "scale": [ 0.296621, 0.296621, 0.296621], "translation": [ 0.373480, 0.000000, -0.000001] }, { "keytime": 2607.666504, "scale": [ 0.287164, 0.287164, 0.287164], "translation": [ 0.373480, 0.000000, -0.000001] }, { "keytime": 2674.333008, "scale": [ 0.277948, 0.277948, 0.277948], "translation": [ 0.373480, 0.000000, -0.000001] }, { "keytime": 2707.666260, "scale": [ 0.273475, 0.273475, 0.273475], "translation": [ 0.373480, 0.000000, -0.000001] }, { "keytime": 2740.999512, "scale": [ 0.269271, 0.269271, 0.269271], "translation": [ 0.373480, 0.000000, -0.000001] }, { "keytime": 2774.332764, "scale": [ 0.264945, 0.264945, 0.264945], "translation": [ 0.373480, 0.000000, -0.000001] }, { "keytime": 2807.666016, "scale": [ 0.260889, 0.260889, 0.260889], "translation": [ 0.373480, 0.000000, -0.000001] }, { "keytime": 2840.999268, "scale": [ 0.256983, 0.256983, 0.256983], "translation": [ 0.373480, 0.000000, -0.000001] }, { "keytime": 2874.332520, "scale": [ 0.252959, 0.252959, 0.252959], "translation": [ 0.373480, 0.000000, -0.000001] }, { "keytime": 2907.665771, "scale": [ 0.249358, 0.249358, 0.249358], "translation": [ 0.373480, 0.000000, -0.000001] }, { "keytime": 2940.999023, "scale": [ 0.245760, 0.245760, 0.245760], "translation": [ 0.373480, 0.000000, -0.000001] }, { "keytime": 2974.332275, "scale": [ 0.242171, 0.242171, 0.242171], "translation": [ 0.373480, 0.000000, -0.000001] }, { "keytime": 3007.665527, "scale": [ 0.238849, 0.238849, 0.238849], "translation": [ 0.373480, 0.000000, -0.000001] }, { "keytime": 3040.998779, "scale": [ 0.235653, 0.235652, 0.235652], "translation": [ 0.373480, 0.000000, -0.000001] }, { "keytime": 3074.332031, "scale": [ 0.232524, 0.232524, 0.232524], "translation": [ 0.373480, 0.000000, -0.000001] }, { "keytime": 3107.665283, "scale": [ 0.229616, 0.229616, 0.229616], "translation": [ 0.373480, 0.000000, -0.000001] }, { "keytime": 3140.998535, "scale": [ 0.226832, 0.226832, 0.226832], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 3174.331787, "scale": [ 0.224097, 0.224097, 0.224097], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 3207.665039, "scale": [ 0.221573, 0.221572, 0.221572], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 3240.998291, "scale": [ 0.219217, 0.219217, 0.219217], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 3274.331543, "scale": [ 0.216923, 0.216923, 0.216923], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 3307.664795, "scale": [ 0.214828, 0.214828, 0.214828], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 3340.998047, "scale": [ 0.212862, 0.212862, 0.212862], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 3374.331299, "scale": [ 0.210976, 0.210976, 0.210976], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 3407.664551, "scale": [ 0.209319, 0.209319, 0.209319], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 3440.997803, "scale": [ 0.207792, 0.207791, 0.207791], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 3474.331055, "scale": [ 0.206354, 0.206354, 0.206354], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 3507.664307, "scale": [ 0.205090, 0.205090, 0.205090], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 3540.997559, "scale": [ 0.203962, 0.203962, 0.203962], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 3574.330811, "scale": [ 0.202974, 0.202974, 0.202974], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 3607.664062, "scale": [ 0.202149, 0.202149, 0.202149], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 3640.997314, "scale": [ 0.201454, 0.201453, 0.201453], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 3674.330566, "scale": [ 0.200873, 0.200873, 0.200873], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 3707.663818, "scale": [ 0.200442, 0.200442, 0.200442], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 3740.997070, "scale": [ 0.200181, 0.200181, 0.200181], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 3774.330322, "scale": [ 0.200044, 0.200044, 0.200044], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 3807.663574, "scale": [ 0.201000, 0.201000, 0.201000], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 3840.996826, "scale": [ 0.203989, 0.203989, 0.203989], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 3874.330078, "scale": [ 0.210407, 0.210407, 0.210407], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 3907.663330, "scale": [ 0.220796, 0.220796, 0.220796], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 3940.996582, "scale": [ 0.234274, 0.234274, 0.234274], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 3974.329834, "scale": [ 0.251378, 0.251378, 0.251378], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 4007.663086, "scale": [ 0.271048, 0.271048, 0.271048], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 4040.996338, "scale": [ 0.293779, 0.293779, 0.293779], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 4074.329590, "scale": [ 0.320976, 0.320976, 0.320976], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 4107.663086, "scale": [ 0.350049, 0.350049, 0.350049], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 4140.996094, "scale": [ 0.381502, 0.381502, 0.381502], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 4174.329590, "scale": [ 0.416213, 0.416213, 0.416213], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 4207.663086, "scale": [ 0.451899, 0.451899, 0.451899], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 4240.996582, "scale": [ 0.489589, 0.489588, 0.489588], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 4274.330078, "scale": [ 0.529515, 0.529515, 0.529515], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 4307.663574, "scale": [ 0.569001, 0.569001, 0.569001], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 4340.997070, "scale": [ 0.608857, 0.608857, 0.608857], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 4374.330566, "scale": [ 0.649921, 0.649921, 0.649921], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 4407.664062, "scale": [ 0.689066, 0.689066, 0.689066], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 4440.997559, "scale": [ 0.727181, 0.727181, 0.727181], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 4474.331055, "scale": [ 0.765043, 0.765043, 0.765043], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 4507.664551, "scale": [ 0.800123, 0.800122, 0.800122], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 4540.998047, "scale": [ 0.833199, 0.833199, 0.833198], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 4574.331543, "scale": [ 0.864188, 0.864187, 0.864187], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 4607.665039, "scale": [ 0.891609, 0.891609, 0.891609], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 4640.998535, "scale": [ 0.916324, 0.916324, 0.916324], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 4674.332031, "scale": [ 0.938778, 0.938777, 0.938777], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 4707.665527, "scale": [ 0.957521, 0.957520, 0.957520], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 4740.999023, "scale": [ 0.972225, 0.972224, 0.972224], "translation": [ 0.373480, -0.000000, -0.000000] }, { "keytime": 4774.332520, "scale": [ 0.984157, 0.984156, 0.984156], "translation": [ 0.373480, -0.000000, -0.000000] }, { "keytime": 4807.666016, "scale": [ 0.992551, 0.992550, 0.992550], "translation": [ 0.373480, -0.000000, -0.000000] }, { "keytime": 4832.000000, "scale": [ 0.997270, 0.997270, 0.997270], "translation": [ 0.373480, -0.000000, -0.000000] } ] }, { "boneId": "Bone_012", "keyframes": [ { "keytime": 41.000000, "scale": [ 1.000000, 1.000000, 1.000000], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 74.333328, "scale": [ 0.999539, 0.999539, 0.999539], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 107.666664, "scale": [ 0.998395, 0.998396, 0.998395], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 141.000000, "scale": [ 0.996495, 0.996495, 0.996495], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 174.333328, "scale": [ 0.993947, 0.993948, 0.993947], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 207.666656, "scale": [ 0.990690, 0.990690, 0.990690], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 240.999985, "scale": [ 0.986509, 0.986510, 0.986510], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 274.333313, "scale": [ 0.981478, 0.981478, 0.981478], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 307.666656, "scale": [ 0.975880, 0.975880, 0.975880], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 341.000000, "scale": [ 0.969374, 0.969375, 0.969375], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 374.333344, "scale": [ 0.962352, 0.962352, 0.962352], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 407.666687, "scale": [ 0.954404, 0.954404, 0.954404], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 441.000031, "scale": [ 0.945505, 0.945505, 0.945505], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 474.333374, "scale": [ 0.936170, 0.936170, 0.936170], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 507.666718, "scale": [ 0.926164, 0.926164, 0.926164], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 541.000061, "scale": [ 0.915142, 0.915142, 0.915142], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 574.333374, "scale": [ 0.903561, 0.903561, 0.903561], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 607.666687, "scale": [ 0.891344, 0.891344, 0.891344], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 641.000000, "scale": [ 0.878101, 0.878101, 0.878101], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 674.333313, "scale": [ 0.864624, 0.864624, 0.864624], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 707.666626, "scale": [ 0.850533, 0.850533, 0.850533], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 740.999939, "scale": [ 0.835682, 0.835682, 0.835682], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 774.333252, "scale": [ 0.819810, 0.819810, 0.819810], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 807.666565, "scale": [ 0.803862, 0.803862, 0.803862], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 840.999878, "scale": [ 0.787408, 0.787408, 0.787408], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 874.333191, "scale": [ 0.769929, 0.769929, 0.769929], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 907.666504, "scale": [ 0.752363, 0.752363, 0.752363], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 940.999817, "scale": [ 0.734387, 0.734387, 0.734387], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 974.333130, "scale": [ 0.715462, 0.715462, 0.715462], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 1007.666443, "scale": [ 0.696731, 0.696731, 0.696731], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 1040.999756, "scale": [ 0.677662, 0.677662, 0.677662], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 1074.333130, "scale": [ 0.657637, 0.657637, 0.657637], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 1107.666504, "scale": [ 0.637958, 0.637958, 0.637958], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 1140.999878, "scale": [ 0.618080, 0.618080, 0.618080], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 1174.333252, "scale": [ 0.597406, 0.597406, 0.597406], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 1207.666626, "scale": [ 0.577149, 0.577149, 0.577149], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 1241.000000, "scale": [ 0.556279, 0.556279, 0.556279], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 1307.666748, "scale": [ 0.515766, 0.515766, 0.515766], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 1341.000122, "scale": [ 0.494896, 0.494896, 0.494896], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 1374.333496, "scale": [ 0.474639, 0.474639, 0.474639], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 1407.666870, "scale": [ 0.454629, 0.454629, 0.454629], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 1441.000244, "scale": [ 0.434202, 0.434202, 0.434202], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 1474.333618, "scale": [ 0.414596, 0.414596, 0.414596], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 1507.666992, "scale": [ 0.395236, 0.395236, 0.395236], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 1541.000366, "scale": [ 0.375589, 0.375589, 0.375589], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 1574.333740, "scale": [ 0.356961, 0.356961, 0.356961], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 1607.667114, "scale": [ 0.338702, 0.338702, 0.338702], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 1641.000488, "scale": [ 0.320305, 0.320305, 0.320305], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 1674.333862, "scale": [ 0.302880, 0.302880, 0.302880], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 1707.667236, "scale": [ 0.285916, 0.285915, 0.285916], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 1741.000610, "scale": [ 0.269100, 0.269100, 0.269100], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 1774.333984, "scale": [ 0.253315, 0.253315, 0.253315], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 1807.667358, "scale": [ 0.238066, 0.238066, 0.238066], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 1841.000732, "scale": [ 0.222944, 0.222944, 0.222944], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 1874.334106, "scale": [ 0.208853, 0.208853, 0.208853], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 1907.667480, "scale": [ 0.195564, 0.195564, 0.195564], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 1941.000854, "scale": [ 0.182516, 0.182516, 0.182516], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 1974.334229, "scale": [ 0.170499, 0.170499, 0.170499], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 2007.667603, "scale": [ 0.159123, 0.159123, 0.159123], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 2041.000977, "scale": [ 0.148102, 0.148102, 0.148102], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 2074.334473, "scale": [ 0.138304, 0.138304, 0.138304], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 2107.667725, "scale": [ 0.129182, 0.129182, 0.129182], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 2141.000977, "scale": [ 0.120498, 0.120498, 0.120498], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 2174.334229, "scale": [ 0.112767, 0.112767, 0.112767], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 2207.667480, "scale": [ 0.105744, 0.105744, 0.105744], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 2241.000732, "scale": [ 0.099457, 0.099457, 0.099457], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 2274.333984, "scale": [ 0.094078, 0.094078, 0.094078], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 2307.667236, "scale": [ 0.089393, 0.089393, 0.089393], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 2341.000488, "scale": [ 0.085304, 0.085304, 0.085304], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 2374.333740, "scale": [ 0.082046, 0.082046, 0.082046], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 2407.666992, "scale": [ 0.079717, 0.079717, 0.079717], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 2441.000244, "scale": [ 0.078033, 0.078033, 0.078033], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 2474.333496, "scale": [ 0.077104, 0.077104, 0.077104], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 2507.666748, "scale": [ 0.076865, 0.076865, 0.076865], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 2541.000000, "scale": [ 0.077374, 0.077374, 0.077374], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 2574.333252, "scale": [ 0.078861, 0.078861, 0.078861], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 2607.666504, "scale": [ 0.081084, 0.081084, 0.081084], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 2640.999756, "scale": [ 0.084048, 0.084048, 0.084048], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 2674.333008, "scale": [ 0.087890, 0.087890, 0.087890], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 2707.666260, "scale": [ 0.092391, 0.092391, 0.092391], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 2740.999512, "scale": [ 0.097881, 0.097881, 0.097881], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 2774.332764, "scale": [ 0.104313, 0.104313, 0.104313], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 2807.666016, "scale": [ 0.111319, 0.111319, 0.111319], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 2840.999268, "scale": [ 0.119065, 0.119065, 0.119065], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 2874.332520, "scale": [ 0.127846, 0.127846, 0.127846], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 2907.665771, "scale": [ 0.137347, 0.137347, 0.137347], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 2940.999023, "scale": [ 0.147567, 0.147567, 0.147567], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 2974.332275, "scale": [ 0.158846, 0.158845, 0.158845], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 3007.665527, "scale": [ 0.170508, 0.170508, 0.170508], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 3040.998779, "scale": [ 0.182889, 0.182889, 0.182889], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 3074.332031, "scale": [ 0.196558, 0.196558, 0.196558], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 3107.665283, "scale": [ 0.210503, 0.210503, 0.210503], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 3140.998535, "scale": [ 0.225084, 0.225084, 0.225084], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 3174.331787, "scale": [ 0.240762, 0.240762, 0.240762], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 3207.665039, "scale": [ 0.256600, 0.256600, 0.256600], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 3240.998291, "scale": [ 0.273190, 0.273190, 0.273190], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 3274.331543, "scale": [ 0.290838, 0.290838, 0.290838], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 3307.664795, "scale": [ 0.308490, 0.308490, 0.308490], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 3340.998047, "scale": [ 0.326622, 0.326622, 0.326622], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 3374.331299, "scale": [ 0.345794, 0.345794, 0.345794], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 3407.664551, "scale": [ 0.364948, 0.364948, 0.364948], "translation": [ 0.619659, 0.000000, 0.000000] }, { "keytime": 3440.997803, "scale": [ 0.384462, 0.384462, 0.384462], "translation": [ 0.619659, 0.000000, 0.000000] }, { "keytime": 3474.331055, "scale": [ 0.404912, 0.404912, 0.404912], "translation": [ 0.619659, 0.000000, 0.000000] }, { "keytime": 3507.664307, "scale": [ 0.425058, 0.425058, 0.425058], "translation": [ 0.619659, 0.000000, 0.000000] }, { "keytime": 3540.997559, "scale": [ 0.445471, 0.445471, 0.445471], "translation": [ 0.619659, 0.000000, 0.000000] }, { "keytime": 3574.330811, "scale": [ 0.466776, 0.466776, 0.466776], "translation": [ 0.619659, 0.000000, 0.000000] }, { "keytime": 3607.664062, "scale": [ 0.487665, 0.487665, 0.487665], "translation": [ 0.619659, 0.000000, 0.000000] }, { "keytime": 3640.997314, "scale": [ 0.508627, 0.508627, 0.508627], "translation": [ 0.619659, 0.000000, 0.000000] }, { "keytime": 3674.330566, "scale": [ 0.530224, 0.530223, 0.530224], "translation": [ 0.619659, 0.000000, 0.000000] }, { "keytime": 3740.997070, "scale": [ 0.572147, 0.572147, 0.572147], "translation": [ 0.619659, 0.000000, 0.000000] }, { "keytime": 3774.330322, "scale": [ 0.593744, 0.593744, 0.593744], "translation": [ 0.619659, 0.000000, 0.000000] }, { "keytime": 3807.663574, "scale": [ 0.614572, 0.614572, 0.614572], "translation": [ 0.619659, 0.000000, 0.000000] }, { "keytime": 3840.996826, "scale": [ 0.635197, 0.635197, 0.635197], "translation": [ 0.619659, 0.000000, 0.000000] }, { "keytime": 3874.330078, "scale": [ 0.656229, 0.656229, 0.656229], "translation": [ 0.619659, 0.000000, 0.000000] }, { "keytime": 3907.663330, "scale": [ 0.676298, 0.676298, 0.676298], "translation": [ 0.619659, 0.000000, 0.000000] }, { "keytime": 3940.996582, "scale": [ 0.696059, 0.696059, 0.696059], "translation": [ 0.619659, 0.000000, 0.000000] }, { "keytime": 3974.329834, "scale": [ 0.716060, 0.716061, 0.716061], "translation": [ 0.619659, 0.000000, 0.000000] }, { "keytime": 4007.663086, "scale": [ 0.735092, 0.735092, 0.735092], "translation": [ 0.619659, 0.000000, 0.000000] }, { "keytime": 4040.996338, "scale": [ 0.753700, 0.753700, 0.753701], "translation": [ 0.619659, 0.000000, 0.000000] }, { "keytime": 4074.329590, "scale": [ 0.772260, 0.772260, 0.772260], "translation": [ 0.619660, 0.000000, 0.000000] }, { "keytime": 4107.663086, "scale": [ 0.789763, 0.789763, 0.789763], "translation": [ 0.619660, 0.000000, 0.000000] }, { "keytime": 4140.996094, "scale": [ 0.806747, 0.806747, 0.806747], "translation": [ 0.619660, 0.000000, 0.000000] }, { "keytime": 4174.329590, "scale": [ 0.823670, 0.823670, 0.823670], "translation": [ 0.619660, 0.000000, 0.000000] }, { "keytime": 4207.663086, "scale": [ 0.839508, 0.839508, 0.839508], "translation": [ 0.619660, 0.000000, 0.000000] }, { "keytime": 4240.996582, "scale": [ 0.854551, 0.854551, 0.854551], "translation": [ 0.619660, 0.000000, 0.000000] }, { "keytime": 4274.330078, "scale": [ 0.869398, 0.869398, 0.869398], "translation": [ 0.619660, 0.000000, 0.000000] }, { "keytime": 4307.663574, "scale": [ 0.883147, 0.883147, 0.883147], "translation": [ 0.619660, 0.000000, 0.000000] }, { "keytime": 4340.997070, "scale": [ 0.896238, 0.896238, 0.896238], "translation": [ 0.619660, 0.000000, 0.000000] }, { "keytime": 4374.330566, "scale": [ 0.908994, 0.908994, 0.908995], "translation": [ 0.619660, 0.000000, 0.000000] }, { "keytime": 4407.664062, "scale": [ 0.920448, 0.920448, 0.920448], "translation": [ 0.619660, 0.000000, 0.000000] }, { "keytime": 4440.997559, "scale": [ 0.931196, 0.931196, 0.931196], "translation": [ 0.619660, 0.000000, 0.000000] }, { "keytime": 4474.331055, "scale": [ 0.941517, 0.941517, 0.941517], "translation": [ 0.619660, 0.000000, 0.000000] }, { "keytime": 4507.664551, "scale": [ 0.950799, 0.950799, 0.950799], "translation": [ 0.619660, 0.000000, 0.000000] }, { "keytime": 4540.998047, "scale": [ 0.959321, 0.959321, 0.959321], "translation": [ 0.619660, 0.000000, 0.000000] }, { "keytime": 4574.331543, "scale": [ 0.967103, 0.967104, 0.967103], "translation": [ 0.619660, 0.000000, 0.000000] }, { "keytime": 4607.665039, "scale": [ 0.973887, 0.973887, 0.973887], "translation": [ 0.619660, 0.000000, 0.000000] }, { "keytime": 4640.998535, "scale": [ 0.979927, 0.979927, 0.979927], "translation": [ 0.619660, 0.000000, 0.000000] }, { "keytime": 4674.332031, "scale": [ 0.985360, 0.985360, 0.985360], "translation": [ 0.619660, 0.000000, 0.000000] }, { "keytime": 4707.665527, "scale": [ 0.989860, 0.989861, 0.989861], "translation": [ 0.619660, 0.000000, 0.000000] }, { "keytime": 4740.999023, "scale": [ 0.993373, 0.993373, 0.993373], "translation": [ 0.619660, 0.000000, 0.000000] }, { "keytime": 4774.332520, "scale": [ 0.996219, 0.996219, 0.996219], "translation": [ 0.619660, 0.000000, 0.000000] }, { "keytime": 4807.666016, "scale": [ 0.998220, 0.998221, 0.998221], "translation": [ 0.619660, 0.000000, 0.000000] }, { "keytime": 4832.000000, "scale": [ 0.999347, 0.999347, 0.999347], "translation": [ 0.619660, 0.000000, 0.000000] } ] }, { "boneId": "Bone_005", "keyframes": [ { "keytime": 41.000000, "scale": [ 0.560000, 0.560000, 0.560000], "translation": [ 0.490018, 0.000000, -0.000002] }, { "keytime": 74.333328, "scale": [ 0.559887, 0.559887, 0.559887], "translation": [ 0.490018, 0.000000, -0.000002] }, { "keytime": 107.666664, "scale": [ 0.559605, 0.559605, 0.559605], "translation": [ 0.490018, 0.000000, -0.000002] }, { "keytime": 141.000000, "scale": [ 0.559137, 0.559138, 0.559138], "translation": [ 0.490018, 0.000000, -0.000002] }, { "keytime": 174.333328, "scale": [ 0.558511, 0.558511, 0.558511], "translation": [ 0.490018, 0.000000, -0.000002] }, { "keytime": 207.666656, "scale": [ 0.557710, 0.557710, 0.557710], "translation": [ 0.490018, 0.000000, -0.000002] }, { "keytime": 240.999985, "scale": [ 0.556682, 0.556682, 0.556682], "translation": [ 0.490018, 0.000000, -0.000002] }, { "keytime": 274.333313, "scale": [ 0.555445, 0.555445, 0.555445], "translation": [ 0.490018, 0.000000, -0.000001] }, { "keytime": 307.666656, "scale": [ 0.554069, 0.554069, 0.554068], "translation": [ 0.490018, 0.000000, -0.000001] }, { "keytime": 341.000000, "scale": [ 0.552468, 0.552468, 0.552468], "translation": [ 0.490018, 0.000000, -0.000001] }, { "keytime": 374.333344, "scale": [ 0.550739, 0.550739, 0.550739], "translation": [ 0.490018, 0.000000, -0.000001] }, { "keytime": 407.666687, "scale": [ 0.548781, 0.548781, 0.548781], "translation": [ 0.490018, 0.000000, -0.000001] }, { "keytime": 441.000031, "scale": [ 0.546585, 0.546585, 0.546585], "translation": [ 0.490018, 0.000000, -0.000001] }, { "keytime": 474.333374, "scale": [ 0.544279, 0.544279, 0.544279], "translation": [ 0.490018, 0.000000, -0.000001] }, { "keytime": 507.666718, "scale": [ 0.541803, 0.541803, 0.541803], "translation": [ 0.490018, 0.000000, -0.000001] }, { "keytime": 541.000061, "scale": [ 0.539070, 0.539070, 0.539070], "translation": [ 0.490018, 0.000000, -0.000001] }, { "keytime": 574.333374, "scale": [ 0.536191, 0.536191, 0.536191], "translation": [ 0.490018, 0.000000, -0.000001] }, { "keytime": 607.666687, "scale": [ 0.533145, 0.533145, 0.533145], "translation": [ 0.490018, 0.000000, -0.000001] }, { "keytime": 641.000000, "scale": [ 0.529834, 0.529834, 0.529834], "translation": [ 0.490018, 0.000000, -0.000001] }, { "keytime": 674.333313, "scale": [ 0.526454, 0.526454, 0.526454], "translation": [ 0.490018, 0.000000, -0.000001] }, { "keytime": 707.666626, "scale": [ 0.522908, 0.522908, 0.522908], "translation": [ 0.490018, 0.000000, -0.000001] }, { "keytime": 740.999939, "scale": [ 0.519150, 0.519150, 0.519150], "translation": [ 0.490018, 0.000000, -0.000001] }, { "keytime": 774.333252, "scale": [ 0.515116, 0.515116, 0.515116], "translation": [ 0.490018, 0.000000, -0.000001] }, { "keytime": 807.666565, "scale": [ 0.511042, 0.511042, 0.511042], "translation": [ 0.490018, 0.000000, -0.000001] }, { "keytime": 840.999878, "scale": [ 0.506817, 0.506817, 0.506817], "translation": [ 0.490018, 0.000000, -0.000001] }, { "keytime": 874.333191, "scale": [ 0.502303, 0.502303, 0.502303], "translation": [ 0.490018, 0.000000, -0.000001] }, { "keytime": 907.666504, "scale": [ 0.497728, 0.497728, 0.497728], "translation": [ 0.490018, 0.000000, -0.000001] }, { "keytime": 940.999817, "scale": [ 0.493014, 0.493014, 0.493014], "translation": [ 0.490018, 0.000000, -0.000001] }, { "keytime": 974.333130, "scale": [ 0.488014, 0.488014, 0.488014], "translation": [ 0.490018, 0.000000, -0.000001] }, { "keytime": 1007.666443, "scale": [ 0.483025, 0.483025, 0.483025], "translation": [ 0.490018, 0.000000, -0.000001] }, { "keytime": 1040.999756, "scale": [ 0.477904, 0.477904, 0.477904], "translation": [ 0.490018, 0.000000, -0.000001] }, { "keytime": 1074.333130, "scale": [ 0.472461, 0.472461, 0.472461], "translation": [ 0.490018, 0.000000, -0.000001] }, { "keytime": 1107.666504, "scale": [ 0.467003, 0.467003, 0.467003], "translation": [ 0.490018, 0.000000, -0.000001] }, { "keytime": 1140.999878, "scale": [ 0.461484, 0.461484, 0.461484], "translation": [ 0.490018, 0.000000, -0.000001] }, { "keytime": 1174.333252, "scale": [ 0.455732, 0.455732, 0.455732], "translation": [ 0.490018, 0.000000, -0.000001] }, { "keytime": 1207.666626, "scale": [ 0.449939, 0.449939, 0.449939], "translation": [ 0.490018, 0.000000, -0.000001] }, { "keytime": 1241.000000, "scale": [ 0.443970, 0.443970, 0.443970], "translation": [ 0.490018, 0.000000, -0.000001] }, { "keytime": 1274.333374, "scale": [ 0.438004, 0.438004, 0.438004], "translation": [ 0.490018, 0.000000, -0.000001] }, { "keytime": 1307.666748, "scale": [ 0.431979, 0.431979, 0.431980], "translation": [ 0.490018, 0.000000, -0.000001] }, { "keytime": 1341.000122, "scale": [ 0.425717, 0.425717, 0.425717], "translation": [ 0.490018, 0.000000, -0.000001] }, { "keytime": 1407.666870, "scale": [ 0.413227, 0.413227, 0.413227], "translation": [ 0.490019, 0.000000, -0.000001] }, { "keytime": 1441.000244, "scale": [ 0.406793, 0.406793, 0.406793], "translation": [ 0.490019, 0.000000, -0.000001] }, { "keytime": 1474.333618, "scale": [ 0.400458, 0.400458, 0.400458], "translation": [ 0.490019, 0.000000, -0.000001] }, { "keytime": 1507.666992, "scale": [ 0.394031, 0.394031, 0.394031], "translation": [ 0.490019, 0.000000, -0.000001] }, { "keytime": 1541.000366, "scale": [ 0.387409, 0.387409, 0.387409], "translation": [ 0.490019, 0.000000, -0.000001] }, { "keytime": 1607.667114, "scale": [ 0.374555, 0.374555, 0.374555], "translation": [ 0.490019, 0.000000, -0.000001] }, { "keytime": 1641.000488, "scale": [ 0.367934, 0.367934, 0.367934], "translation": [ 0.490019, 0.000000, -0.000001] }, { "keytime": 1707.667236, "scale": [ 0.355080, 0.355080, 0.355080], "translation": [ 0.490019, 0.000000, -0.000001] }, { "keytime": 1741.000610, "scale": [ 0.348549, 0.348549, 0.348549], "translation": [ 0.490019, 0.000000, -0.000001] }, { "keytime": 1807.667358, "scale": [ 0.335876, 0.335876, 0.335876], "translation": [ 0.490019, 0.000000, -0.000001] }, { "keytime": 1841.000732, "scale": [ 0.329348, 0.329348, 0.329348], "translation": [ 0.490019, 0.000000, -0.000001] }, { "keytime": 1874.334106, "scale": [ 0.323011, 0.323011, 0.323011], "translation": [ 0.490019, 0.000000, -0.000001] }, { "keytime": 1907.667480, "scale": [ 0.316886, 0.316886, 0.316886], "translation": [ 0.490019, 0.000000, -0.000001] }, { "keytime": 1941.000854, "scale": [ 0.310577, 0.310577, 0.310577], "translation": [ 0.490019, 0.000000, -0.000001] }, { "keytime": 1974.334229, "scale": [ 0.304557, 0.304557, 0.304557], "translation": [ 0.490019, 0.000000, -0.000001] }, { "keytime": 2007.667603, "scale": [ 0.298643, 0.298643, 0.298643], "translation": [ 0.490019, 0.000000, -0.000001] }, { "keytime": 2041.000977, "scale": [ 0.292549, 0.292549, 0.292549], "translation": [ 0.490019, 0.000000, -0.000001] }, { "keytime": 2107.667725, "scale": [ 0.281227, 0.281227, 0.281227], "translation": [ 0.490019, 0.000000, -0.000001] }, { "keytime": 2141.000977, "scale": [ 0.275544, 0.275544, 0.275544], "translation": [ 0.490019, 0.000000, -0.000001] }, { "keytime": 2207.667480, "scale": [ 0.264811, 0.264811, 0.264811], "translation": [ 0.490019, 0.000000, -0.000001] }, { "keytime": 2241.000732, "scale": [ 0.259529, 0.259529, 0.259529], "translation": [ 0.490019, 0.000000, -0.000001] }, { "keytime": 2274.333984, "scale": [ 0.254538, 0.254538, 0.254538], "translation": [ 0.490019, 0.000000, -0.000001] }, { "keytime": 2307.667236, "scale": [ 0.249678, 0.249678, 0.249678], "translation": [ 0.490019, 0.000000, -0.000001] }, { "keytime": 2341.000488, "scale": [ 0.244816, 0.244816, 0.244816], "translation": [ 0.490019, 0.000000, -0.000000] }, { "keytime": 2374.333740, "scale": [ 0.240239, 0.240239, 0.240239], "translation": [ 0.490019, 0.000000, -0.000000] }, { "keytime": 2407.666992, "scale": [ 0.235855, 0.235855, 0.235855], "translation": [ 0.490019, 0.000000, -0.000000] }, { "keytime": 2441.000244, "scale": [ 0.231494, 0.231494, 0.231494], "translation": [ 0.490019, 0.000000, -0.000000] }, { "keytime": 2474.333496, "scale": [ 0.227416, 0.227416, 0.227416], "translation": [ 0.490019, 0.000000, -0.000000] }, { "keytime": 2507.666748, "scale": [ 0.223491, 0.223491, 0.223491], "translation": [ 0.490019, 0.000000, -0.000000] }, { "keytime": 2541.000000, "scale": [ 0.219615, 0.219615, 0.219615], "translation": [ 0.490019, 0.000000, -0.000000] }, { "keytime": 2574.333252, "scale": [ 0.216069, 0.216069, 0.216069], "translation": [ 0.490019, 0.000000, -0.000000] }, { "keytime": 2607.666504, "scale": [ 0.212684, 0.212684, 0.212684], "translation": [ 0.490019, 0.000000, -0.000000] }, { "keytime": 2640.999756, "scale": [ 0.209463, 0.209463, 0.209463], "translation": [ 0.490019, 0.000000, -0.000000] }, { "keytime": 2674.333008, "scale": [ 0.206319, 0.206319, 0.206319], "translation": [ 0.490019, 0.000000, -0.000000] }, { "keytime": 2707.666260, "scale": [ 0.203439, 0.203439, 0.203439], "translation": [ 0.490019, 0.000000, -0.000000] }, { "keytime": 2740.999512, "scale": [ 0.200783, 0.200783, 0.200783], "translation": [ 0.490019, 0.000000, -0.000000] }, { "keytime": 2774.332764, "scale": [ 0.198222, 0.198222, 0.198222], "translation": [ 0.490019, 0.000000, -0.000000] }, { "keytime": 2807.666016, "scale": [ 0.195910, 0.195910, 0.195910], "translation": [ 0.490019, 0.000000, -0.000000] }, { "keytime": 2840.999268, "scale": [ 0.193770, 0.193770, 0.193770], "translation": [ 0.490019, 0.000000, -0.000000] }, { "keytime": 2874.332520, "scale": [ 0.191749, 0.191749, 0.191749], "translation": [ 0.490019, 0.000000, -0.000000] }, { "keytime": 2907.665771, "scale": [ 0.190018, 0.190018, 0.190018], "translation": [ 0.490019, 0.000000, -0.000000] }, { "keytime": 2940.999023, "scale": [ 0.188458, 0.188458, 0.188458], "translation": [ 0.490019, 0.000000, -0.000000] }, { "keytime": 2974.332275, "scale": [ 0.187031, 0.187031, 0.187031], "translation": [ 0.490019, 0.000000, -0.000000] }, { "keytime": 3007.665527, "scale": [ 0.185821, 0.185821, 0.185821], "translation": [ 0.490019, 0.000000, -0.000000] }, { "keytime": 3040.998779, "scale": [ 0.184789, 0.184789, 0.184789], "translation": [ 0.490019, 0.000000, -0.000000] }, { "keytime": 3074.332031, "scale": [ 0.183956, 0.183956, 0.183956], "translation": [ 0.490019, 0.000000, -0.000000] }, { "keytime": 3107.665283, "scale": [ 0.183325, 0.183325, 0.183325], "translation": [ 0.490019, 0.000000, -0.000000] }, { "keytime": 3140.998535, "scale": [ 0.182863, 0.182863, 0.182863], "translation": [ 0.490019, 0.000000, -0.000000] }, { "keytime": 3174.331787, "scale": [ 0.182567, 0.182567, 0.182567], "translation": [ 0.490019, 0.000000, -0.000000] }, { "keytime": 3207.665039, "scale": [ 0.182453, 0.182453, 0.182453], "translation": [ 0.490019, 0.000000, -0.000000] }, { "keytime": 3240.998291, "scale": [ 0.183322, 0.183322, 0.183322], "translation": [ 0.490019, 0.000000, -0.000000] }, { "keytime": 3274.331543, "scale": [ 0.185576, 0.185576, 0.185576], "translation": [ 0.490019, 0.000000, -0.000000] }, { "keytime": 3307.664795, "scale": [ 0.189132, 0.189132, 0.189132], "translation": [ 0.490019, 0.000000, -0.000000] }, { "keytime": 3340.998047, "scale": [ 0.194021, 0.194021, 0.194021], "translation": [ 0.490020, 0.000000, -0.000000] }, { "keytime": 3374.331299, "scale": [ 0.200512, 0.200512, 0.200512], "translation": [ 0.490020, 0.000000, 0.000000] }, { "keytime": 3407.664551, "scale": [ 0.208609, 0.208609, 0.208609], "translation": [ 0.490020, 0.000000, 0.000000] }, { "keytime": 3440.997803, "scale": [ 0.218037, 0.218037, 0.218037], "translation": [ 0.490020, 0.000000, 0.000000] }, { "keytime": 3474.331055, "scale": [ 0.229141, 0.229141, 0.229141], "translation": [ 0.490020, 0.000000, 0.000000] }, { "keytime": 3507.664307, "scale": [ 0.241255, 0.241255, 0.241255], "translation": [ 0.490020, 0.000000, 0.000000] }, { "keytime": 3540.997559, "scale": [ 0.254714, 0.254714, 0.254714], "translation": [ 0.490020, 0.000000, 0.000000] }, { "keytime": 3574.330811, "scale": [ 0.270290, 0.270290, 0.270290], "translation": [ 0.490020, 0.000000, 0.000000] }, { "keytime": 3607.664062, "scale": [ 0.286673, 0.286673, 0.286673], "translation": [ 0.490020, 0.000000, 0.000000] }, { "keytime": 3640.997314, "scale": [ 0.304235, 0.304235, 0.304235], "translation": [ 0.490020, 0.000000, 0.000000] }, { "keytime": 3674.330566, "scale": [ 0.323541, 0.323541, 0.323541], "translation": [ 0.490020, 0.000000, 0.000000] }, { "keytime": 3707.663818, "scale": [ 0.343411, 0.343411, 0.343411], "translation": [ 0.490020, 0.000000, 0.000000] }, { "keytime": 3740.997070, "scale": [ 0.364626, 0.364626, 0.364626], "translation": [ 0.490020, 0.000000, 0.000000] }, { "keytime": 3774.330322, "scale": [ 0.387444, 0.387445, 0.387445], "translation": [ 0.490020, 0.000000, 0.000000] }, { "keytime": 3807.663574, "scale": [ 0.410471, 0.410471, 0.410471], "translation": [ 0.490020, 0.000000, 0.000000] }, { "keytime": 3840.996826, "scale": [ 0.434278, 0.434278, 0.434278], "translation": [ 0.490020, 0.000000, 0.000000] }, { "keytime": 3874.330078, "scale": [ 0.459566, 0.459566, 0.459566], "translation": [ 0.490020, 0.000000, 0.000000] }, { "keytime": 3907.663330, "scale": [ 0.484881, 0.484881, 0.484880], "translation": [ 0.490020, 0.000000, 0.000000] }, { "keytime": 3940.996582, "scale": [ 0.510635, 0.510635, 0.510635], "translation": [ 0.490020, 0.000000, 0.000000] }, { "keytime": 3974.329834, "scale": [ 0.537536, 0.537536, 0.537536], "translation": [ 0.490020, 0.000000, 0.000000] }, { "keytime": 4007.663086, "scale": [ 0.563901, 0.563901, 0.563901], "translation": [ 0.490020, 0.000000, 0.000000] }, { "keytime": 4040.996338, "scale": [ 0.590422, 0.590422, 0.590422], "translation": [ 0.490020, 0.000000, 0.000000] }, { "keytime": 4074.329590, "scale": [ 0.617746, 0.617746, 0.617746], "translation": [ 0.490020, 0.000000, 0.000000] }, { "keytime": 4107.663086, "scale": [ 0.644118, 0.644118, 0.644118], "translation": [ 0.490020, 0.000000, 0.000000] }, { "keytime": 4140.996094, "scale": [ 0.670246, 0.670246, 0.670246], "translation": [ 0.490020, 0.000000, 0.000000] }, { "keytime": 4174.329590, "scale": [ 0.696804, 0.696804, 0.696804], "translation": [ 0.490020, 0.000000, 0.000000] }, { "keytime": 4207.663086, "scale": [ 0.722126, 0.722126, 0.722126], "translation": [ 0.490020, 0.000000, 0.000000] }, { "keytime": 4240.996582, "scale": [ 0.746686, 0.746686, 0.746686], "translation": [ 0.490020, 0.000000, 0.000000] }, { "keytime": 4274.330078, "scale": [ 0.771265, 0.771265, 0.771265], "translation": [ 0.490020, 0.000000, 0.000000] }, { "keytime": 4307.663574, "scale": [ 0.794325, 0.794325, 0.794325], "translation": [ 0.490020, 0.000000, 0.000000] }, { "keytime": 4340.997070, "scale": [ 0.816538, 0.816538, 0.816538], "translation": [ 0.490020, 0.000000, 0.000000] }, { "keytime": 4374.330566, "scale": [ 0.838425, 0.838425, 0.838425], "translation": [ 0.490020, 0.000000, 0.000001] }, { "keytime": 4407.664062, "scale": [ 0.858309, 0.858309, 0.858309], "translation": [ 0.490020, 0.000000, 0.000001] }, { "keytime": 4440.997559, "scale": [ 0.877101, 0.877101, 0.877101], "translation": [ 0.490020, 0.000000, 0.000001] }, { "keytime": 4474.331055, "scale": [ 0.895269, 0.895269, 0.895269], "translation": [ 0.490020, 0.000000, 0.000001] }, { "keytime": 4507.664551, "scale": [ 0.911702, 0.911702, 0.911702], "translation": [ 0.490020, 0.000000, 0.000001] }, { "keytime": 4540.998047, "scale": [ 0.926869, 0.926869, 0.926869], "translation": [ 0.490020, 0.000000, 0.000001] }, { "keytime": 4574.331543, "scale": [ 0.940789, 0.940789, 0.940789], "translation": [ 0.490020, 0.000000, 0.000001] }, { "keytime": 4607.665039, "scale": [ 0.952955, 0.952955, 0.952955], "translation": [ 0.490020, 0.000000, 0.000001] }, { "keytime": 4640.998535, "scale": [ 0.963813, 0.963813, 0.963813], "translation": [ 0.490020, 0.000000, 0.000001] }, { "keytime": 4674.332031, "scale": [ 0.973597, 0.973597, 0.973597], "translation": [ 0.490020, 0.000000, 0.000001] }, { "keytime": 4707.665527, "scale": [ 0.981712, 0.981712, 0.981712], "translation": [ 0.490020, 0.000000, 0.000001] }, { "keytime": 4740.999023, "scale": [ 0.988049, 0.988049, 0.988049], "translation": [ 0.490020, 0.000000, 0.000001] }, { "keytime": 4774.332520, "scale": [ 0.993184, 0.993184, 0.993184], "translation": [ 0.490020, 0.000000, 0.000001] }, { "keytime": 4807.666016, "scale": [ 0.996794, 0.996794, 0.996794], "translation": [ 0.490020, 0.000000, 0.000001] }, { "keytime": 4832.000000, "scale": [ 0.998824, 0.998824, 0.998824], "translation": [ 0.490020, 0.000000, 0.000001] } ] }, { "boneId": "Bone_004", "keyframes": [ { "keytime": 41.000000, "scale": [ 0.659330, 0.659330, 0.659330], "translation": [ 0.563430, 0.000000, 0.000003] }, { "keytime": 74.333328, "scale": [ 0.659035, 0.659035, 0.659035], "translation": [ 0.563430, 0.000000, 0.000003] }, { "keytime": 107.666664, "scale": [ 0.658303, 0.658303, 0.658303], "translation": [ 0.563430, 0.000000, 0.000003] }, { "keytime": 141.000000, "scale": [ 0.657087, 0.657087, 0.657086], "translation": [ 0.563430, 0.000000, 0.000003] }, { "keytime": 174.333328, "scale": [ 0.655456, 0.655456, 0.655456], "translation": [ 0.563430, 0.000000, 0.000003] }, { "keytime": 207.666656, "scale": [ 0.653371, 0.653371, 0.653371], "translation": [ 0.563430, 0.000000, 0.000003] }, { "keytime": 240.999985, "scale": [ 0.650696, 0.650696, 0.650695], "translation": [ 0.563430, 0.000000, 0.000003] }, { "keytime": 274.333313, "scale": [ 0.647475, 0.647475, 0.647475], "translation": [ 0.563430, 0.000000, 0.000003] }, { "keytime": 307.666656, "scale": [ 0.643892, 0.643892, 0.643892], "translation": [ 0.563430, 0.000000, 0.000003] }, { "keytime": 341.000000, "scale": [ 0.639728, 0.639728, 0.639728], "translation": [ 0.563430, 0.000000, 0.000003] }, { "keytime": 374.333344, "scale": [ 0.635233, 0.635233, 0.635233], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 407.666687, "scale": [ 0.630147, 0.630147, 0.630147], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 441.000031, "scale": [ 0.624451, 0.624451, 0.624451], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 474.333374, "scale": [ 0.618476, 0.618476, 0.618476], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 507.666718, "scale": [ 0.612071, 0.612071, 0.612071], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 541.000061, "scale": [ 0.605017, 0.605017, 0.605017], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 574.333374, "scale": [ 0.597604, 0.597605, 0.597604], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 607.666687, "scale": [ 0.589785, 0.589785, 0.589785], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 641.000000, "scale": [ 0.581309, 0.581309, 0.581309], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 674.333313, "scale": [ 0.572683, 0.572683, 0.572683], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 707.666626, "scale": [ 0.563664, 0.563664, 0.563664], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 740.999939, "scale": [ 0.554158, 0.554158, 0.554158], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 774.333252, "scale": [ 0.544000, 0.544000, 0.544000], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 807.666565, "scale": [ 0.533792, 0.533793, 0.533792], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 840.999878, "scale": [ 0.523261, 0.523261, 0.523261], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 874.333191, "scale": [ 0.512074, 0.512074, 0.512074], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 907.666504, "scale": [ 0.500830, 0.500830, 0.500830], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 940.999817, "scale": [ 0.489325, 0.489325, 0.489325], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 974.333130, "scale": [ 0.477212, 0.477212, 0.477212], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 1007.666443, "scale": [ 0.465223, 0.465223, 0.465223], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 1040.999756, "scale": [ 0.453018, 0.453018, 0.453018], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 1074.333130, "scale": [ 0.440201, 0.440201, 0.440201], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 1107.666504, "scale": [ 0.427548, 0.427548, 0.427548], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 1140.999878, "scale": [ 0.414821, 0.414821, 0.414821], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 1174.333252, "scale": [ 0.401650, 0.401650, 0.401650], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 1207.666626, "scale": [ 0.388685, 0.388685, 0.388685], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 1241.000000, "scale": [ 0.375327, 0.375327, 0.375327], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 1307.666748, "scale": [ 0.349397, 0.349397, 0.349397], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 1341.000122, "scale": [ 0.336039, 0.336039, 0.336039], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 1374.333496, "scale": [ 0.323074, 0.323074, 0.323074], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 1407.666870, "scale": [ 0.310344, 0.310344, 0.310344], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 1441.000244, "scale": [ 0.297232, 0.297232, 0.297232], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 1474.333618, "scale": [ 0.284643, 0.284643, 0.284643], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 1507.666992, "scale": [ 0.272252, 0.272252, 0.272252], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 1541.000366, "scale": [ 0.259677, 0.259677, 0.259677], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 1574.333740, "scale": [ 0.247754, 0.247754, 0.247754], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 1607.667114, "scale": [ 0.236068, 0.236067, 0.236067], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 1641.000488, "scale": [ 0.224293, 0.224293, 0.224293], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 1674.333862, "scale": [ 0.213140, 0.213140, 0.213140], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 1707.667236, "scale": [ 0.202282, 0.202282, 0.202282], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 1741.000610, "scale": [ 0.191519, 0.191519, 0.191519], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 1774.333984, "scale": [ 0.181415, 0.181415, 0.181415], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 1807.667358, "scale": [ 0.171655, 0.171655, 0.171655], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 1841.000732, "scale": [ 0.161977, 0.161977, 0.161977], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 1874.334106, "scale": [ 0.152958, 0.152958, 0.152958], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 1907.667480, "scale": [ 0.144453, 0.144453, 0.144452], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 1941.000854, "scale": [ 0.136101, 0.136101, 0.136101], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 1974.334229, "scale": [ 0.128410, 0.128410, 0.128410], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 2007.667603, "scale": [ 0.121129, 0.121129, 0.121129], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 2041.000977, "scale": [ 0.114074, 0.114074, 0.114074], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 2074.334473, "scale": [ 0.107803, 0.107803, 0.107803], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 2107.667725, "scale": [ 0.101964, 0.101964, 0.101964], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 2141.000977, "scale": [ 0.096406, 0.096406, 0.096406], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 2174.334229, "scale": [ 0.091459, 0.091459, 0.091458], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 2207.667480, "scale": [ 0.086963, 0.086963, 0.086963], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 2241.000732, "scale": [ 0.082939, 0.082939, 0.082939], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 2274.333984, "scale": [ 0.079496, 0.079496, 0.079496], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 2307.667236, "scale": [ 0.076498, 0.076498, 0.076498], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 2341.000488, "scale": [ 0.073881, 0.073881, 0.073881], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 2374.333740, "scale": [ 0.071795, 0.071795, 0.071795], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 2407.666992, "scale": [ 0.070304, 0.070304, 0.070304], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 2441.000244, "scale": [ 0.069227, 0.069227, 0.069227], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 2474.333496, "scale": [ 0.068632, 0.068632, 0.068632], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 2507.666748, "scale": [ 0.068522, 0.068522, 0.068522], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 2541.000000, "scale": [ 0.069035, 0.069035, 0.069035], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 2574.333252, "scale": [ 0.070535, 0.070535, 0.070535], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 2607.666504, "scale": [ 0.072779, 0.072779, 0.072779], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 2640.999756, "scale": [ 0.075769, 0.075769, 0.075769], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 2674.333008, "scale": [ 0.079646, 0.079646, 0.079646], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 2707.666260, "scale": [ 0.084188, 0.084188, 0.084188], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 2740.999512, "scale": [ 0.089727, 0.089727, 0.089727], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 2774.332764, "scale": [ 0.096217, 0.096217, 0.096217], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 2807.666016, "scale": [ 0.103287, 0.103287, 0.103287], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 2840.999268, "scale": [ 0.111103, 0.111103, 0.111103], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 2874.332520, "scale": [ 0.119963, 0.119963, 0.119963], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 2907.665771, "scale": [ 0.129550, 0.129550, 0.129550], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 2940.999023, "scale": [ 0.139863, 0.139863, 0.139863], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 2974.332275, "scale": [ 0.151243, 0.151243, 0.151243], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 3007.665527, "scale": [ 0.163010, 0.163010, 0.163010], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 3040.998779, "scale": [ 0.175504, 0.175504, 0.175504], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 3074.332031, "scale": [ 0.189296, 0.189297, 0.189296], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 3107.665283, "scale": [ 0.203368, 0.203368, 0.203368], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 3140.998535, "scale": [ 0.218080, 0.218080, 0.218080], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 3174.331787, "scale": [ 0.233900, 0.233900, 0.233900], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 3207.665039, "scale": [ 0.249881, 0.249881, 0.249881], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 3240.998291, "scale": [ 0.266621, 0.266621, 0.266621], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 3274.331543, "scale": [ 0.284429, 0.284429, 0.284429], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 3307.664795, "scale": [ 0.302240, 0.302240, 0.302240], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 3340.998047, "scale": [ 0.320535, 0.320535, 0.320535], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 3374.331299, "scale": [ 0.339881, 0.339881, 0.339881], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 3407.664551, "scale": [ 0.359208, 0.359208, 0.359208], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 3440.997803, "scale": [ 0.378899, 0.378899, 0.378899], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 3474.331055, "scale": [ 0.399533, 0.399533, 0.399533], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 3507.664307, "scale": [ 0.419862, 0.419862, 0.419861], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 3540.997559, "scale": [ 0.440459, 0.440459, 0.440459], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 3574.330811, "scale": [ 0.461956, 0.461956, 0.461956], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 3607.664062, "scale": [ 0.482975, 0.482975, 0.482975], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 3640.997314, "scale": [ 0.504094, 0.504094, 0.504094], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 3674.330566, "scale": [ 0.525907, 0.525907, 0.525907], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 3740.997070, "scale": [ 0.568249, 0.568249, 0.568249], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 3774.330322, "scale": [ 0.590062, 0.590062, 0.590062], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 3807.663574, "scale": [ 0.611088, 0.611088, 0.611088], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 3840.996826, "scale": [ 0.631900, 0.631900, 0.631900], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 3874.330078, "scale": [ 0.653122, 0.653122, 0.653122], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 3907.663330, "scale": [ 0.673372, 0.673372, 0.673372], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 3940.996582, "scale": [ 0.693312, 0.693312, 0.693312], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 3974.329834, "scale": [ 0.713494, 0.713494, 0.713494], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 4007.663086, "scale": [ 0.732698, 0.732698, 0.732698], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 4040.996338, "scale": [ 0.751474, 0.751474, 0.751474], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 4074.329590, "scale": [ 0.770202, 0.770202, 0.770202], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 4107.663086, "scale": [ 0.787862, 0.787862, 0.787862], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 4140.996094, "scale": [ 0.805001, 0.805001, 0.805000], "translation": [ 0.563430, 0.000000, 0.000000] }, { "keytime": 4174.329590, "scale": [ 0.822076, 0.822076, 0.822076], "translation": [ 0.563430, 0.000000, 0.000000] }, { "keytime": 4207.663086, "scale": [ 0.838057, 0.838057, 0.838057], "translation": [ 0.563430, 0.000000, 0.000000] }, { "keytime": 4240.996582, "scale": [ 0.853236, 0.853236, 0.853236], "translation": [ 0.563430, 0.000000, 0.000000] }, { "keytime": 4274.330078, "scale": [ 0.868217, 0.868217, 0.868217], "translation": [ 0.563430, 0.000000, 0.000000] }, { "keytime": 4307.663574, "scale": [ 0.882091, 0.882091, 0.882090], "translation": [ 0.563430, 0.000000, 0.000000] }, { "keytime": 4340.997070, "scale": [ 0.895300, 0.895300, 0.895300], "translation": [ 0.563430, 0.000000, 0.000000] }, { "keytime": 4374.330566, "scale": [ 0.908172, 0.908172, 0.908172], "translation": [ 0.563430, 0.000000, 0.000000] }, { "keytime": 4407.664062, "scale": [ 0.919729, 0.919729, 0.919729], "translation": [ 0.563430, 0.000000, 0.000000] }, { "keytime": 4440.997559, "scale": [ 0.930574, 0.930574, 0.930574], "translation": [ 0.563430, 0.000000, 0.000000] }, { "keytime": 4474.331055, "scale": [ 0.940989, 0.940989, 0.940989], "translation": [ 0.563430, 0.000000, 0.000000] }, { "keytime": 4507.664551, "scale": [ 0.950354, 0.950354, 0.950354], "translation": [ 0.563430, 0.000000, 0.000000] }, { "keytime": 4540.998047, "scale": [ 0.958954, 0.958953, 0.958953], "translation": [ 0.563430, 0.000000, 0.000000] }, { "keytime": 4574.331543, "scale": [ 0.966806, 0.966806, 0.966806], "translation": [ 0.563430, 0.000000, 0.000000] }, { "keytime": 4607.665039, "scale": [ 0.973651, 0.973651, 0.973651], "translation": [ 0.563430, 0.000000, 0.000000] }, { "keytime": 4640.998535, "scale": [ 0.979746, 0.979746, 0.979746], "translation": [ 0.563430, 0.000000, 0.000000] }, { "keytime": 4674.332031, "scale": [ 0.985228, 0.985228, 0.985228], "translation": [ 0.563430, 0.000000, 0.000000] }, { "keytime": 4707.665527, "scale": [ 0.989769, 0.989769, 0.989769], "translation": [ 0.563430, 0.000000, 0.000000] }, { "keytime": 4740.999023, "scale": [ 0.993313, 0.993313, 0.993313], "translation": [ 0.563430, 0.000000, 0.000000] }, { "keytime": 4774.332520, "scale": [ 0.996185, 0.996184, 0.996185], "translation": [ 0.563430, 0.000000, 0.000000] }, { "keytime": 4807.666016, "scale": [ 0.998204, 0.998204, 0.998204], "translation": [ 0.563430, 0.000000, 0.000000] }, { "keytime": 4832.000000, "scale": [ 0.999341, 0.999341, 0.999341], "translation": [ 0.563430, 0.000000, 0.000000] } ] }, { "boneId": "Bone_002", "keyframes": [ { "keytime": 41.000000, "scale": [ 0.628300, 1.000000, 0.628300] }, { "keytime": 74.333328, "scale": [ 0.628348, 1.000000, 0.628348] }, { "keytime": 107.666664, "scale": [ 0.628502, 1.000000, 0.628502] }, { "keytime": 141.000000, "scale": [ 0.628700, 1.000000, 0.628700] }, { "keytime": 174.333328, "scale": [ 0.628940, 1.000000, 0.628940] }, { "keytime": 240.999985, "scale": [ 0.629712, 1.000000, 0.629712] }, { "keytime": 274.333313, "scale": [ 0.630255, 1.000000, 0.630255] }, { "keytime": 307.666656, "scale": [ 0.630836, 1.000000, 0.630836] }, { "keytime": 341.000000, "scale": [ 0.631484, 1.000000, 0.631484] }, { "keytime": 407.666687, "scale": [ 0.633037, 1.000000, 0.633037] }, { "keytime": 441.000031, "scale": [ 0.633986, 1.000000, 0.633986] }, { "keytime": 474.333374, "scale": [ 0.634959, 1.000000, 0.634959] }, { "keytime": 507.666718, "scale": [ 0.635978, 1.000000, 0.635978] }, { "keytime": 541.000061, "scale": [ 0.637183, 1.000000, 0.637183] }, { "keytime": 574.333374, "scale": [ 0.638352, 1.000000, 0.638352] }, { "keytime": 607.666687, "scale": [ 0.639666, 1.000000, 0.639666] }, { "keytime": 641.000000, "scale": [ 0.641072, 1.000000, 0.641072] }, { "keytime": 674.333313, "scale": [ 0.642485, 1.000000, 0.642485] }, { "keytime": 740.999939, "scale": [ 0.645605, 1.000000, 0.645605] }, { "keytime": 807.666565, "scale": [ 0.649111, 1.000000, 0.649111] }, { "keytime": 840.999878, "scale": [ 0.650907, 1.000000, 0.650908] }, { "keytime": 874.333191, "scale": [ 0.652911, 1.000000, 0.652912] }, { "keytime": 907.666504, "scale": [ 0.654857, 1.000000, 0.654857] }, { "keytime": 940.999817, "scale": [ 0.656939, 1.000000, 0.656939] }, { "keytime": 974.333130, "scale": [ 0.659137, 1.000000, 0.659137] }, { "keytime": 1007.666443, "scale": [ 0.661314, 1.000000, 0.661314] }, { "keytime": 1040.999756, "scale": [ 0.663633, 1.000000, 0.663633] }, { "keytime": 1074.333130, "scale": [ 0.666022, 1.000000, 0.666022] }, { "keytime": 1107.666504, "scale": [ 0.668474, 1.000000, 0.668474] }, { "keytime": 1140.999878, "scale": [ 0.670974, 1.000000, 0.670974] }, { "keytime": 1174.333252, "scale": [ 0.673592, 1.000000, 0.673592] }, { "keytime": 1207.666626, "scale": [ 0.676268, 1.000000, 0.676268] }, { "keytime": 1241.000000, "scale": [ 0.679025, 1.000000, 0.679025] }, { "keytime": 1274.333374, "scale": [ 0.681827, 1.000000, 0.681827] }, { "keytime": 1307.666748, "scale": [ 0.684673, 1.000000, 0.684673] }, { "keytime": 1341.000122, "scale": [ 0.687646, 1.000000, 0.687647] }, { "keytime": 1407.666870, "scale": [ 0.693665, 1.000000, 0.693665] }, { "keytime": 1441.000244, "scale": [ 0.696912, 1.000000, 0.696912] }, { "keytime": 1507.666992, "scale": [ 0.703318, 1.000000, 0.703318] }, { "keytime": 1541.000366, "scale": [ 0.706617, 1.000000, 0.706617] }, { "keytime": 1607.667114, "scale": [ 0.713451, 1.000000, 0.713452] }, { "keytime": 1641.000488, "scale": [ 0.716972, 1.000000, 0.716972] }, { "keytime": 1674.333862, "scale": [ 0.720436, 1.000000, 0.720436] }, { "keytime": 1707.667236, "scale": [ 0.724045, 1.000000, 0.724046] }, { "keytime": 1741.000610, "scale": [ 0.727764, 1.000000, 0.727764] }, { "keytime": 1774.333984, "scale": [ 0.731374, 1.000000, 0.731374] }, { "keytime": 1807.667358, "scale": [ 0.735076, 1.000000, 0.735076] }, { "keytime": 1841.000732, "scale": [ 0.738993, 1.000000, 0.738993] }, { "keytime": 1907.667480, "scale": [ 0.746595, 1.000000, 0.746595] }, { "keytime": 1941.000854, "scale": [ 0.750511, 1.000000, 0.750511] }, { "keytime": 1974.334229, "scale": [ 0.754398, 1.000000, 0.754398] }, { "keytime": 2007.667603, "scale": [ 0.758373, 1.000000, 0.758373] }, { "keytime": 2041.000977, "scale": [ 0.762467, 1.000000, 0.762468] }, { "keytime": 2107.667725, "scale": [ 0.770416, 1.000000, 0.770416] }, { "keytime": 2141.000977, "scale": [ 0.774586, 1.000000, 0.774586] }, { "keytime": 2207.667480, "scale": [ 0.782832, 1.000000, 0.782832] }, { "keytime": 2241.000732, "scale": [ 0.787080, 1.000000, 0.787080] }, { "keytime": 2307.667236, "scale": [ 0.795326, 1.000000, 0.795326] }, { "keytime": 2341.000488, "scale": [ 0.799574, 1.000000, 0.799574] }, { "keytime": 2407.666992, "scale": [ 0.807820, 1.000000, 0.807820] }, { "keytime": 2441.000244, "scale": [ 0.812068, 1.000000, 0.812068] }, { "keytime": 2507.666748, "scale": [ 0.820314, 1.000000, 0.820313] }, { "keytime": 2541.000000, "scale": [ 0.824561, 1.000000, 0.824561] }, { "keytime": 2640.999756, "scale": [ 0.836930, 1.000000, 0.836930] }, { "keytime": 2674.333008, "scale": [ 0.841178, 1.000000, 0.841178] }, { "keytime": 2740.999512, "scale": [ 0.849424, 1.000000, 0.849424] }, { "keytime": 2774.332764, "scale": [ 0.853672, 1.000000, 0.853672] }, { "keytime": 2807.666016, "scale": [ 0.857713, 1.000000, 0.857713] }, { "keytime": 2840.999268, "scale": [ 0.861668, 1.000000, 0.861668] }, { "keytime": 2874.332520, "scale": [ 0.865742, 1.000000, 0.865742] }, { "keytime": 2940.999023, "scale": [ 0.873651, 1.000000, 0.873651] }, { "keytime": 2974.332275, "scale": [ 0.877725, 1.000000, 0.877725] }, { "keytime": 3007.665527, "scale": [ 0.881632, 1.000000, 0.881632] }, { "keytime": 3040.998779, "scale": [ 0.885382, 1.000000, 0.885381] }, { "keytime": 3074.332031, "scale": [ 0.889245, 1.000000, 0.889245] }, { "keytime": 3140.998535, "scale": [ 0.896745, 1.000000, 0.896745] }, { "keytime": 3174.331787, "scale": [ 0.900559, 1.000000, 0.900559] }, { "keytime": 3240.998291, "scale": [ 0.907655, 1.000000, 0.907655] }, { "keytime": 3274.331543, "scale": [ 0.911311, 1.000000, 0.911311] }, { "keytime": 3307.664795, "scale": [ 0.914762, 1.000000, 0.914762] }, { "keytime": 3340.998047, "scale": [ 0.918110, 1.000000, 0.918110] }, { "keytime": 3374.331299, "scale": [ 0.921559, 1.000000, 0.921559] }, { "keytime": 3407.664551, "scale": [ 0.924907, 1.000000, 0.924907] }, { "keytime": 3440.997803, "scale": [ 0.928094, 1.000000, 0.928094] }, { "keytime": 3474.331055, "scale": [ 0.931316, 1.000000, 0.931316] }, { "keytime": 3540.997559, "scale": [ 0.937569, 1.000000, 0.937569] }, { "keytime": 3574.330811, "scale": [ 0.940592, 1.000000, 0.940592] }, { "keytime": 3607.664062, "scale": [ 0.943521, 1.000000, 0.943521] }, { "keytime": 3640.997314, "scale": [ 0.946370, 1.000000, 0.946370] }, { "keytime": 3674.330566, "scale": [ 0.949215, 1.000000, 0.949215] }, { "keytime": 3707.663818, "scale": [ 0.951977, 1.000000, 0.951977] }, { "keytime": 3740.997070, "scale": [ 0.954569, 1.000000, 0.954569] }, { "keytime": 3774.330322, "scale": [ 0.957236, 1.000000, 0.957236] }, { "keytime": 3807.663574, "scale": [ 0.959738, 1.000000, 0.959738] }, { "keytime": 3840.996826, "scale": [ 0.962147, 1.000000, 0.962148] }, { "keytime": 3874.330078, "scale": [ 0.964630, 1.000000, 0.964630] }, { "keytime": 3940.996582, "scale": [ 0.969086, 1.000000, 0.969086] }, { "keytime": 3974.329834, "scale": [ 0.971287, 1.000000, 0.971287] }, { "keytime": 4040.996338, "scale": [ 0.975367, 1.000000, 0.975367] }, { "keytime": 4074.329590, "scale": [ 0.977278, 1.000000, 0.977278] }, { "keytime": 4107.663086, "scale": [ 0.979128, 1.000000, 0.979128] }, { "keytime": 4140.996094, "scale": [ 0.980886, 1.000000, 0.980886] }, { "keytime": 4174.329590, "scale": [ 0.982594, 1.000000, 0.982594] }, { "keytime": 4207.663086, "scale": [ 0.984251, 1.000000, 0.984251] }, { "keytime": 4240.996582, "scale": [ 0.985718, 1.000000, 0.985718] }, { "keytime": 4274.330078, "scale": [ 0.987225, 1.000000, 0.987225] }, { "keytime": 4307.663574, "scale": [ 0.988593, 1.000000, 0.988593] }, { "keytime": 4340.997070, "scale": [ 0.989860, 1.000000, 0.989860] }, { "keytime": 4374.330566, "scale": [ 0.991166, 1.000000, 0.991166] }, { "keytime": 4407.664062, "scale": [ 0.992239, 1.000000, 0.992239] }, { "keytime": 4440.997559, "scale": [ 0.993311, 1.000000, 0.993311] }, { "keytime": 4474.331055, "scale": [ 0.994317, 1.000000, 0.994317] }, { "keytime": 4540.998047, "scale": [ 0.996067, 1.000000, 0.996067] }, { "keytime": 4574.331543, "scale": [ 0.996772, 1.000000, 0.996772] }, { "keytime": 4607.665039, "scale": [ 0.997451, 1.000000, 0.997451] }, { "keytime": 4640.998535, "scale": [ 0.998037, 1.000000, 0.998037] }, { "keytime": 4674.332031, "scale": [ 0.998535, 1.000000, 0.998535] }, { "keytime": 4707.665527, "scale": [ 0.999018, 1.000000, 0.999018] }, { "keytime": 4740.999023, "scale": [ 0.999311, 1.000000, 0.999311] }, { "keytime": 4774.332520, "scale": [ 0.999609, 1.000000, 0.999609] }, { "keytime": 4807.666016, "scale": [ 0.999804, 1.000000, 0.999804] }, { "keytime": 4832.000000, "scale": [ 0.999877, 1.000000, 0.999877] } ] }, { "boneId": "Bone_003", "keyframes": [ { "keytime": 41.000000, "scale": [ 0.200000, 0.200000, 0.200000] }, { "keytime": 307.666656, "scale": [ 0.200220, 0.200220, 0.200220] }, { "keytime": 341.000000, "scale": [ 0.200287, 0.200287, 0.200287] }, { "keytime": 407.666687, "scale": [ 0.200646, 0.200646, 0.200646] }, { "keytime": 441.000031, "scale": [ 0.200832, 0.200832, 0.200832] }, { "keytime": 507.666718, "scale": [ 0.201191, 0.201191, 0.201191] }, { "keytime": 541.000061, "scale": [ 0.201376, 0.201376, 0.201376] }, { "keytime": 607.666687, "scale": [ 0.202166, 0.202166, 0.202166] }, { "keytime": 641.000000, "scale": [ 0.202572, 0.202572, 0.202572] }, { "keytime": 674.333313, "scale": [ 0.203013, 0.203013, 0.203013] }, { "keytime": 740.999939, "scale": [ 0.204180, 0.204180, 0.204180] }, { "keytime": 774.333252, "scale": [ 0.204917, 0.204917, 0.204917] }, { "keytime": 807.666565, "scale": [ 0.205682, 0.205682, 0.205682] }, { "keytime": 840.999878, "scale": [ 0.206492, 0.206492, 0.206492] }, { "keytime": 874.333191, "scale": [ 0.207490, 0.207490, 0.207490] }, { "keytime": 907.666504, "scale": [ 0.208458, 0.208458, 0.208458] }, { "keytime": 940.999817, "scale": [ 0.209588, 0.209588, 0.209588] }, { "keytime": 974.333130, "scale": [ 0.210814, 0.210814, 0.210814] }, { "keytime": 1007.666443, "scale": [ 0.212058, 0.212058, 0.212058] }, { "keytime": 1040.999756, "scale": [ 0.213482, 0.213482, 0.213482] }, { "keytime": 1074.333130, "scale": [ 0.214949, 0.214949, 0.214949] }, { "keytime": 1107.666504, "scale": [ 0.216549, 0.216549, 0.216549] }, { "keytime": 1140.999878, "scale": [ 0.218213, 0.218213, 0.218213] }, { "keytime": 1174.333252, "scale": [ 0.219985, 0.219985, 0.219985] }, { "keytime": 1207.666626, "scale": [ 0.221888, 0.221888, 0.221888] }, { "keytime": 1241.000000, "scale": [ 0.223848, 0.223848, 0.223848] }, { "keytime": 1274.333374, "scale": [ 0.225926, 0.225926, 0.225926] }, { "keytime": 1307.666748, "scale": [ 0.228063, 0.228063, 0.228063] }, { "keytime": 1341.000122, "scale": [ 0.230322, 0.230322, 0.230321] }, { "keytime": 1407.666870, "scale": [ 0.235044, 0.235044, 0.235044] }, { "keytime": 1441.000244, "scale": [ 0.237636, 0.237636, 0.237636] }, { "keytime": 1474.333618, "scale": [ 0.240208, 0.240208, 0.240208] }, { "keytime": 1507.666992, "scale": [ 0.242826, 0.242826, 0.242826] }, { "keytime": 1541.000366, "scale": [ 0.245678, 0.245678, 0.245678] }, { "keytime": 1574.333740, "scale": [ 0.248446, 0.248446, 0.248446] }, { "keytime": 1607.667114, "scale": [ 0.251347, 0.251347, 0.251347] }, { "keytime": 1641.000488, "scale": [ 0.254386, 0.254386, 0.254386] }, { "keytime": 1674.333862, "scale": [ 0.257374, 0.257374, 0.257374] }, { "keytime": 1707.667236, "scale": [ 0.260487, 0.260487, 0.260487] }, { "keytime": 1741.000610, "scale": [ 0.263695, 0.263695, 0.263695] }, { "keytime": 1774.333984, "scale": [ 0.266993, 0.266993, 0.266993] }, { "keytime": 1807.667358, "scale": [ 0.270519, 0.270519, 0.270519] }, { "keytime": 1841.000732, "scale": [ 0.274419, 0.274419, 0.274419] }, { "keytime": 1874.334106, "scale": [ 0.278462, 0.278462, 0.278462] }, { "keytime": 1907.667480, "scale": [ 0.282845, 0.282845, 0.282845] }, { "keytime": 1941.000854, "scale": [ 0.287625, 0.287625, 0.287624] }, { "keytime": 1974.334229, "scale": [ 0.292524, 0.292524, 0.292524] }, { "keytime": 2007.667603, "scale": [ 0.297676, 0.297676, 0.297676] }, { "keytime": 2041.000977, "scale": [ 0.303255, 0.303255, 0.303254] }, { "keytime": 2074.334473, "scale": [ 0.309011, 0.309011, 0.309011] }, { "keytime": 2107.667725, "scale": [ 0.315017, 0.315017, 0.315017] }, { "keytime": 2141.000977, "scale": [ 0.321468, 0.321468, 0.321468] }, { "keytime": 2174.334229, "scale": [ 0.327982, 0.327982, 0.327982] }, { "keytime": 2207.667480, "scale": [ 0.334749, 0.334749, 0.334749] }, { "keytime": 2241.000732, "scale": [ 0.342056, 0.342056, 0.342056] }, { "keytime": 2274.333984, "scale": [ 0.349398, 0.349398, 0.349398] }, { "keytime": 2307.667236, "scale": [ 0.356979, 0.356979, 0.356979] }, { "keytime": 2374.333740, "scale": [ 0.373102, 0.373102, 0.373102] }, { "keytime": 2407.666992, "scale": [ 0.381470, 0.381470, 0.381470] }, { "keytime": 2441.000244, "scale": [ 0.390323, 0.390323, 0.390323] }, { "keytime": 2474.333496, "scale": [ 0.399141, 0.399141, 0.399141] }, { "keytime": 2507.666748, "scale": [ 0.408173, 0.408173, 0.408173] }, { "keytime": 2541.000000, "scale": [ 0.417703, 0.417703, 0.417703] }, { "keytime": 2574.333252, "scale": [ 0.427227, 0.427227, 0.427227] }, { "keytime": 2607.666504, "scale": [ 0.436945, 0.436945, 0.436945] }, { "keytime": 2640.999756, "scale": [ 0.446850, 0.446850, 0.446850] }, { "keytime": 2674.333008, "scale": [ 0.457249, 0.457249, 0.457249] }, { "keytime": 2707.666260, "scale": [ 0.467524, 0.467524, 0.467524] }, { "keytime": 2740.999512, "scale": [ 0.478018, 0.478018, 0.478018] }, { "keytime": 2774.332764, "scale": [ 0.488991, 0.488991, 0.488991] }, { "keytime": 2807.666016, "scale": [ 0.499793, 0.499793, 0.499792] }, { "keytime": 2840.999268, "scale": [ 0.510732, 0.510732, 0.510732] }, { "keytime": 2874.332520, "scale": [ 0.522145, 0.522145, 0.522145] }, { "keytime": 2907.665771, "scale": [ 0.533449, 0.533449, 0.533449] }, { "keytime": 2940.999023, "scale": [ 0.544755, 0.544755, 0.544755] }, { "keytime": 2974.332275, "scale": [ 0.556524, 0.556524, 0.556524] }, { "keytime": 3040.998779, "scale": [ 0.579621, 0.579621, 0.579621] }, { "keytime": 3074.332031, "scale": [ 0.591712, 0.591712, 0.591712] }, { "keytime": 3140.998535, "scale": [ 0.615195, 0.615195, 0.615195] }, { "keytime": 3174.331787, "scale": [ 0.627292, 0.627292, 0.627292] }, { "keytime": 3240.998291, "scale": [ 0.650774, 0.650775, 0.650774] }, { "keytime": 3274.331543, "scale": [ 0.662872, 0.662872, 0.662872] }, { "keytime": 3340.998047, "scale": [ 0.686354, 0.686354, 0.686354] }, { "keytime": 3374.331299, "scale": [ 0.698451, 0.698451, 0.698451] }, { "keytime": 3407.664551, "scale": [ 0.709952, 0.709952, 0.709952] }, { "keytime": 3440.997803, "scale": [ 0.721451, 0.721451, 0.721451] }, { "keytime": 3474.331055, "scale": [ 0.733165, 0.733165, 0.733165] }, { "keytime": 3540.997559, "scale": [ 0.755621, 0.755621, 0.755621] }, { "keytime": 3574.330811, "scale": [ 0.766936, 0.766935, 0.766936] }, { "keytime": 3607.664062, "scale": [ 0.777765, 0.777765, 0.777765] }, { "keytime": 3640.997314, "scale": [ 0.788441, 0.788442, 0.788441] }, { "keytime": 3674.330566, "scale": [ 0.799268, 0.799269, 0.799268] }, { "keytime": 3707.663818, "scale": [ 0.809599, 0.809599, 0.809599] }, { "keytime": 3740.997070, "scale": [ 0.819685, 0.819685, 0.819685] }, { "keytime": 3774.330322, "scale": [ 0.829872, 0.829872, 0.829872] }, { "keytime": 3807.663574, "scale": [ 0.839549, 0.839549, 0.839549] }, { "keytime": 3840.996826, "scale": [ 0.849015, 0.849015, 0.849015] }, { "keytime": 3874.330078, "scale": [ 0.858532, 0.858532, 0.858532] }, { "keytime": 3907.663330, "scale": [ 0.867461, 0.867461, 0.867461] }, { "keytime": 3940.996582, "scale": [ 0.876154, 0.876154, 0.876154] }, { "keytime": 3974.329834, "scale": [ 0.884854, 0.884854, 0.884854] }, { "keytime": 4007.663086, "scale": [ 0.893045, 0.893045, 0.893045] }, { "keytime": 4040.996338, "scale": [ 0.900972, 0.900972, 0.900972] }, { "keytime": 4074.329590, "scale": [ 0.908787, 0.908786, 0.908786] }, { "keytime": 4107.663086, "scale": [ 0.916094, 0.916094, 0.916094] }, { "keytime": 4140.996094, "scale": [ 0.923131, 0.923131, 0.923131] }, { "keytime": 4174.329590, "scale": [ 0.930091, 0.930091, 0.930090] }, { "keytime": 4207.663086, "scale": [ 0.936558, 0.936558, 0.936558] }, { "keytime": 4240.996582, "scale": [ 0.942652, 0.942652, 0.942652] }, { "keytime": 4274.330078, "scale": [ 0.948634, 0.948634, 0.948634] }, { "keytime": 4307.663574, "scale": [ 0.954146, 0.954146, 0.954146] }, { "keytime": 4340.997070, "scale": [ 0.959369, 0.959369, 0.959369] }, { "keytime": 4374.330566, "scale": [ 0.964436, 0.964436, 0.964436] }, { "keytime": 4407.664062, "scale": [ 0.968962, 0.968962, 0.968962] }, { "keytime": 4440.997559, "scale": [ 0.973195, 0.973195, 0.973195] }, { "keytime": 4474.331055, "scale": [ 0.977249, 0.977249, 0.977249] }, { "keytime": 4507.664551, "scale": [ 0.980884, 0.980884, 0.980884] }, { "keytime": 4540.998047, "scale": [ 0.984213, 0.984213, 0.984213] }, { "keytime": 4574.331543, "scale": [ 0.987245, 0.987245, 0.987245] }, { "keytime": 4607.665039, "scale": [ 0.989883, 0.989883, 0.989883] }, { "keytime": 4640.998535, "scale": [ 0.992229, 0.992229, 0.992229] }, { "keytime": 4674.332031, "scale": [ 0.994336, 0.994336, 0.994336] }, { "keytime": 4707.665527, "scale": [ 0.996079, 0.996079, 0.996079] }, { "keytime": 4740.999023, "scale": [ 0.997438, 0.997438, 0.997438] }, { "keytime": 4774.332520, "scale": [ 0.998539, 0.998539, 0.998538] }, { "keytime": 4807.666016, "scale": [ 0.999312, 0.999312, 0.999312] }, { "keytime": 4832.000000, "scale": [ 0.999748, 0.999748, 0.999747] } ] }, { "boneId": "Bone_018", "keyframes": [ { "keytime": 41.000000, "scale": [ 0.659330, 0.659330, 0.659330], "translation": [ 0.432931, 0.000000, -0.000002] }, { "keytime": 74.333328, "scale": [ 0.659230, 0.659230, 0.659230], "translation": [ 0.432931, 0.000000, -0.000001] }, { "keytime": 107.666664, "scale": [ 0.658983, 0.658983, 0.658983], "translation": [ 0.432931, 0.000000, 0.000000] }, { "keytime": 141.000000, "scale": [ 0.658573, 0.658573, 0.658573], "translation": [ 0.432931, 0.000000, 0.000002] }, { "keytime": 174.333328, "scale": [ 0.658023, 0.658023, 0.658023], "translation": [ 0.432931, 0.000000, 0.000003] }, { "keytime": 207.666656, "scale": [ 0.657320, 0.657320, 0.657320], "translation": [ 0.432931, 0.000000, 0.000004] }, { "keytime": 240.999985, "scale": [ 0.656418, 0.656418, 0.656418], "translation": [ 0.432931, 0.000000, 0.000006] }, { "keytime": 274.333313, "scale": [ 0.655333, 0.655333, 0.655333], "translation": [ 0.432931, 0.000000, 0.000007] }, { "keytime": 307.666656, "scale": [ 0.654126, 0.654126, 0.654126], "translation": [ 0.432931, 0.000000, 0.000009] }, { "keytime": 341.000000, "scale": [ 0.652722, 0.652722, 0.652722], "translation": [ 0.432931, 0.000000, 0.000010] }, { "keytime": 374.333344, "scale": [ 0.651205, 0.651205, 0.651205], "translation": [ 0.432931, 0.000000, 0.000011] }, { "keytime": 407.666687, "scale": [ 0.649486, 0.649486, 0.649486], "translation": [ 0.432931, 0.000000, 0.000013] }, { "keytime": 441.000031, "scale": [ 0.647558, 0.647558, 0.647558], "translation": [ 0.432931, 0.000000, 0.000014] }, { "keytime": 474.333374, "scale": [ 0.645532, 0.645532, 0.645532], "translation": [ 0.432931, 0.000000, 0.000016] }, { "keytime": 507.666718, "scale": [ 0.643356, 0.643356, 0.643356], "translation": [ 0.432931, 0.000000, 0.000017] }, { "keytime": 541.000061, "scale": [ 0.640954, 0.640954, 0.640954], "translation": [ 0.432931, 0.000000, 0.000018] }, { "keytime": 574.333374, "scale": [ 0.638419, 0.638419, 0.638419], "translation": [ 0.432931, 0.000000, 0.000020] }, { "keytime": 607.666687, "scale": [ 0.635736, 0.635736, 0.635736], "translation": [ 0.432931, 0.000000, 0.000021] }, { "keytime": 641.000000, "scale": [ 0.632817, 0.632817, 0.632817], "translation": [ 0.432931, 0.000000, 0.000022] }, { "keytime": 674.333313, "scale": [ 0.629833, 0.629833, 0.629833], "translation": [ 0.432931, 0.000000, 0.000024] }, { "keytime": 707.666626, "scale": [ 0.626698, 0.626698, 0.626698], "translation": [ 0.432931, 0.000000, 0.000025] }, { "keytime": 740.999939, "scale": [ 0.623371, 0.623371, 0.623371], "translation": [ 0.432931, 0.000000, 0.000026] }, { "keytime": 774.333252, "scale": [ 0.619793, 0.619793, 0.619793], "translation": [ 0.432931, 0.000000, 0.000028] }, { "keytime": 807.666565, "scale": [ 0.616174, 0.616175, 0.616175], "translation": [ 0.432931, 0.000000, 0.000029] }, { "keytime": 840.999878, "scale": [ 0.612415, 0.612415, 0.612415], "translation": [ 0.432931, 0.000000, 0.000031] }, { "keytime": 874.333191, "scale": [ 0.608389, 0.608389, 0.608389], "translation": [ 0.432931, 0.000000, 0.000032] }, { "keytime": 907.666504, "scale": [ 0.604298, 0.604298, 0.604298], "translation": [ 0.432931, 0.000000, 0.000033] }, { "keytime": 940.999817, "scale": [ 0.600071, 0.600071, 0.600071], "translation": [ 0.432931, 0.000000, 0.000035] }, { "keytime": 1007.666443, "scale": [ 0.591081, 0.591081, 0.591081], "translation": [ 0.432931, 0.000000, 0.000038] }, { "keytime": 1040.999756, "scale": [ 0.586451, 0.586451, 0.586451], "translation": [ 0.432931, 0.000000, 0.000039] }, { "keytime": 1074.333130, "scale": [ 0.581511, 0.581511, 0.581511], "translation": [ 0.432931, 0.000000, 0.000040] }, { "keytime": 1107.666504, "scale": [ 0.576589, 0.576589, 0.576589], "translation": [ 0.432931, 0.000000, 0.000042] }, { "keytime": 1140.999878, "scale": [ 0.571547, 0.571547, 0.571547], "translation": [ 0.432931, 0.000000, 0.000043] }, { "keytime": 1174.333252, "scale": [ 0.566211, 0.566211, 0.566211], "translation": [ 0.432931, 0.000000, 0.000044] }, { "keytime": 1207.666626, "scale": [ 0.560857, 0.560857, 0.560857], "translation": [ 0.432931, 0.000000, 0.000046] }, { "keytime": 1241.000000, "scale": [ 0.555340, 0.555340, 0.555340], "translation": [ 0.432931, 0.000000, 0.000047] }, { "keytime": 1274.333374, "scale": [ 0.549774, 0.549774, 0.549774], "translation": [ 0.432931, 0.000000, 0.000049] }, { "keytime": 1307.666748, "scale": [ 0.544136, 0.544136, 0.544136], "translation": [ 0.432931, 0.000000, 0.000050] }, { "keytime": 1341.000122, "scale": [ 0.538262, 0.538262, 0.538262], "translation": [ 0.432931, 0.000000, 0.000051] }, { "keytime": 1407.666870, "scale": [ 0.526474, 0.526474, 0.526474], "translation": [ 0.432931, 0.000000, 0.000054] }, { "keytime": 1441.000244, "scale": [ 0.520231, 0.520231, 0.520231], "translation": [ 0.432931, 0.000000, 0.000055] }, { "keytime": 1474.333618, "scale": [ 0.514111, 0.514111, 0.514111], "translation": [ 0.432931, 0.000000, 0.000057] }, { "keytime": 1507.666992, "scale": [ 0.507947, 0.507947, 0.507947], "translation": [ 0.432931, 0.000000, 0.000058] }, { "keytime": 1541.000366, "scale": [ 0.501444, 0.501444, 0.501444], "translation": [ 0.432931, 0.000000, 0.000060] }, { "keytime": 1574.333740, "scale": [ 0.495132, 0.495132, 0.495132], "translation": [ 0.432931, 0.000000, 0.000061] }, { "keytime": 1607.667114, "scale": [ 0.488681, 0.488681, 0.488681], "translation": [ 0.432931, 0.000000, 0.000062] }, { "keytime": 1641.000488, "scale": [ 0.481984, 0.481984, 0.481984], "translation": [ 0.432931, 0.000000, 0.000064] }, { "keytime": 1707.667236, "scale": [ 0.468984, 0.468984, 0.468984], "translation": [ 0.432931, 0.000000, 0.000066] }, { "keytime": 1741.000610, "scale": [ 0.462121, 0.462121, 0.462121], "translation": [ 0.432931, 0.000000, 0.000068] }, { "keytime": 1807.667358, "scale": [ 0.448794, 0.448794, 0.448794], "translation": [ 0.432931, 0.000000, 0.000071] }, { "keytime": 1841.000732, "scale": [ 0.441928, 0.441928, 0.441928], "translation": [ 0.432931, 0.000000, 0.000072] }, { "keytime": 1907.667480, "scale": [ 0.428601, 0.428601, 0.428601], "translation": [ 0.432931, 0.000000, 0.000075] }, { "keytime": 1941.000854, "scale": [ 0.421735, 0.421736, 0.421735], "translation": [ 0.432931, 0.000000, 0.000076] }, { "keytime": 2007.667603, "scale": [ 0.408408, 0.408408, 0.408408], "translation": [ 0.432931, 0.000000, 0.000079] }, { "keytime": 2041.000977, "scale": [ 0.401543, 0.401543, 0.401543], "translation": [ 0.432931, 0.000000, 0.000080] }, { "keytime": 2107.667725, "scale": [ 0.388215, 0.388215, 0.388215], "translation": [ 0.432931, 0.000000, 0.000083] }, { "keytime": 2141.000977, "scale": [ 0.381350, 0.381350, 0.381350], "translation": [ 0.432931, 0.000000, 0.000084] }, { "keytime": 2174.334229, "scale": [ 0.374742, 0.374742, 0.374742], "translation": [ 0.432931, 0.000000, 0.000086] }, { "keytime": 2207.667480, "scale": [ 0.368311, 0.368311, 0.368311], "translation": [ 0.432931, 0.000000, 0.000087] }, { "keytime": 2241.000732, "scale": [ 0.361685, 0.361686, 0.361685], "translation": [ 0.432931, 0.000000, 0.000089] }, { "keytime": 2274.333984, "scale": [ 0.355254, 0.355255, 0.355254], "translation": [ 0.432931, 0.000000, 0.000090] }, { "keytime": 2307.667236, "scale": [ 0.348926, 0.348926, 0.348926], "translation": [ 0.432931, 0.000000, 0.000091] }, { "keytime": 2341.000488, "scale": [ 0.342517, 0.342517, 0.342517], "translation": [ 0.432931, 0.000000, 0.000093] }, { "keytime": 2374.333740, "scale": [ 0.336297, 0.336297, 0.336297], "translation": [ 0.432931, 0.000000, 0.000094] }, { "keytime": 2407.666992, "scale": [ 0.330284, 0.330285, 0.330284], "translation": [ 0.432931, 0.000000, 0.000095] }, { "keytime": 2441.000244, "scale": [ 0.324091, 0.324092, 0.324091], "translation": [ 0.432931, 0.000000, 0.000097] }, { "keytime": 2474.333496, "scale": [ 0.318200, 0.318200, 0.318200], "translation": [ 0.432931, 0.000000, 0.000098] }, { "keytime": 2507.666748, "scale": [ 0.312430, 0.312430, 0.312430], "translation": [ 0.432931, 0.000000, 0.000100] }, { "keytime": 2541.000000, "scale": [ 0.306486, 0.306486, 0.306486], "translation": [ 0.432931, 0.000000, 0.000101] }, { "keytime": 2574.333252, "scale": [ 0.300986, 0.300986, 0.300986], "translation": [ 0.432931, 0.000000, 0.000102] }, { "keytime": 2607.666504, "scale": [ 0.295487, 0.295487, 0.295487], "translation": [ 0.432931, 0.000000, 0.000024] }, { "keytime": 2640.999756, "scale": [ 0.290128, 0.290128, 0.290128], "translation": [ 0.432931, 0.000000, -0.000032] }, { "keytime": 2674.333008, "scale": [ 0.284768, 0.284768, 0.284768], "translation": [ 0.432931, 0.000000, -0.000031] }, { "keytime": 2707.666260, "scale": [ 0.279565, 0.279565, 0.279565], "translation": [ 0.432931, 0.000000, -0.000031] }, { "keytime": 2740.999512, "scale": [ 0.274595, 0.274595, 0.274595], "translation": [ 0.432931, 0.000000, -0.000030] }, { "keytime": 2774.332764, "scale": [ 0.269602, 0.269602, 0.269602], "translation": [ 0.432931, 0.000000, -0.000030] }, { "keytime": 2807.666016, "scale": [ 0.264885, 0.264885, 0.264885], "translation": [ 0.432931, 0.000000, -0.000029] }, { "keytime": 2874.332520, "scale": [ 0.255703, 0.255703, 0.255703], "translation": [ 0.432931, 0.000000, -0.000028] }, { "keytime": 2907.665771, "scale": [ 0.251425, 0.251425, 0.251425], "translation": [ 0.432931, 0.000000, -0.000028] }, { "keytime": 2940.999023, "scale": [ 0.247282, 0.247282, 0.247282], "translation": [ 0.432931, 0.000000, -0.000028] }, { "keytime": 2974.332275, "scale": [ 0.243157, 0.243157, 0.243157], "translation": [ 0.432931, 0.000000, -0.000027] }, { "keytime": 3007.665527, "scale": [ 0.239294, 0.239294, 0.239294], "translation": [ 0.432931, 0.000000, -0.000027] }, { "keytime": 3040.998779, "scale": [ 0.235576, 0.235576, 0.235576], "translation": [ 0.432931, 0.000000, -0.000026] }, { "keytime": 3074.332031, "scale": [ 0.231938, 0.231938, 0.231938], "translation": [ 0.432931, 0.000000, -0.000026] }, { "keytime": 3107.665283, "scale": [ 0.228555, 0.228555, 0.228555], "translation": [ 0.432931, 0.000000, -0.000025] }, { "keytime": 3140.998535, "scale": [ 0.225318, 0.225318, 0.225318], "translation": [ 0.432931, 0.000000, -0.000025] }, { "keytime": 3174.331787, "scale": [ 0.222136, 0.222136, 0.222136], "translation": [ 0.432931, 0.000000, -0.000024] }, { "keytime": 3207.665039, "scale": [ 0.219200, 0.219200, 0.219200], "translation": [ 0.432931, 0.000000, -0.000024] }, { "keytime": 3240.998291, "scale": [ 0.216461, 0.216461, 0.216460], "translation": [ 0.432931, 0.000000, -0.000023] }, { "keytime": 3274.331543, "scale": [ 0.213792, 0.213792, 0.213792], "translation": [ 0.432931, 0.000000, -0.000023] }, { "keytime": 3307.664795, "scale": [ 0.211356, 0.211356, 0.211356], "translation": [ 0.432931, 0.000000, -0.000022] }, { "keytime": 3340.998047, "scale": [ 0.209069, 0.209069, 0.209069], "translation": [ 0.432931, 0.000000, -0.000022] }, { "keytime": 3374.331299, "scale": [ 0.206876, 0.206876, 0.206876], "translation": [ 0.432931, 0.000000, -0.000021] }, { "keytime": 3407.664551, "scale": [ 0.204949, 0.204949, 0.204949], "translation": [ 0.432931, 0.000000, -0.000021] }, { "keytime": 3440.997803, "scale": [ 0.203172, 0.203172, 0.203172], "translation": [ 0.432931, 0.000000, -0.000020] }, { "keytime": 3474.331055, "scale": [ 0.201500, 0.201500, 0.201500], "translation": [ 0.432931, 0.000000, -0.000020] }, { "keytime": 3507.664307, "scale": [ 0.200031, 0.200031, 0.200031], "translation": [ 0.432931, 0.000000, -0.000019] }, { "keytime": 3540.997559, "scale": [ 0.198718, 0.198718, 0.198718], "translation": [ 0.432931, 0.000000, -0.000019] }, { "keytime": 3574.330811, "scale": [ 0.197569, 0.197569, 0.197569], "translation": [ 0.432931, 0.000000, -0.000018] }, { "keytime": 3607.664062, "scale": [ 0.196610, 0.196610, 0.196610], "translation": [ 0.432931, 0.000000, -0.000018] }, { "keytime": 3640.997314, "scale": [ 0.195801, 0.195801, 0.195801], "translation": [ 0.432931, 0.000000, -0.000018] }, { "keytime": 3674.330566, "scale": [ 0.195126, 0.195126, 0.195126], "translation": [ 0.432931, 0.000000, -0.000017] }, { "keytime": 3707.663818, "scale": [ 0.194625, 0.194625, 0.194625], "translation": [ 0.432931, 0.000000, -0.000017] }, { "keytime": 3740.997070, "scale": [ 0.194321, 0.194321, 0.194321], "translation": [ 0.432931, 0.000000, -0.000016] }, { "keytime": 3774.330322, "scale": [ 0.194162, 0.194162, 0.194162], "translation": [ 0.432931, 0.000000, -0.000016] }, { "keytime": 3807.663574, "scale": [ 0.195118, 0.195118, 0.195118], "translation": [ 0.432931, 0.000000, -0.000015] }, { "keytime": 3840.996826, "scale": [ 0.198129, 0.198129, 0.198129], "translation": [ 0.432931, 0.000000, -0.000015] }, { "keytime": 3874.330078, "scale": [ 0.204594, 0.204594, 0.204594], "translation": [ 0.432931, 0.000000, -0.000014] }, { "keytime": 3907.663330, "scale": [ 0.215059, 0.215059, 0.215059], "translation": [ 0.432931, 0.000000, -0.000014] }, { "keytime": 3940.996582, "scale": [ 0.228636, 0.228636, 0.228636], "translation": [ 0.432931, 0.000000, -0.000013] }, { "keytime": 3974.329834, "scale": [ 0.245867, 0.245867, 0.245867], "translation": [ 0.432931, 0.000000, -0.000013] }, { "keytime": 4007.663086, "scale": [ 0.265681, 0.265681, 0.265681], "translation": [ 0.432931, 0.000000, -0.000012] }, { "keytime": 4040.996338, "scale": [ 0.288580, 0.288580, 0.288580], "translation": [ 0.432931, 0.000000, -0.000012] }, { "keytime": 4074.329590, "scale": [ 0.315977, 0.315977, 0.315977], "translation": [ 0.432931, 0.000000, -0.000011] }, { "keytime": 4107.663086, "scale": [ 0.345264, 0.345264, 0.345264], "translation": [ 0.432931, 0.000000, -0.000011] }, { "keytime": 4140.996094, "scale": [ 0.376949, 0.376949, 0.376949], "translation": [ 0.432931, 0.000000, -0.000010] }, { "keytime": 4174.329590, "scale": [ 0.411915, 0.411915, 0.411915], "translation": [ 0.432931, 0.000000, -0.000010] }, { "keytime": 4207.663086, "scale": [ 0.447864, 0.447864, 0.447864], "translation": [ 0.432931, 0.000000, -0.000009] }, { "keytime": 4240.996582, "scale": [ 0.485831, 0.485831, 0.485831], "translation": [ 0.432931, 0.000000, -0.000009] }, { "keytime": 4274.330078, "scale": [ 0.526051, 0.526051, 0.526051], "translation": [ 0.432931, 0.000000, -0.000008] }, { "keytime": 4307.663574, "scale": [ 0.565828, 0.565828, 0.565828], "translation": [ 0.432931, 0.000000, -0.000008] }, { "keytime": 4340.997070, "scale": [ 0.605977, 0.605977, 0.605977], "translation": [ 0.432931, 0.000000, -0.000008] }, { "keytime": 4374.330566, "scale": [ 0.647343, 0.647343, 0.647343], "translation": [ 0.432931, 0.000000, -0.000007] }, { "keytime": 4407.664062, "scale": [ 0.686777, 0.686777, 0.686777], "translation": [ 0.432931, 0.000000, -0.000007] }, { "keytime": 4440.997559, "scale": [ 0.725172, 0.725172, 0.725172], "translation": [ 0.432931, 0.000000, -0.000006] }, { "keytime": 4474.331055, "scale": [ 0.763313, 0.763313, 0.763313], "translation": [ 0.432931, 0.000000, -0.000006] }, { "keytime": 4507.664551, "scale": [ 0.798651, 0.798651, 0.798651], "translation": [ 0.432931, 0.000000, -0.000005] }, { "keytime": 4540.998047, "scale": [ 0.831971, 0.831971, 0.831971], "translation": [ 0.432931, 0.000000, -0.000005] }, { "keytime": 4574.331543, "scale": [ 0.863187, 0.863187, 0.863187], "translation": [ 0.432931, 0.000000, -0.000004] }, { "keytime": 4607.665039, "scale": [ 0.890811, 0.890811, 0.890811], "translation": [ 0.432931, 0.000000, -0.000004] }, { "keytime": 4640.998535, "scale": [ 0.915708, 0.915707, 0.915708], "translation": [ 0.432931, 0.000000, -0.000003] }, { "keytime": 4674.332031, "scale": [ 0.938327, 0.938326, 0.938327], "translation": [ 0.432931, 0.000000, -0.000003] }, { "keytime": 4707.665527, "scale": [ 0.957208, 0.957208, 0.957208], "translation": [ 0.432931, 0.000000, -0.000002] }, { "keytime": 4740.999023, "scale": [ 0.972020, 0.972020, 0.972020], "translation": [ 0.432931, 0.000000, -0.000002] }, { "keytime": 4774.332520, "scale": [ 0.984040, 0.984040, 0.984040], "translation": [ 0.432931, 0.000000, -0.000001] }, { "keytime": 4807.666016, "scale": [ 0.992496, 0.992495, 0.992496], "translation": [ 0.432931, 0.000000, -0.000001] }, { "keytime": 4832.000000, "scale": [ 0.997250, 0.997249, 0.997250], "translation": [ 0.432931, 0.000000, -0.000001] } ] }, { "boneId": "Bone_024", "keyframes": [ { "keytime": 41.000000, "scale": [ 0.610000, 0.610000, 0.610000], "translation": [ 0.297497, 0.000000, 0.000006] }, { "keytime": 107.666664, "scale": [ 0.609733, 0.609733, 0.609733], "translation": [ 0.297497, 0.000000, 0.000003] }, { "keytime": 141.000000, "scale": [ 0.609464, 0.609464, 0.609464], "translation": [ 0.297497, 0.000000, 0.000001] }, { "keytime": 207.666656, "scale": [ 0.608674, 0.608674, 0.608674], "translation": [ 0.297497, 0.000000, -0.000001] }, { "keytime": 240.999985, "scale": [ 0.608029, 0.608029, 0.608029], "translation": [ 0.297497, 0.000000, -0.000003] }, { "keytime": 274.333313, "scale": [ 0.607360, 0.607360, 0.607360], "translation": [ 0.297497, 0.000000, -0.000004] }, { "keytime": 307.666656, "scale": [ 0.606590, 0.606590, 0.606590], "translation": [ 0.297497, 0.000000, -0.000006] }, { "keytime": 341.000000, "scale": [ 0.605665, 0.605665, 0.605665], "translation": [ 0.297497, 0.000000, -0.000007] }, { "keytime": 374.333344, "scale": [ 0.604768, 0.604768, 0.604767], "translation": [ 0.297497, 0.000000, -0.000009] }, { "keytime": 407.666687, "scale": [ 0.603631, 0.603631, 0.603631], "translation": [ 0.297497, 0.000000, -0.000010] }, { "keytime": 441.000031, "scale": [ 0.602459, 0.602459, 0.602458], "translation": [ 0.297497, 0.000000, -0.000012] }, { "keytime": 474.333374, "scale": [ 0.601204, 0.601204, 0.601204], "translation": [ 0.297497, 0.000000, -0.000013] }, { "keytime": 507.666718, "scale": [ 0.599832, 0.599832, 0.599832], "translation": [ 0.297497, 0.000000, -0.000014] }, { "keytime": 541.000061, "scale": [ 0.598418, 0.598418, 0.598418], "translation": [ 0.297497, 0.000000, -0.000016] }, { "keytime": 607.666687, "scale": [ 0.595220, 0.595220, 0.595220], "translation": [ 0.297497, 0.000000, -0.000019] }, { "keytime": 641.000000, "scale": [ 0.593462, 0.593462, 0.593462], "translation": [ 0.297497, 0.000000, -0.000020] }, { "keytime": 707.666626, "scale": [ 0.589824, 0.589824, 0.589824], "translation": [ 0.297498, 0.000000, -0.000023] }, { "keytime": 740.999939, "scale": [ 0.587797, 0.587797, 0.587797], "translation": [ 0.297498, 0.000000, -0.000024] }, { "keytime": 774.333252, "scale": [ 0.585704, 0.585704, 0.585704], "translation": [ 0.297498, 0.000000, -0.000026] }, { "keytime": 807.666565, "scale": [ 0.583573, 0.583573, 0.583573], "translation": [ 0.297498, 0.000000, -0.000027] }, { "keytime": 840.999878, "scale": [ 0.581335, 0.581335, 0.581335], "translation": [ 0.297498, 0.000000, -0.000029] }, { "keytime": 874.333191, "scale": [ 0.579031, 0.579030, 0.579030], "translation": [ 0.297498, 0.000000, -0.000030] }, { "keytime": 907.666504, "scale": [ 0.576597, 0.576597, 0.576596], "translation": [ 0.297498, 0.000000, -0.000031] }, { "keytime": 940.999817, "scale": [ 0.574161, 0.574161, 0.574161], "translation": [ 0.297498, 0.000000, -0.000033] }, { "keytime": 974.333130, "scale": [ 0.571556, 0.571556, 0.571556], "translation": [ 0.297498, 0.000000, -0.000034] }, { "keytime": 1040.999756, "scale": [ 0.566302, 0.566302, 0.566302], "translation": [ 0.297498, 0.000000, -0.000037] }, { "keytime": 1074.333130, "scale": [ 0.563412, 0.563412, 0.563412], "translation": [ 0.297498, 0.000000, -0.000039] }, { "keytime": 1107.666504, "scale": [ 0.560601, 0.560600, 0.560600], "translation": [ 0.297498, 0.000000, -0.000040] }, { "keytime": 1140.999878, "scale": [ 0.557706, 0.557705, 0.557705], "translation": [ 0.297498, 0.000000, -0.000041] }, { "keytime": 1174.333252, "scale": [ 0.554627, 0.554627, 0.554627], "translation": [ 0.297498, 0.000000, -0.000043] }, { "keytime": 1207.666626, "scale": [ 0.551639, 0.551639, 0.551639], "translation": [ 0.297498, 0.000000, -0.000044] }, { "keytime": 1241.000000, "scale": [ 0.548390, 0.548390, 0.548390], "translation": [ 0.297498, 0.000000, -0.000046] }, { "keytime": 1274.333374, "scale": [ 0.545233, 0.545233, 0.545233], "translation": [ 0.297498, 0.000000, -0.000047] }, { "keytime": 1307.666748, "scale": [ 0.541998, 0.541998, 0.541998], "translation": [ 0.297498, 0.000000, -0.000049] }, { "keytime": 1341.000122, "scale": [ 0.538579, 0.538579, 0.538579], "translation": [ 0.297498, 0.000000, -0.000050] }, { "keytime": 1374.333496, "scale": [ 0.535260, 0.535260, 0.535260], "translation": [ 0.297498, 0.000000, -0.000051] }, { "keytime": 1407.666870, "scale": [ 0.531753, 0.531752, 0.531752], "translation": [ 0.297498, 0.000000, -0.000053] }, { "keytime": 1441.000244, "scale": [ 0.528137, 0.528137, 0.528137], "translation": [ 0.297498, 0.000000, -0.000054] }, { "keytime": 1474.333618, "scale": [ 0.524627, 0.524627, 0.524627], "translation": [ 0.297498, 0.000000, -0.000056] }, { "keytime": 1507.666992, "scale": [ 0.521069, 0.521068, 0.521069], "translation": [ 0.297498, 0.000000, -0.000057] }, { "keytime": 1541.000366, "scale": [ 0.517233, 0.517233, 0.517233], "translation": [ 0.297498, 0.000000, -0.000059] }, { "keytime": 1607.667114, "scale": [ 0.509789, 0.509789, 0.509788], "translation": [ 0.297498, 0.000000, -0.000061] }, { "keytime": 1641.000488, "scale": [ 0.505855, 0.505855, 0.505855], "translation": [ 0.297498, 0.000000, -0.000063] }, { "keytime": 1707.667236, "scale": [ 0.498021, 0.498021, 0.498021], "translation": [ 0.297498, 0.000000, -0.000066] }, { "keytime": 1741.000610, "scale": [ 0.493985, 0.493985, 0.493985], "translation": [ 0.297498, 0.000000, -0.000067] }, { "keytime": 1774.333984, "scale": [ 0.489937, 0.489937, 0.489937], "translation": [ 0.297498, 0.000000, -0.000069] }, { "keytime": 1807.667358, "scale": [ 0.485844, 0.485844, 0.485844], "translation": [ 0.297498, 0.000000, -0.000070] }, { "keytime": 1841.000732, "scale": [ 0.481627, 0.481627, 0.481627], "translation": [ 0.297498, 0.000000, -0.000071] }, { "keytime": 1874.334106, "scale": [ 0.477535, 0.477535, 0.477535], "translation": [ 0.297498, 0.000000, -0.000073] }, { "keytime": 1907.667480, "scale": [ 0.473265, 0.473265, 0.473265], "translation": [ 0.297498, 0.000000, -0.000074] }, { "keytime": 1941.000854, "scale": [ 0.468864, 0.468864, 0.468864], "translation": [ 0.297498, 0.000000, -0.000076] }, { "keytime": 1974.334229, "scale": [ 0.464592, 0.464592, 0.464592], "translation": [ 0.297498, 0.000000, -0.000077] }, { "keytime": 2007.667603, "scale": [ 0.460321, 0.460321, 0.460321], "translation": [ 0.297498, 0.000000, -0.000052] }, { "keytime": 2041.000977, "scale": [ 0.455920, 0.455920, 0.455920], "translation": [ 0.297498, 0.000000, 0.000063] }, { "keytime": 2107.667725, "scale": [ 0.447001, 0.447001, 0.447001], "translation": [ 0.297498, 0.000000, -0.000051] }, { "keytime": 2141.000977, "scale": [ 0.442407, 0.442407, 0.442407], "translation": [ 0.297498, 0.000000, -0.000025] }, { "keytime": 2174.334229, "scale": [ 0.437948, 0.437947, 0.437947], "translation": [ 0.297498, 0.000000, 0.000036] }, { "keytime": 2207.667480, "scale": [ 0.433488, 0.433488, 0.433488], "translation": [ 0.297498, 0.000000, -0.000062] }, { "keytime": 2241.000732, "scale": [ 0.428894, 0.428894, 0.428894], "translation": [ 0.297498, 0.000000, 0.000079] }, { "keytime": 2274.333984, "scale": [ 0.424302, 0.424302, 0.424302], "translation": [ 0.297498, 0.000000, 0.000111] }, { "keytime": 2307.667236, "scale": [ 0.419665, 0.419665, 0.419665], "translation": [ 0.297498, 0.000000, 0.000105] }, { "keytime": 2341.000488, "scale": [ 0.414887, 0.414887, 0.414887], "translation": [ 0.297498, 0.000000, 0.000099] }, { "keytime": 2374.333740, "scale": [ 0.410250, 0.410250, 0.410250], "translation": [ 0.297498, 0.000000, 0.000093] }, { "keytime": 2407.666992, "scale": [ 0.405613, 0.405613, 0.405613], "translation": [ 0.297498, 0.000000, -0.000042] }, { "keytime": 2441.000244, "scale": [ 0.400836, 0.400835, 0.400835], "translation": [ 0.297498, 0.000000, -0.000181] }, { "keytime": 2474.333496, "scale": [ 0.396199, 0.396198, 0.396198], "translation": [ 0.297498, 0.000000, -0.000202] }, { "keytime": 2507.666748, "scale": [ 0.391562, 0.391561, 0.391561], "translation": [ 0.297498, 0.000000, -0.000106] }, { "keytime": 2541.000000, "scale": [ 0.386784, 0.386784, 0.386784], "translation": [ 0.297498, 0.000000, -0.000007] }, { "keytime": 2574.333252, "scale": [ 0.382147, 0.382147, 0.382147], "translation": [ 0.297498, 0.000000, 0.000089] }, { "keytime": 2607.666504, "scale": [ 0.377510, 0.377510, 0.377510], "translation": [ 0.297498, 0.000000, 0.000036] }, { "keytime": 2640.999756, "scale": [ 0.372873, 0.372873, 0.372873], "translation": [ 0.297498, 0.000000, -0.000071] }, { "keytime": 2674.333008, "scale": [ 0.368095, 0.368095, 0.368095], "translation": [ 0.297498, 0.000000, -0.000100] }, { "keytime": 2707.666260, "scale": [ 0.363458, 0.363458, 0.363458], "translation": [ 0.297498, 0.000000, 0.000126] }, { "keytime": 2740.999512, "scale": [ 0.358821, 0.358821, 0.358821], "translation": [ 0.297498, 0.000000, 0.000098] }, { "keytime": 2774.332764, "scale": [ 0.354044, 0.354044, 0.354044], "translation": [ 0.297498, 0.000000, 0.000063] }, { "keytime": 2840.999268, "scale": [ 0.344770, 0.344769, 0.344769], "translation": [ 0.297498, 0.000000, -0.000004] }, { "keytime": 2874.332520, "scale": [ 0.339992, 0.339992, 0.339992], "translation": [ 0.297498, 0.000000, -0.000038] }, { "keytime": 2907.665771, "scale": [ 0.335355, 0.335355, 0.335355], "translation": [ 0.297498, 0.000000, -0.000072] }, { "keytime": 2940.999023, "scale": [ 0.330718, 0.330718, 0.330718], "translation": [ 0.297498, 0.000000, 0.000021] }, { "keytime": 2974.332275, "scale": [ 0.325940, 0.325940, 0.325940], "translation": [ 0.297498, 0.000000, 0.000051] }, { "keytime": 3007.665527, "scale": [ 0.321303, 0.321303, 0.321303], "translation": [ 0.297498, 0.000000, -0.000020] }, { "keytime": 3040.998779, "scale": [ 0.316666, 0.316666, 0.316666], "translation": [ 0.297498, 0.000000, -0.000019] }, { "keytime": 3074.332031, "scale": [ 0.311889, 0.311889, 0.311889], "translation": [ 0.297498, 0.000000, -0.000019] }, { "keytime": 3107.665283, "scale": [ 0.307252, 0.307252, 0.307252], "translation": [ 0.297498, 0.000000, -0.000019] }, { "keytime": 3140.998535, "scale": [ 0.302740, 0.302740, 0.302740], "translation": [ 0.297498, 0.000000, -0.000018] }, { "keytime": 3174.331787, "scale": [ 0.298234, 0.298234, 0.298234], "translation": [ 0.297498, 0.000000, -0.000018] }, { "keytime": 3240.998291, "scale": [ 0.289489, 0.289488, 0.289488], "translation": [ 0.297498, 0.000000, -0.000017] }, { "keytime": 3274.331543, "scale": [ 0.284983, 0.284983, 0.284983], "translation": [ 0.297498, 0.000000, -0.000017] }, { "keytime": 3307.664795, "scale": [ 0.280716, 0.280716, 0.280716], "translation": [ 0.297498, 0.000000, -0.000017] }, { "keytime": 3340.998047, "scale": [ 0.276563, 0.276563, 0.276563], "translation": [ 0.297498, 0.000000, -0.000016] }, { "keytime": 3374.331299, "scale": [ 0.272284, 0.272284, 0.272284], "translation": [ 0.297498, 0.000000, -0.000016] }, { "keytime": 3407.664551, "scale": [ 0.268130, 0.268130, 0.268130], "translation": [ 0.297498, 0.000000, -0.000015] }, { "keytime": 3440.997803, "scale": [ 0.264122, 0.264122, 0.264122], "translation": [ 0.297498, 0.000000, -0.000015] }, { "keytime": 3474.331055, "scale": [ 0.260049, 0.260049, 0.260049], "translation": [ 0.297498, 0.000000, -0.000015] }, { "keytime": 3507.664307, "scale": [ 0.256140, 0.256139, 0.256139], "translation": [ 0.297498, 0.000000, -0.000014] }, { "keytime": 3540.997559, "scale": [ 0.252376, 0.252376, 0.252376], "translation": [ 0.297498, 0.000000, -0.000014] }, { "keytime": 3574.330811, "scale": [ 0.248499, 0.248499, 0.248499], "translation": [ 0.297498, 0.000000, -0.000014] }, { "keytime": 3607.664062, "scale": [ 0.244896, 0.244896, 0.244896], "translation": [ 0.297498, 0.000000, -0.000013] }, { "keytime": 3640.997314, "scale": [ 0.241351, 0.241351, 0.241351], "translation": [ 0.297498, 0.000000, -0.000013] }, { "keytime": 3674.330566, "scale": [ 0.237760, 0.237760, 0.237760], "translation": [ 0.297498, 0.000000, -0.000013] }, { "keytime": 3740.997070, "scale": [ 0.231169, 0.231169, 0.231169], "translation": [ 0.297498, 0.000000, -0.000012] }, { "keytime": 3774.330322, "scale": [ 0.227986, 0.227986, 0.227986], "translation": [ 0.297498, 0.000000, -0.000012] }, { "keytime": 3807.663574, "scale": [ 0.224975, 0.224975, 0.224975], "translation": [ 0.297498, 0.000000, -0.000011] }, { "keytime": 3840.996826, "scale": [ 0.222017, 0.222017, 0.222017], "translation": [ 0.297498, 0.000000, -0.000011] }, { "keytime": 3874.330078, "scale": [ 0.219158, 0.219158, 0.219158], "translation": [ 0.297498, 0.000000, -0.000010] }, { "keytime": 3907.663330, "scale": [ 0.216553, 0.216553, 0.216553], "translation": [ 0.297498, 0.000000, -0.000010] }, { "keytime": 3940.996582, "scale": [ 0.214083, 0.214083, 0.214083], "translation": [ 0.297498, 0.000000, -0.000010] }, { "keytime": 3974.329834, "scale": [ 0.211684, 0.211684, 0.211684], "translation": [ 0.297498, 0.000000, -0.000009] }, { "keytime": 4007.663086, "scale": [ 0.209505, 0.209505, 0.209505], "translation": [ 0.297498, 0.000000, -0.000009] }, { "keytime": 4040.996338, "scale": [ 0.207483, 0.207483, 0.207483], "translation": [ 0.297498, 0.000000, -0.000009] }, { "keytime": 4074.329590, "scale": [ 0.205619, 0.205619, 0.205619], "translation": [ 0.297498, 0.000000, -0.000008] }, { "keytime": 4107.663086, "scale": [ 0.203988, 0.203988, 0.203988], "translation": [ 0.297498, 0.000000, -0.000008] }, { "keytime": 4140.996094, "scale": [ 0.202536, 0.202536, 0.202536], "translation": [ 0.297498, 0.000000, -0.000008] }, { "keytime": 4174.329590, "scale": [ 0.201237, 0.201237, 0.201237], "translation": [ 0.297498, 0.000000, -0.000007] }, { "keytime": 4207.663086, "scale": [ 0.200177, 0.200177, 0.200177], "translation": [ 0.297498, 0.000000, -0.000007] }, { "keytime": 4240.996582, "scale": [ 0.199392, 0.199392, 0.199392], "translation": [ 0.297498, 0.000000, -0.000006] }, { "keytime": 4274.330078, "scale": [ 0.198811, 0.198811, 0.198811], "translation": [ 0.297498, 0.000000, -0.000006] }, { "keytime": 4307.663574, "scale": [ 0.198482, 0.198482, 0.198482], "translation": [ 0.297498, 0.000000, -0.000006] }, { "keytime": 4340.997070, "scale": [ 0.200200, 0.200200, 0.200200], "translation": [ 0.297498, 0.000000, -0.000005] }, { "keytime": 4374.330566, "scale": [ 0.208762, 0.208762, 0.208762], "translation": [ 0.297498, 0.000000, -0.000005] }, { "keytime": 4407.664062, "scale": [ 0.233695, 0.233695, 0.233695], "translation": [ 0.297498, 0.000000, -0.000005] }, { "keytime": 4440.997559, "scale": [ 0.270767, 0.270767, 0.270767], "translation": [ 0.297498, 0.000000, -0.000004] }, { "keytime": 4474.331055, "scale": [ 0.321035, 0.321036, 0.321036], "translation": [ 0.297498, 0.000000, -0.000004] }, { "keytime": 4507.664551, "scale": [ 0.380502, 0.380502, 0.380502], "translation": [ 0.297498, 0.000000, -0.000004] }, { "keytime": 4540.998047, "scale": [ 0.449405, 0.449405, 0.449406], "translation": [ 0.297498, 0.000000, -0.000003] }, { "keytime": 4574.331543, "scale": [ 0.528521, 0.528521, 0.528521], "translation": [ 0.297498, 0.000000, -0.000003] }, { "keytime": 4607.665039, "scale": [ 0.607648, 0.607649, 0.607648], "translation": [ 0.297498, 0.000000, -0.000003] }, { "keytime": 4640.998535, "scale": [ 0.686172, 0.686172, 0.686172], "translation": [ 0.297498, 0.000000, -0.000002] }, { "keytime": 4674.332031, "scale": [ 0.763564, 0.763564, 0.763564], "translation": [ 0.297498, 0.000000, -0.000002] }, { "keytime": 4707.665527, "scale": [ 0.832468, 0.832468, 0.832468], "translation": [ 0.297498, 0.000000, -0.000001] }, { "keytime": 4740.999023, "scale": [ 0.889327, 0.889326, 0.889327], "translation": [ 0.297498, 0.000000, -0.000001] }, { "keytime": 4774.332520, "scale": [ 0.936403, 0.936403, 0.936403], "translation": [ 0.297498, 0.000000, -0.000001] }, { "keytime": 4807.666016, "scale": [ 0.969984, 0.969984, 0.969984], "translation": [ 0.297498, 0.000000, -0.000000] }, { "keytime": 4832.000000, "scale": [ 0.989001, 0.989001, 0.989001], "translation": [ 0.297499, 0.000000, -0.000000] } ] }, { "boneId": "Bone_011", "keyframes": [ { "keytime": 41.000000, "scale": [ 0.200000, 0.200000, 0.200000] }, { "keytime": 307.666656, "scale": [ 0.200220, 0.200220, 0.200220] }, { "keytime": 341.000000, "scale": [ 0.200287, 0.200287, 0.200287] }, { "keytime": 407.666687, "scale": [ 0.200646, 0.200646, 0.200646] }, { "keytime": 441.000031, "scale": [ 0.200832, 0.200832, 0.200832] }, { "keytime": 507.666718, "scale": [ 0.201191, 0.201191, 0.201191] }, { "keytime": 541.000061, "scale": [ 0.201376, 0.201376, 0.201376] }, { "keytime": 607.666687, "scale": [ 0.202166, 0.202166, 0.202166] }, { "keytime": 641.000000, "scale": [ 0.202572, 0.202572, 0.202572] }, { "keytime": 674.333313, "scale": [ 0.203013, 0.203013, 0.203013] }, { "keytime": 740.999939, "scale": [ 0.204180, 0.204180, 0.204180] }, { "keytime": 774.333252, "scale": [ 0.204917, 0.204917, 0.204917] }, { "keytime": 807.666565, "scale": [ 0.205682, 0.205682, 0.205682] }, { "keytime": 840.999878, "scale": [ 0.206492, 0.206492, 0.206492] }, { "keytime": 874.333191, "scale": [ 0.207490, 0.207490, 0.207490] }, { "keytime": 907.666504, "scale": [ 0.208458, 0.208458, 0.208458] }, { "keytime": 940.999817, "scale": [ 0.209588, 0.209588, 0.209588] }, { "keytime": 974.333130, "scale": [ 0.210814, 0.210814, 0.210814] }, { "keytime": 1007.666443, "scale": [ 0.212058, 0.212058, 0.212058] }, { "keytime": 1040.999756, "scale": [ 0.213482, 0.213482, 0.213482] }, { "keytime": 1074.333130, "scale": [ 0.214949, 0.214949, 0.214949] }, { "keytime": 1107.666504, "scale": [ 0.216549, 0.216549, 0.216549] }, { "keytime": 1140.999878, "scale": [ 0.218213, 0.218213, 0.218213] }, { "keytime": 1174.333252, "scale": [ 0.219985, 0.219985, 0.219985] }, { "keytime": 1207.666626, "scale": [ 0.221888, 0.221888, 0.221888] }, { "keytime": 1241.000000, "scale": [ 0.223848, 0.223848, 0.223848] }, { "keytime": 1274.333374, "scale": [ 0.225926, 0.225926, 0.225926] }, { "keytime": 1307.666748, "scale": [ 0.228063, 0.228063, 0.228063] }, { "keytime": 1341.000122, "scale": [ 0.230322, 0.230322, 0.230322] }, { "keytime": 1407.666870, "scale": [ 0.235044, 0.235044, 0.235044] }, { "keytime": 1441.000244, "scale": [ 0.237636, 0.237636, 0.237636] }, { "keytime": 1474.333618, "scale": [ 0.240208, 0.240208, 0.240208] }, { "keytime": 1507.666992, "scale": [ 0.242826, 0.242826, 0.242826] }, { "keytime": 1541.000366, "scale": [ 0.245678, 0.245678, 0.245678] }, { "keytime": 1574.333740, "scale": [ 0.248446, 0.248446, 0.248446] }, { "keytime": 1607.667114, "scale": [ 0.251347, 0.251347, 0.251348] }, { "keytime": 1641.000488, "scale": [ 0.254386, 0.254386, 0.254386] }, { "keytime": 1674.333862, "scale": [ 0.257374, 0.257374, 0.257374] }, { "keytime": 1707.667236, "scale": [ 0.260487, 0.260487, 0.260488] }, { "keytime": 1741.000610, "scale": [ 0.263695, 0.263695, 0.263695] }, { "keytime": 1774.333984, "scale": [ 0.266993, 0.266993, 0.266993] }, { "keytime": 1807.667358, "scale": [ 0.270519, 0.270519, 0.270519] }, { "keytime": 1841.000732, "scale": [ 0.274419, 0.274419, 0.274419] }, { "keytime": 1874.334106, "scale": [ 0.278462, 0.278462, 0.278462] }, { "keytime": 1907.667480, "scale": [ 0.282845, 0.282845, 0.282845] }, { "keytime": 1941.000854, "scale": [ 0.287625, 0.287625, 0.287625] }, { "keytime": 1974.334229, "scale": [ 0.292524, 0.292524, 0.292524] }, { "keytime": 2007.667603, "scale": [ 0.297676, 0.297676, 0.297676] }, { "keytime": 2041.000977, "scale": [ 0.303255, 0.303255, 0.303255] }, { "keytime": 2074.334473, "scale": [ 0.309011, 0.309011, 0.309011] }, { "keytime": 2107.667725, "scale": [ 0.315017, 0.315017, 0.315017] }, { "keytime": 2141.000977, "scale": [ 0.321468, 0.321468, 0.321468] }, { "keytime": 2174.334229, "scale": [ 0.327982, 0.327982, 0.327982] }, { "keytime": 2207.667480, "scale": [ 0.334749, 0.334749, 0.334749] }, { "keytime": 2241.000732, "scale": [ 0.342056, 0.342056, 0.342056] }, { "keytime": 2274.333984, "scale": [ 0.349398, 0.349398, 0.349398] }, { "keytime": 2307.667236, "scale": [ 0.356979, 0.356979, 0.356979] }, { "keytime": 2374.333740, "scale": [ 0.373102, 0.373102, 0.373102] }, { "keytime": 2407.666992, "scale": [ 0.381470, 0.381470, 0.381470] }, { "keytime": 2441.000244, "scale": [ 0.390323, 0.390323, 0.390323] }, { "keytime": 2474.333496, "scale": [ 0.399141, 0.399141, 0.399141] }, { "keytime": 2507.666748, "scale": [ 0.408173, 0.408173, 0.408173] }, { "keytime": 2541.000000, "scale": [ 0.417703, 0.417703, 0.417703] }, { "keytime": 2574.333252, "scale": [ 0.427227, 0.427227, 0.427227] }, { "keytime": 2607.666504, "scale": [ 0.436945, 0.436945, 0.436945] }, { "keytime": 2640.999756, "scale": [ 0.446850, 0.446850, 0.446850] }, { "keytime": 2674.333008, "scale": [ 0.457249, 0.457249, 0.457249] }, { "keytime": 2707.666260, "scale": [ 0.467524, 0.467524, 0.467524] }, { "keytime": 2740.999512, "scale": [ 0.478019, 0.478019, 0.478019] }, { "keytime": 2774.332764, "scale": [ 0.488991, 0.488991, 0.488992] }, { "keytime": 2807.666016, "scale": [ 0.499793, 0.499793, 0.499793] }, { "keytime": 2840.999268, "scale": [ 0.510732, 0.510732, 0.510732] }, { "keytime": 2874.332520, "scale": [ 0.522145, 0.522145, 0.522145] }, { "keytime": 2907.665771, "scale": [ 0.533449, 0.533449, 0.533449] }, { "keytime": 2940.999023, "scale": [ 0.544755, 0.544755, 0.544755] }, { "keytime": 2974.332275, "scale": [ 0.556524, 0.556524, 0.556524] }, { "keytime": 3040.998779, "scale": [ 0.579621, 0.579621, 0.579621] }, { "keytime": 3074.332031, "scale": [ 0.591712, 0.591712, 0.591712] }, { "keytime": 3140.998535, "scale": [ 0.615195, 0.615195, 0.615195] }, { "keytime": 3174.331787, "scale": [ 0.627292, 0.627292, 0.627292] }, { "keytime": 3240.998291, "scale": [ 0.650775, 0.650775, 0.650775] }, { "keytime": 3274.331543, "scale": [ 0.662872, 0.662872, 0.662872] }, { "keytime": 3340.998047, "scale": [ 0.686354, 0.686354, 0.686354] }, { "keytime": 3374.331299, "scale": [ 0.698451, 0.698451, 0.698451] }, { "keytime": 3407.664551, "scale": [ 0.709952, 0.709953, 0.709953] }, { "keytime": 3440.997803, "scale": [ 0.721451, 0.721451, 0.721451] }, { "keytime": 3474.331055, "scale": [ 0.733165, 0.733165, 0.733165] }, { "keytime": 3540.997559, "scale": [ 0.755621, 0.755621, 0.755621] }, { "keytime": 3574.330811, "scale": [ 0.766936, 0.766936, 0.766936] }, { "keytime": 3607.664062, "scale": [ 0.777765, 0.777765, 0.777765] }, { "keytime": 3640.997314, "scale": [ 0.788442, 0.788442, 0.788442] }, { "keytime": 3674.330566, "scale": [ 0.799269, 0.799269, 0.799269] }, { "keytime": 3707.663818, "scale": [ 0.809599, 0.809599, 0.809599] }, { "keytime": 3740.997070, "scale": [ 0.819685, 0.819685, 0.819685] }, { "keytime": 3774.330322, "scale": [ 0.829872, 0.829872, 0.829872] }, { "keytime": 3807.663574, "scale": [ 0.839549, 0.839549, 0.839549] }, { "keytime": 3840.996826, "scale": [ 0.849016, 0.849016, 0.849016] }, { "keytime": 3874.330078, "scale": [ 0.858532, 0.858532, 0.858532] }, { "keytime": 3907.663330, "scale": [ 0.867461, 0.867462, 0.867462] }, { "keytime": 3940.996582, "scale": [ 0.876154, 0.876154, 0.876154] }, { "keytime": 3974.329834, "scale": [ 0.884854, 0.884854, 0.884854] }, { "keytime": 4007.663086, "scale": [ 0.893045, 0.893045, 0.893045] }, { "keytime": 4040.996338, "scale": [ 0.900972, 0.900972, 0.900972] }, { "keytime": 4074.329590, "scale": [ 0.908787, 0.908787, 0.908787] }, { "keytime": 4107.663086, "scale": [ 0.916094, 0.916094, 0.916094] }, { "keytime": 4140.996094, "scale": [ 0.923131, 0.923131, 0.923131] }, { "keytime": 4174.329590, "scale": [ 0.930091, 0.930091, 0.930091] }, { "keytime": 4207.663086, "scale": [ 0.936558, 0.936558, 0.936558] }, { "keytime": 4240.996582, "scale": [ 0.942652, 0.942652, 0.942652] }, { "keytime": 4274.330078, "scale": [ 0.948635, 0.948635, 0.948635] }, { "keytime": 4307.663574, "scale": [ 0.954146, 0.954146, 0.954146] }, { "keytime": 4340.997070, "scale": [ 0.959369, 0.959369, 0.959369] }, { "keytime": 4374.330566, "scale": [ 0.964436, 0.964436, 0.964436] }, { "keytime": 4407.664062, "scale": [ 0.968962, 0.968962, 0.968962] }, { "keytime": 4440.997559, "scale": [ 0.973196, 0.973196, 0.973196] }, { "keytime": 4474.331055, "scale": [ 0.977249, 0.977249, 0.977249] }, { "keytime": 4507.664551, "scale": [ 0.980884, 0.980884, 0.980884] }, { "keytime": 4540.998047, "scale": [ 0.984213, 0.984213, 0.984213] }, { "keytime": 4574.331543, "scale": [ 0.987245, 0.987245, 0.987245] }, { "keytime": 4607.665039, "scale": [ 0.989883, 0.989883, 0.989883] }, { "keytime": 4640.998535, "scale": [ 0.992229, 0.992229, 0.992229] }, { "keytime": 4674.332031, "scale": [ 0.994336, 0.994336, 0.994336] }, { "keytime": 4707.665527, "scale": [ 0.996079, 0.996079, 0.996079] }, { "keytime": 4740.999023, "scale": [ 0.997438, 0.997438, 0.997438] }, { "keytime": 4774.332520, "scale": [ 0.998539, 0.998539, 0.998539] }, { "keytime": 4807.666016, "scale": [ 0.999312, 0.999313, 0.999313] }, { "keytime": 4832.000000, "scale": [ 0.999748, 0.999748, 0.999748] } ] }, { "boneId": "Bone_013", "keyframes": [ { "keytime": 41.000000, "scale": [ 0.560000, 0.560000, 0.560000], "translation": [ 0.512197, 0.000000, 0.000002] }, { "keytime": 74.333328, "scale": [ 0.559886, 0.559886, 0.559886], "translation": [ 0.512197, 0.000000, 0.000002] }, { "keytime": 107.666664, "scale": [ 0.559605, 0.559605, 0.559605], "translation": [ 0.512197, 0.000000, 0.000002] }, { "keytime": 141.000000, "scale": [ 0.559137, 0.559138, 0.559137], "translation": [ 0.512197, 0.000000, 0.000002] }, { "keytime": 174.333328, "scale": [ 0.558511, 0.558511, 0.558511], "translation": [ 0.512197, 0.000000, 0.000002] }, { "keytime": 207.666656, "scale": [ 0.557710, 0.557710, 0.557710], "translation": [ 0.512197, 0.000000, 0.000002] }, { "keytime": 240.999985, "scale": [ 0.556682, 0.556682, 0.556682], "translation": [ 0.512197, 0.000000, 0.000002] }, { "keytime": 274.333313, "scale": [ 0.555445, 0.555445, 0.555445], "translation": [ 0.512197, 0.000000, 0.000002] }, { "keytime": 307.666656, "scale": [ 0.554068, 0.554069, 0.554069], "translation": [ 0.512197, 0.000000, 0.000002] }, { "keytime": 341.000000, "scale": [ 0.552468, 0.552468, 0.552468], "translation": [ 0.512197, 0.000000, 0.000002] }, { "keytime": 374.333344, "scale": [ 0.550739, 0.550739, 0.550739], "translation": [ 0.512197, 0.000000, 0.000002] }, { "keytime": 407.666687, "scale": [ 0.548781, 0.548781, 0.548781], "translation": [ 0.512197, 0.000000, 0.000002] }, { "keytime": 441.000031, "scale": [ 0.546585, 0.546585, 0.546585], "translation": [ 0.512197, 0.000000, 0.000002] }, { "keytime": 474.333374, "scale": [ 0.544279, 0.544279, 0.544278], "translation": [ 0.512197, 0.000000, 0.000002] }, { "keytime": 507.666718, "scale": [ 0.541802, 0.541803, 0.541802], "translation": [ 0.512197, 0.000000, 0.000002] }, { "keytime": 541.000061, "scale": [ 0.539070, 0.539070, 0.539070], "translation": [ 0.512197, 0.000000, 0.000002] }, { "keytime": 574.333374, "scale": [ 0.536191, 0.536191, 0.536191], "translation": [ 0.512197, 0.000000, 0.000002] }, { "keytime": 607.666687, "scale": [ 0.533145, 0.533145, 0.533145], "translation": [ 0.512197, 0.000000, 0.000002] }, { "keytime": 641.000000, "scale": [ 0.529834, 0.529834, 0.529834], "translation": [ 0.512197, 0.000000, 0.000002] }, { "keytime": 674.333313, "scale": [ 0.526454, 0.526454, 0.526454], "translation": [ 0.512197, 0.000000, 0.000002] }, { "keytime": 707.666626, "scale": [ 0.522908, 0.522908, 0.522908], "translation": [ 0.512197, 0.000000, 0.000002] }, { "keytime": 740.999939, "scale": [ 0.519150, 0.519150, 0.519150], "translation": [ 0.512197, 0.000000, 0.000002] }, { "keytime": 774.333252, "scale": [ 0.515116, 0.515116, 0.515116], "translation": [ 0.512197, 0.000000, 0.000002] }, { "keytime": 807.666565, "scale": [ 0.511042, 0.511042, 0.511042], "translation": [ 0.512197, 0.000000, 0.000002] }, { "keytime": 840.999878, "scale": [ 0.506817, 0.506817, 0.506817], "translation": [ 0.512197, 0.000000, 0.000002] }, { "keytime": 874.333191, "scale": [ 0.502303, 0.502303, 0.502303], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 907.666504, "scale": [ 0.497728, 0.497728, 0.497728], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 940.999817, "scale": [ 0.493014, 0.493014, 0.493014], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 974.333130, "scale": [ 0.488013, 0.488013, 0.488013], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 1007.666443, "scale": [ 0.483025, 0.483025, 0.483025], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 1040.999756, "scale": [ 0.477904, 0.477904, 0.477904], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 1074.333130, "scale": [ 0.472461, 0.472461, 0.472461], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 1107.666504, "scale": [ 0.467003, 0.467003, 0.467003], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 1140.999878, "scale": [ 0.461484, 0.461484, 0.461484], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 1174.333252, "scale": [ 0.455732, 0.455732, 0.455732], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 1207.666626, "scale": [ 0.449939, 0.449939, 0.449939], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 1241.000000, "scale": [ 0.443970, 0.443970, 0.443970], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 1274.333374, "scale": [ 0.438004, 0.438004, 0.438004], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 1307.666748, "scale": [ 0.431979, 0.431980, 0.431979], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 1341.000122, "scale": [ 0.425717, 0.425717, 0.425717], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 1407.666870, "scale": [ 0.413227, 0.413227, 0.413227], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 1441.000244, "scale": [ 0.406793, 0.406793, 0.406793], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 1474.333618, "scale": [ 0.400458, 0.400458, 0.400458], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 1507.666992, "scale": [ 0.394031, 0.394031, 0.394031], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 1541.000366, "scale": [ 0.387409, 0.387409, 0.387409], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 1607.667114, "scale": [ 0.374555, 0.374555, 0.374555], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 1641.000488, "scale": [ 0.367934, 0.367934, 0.367934], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 1707.667236, "scale": [ 0.355080, 0.355080, 0.355080], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 1741.000610, "scale": [ 0.348549, 0.348549, 0.348549], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 1807.667358, "scale": [ 0.335876, 0.335876, 0.335876], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 1841.000732, "scale": [ 0.329347, 0.329348, 0.329347], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 1874.334106, "scale": [ 0.323011, 0.323011, 0.323011], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 1907.667480, "scale": [ 0.316886, 0.316886, 0.316886], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 1941.000854, "scale": [ 0.310577, 0.310577, 0.310577], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 1974.334229, "scale": [ 0.304557, 0.304557, 0.304557], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 2007.667603, "scale": [ 0.298643, 0.298643, 0.298643], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 2041.000977, "scale": [ 0.292549, 0.292549, 0.292549], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 2107.667725, "scale": [ 0.281227, 0.281227, 0.281227], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 2141.000977, "scale": [ 0.275544, 0.275544, 0.275544], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 2207.667480, "scale": [ 0.264811, 0.264811, 0.264811], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 2241.000732, "scale": [ 0.259529, 0.259529, 0.259529], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 2274.333984, "scale": [ 0.254538, 0.254538, 0.254538], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 2307.667236, "scale": [ 0.249678, 0.249678, 0.249678], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 2341.000488, "scale": [ 0.244816, 0.244816, 0.244816], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 2374.333740, "scale": [ 0.240239, 0.240239, 0.240239], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 2407.666992, "scale": [ 0.235855, 0.235855, 0.235855], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 2441.000244, "scale": [ 0.231494, 0.231494, 0.231494], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 2474.333496, "scale": [ 0.227416, 0.227416, 0.227416], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 2507.666748, "scale": [ 0.223491, 0.223491, 0.223491], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 2541.000000, "scale": [ 0.219615, 0.219615, 0.219615], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 2574.333252, "scale": [ 0.216069, 0.216069, 0.216069], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 2607.666504, "scale": [ 0.212684, 0.212684, 0.212684], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 2640.999756, "scale": [ 0.209463, 0.209463, 0.209463], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 2674.333008, "scale": [ 0.206319, 0.206319, 0.206319], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 2707.666260, "scale": [ 0.203439, 0.203439, 0.203439], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 2740.999512, "scale": [ 0.200783, 0.200783, 0.200783], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 2774.332764, "scale": [ 0.198222, 0.198222, 0.198222], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 2807.666016, "scale": [ 0.195910, 0.195910, 0.195910], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 2840.999268, "scale": [ 0.193769, 0.193770, 0.193769], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 2874.332520, "scale": [ 0.191749, 0.191749, 0.191749], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 2907.665771, "scale": [ 0.190018, 0.190018, 0.190018], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 2940.999023, "scale": [ 0.188458, 0.188458, 0.188458], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 2974.332275, "scale": [ 0.187031, 0.187031, 0.187031], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 3007.665527, "scale": [ 0.185821, 0.185821, 0.185821], "translation": [ 0.512197, 0.000000, 0.000000] }, { "keytime": 3040.998779, "scale": [ 0.184789, 0.184789, 0.184789], "translation": [ 0.512197, 0.000000, 0.000000] }, { "keytime": 3074.332031, "scale": [ 0.183956, 0.183956, 0.183956], "translation": [ 0.512197, 0.000000, 0.000000] }, { "keytime": 3107.665283, "scale": [ 0.183325, 0.183325, 0.183325], "translation": [ 0.512197, 0.000000, 0.000000] }, { "keytime": 3140.998535, "scale": [ 0.182863, 0.182863, 0.182863], "translation": [ 0.512197, 0.000000, 0.000000] }, { "keytime": 3174.331787, "scale": [ 0.182567, 0.182567, 0.182567], "translation": [ 0.512197, 0.000000, 0.000000] }, { "keytime": 3207.665039, "scale": [ 0.182453, 0.182453, 0.182453], "translation": [ 0.512197, 0.000000, 0.000000] }, { "keytime": 3240.998291, "scale": [ 0.183322, 0.183322, 0.183322], "translation": [ 0.512197, 0.000000, 0.000000] }, { "keytime": 3274.331543, "scale": [ 0.185576, 0.185576, 0.185576], "translation": [ 0.512197, 0.000000, 0.000000] }, { "keytime": 3307.664795, "scale": [ 0.189132, 0.189132, 0.189132], "translation": [ 0.512197, 0.000000, 0.000000] }, { "keytime": 3340.998047, "scale": [ 0.194021, 0.194021, 0.194021], "translation": [ 0.512197, 0.000000, 0.000000] }, { "keytime": 3374.331299, "scale": [ 0.200512, 0.200512, 0.200512], "translation": [ 0.512197, 0.000000, 0.000000] }, { "keytime": 3407.664551, "scale": [ 0.208608, 0.208608, 0.208608], "translation": [ 0.512197, 0.000000, 0.000000] }, { "keytime": 3440.997803, "scale": [ 0.218037, 0.218037, 0.218037], "translation": [ 0.512197, 0.000000, 0.000000] }, { "keytime": 3474.331055, "scale": [ 0.229141, 0.229141, 0.229141], "translation": [ 0.512197, 0.000000, 0.000000] }, { "keytime": 3507.664307, "scale": [ 0.241255, 0.241255, 0.241255], "translation": [ 0.512197, 0.000000, 0.000000] }, { "keytime": 3540.997559, "scale": [ 0.254714, 0.254714, 0.254714], "translation": [ 0.512197, 0.000000, 0.000000] }, { "keytime": 3574.330811, "scale": [ 0.270290, 0.270290, 0.270290], "translation": [ 0.512197, 0.000000, 0.000000] }, { "keytime": 3607.664062, "scale": [ 0.286673, 0.286673, 0.286673], "translation": [ 0.512197, 0.000000, 0.000000] }, { "keytime": 3640.997314, "scale": [ 0.304235, 0.304235, 0.304235], "translation": [ 0.512197, 0.000000, 0.000000] }, { "keytime": 3674.330566, "scale": [ 0.323541, 0.323541, 0.323541], "translation": [ 0.512197, 0.000000, 0.000000] }, { "keytime": 3707.663818, "scale": [ 0.343411, 0.343411, 0.343411], "translation": [ 0.512197, 0.000000, 0.000000] }, { "keytime": 3740.997070, "scale": [ 0.364626, 0.364626, 0.364626], "translation": [ 0.512197, 0.000000, 0.000000] }, { "keytime": 3774.330322, "scale": [ 0.387444, 0.387445, 0.387444], "translation": [ 0.512197, 0.000000, 0.000000] }, { "keytime": 3807.663574, "scale": [ 0.410471, 0.410471, 0.410471], "translation": [ 0.512197, -0.000000, 0.000000] }, { "keytime": 3840.996826, "scale": [ 0.434278, 0.434278, 0.434278], "translation": [ 0.512197, -0.000000, 0.000000] }, { "keytime": 3874.330078, "scale": [ 0.459566, 0.459566, 0.459566], "translation": [ 0.512197, -0.000000, 0.000000] }, { "keytime": 3907.663330, "scale": [ 0.484880, 0.484880, 0.484881], "translation": [ 0.512197, -0.000000, 0.000000] }, { "keytime": 3940.996582, "scale": [ 0.510635, 0.510635, 0.510635], "translation": [ 0.512197, -0.000000, 0.000000] }, { "keytime": 3974.329834, "scale": [ 0.537536, 0.537536, 0.537536], "translation": [ 0.512197, -0.000000, 0.000000] }, { "keytime": 4007.663086, "scale": [ 0.563901, 0.563901, 0.563901], "translation": [ 0.512197, -0.000000, 0.000000] }, { "keytime": 4040.996338, "scale": [ 0.590422, 0.590422, 0.590422], "translation": [ 0.512197, -0.000000, 0.000000] }, { "keytime": 4074.329590, "scale": [ 0.617746, 0.617747, 0.617746], "translation": [ 0.512197, -0.000000, -0.000000] }, { "keytime": 4107.663086, "scale": [ 0.644118, 0.644118, 0.644118], "translation": [ 0.512197, -0.000000, -0.000000] }, { "keytime": 4140.996094, "scale": [ 0.670246, 0.670246, 0.670246], "translation": [ 0.512197, -0.000000, -0.000000] }, { "keytime": 4174.329590, "scale": [ 0.696803, 0.696804, 0.696804], "translation": [ 0.512197, -0.000000, -0.000000] }, { "keytime": 4207.663086, "scale": [ 0.722126, 0.722126, 0.722126], "translation": [ 0.512197, -0.000000, -0.000000] }, { "keytime": 4240.996582, "scale": [ 0.746686, 0.746686, 0.746686], "translation": [ 0.512197, -0.000000, -0.000000] }, { "keytime": 4274.330078, "scale": [ 0.771265, 0.771265, 0.771265], "translation": [ 0.512197, -0.000000, -0.000000] }, { "keytime": 4307.663574, "scale": [ 0.794325, 0.794325, 0.794325], "translation": [ 0.512197, -0.000000, -0.000000] }, { "keytime": 4340.997070, "scale": [ 0.816538, 0.816538, 0.816538], "translation": [ 0.512197, -0.000000, -0.000000] }, { "keytime": 4374.330566, "scale": [ 0.838425, 0.838425, 0.838425], "translation": [ 0.512197, -0.000000, -0.000000] }, { "keytime": 4407.664062, "scale": [ 0.858308, 0.858309, 0.858308], "translation": [ 0.512197, -0.000000, -0.000000] }, { "keytime": 4440.997559, "scale": [ 0.877101, 0.877101, 0.877101], "translation": [ 0.512197, -0.000000, -0.000000] }, { "keytime": 4474.331055, "scale": [ 0.895269, 0.895269, 0.895269], "translation": [ 0.512197, -0.000000, -0.000000] }, { "keytime": 4507.664551, "scale": [ 0.911702, 0.911702, 0.911702], "translation": [ 0.512197, -0.000000, -0.000000] }, { "keytime": 4540.998047, "scale": [ 0.926869, 0.926869, 0.926869], "translation": [ 0.512197, -0.000000, -0.000000] }, { "keytime": 4574.331543, "scale": [ 0.940788, 0.940789, 0.940789], "translation": [ 0.512197, -0.000000, -0.000000] }, { "keytime": 4607.665039, "scale": [ 0.952955, 0.952955, 0.952955], "translation": [ 0.512197, -0.000000, -0.000000] }, { "keytime": 4640.998535, "scale": [ 0.963813, 0.963814, 0.963813], "translation": [ 0.512197, -0.000000, -0.000000] }, { "keytime": 4674.332031, "scale": [ 0.973597, 0.973597, 0.973597], "translation": [ 0.512197, -0.000000, -0.000000] }, { "keytime": 4707.665527, "scale": [ 0.981712, 0.981712, 0.981712], "translation": [ 0.512197, -0.000000, -0.000000] }, { "keytime": 4740.999023, "scale": [ 0.988049, 0.988049, 0.988049], "translation": [ 0.512197, -0.000000, -0.000000] }, { "keytime": 4774.332520, "scale": [ 0.993184, 0.993184, 0.993184], "translation": [ 0.512197, -0.000000, -0.000000] }, { "keytime": 4807.666016, "scale": [ 0.996794, 0.996794, 0.996794], "translation": [ 0.512197, -0.000000, -0.000000] }, { "keytime": 4832.000000, "scale": [ 0.998824, 0.998824, 0.998824], "translation": [ 0.512197, -0.000000, -0.000000] } ] }, { "boneId": "Bone_014", "keyframes": [ { "keytime": 41.000000, "scale": [ 0.659330, 0.659330, 0.659330], "translation": [ 0.448483, 0.000000, 0.000001] }, { "keytime": 74.333328, "scale": [ 0.659230, 0.659230, 0.659230], "translation": [ 0.448483, 0.000000, 0.000001] }, { "keytime": 107.666664, "scale": [ 0.658983, 0.658983, 0.658983], "translation": [ 0.448483, 0.000000, 0.000001] }, { "keytime": 141.000000, "scale": [ 0.658573, 0.658573, 0.658573], "translation": [ 0.448483, 0.000000, 0.000001] }, { "keytime": 174.333328, "scale": [ 0.658023, 0.658023, 0.658023], "translation": [ 0.448483, 0.000000, 0.000001] }, { "keytime": 207.666656, "scale": [ 0.657320, 0.657320, 0.657320], "translation": [ 0.448483, 0.000000, 0.000001] }, { "keytime": 240.999985, "scale": [ 0.656419, 0.656418, 0.656419], "translation": [ 0.448483, 0.000000, 0.000001] }, { "keytime": 274.333313, "scale": [ 0.655334, 0.655333, 0.655333], "translation": [ 0.448483, 0.000000, 0.000001] }, { "keytime": 307.666656, "scale": [ 0.654126, 0.654126, 0.654126], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 341.000000, "scale": [ 0.652722, 0.652721, 0.652722], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 374.333344, "scale": [ 0.651205, 0.651205, 0.651205], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 407.666687, "scale": [ 0.649486, 0.649486, 0.649486], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 441.000031, "scale": [ 0.647558, 0.647558, 0.647558], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 474.333374, "scale": [ 0.645532, 0.645532, 0.645532], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 507.666718, "scale": [ 0.643356, 0.643356, 0.643356], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 541.000061, "scale": [ 0.640954, 0.640953, 0.640954], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 574.333374, "scale": [ 0.638419, 0.638419, 0.638419], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 607.666687, "scale": [ 0.635736, 0.635736, 0.635736], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 641.000000, "scale": [ 0.632817, 0.632817, 0.632817], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 674.333313, "scale": [ 0.629833, 0.629833, 0.629833], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 707.666626, "scale": [ 0.626698, 0.626698, 0.626698], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 740.999939, "scale": [ 0.623371, 0.623371, 0.623371], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 774.333252, "scale": [ 0.619793, 0.619793, 0.619793], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 807.666565, "scale": [ 0.616174, 0.616174, 0.616175], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 840.999878, "scale": [ 0.612415, 0.612415, 0.612415], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 874.333191, "scale": [ 0.608389, 0.608389, 0.608389], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 907.666504, "scale": [ 0.604298, 0.604298, 0.604298], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 940.999817, "scale": [ 0.600071, 0.600071, 0.600071], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 1007.666443, "scale": [ 0.591081, 0.591081, 0.591081], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 1040.999756, "scale": [ 0.586451, 0.586451, 0.586451], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 1074.333130, "scale": [ 0.581511, 0.581511, 0.581511], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 1107.666504, "scale": [ 0.576589, 0.576589, 0.576589], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 1140.999878, "scale": [ 0.571547, 0.571547, 0.571547], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 1174.333252, "scale": [ 0.566211, 0.566211, 0.566211], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 1207.666626, "scale": [ 0.560857, 0.560857, 0.560857], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 1241.000000, "scale": [ 0.555340, 0.555340, 0.555340], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 1274.333374, "scale": [ 0.549774, 0.549774, 0.549774], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 1307.666748, "scale": [ 0.544136, 0.544136, 0.544136], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 1341.000122, "scale": [ 0.538262, 0.538262, 0.538262], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 1407.666870, "scale": [ 0.526474, 0.526474, 0.526474], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 1441.000244, "scale": [ 0.520231, 0.520230, 0.520231], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 1474.333618, "scale": [ 0.514111, 0.514111, 0.514111], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 1507.666992, "scale": [ 0.507947, 0.507947, 0.507947], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 1541.000366, "scale": [ 0.501444, 0.501444, 0.501444], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 1574.333740, "scale": [ 0.495132, 0.495132, 0.495132], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 1607.667114, "scale": [ 0.488681, 0.488681, 0.488681], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 1641.000488, "scale": [ 0.481984, 0.481984, 0.481984], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 1707.667236, "scale": [ 0.468984, 0.468984, 0.468984], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 1741.000610, "scale": [ 0.462121, 0.462121, 0.462121], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 1807.667358, "scale": [ 0.448794, 0.448794, 0.448794], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 1841.000732, "scale": [ 0.441928, 0.441928, 0.441928], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 1907.667480, "scale": [ 0.428601, 0.428601, 0.428601], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 1941.000854, "scale": [ 0.421735, 0.421735, 0.421735], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 2007.667603, "scale": [ 0.408408, 0.408408, 0.408408], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 2041.000977, "scale": [ 0.401543, 0.401543, 0.401542], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 2107.667725, "scale": [ 0.388215, 0.388215, 0.388215], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 2141.000977, "scale": [ 0.381350, 0.381350, 0.381350], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 2174.334229, "scale": [ 0.374742, 0.374742, 0.374742], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 2207.667480, "scale": [ 0.368311, 0.368311, 0.368311], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 2241.000732, "scale": [ 0.361685, 0.361685, 0.361685], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 2274.333984, "scale": [ 0.355254, 0.355254, 0.355254], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 2307.667236, "scale": [ 0.348926, 0.348926, 0.348926], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 2341.000488, "scale": [ 0.342517, 0.342517, 0.342517], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 2374.333740, "scale": [ 0.336297, 0.336297, 0.336297], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 2407.666992, "scale": [ 0.330284, 0.330284, 0.330284], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 2441.000244, "scale": [ 0.324091, 0.324091, 0.324091], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 2474.333496, "scale": [ 0.318200, 0.318200, 0.318200], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 2507.666748, "scale": [ 0.312430, 0.312430, 0.312430], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 2541.000000, "scale": [ 0.306486, 0.306486, 0.306486], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 2607.666504, "scale": [ 0.295487, 0.295487, 0.295487], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 2674.333008, "scale": [ 0.284768, 0.284768, 0.284768], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 2707.666260, "scale": [ 0.279565, 0.279565, 0.279565], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 2740.999512, "scale": [ 0.274595, 0.274595, 0.274595], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 2774.332764, "scale": [ 0.269602, 0.269602, 0.269602], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 2807.666016, "scale": [ 0.264885, 0.264885, 0.264885], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 2874.332520, "scale": [ 0.255703, 0.255703, 0.255703], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 2907.665771, "scale": [ 0.251425, 0.251425, 0.251425], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 2940.999023, "scale": [ 0.247282, 0.247282, 0.247282], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 2974.332275, "scale": [ 0.243157, 0.243157, 0.243157], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 3007.665527, "scale": [ 0.239294, 0.239294, 0.239294], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 3040.998779, "scale": [ 0.235576, 0.235576, 0.235576], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 3074.332031, "scale": [ 0.231938, 0.231938, 0.231938], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 3107.665283, "scale": [ 0.228555, 0.228555, 0.228555], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 3140.998535, "scale": [ 0.225318, 0.225317, 0.225318], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 3174.331787, "scale": [ 0.222136, 0.222136, 0.222136], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 3207.665039, "scale": [ 0.219200, 0.219200, 0.219200], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 3240.998291, "scale": [ 0.216461, 0.216460, 0.216461], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 3274.331543, "scale": [ 0.213792, 0.213792, 0.213792], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 3307.664795, "scale": [ 0.211356, 0.211356, 0.211356], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 3340.998047, "scale": [ 0.209069, 0.209069, 0.209069], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 3374.331299, "scale": [ 0.206876, 0.206876, 0.206876], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 3407.664551, "scale": [ 0.204949, 0.204949, 0.204949], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 3440.997803, "scale": [ 0.203172, 0.203172, 0.203172], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 3474.331055, "scale": [ 0.201500, 0.201500, 0.201500], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 3507.664307, "scale": [ 0.200031, 0.200031, 0.200031], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 3540.997559, "scale": [ 0.198718, 0.198718, 0.198718], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 3574.330811, "scale": [ 0.197569, 0.197569, 0.197569], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 3607.664062, "scale": [ 0.196610, 0.196610, 0.196610], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 3640.997314, "scale": [ 0.195801, 0.195801, 0.195801], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 3674.330566, "scale": [ 0.195126, 0.195126, 0.195126], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 3707.663818, "scale": [ 0.194625, 0.194625, 0.194625], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 3740.997070, "scale": [ 0.194321, 0.194321, 0.194321], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 3774.330322, "scale": [ 0.194162, 0.194162, 0.194162], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 3807.663574, "scale": [ 0.195118, 0.195118, 0.195118], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 3840.996826, "scale": [ 0.198129, 0.198129, 0.198129], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 3874.330078, "scale": [ 0.204594, 0.204594, 0.204594], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 3907.663330, "scale": [ 0.215059, 0.215059, 0.215059], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 3940.996582, "scale": [ 0.228636, 0.228636, 0.228636], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 3974.329834, "scale": [ 0.245867, 0.245867, 0.245867], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 4007.663086, "scale": [ 0.265681, 0.265681, 0.265681], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 4040.996338, "scale": [ 0.288580, 0.288580, 0.288580], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 4074.329590, "scale": [ 0.315977, 0.315977, 0.315977], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 4107.663086, "scale": [ 0.345264, 0.345264, 0.345264], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 4140.996094, "scale": [ 0.376949, 0.376948, 0.376949], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 4174.329590, "scale": [ 0.411915, 0.411915, 0.411915], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 4207.663086, "scale": [ 0.447864, 0.447864, 0.447864], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 4240.996582, "scale": [ 0.485831, 0.485831, 0.485831], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 4274.330078, "scale": [ 0.526051, 0.526051, 0.526051], "translation": [ 0.448484, 0.000000, -0.000000] }, { "keytime": 4307.663574, "scale": [ 0.565828, 0.565828, 0.565828], "translation": [ 0.448484, 0.000000, -0.000000] }, { "keytime": 4340.997070, "scale": [ 0.605977, 0.605977, 0.605977], "translation": [ 0.448484, 0.000000, -0.000000] }, { "keytime": 4374.330566, "scale": [ 0.647343, 0.647343, 0.647343], "translation": [ 0.448484, 0.000000, -0.000000] }, { "keytime": 4407.664062, "scale": [ 0.686777, 0.686777, 0.686777], "translation": [ 0.448484, 0.000000, -0.000000] }, { "keytime": 4440.997559, "scale": [ 0.725172, 0.725172, 0.725172], "translation": [ 0.448484, 0.000000, -0.000000] }, { "keytime": 4474.331055, "scale": [ 0.763313, 0.763313, 0.763313], "translation": [ 0.448484, 0.000000, -0.000000] }, { "keytime": 4507.664551, "scale": [ 0.798651, 0.798651, 0.798651], "translation": [ 0.448484, 0.000000, -0.000000] }, { "keytime": 4540.998047, "scale": [ 0.831971, 0.831970, 0.831971], "translation": [ 0.448484, 0.000000, -0.000000] }, { "keytime": 4574.331543, "scale": [ 0.863187, 0.863187, 0.863187], "translation": [ 0.448484, 0.000000, -0.000000] }, { "keytime": 4607.665039, "scale": [ 0.890811, 0.890810, 0.890811], "translation": [ 0.448484, 0.000000, -0.000000] }, { "keytime": 4640.998535, "scale": [ 0.915708, 0.915708, 0.915708], "translation": [ 0.448484, 0.000000, -0.000000] }, { "keytime": 4674.332031, "scale": [ 0.938327, 0.938326, 0.938327], "translation": [ 0.448484, 0.000000, -0.000000] }, { "keytime": 4707.665527, "scale": [ 0.957208, 0.957208, 0.957208], "translation": [ 0.448484, 0.000000, -0.000000] }, { "keytime": 4740.999023, "scale": [ 0.972020, 0.972020, 0.972020], "translation": [ 0.448484, 0.000000, -0.000000] }, { "keytime": 4774.332520, "scale": [ 0.984040, 0.984040, 0.984040], "translation": [ 0.448484, 0.000000, -0.000000] }, { "keytime": 4807.666016, "scale": [ 0.992495, 0.992495, 0.992495], "translation": [ 0.448484, 0.000000, -0.000000] }, { "keytime": 4832.000000, "scale": [ 0.997250, 0.997250, 0.997250], "translation": [ 0.448484, 0.000000, -0.000000] } ] }, { "boneId": "Bone_025", "keyframes": [ { "keytime": 41.000000, "scale": [ 0.610000, 0.610000, 0.610000], "translation": [ 0.333668, -0.000000, 0.000002] }, { "keytime": 107.666664, "scale": [ 0.609734, 0.609734, 0.609734], "translation": [ 0.333672, -0.000000, 0.000004] }, { "keytime": 141.000000, "scale": [ 0.609464, 0.609464, 0.609464], "translation": [ 0.333675, -0.000000, 0.000005] }, { "keytime": 207.666656, "scale": [ 0.608674, 0.608674, 0.608674], "translation": [ 0.333679, -0.000000, 0.000007] }, { "keytime": 240.999985, "scale": [ 0.608029, 0.608029, 0.608029], "translation": [ 0.333682, -0.000000, 0.000008] }, { "keytime": 274.333313, "scale": [ 0.607360, 0.607360, 0.607360], "translation": [ 0.333684, -0.000000, 0.000009] }, { "keytime": 307.666656, "scale": [ 0.606590, 0.606590, 0.606590], "translation": [ 0.333686, -0.000000, 0.000010] }, { "keytime": 341.000000, "scale": [ 0.605665, 0.605665, 0.605665], "translation": [ 0.333689, -0.000000, 0.000011] }, { "keytime": 374.333344, "scale": [ 0.604768, 0.604768, 0.604768], "translation": [ 0.333691, -0.000000, 0.000012] }, { "keytime": 407.666687, "scale": [ 0.603632, 0.603632, 0.603631], "translation": [ 0.333693, -0.000000, 0.000012] }, { "keytime": 441.000031, "scale": [ 0.602459, 0.602459, 0.602459], "translation": [ 0.333695, -0.000000, 0.000013] }, { "keytime": 474.333374, "scale": [ 0.601204, 0.601205, 0.601205], "translation": [ 0.333698, -0.000000, 0.000014] }, { "keytime": 507.666718, "scale": [ 0.599832, 0.599832, 0.599832], "translation": [ 0.333700, -0.000000, 0.000015] }, { "keytime": 541.000061, "scale": [ 0.598418, 0.598418, 0.598419], "translation": [ 0.333702, -0.000000, 0.000016] }, { "keytime": 607.666687, "scale": [ 0.595221, 0.595221, 0.595221], "translation": [ 0.333707, -0.000000, 0.000018] }, { "keytime": 641.000000, "scale": [ 0.593462, 0.593462, 0.593462], "translation": [ 0.333709, -0.000000, 0.000019] }, { "keytime": 707.666626, "scale": [ 0.589824, 0.589824, 0.589824], "translation": [ 0.333714, -0.000000, 0.000021] }, { "keytime": 740.999939, "scale": [ 0.587797, 0.587797, 0.587797], "translation": [ 0.333716, -0.000000, 0.000022] }, { "keytime": 774.333252, "scale": [ 0.585704, 0.585704, 0.585704], "translation": [ 0.333718, -0.000000, 0.000023] }, { "keytime": 807.666565, "scale": [ 0.583573, 0.583573, 0.583573], "translation": [ 0.333721, -0.000000, 0.000024] }, { "keytime": 840.999878, "scale": [ 0.581335, 0.581335, 0.581335], "translation": [ 0.333723, -0.000000, 0.000024] }, { "keytime": 874.333191, "scale": [ 0.579030, 0.579030, 0.579030], "translation": [ 0.333725, -0.000000, 0.000025] }, { "keytime": 907.666504, "scale": [ 0.576597, 0.576597, 0.576597], "translation": [ 0.333727, -0.000000, 0.000026] }, { "keytime": 940.999817, "scale": [ 0.574161, 0.574161, 0.574161], "translation": [ 0.333730, -0.000000, 0.000027] }, { "keytime": 974.333130, "scale": [ 0.571556, 0.571557, 0.571557], "translation": [ 0.333732, -0.000000, 0.000028] }, { "keytime": 1040.999756, "scale": [ 0.566302, 0.566302, 0.566302], "translation": [ 0.333737, -0.000000, 0.000030] }, { "keytime": 1074.333130, "scale": [ 0.563412, 0.563412, 0.563412], "translation": [ 0.333739, -0.000000, 0.000031] }, { "keytime": 1107.666504, "scale": [ 0.560600, 0.560600, 0.560600], "translation": [ 0.333741, -0.000000, 0.000032] }, { "keytime": 1140.999878, "scale": [ 0.557705, 0.557706, 0.557705], "translation": [ 0.333744, -0.000000, 0.000033] }, { "keytime": 1174.333252, "scale": [ 0.554627, 0.554627, 0.554627], "translation": [ 0.333746, -0.000000, 0.000034] }, { "keytime": 1207.666626, "scale": [ 0.551639, 0.551639, 0.551639], "translation": [ 0.333748, -0.000000, 0.000035] }, { "keytime": 1241.000000, "scale": [ 0.548390, 0.548390, 0.548390], "translation": [ 0.333750, -0.000000, 0.000036] }, { "keytime": 1274.333374, "scale": [ 0.545233, 0.545233, 0.545233], "translation": [ 0.333753, -0.000000, 0.000037] }, { "keytime": 1307.666748, "scale": [ 0.541998, 0.541998, 0.541998], "translation": [ 0.333755, -0.000000, 0.000037] }, { "keytime": 1341.000122, "scale": [ 0.538579, 0.538579, 0.538579], "translation": [ 0.333757, -0.000000, 0.000038] }, { "keytime": 1374.333496, "scale": [ 0.535260, 0.535260, 0.535260], "translation": [ 0.333760, -0.000000, 0.000039] }, { "keytime": 1407.666870, "scale": [ 0.531752, 0.531753, 0.531753], "translation": [ 0.333762, -0.000000, 0.000040] }, { "keytime": 1441.000244, "scale": [ 0.528137, 0.528137, 0.528137], "translation": [ 0.333764, -0.000000, 0.000041] }, { "keytime": 1474.333618, "scale": [ 0.524627, 0.524627, 0.524628], "translation": [ 0.333766, -0.000000, 0.000042] }, { "keytime": 1507.666992, "scale": [ 0.521069, 0.521069, 0.521069], "translation": [ 0.333769, -0.000000, 0.000043] }, { "keytime": 1541.000366, "scale": [ 0.517233, 0.517233, 0.517233], "translation": [ 0.333771, -0.000000, 0.000044] }, { "keytime": 1607.667114, "scale": [ 0.509789, 0.509789, 0.509789], "translation": [ 0.333776, -0.000000, 0.000046] }, { "keytime": 1641.000488, "scale": [ 0.505855, 0.505855, 0.505855], "translation": [ 0.333778, -0.000000, 0.000047] }, { "keytime": 1707.667236, "scale": [ 0.498021, 0.498021, 0.498021], "translation": [ 0.333783, -0.000000, 0.000049] }, { "keytime": 1741.000610, "scale": [ 0.493985, 0.493985, 0.493985], "translation": [ 0.333785, -0.000000, 0.000049] }, { "keytime": 1774.333984, "scale": [ 0.489937, 0.489937, 0.489937], "translation": [ 0.333787, -0.000000, 0.000050] }, { "keytime": 1807.667358, "scale": [ 0.485844, 0.485844, 0.485844], "translation": [ 0.333789, -0.000000, 0.000051] }, { "keytime": 1841.000732, "scale": [ 0.481627, 0.481627, 0.481627], "translation": [ 0.333792, -0.000000, 0.000052] }, { "keytime": 1874.334106, "scale": [ 0.477535, 0.477535, 0.477535], "translation": [ 0.333794, -0.000000, 0.000053] }, { "keytime": 1907.667480, "scale": [ 0.473265, 0.473265, 0.473265], "translation": [ 0.333796, -0.000000, 0.000054] }, { "keytime": 1941.000854, "scale": [ 0.468864, 0.468864, 0.468864], "translation": [ 0.333799, -0.000000, 0.000055] }, { "keytime": 2007.667603, "scale": [ 0.460321, 0.460321, 0.460321], "translation": [ 0.333803, -0.000000, 0.000057] }, { "keytime": 2041.000977, "scale": [ 0.455920, 0.455920, 0.455920], "translation": [ 0.333806, -0.000000, 0.000058] }, { "keytime": 2107.667725, "scale": [ 0.447001, 0.447001, 0.447001], "translation": [ 0.333810, -0.000000, 0.000060] }, { "keytime": 2141.000977, "scale": [ 0.442407, 0.442407, 0.442407], "translation": [ 0.333812, -0.000000, 0.000002] }, { "keytime": 2174.334229, "scale": [ 0.437948, 0.437948, 0.437948], "translation": [ 0.333815, -0.000000, -0.000074] }, { "keytime": 2207.667480, "scale": [ 0.433488, 0.433488, 0.433488], "translation": [ 0.333817, -0.000000, -0.000031] }, { "keytime": 2241.000732, "scale": [ 0.428894, 0.428894, 0.428894], "translation": [ 0.333819, -0.000000, 0.000013] }, { "keytime": 2274.333984, "scale": [ 0.424302, 0.424302, 0.424302], "translation": [ 0.333822, -0.000000, 0.000056] }, { "keytime": 2307.667236, "scale": [ 0.419665, 0.419665, 0.419665], "translation": [ 0.333824, -0.000000, 0.000099] }, { "keytime": 2341.000488, "scale": [ 0.414887, 0.414887, 0.414887], "translation": [ 0.333826, -0.000000, 0.000143] }, { "keytime": 2374.333740, "scale": [ 0.410250, 0.410250, 0.410250], "translation": [ 0.333828, -0.000000, 0.000186] }, { "keytime": 2407.666992, "scale": [ 0.405613, 0.405613, 0.405613], "translation": [ 0.333831, -0.000000, 0.000039] }, { "keytime": 2441.000244, "scale": [ 0.400836, 0.400836, 0.400836], "translation": [ 0.333793, -0.000000, 0.000161] }, { "keytime": 2474.333496, "scale": [ 0.396198, 0.396199, 0.396199], "translation": [ 0.333743, -0.000000, 0.000143] }, { "keytime": 2507.666748, "scale": [ 0.391561, 0.391562, 0.391562], "translation": [ 0.333694, -0.000000, -0.000040] }, { "keytime": 2541.000000, "scale": [ 0.386784, 0.386784, 0.386784], "translation": [ 0.333642, -0.000000, 0.000018] }, { "keytime": 2574.333252, "scale": [ 0.382147, 0.382147, 0.382147], "translation": [ 0.333592, -0.000000, -0.000097] }, { "keytime": 2607.666504, "scale": [ 0.377510, 0.377510, 0.377510], "translation": [ 0.333698, -0.000000, -0.000036] }, { "keytime": 2640.999756, "scale": [ 0.372873, 0.372873, 0.372873], "translation": [ 0.333754, -0.000000, 0.000030] }, { "keytime": 2674.333008, "scale": [ 0.368095, 0.368095, 0.368095], "translation": [ 0.333690, -0.000000, 0.000030] }, { "keytime": 2740.999512, "scale": [ 0.358821, 0.358821, 0.358821], "translation": [ 0.333567, -0.000000, 0.000030] }, { "keytime": 2774.332764, "scale": [ 0.354044, 0.354044, 0.354044], "translation": [ 0.333698, -0.000000, 0.000030] }, { "keytime": 2807.666016, "scale": [ 0.349407, 0.349407, 0.349407], "translation": [ 0.333737, -0.000000, 0.000030] }, { "keytime": 2840.999268, "scale": [ 0.344769, 0.344770, 0.344770], "translation": [ 0.333634, -0.000000, -0.000003] }, { "keytime": 2874.332520, "scale": [ 0.339992, 0.339992, 0.339992], "translation": [ 0.333634, -0.000000, -0.000157] }, { "keytime": 2907.665771, "scale": [ 0.335355, 0.335355, 0.335355], "translation": [ 0.333635, -0.000000, -0.000082] }, { "keytime": 2940.999023, "scale": [ 0.330718, 0.330718, 0.330718], "translation": [ 0.333635, -0.000000, -0.000005] }, { "keytime": 2974.332275, "scale": [ 0.325940, 0.325940, 0.325940], "translation": [ 0.333636, -0.000000, 0.000036] }, { "keytime": 3040.998779, "scale": [ 0.316666, 0.316666, 0.316666], "translation": [ 0.333637, -0.000000, 0.000035] }, { "keytime": 3074.332031, "scale": [ 0.311889, 0.311889, 0.311889], "translation": [ 0.333637, -0.000000, 0.000034] }, { "keytime": 3107.665283, "scale": [ 0.307252, 0.307252, 0.307252], "translation": [ 0.333638, -0.000000, 0.000034] }, { "keytime": 3140.998535, "scale": [ 0.302740, 0.302740, 0.302740], "translation": [ 0.333638, -0.000000, 0.000033] }, { "keytime": 3174.331787, "scale": [ 0.298234, 0.298234, 0.298235], "translation": [ 0.333639, -0.000000, 0.000033] }, { "keytime": 3240.998291, "scale": [ 0.289488, 0.289488, 0.289489], "translation": [ 0.333640, -0.000000, 0.000031] }, { "keytime": 3274.331543, "scale": [ 0.284983, 0.284983, 0.284983], "translation": [ 0.333640, -0.000000, 0.000031] }, { "keytime": 3307.664795, "scale": [ 0.280716, 0.280716, 0.280716], "translation": [ 0.333641, -0.000000, 0.000030] }, { "keytime": 3340.998047, "scale": [ 0.276563, 0.276563, 0.276563], "translation": [ 0.333641, -0.000000, 0.000029] }, { "keytime": 3374.331299, "scale": [ 0.272284, 0.272284, 0.272284], "translation": [ 0.333642, -0.000000, 0.000029] }, { "keytime": 3407.664551, "scale": [ 0.268130, 0.268130, 0.268130], "translation": [ 0.333642, -0.000000, 0.000028] }, { "keytime": 3440.997803, "scale": [ 0.264122, 0.264122, 0.264122], "translation": [ 0.333643, -0.000000, 0.000027] }, { "keytime": 3474.331055, "scale": [ 0.260049, 0.260049, 0.260049], "translation": [ 0.333643, -0.000000, 0.000027] }, { "keytime": 3507.664307, "scale": [ 0.256139, 0.256139, 0.256140], "translation": [ 0.333644, -0.000000, 0.000026] }, { "keytime": 3540.997559, "scale": [ 0.252376, 0.252376, 0.252376], "translation": [ 0.333644, -0.000000, 0.000025] }, { "keytime": 3574.330811, "scale": [ 0.248499, 0.248499, 0.248499], "translation": [ 0.333645, -0.000000, 0.000025] }, { "keytime": 3607.664062, "scale": [ 0.244896, 0.244896, 0.244896], "translation": [ 0.333645, -0.000000, 0.000024] }, { "keytime": 3640.997314, "scale": [ 0.241351, 0.241351, 0.241351], "translation": [ 0.333646, -0.000000, 0.000023] }, { "keytime": 3674.330566, "scale": [ 0.237760, 0.237760, 0.237760], "translation": [ 0.333646, -0.000000, 0.000023] }, { "keytime": 3740.997070, "scale": [ 0.231169, 0.231169, 0.231169], "translation": [ 0.333647, -0.000000, 0.000022] }, { "keytime": 3774.330322, "scale": [ 0.227986, 0.227986, 0.227986], "translation": [ 0.333648, -0.000000, 0.000021] }, { "keytime": 3807.663574, "scale": [ 0.224975, 0.224975, 0.224975], "translation": [ 0.333648, -0.000000, 0.000020] }, { "keytime": 3840.996826, "scale": [ 0.222017, 0.222017, 0.222017], "translation": [ 0.333649, -0.000000, 0.000020] }, { "keytime": 3874.330078, "scale": [ 0.219158, 0.219158, 0.219158], "translation": [ 0.333649, -0.000000, 0.000019] }, { "keytime": 3907.663330, "scale": [ 0.216553, 0.216553, 0.216553], "translation": [ 0.333649, -0.000000, 0.000018] }, { "keytime": 3940.996582, "scale": [ 0.214083, 0.214083, 0.214083], "translation": [ 0.333650, -0.000000, 0.000018] }, { "keytime": 3974.329834, "scale": [ 0.211684, 0.211684, 0.211684], "translation": [ 0.333650, -0.000000, 0.000017] }, { "keytime": 4007.663086, "scale": [ 0.209505, 0.209505, 0.209505], "translation": [ 0.333651, -0.000000, 0.000016] }, { "keytime": 4040.996338, "scale": [ 0.207483, 0.207483, 0.207483], "translation": [ 0.333651, -0.000000, 0.000016] }, { "keytime": 4074.329590, "scale": [ 0.205619, 0.205619, 0.205619], "translation": [ 0.333652, -0.000000, 0.000015] }, { "keytime": 4107.663086, "scale": [ 0.203988, 0.203988, 0.203988], "translation": [ 0.333652, -0.000000, 0.000014] }, { "keytime": 4140.996094, "scale": [ 0.202536, 0.202536, 0.202536], "translation": [ 0.333653, -0.000000, 0.000014] }, { "keytime": 4174.329590, "scale": [ 0.201237, 0.201237, 0.201237], "translation": [ 0.333653, -0.000000, 0.000013] }, { "keytime": 4207.663086, "scale": [ 0.200177, 0.200177, 0.200177], "translation": [ 0.333654, -0.000000, 0.000012] }, { "keytime": 4240.996582, "scale": [ 0.199392, 0.199392, 0.199392], "translation": [ 0.333654, -0.000000, 0.000012] }, { "keytime": 4274.330078, "scale": [ 0.198811, 0.198811, 0.198811], "translation": [ 0.333655, -0.000000, 0.000011] }, { "keytime": 4307.663574, "scale": [ 0.198482, 0.198482, 0.198482], "translation": [ 0.333655, -0.000000, 0.000011] }, { "keytime": 4340.997070, "scale": [ 0.200200, 0.200200, 0.200200], "translation": [ 0.333656, 0.000000, 0.000010] }, { "keytime": 4374.330566, "scale": [ 0.208762, 0.208762, 0.208762], "translation": [ 0.333656, 0.000000, 0.000009] }, { "keytime": 4407.664062, "scale": [ 0.233695, 0.233695, 0.233695], "translation": [ 0.333657, 0.000000, 0.000009] }, { "keytime": 4440.997559, "scale": [ 0.270767, 0.270767, 0.270767], "translation": [ 0.333657, 0.000000, 0.000008] }, { "keytime": 4474.331055, "scale": [ 0.321035, 0.321036, 0.321036], "translation": [ 0.333658, 0.000000, 0.000007] }, { "keytime": 4507.664551, "scale": [ 0.380502, 0.380502, 0.380502], "translation": [ 0.333658, 0.000000, 0.000007] }, { "keytime": 4540.998047, "scale": [ 0.449405, 0.449406, 0.449406], "translation": [ 0.333659, 0.000000, 0.000006] }, { "keytime": 4574.331543, "scale": [ 0.528521, 0.528521, 0.528521], "translation": [ 0.333659, 0.000000, 0.000005] }, { "keytime": 4607.665039, "scale": [ 0.607649, 0.607649, 0.607649], "translation": [ 0.333660, 0.000000, 0.000005] }, { "keytime": 4640.998535, "scale": [ 0.686172, 0.686172, 0.686172], "translation": [ 0.333660, 0.000000, 0.000004] }, { "keytime": 4674.332031, "scale": [ 0.763564, 0.763564, 0.763564], "translation": [ 0.333661, 0.000000, 0.000003] }, { "keytime": 4707.665527, "scale": [ 0.832468, 0.832468, 0.832468], "translation": [ 0.333661, 0.000000, 0.000003] }, { "keytime": 4740.999023, "scale": [ 0.889326, 0.889327, 0.889327], "translation": [ 0.333662, 0.000000, 0.000002] }, { "keytime": 4774.332520, "scale": [ 0.936403, 0.936403, 0.936403], "translation": [ 0.333662, 0.000000, 0.000001] }, { "keytime": 4807.666016, "scale": [ 0.969984, 0.969984, 0.969984], "translation": [ 0.333663, 0.000000, 0.000001] }, { "keytime": 4832.000000, "scale": [ 0.989001, 0.989001, 0.989001], "translation": [ 0.333663, 0.000000, 0.000000] } ] }, { "boneId": "Bone_015", "keyframes": [ { "keytime": 41.000000, "scale": [ 0.200000, 0.200000, 0.200000] }, { "keytime": 307.666656, "scale": [ 0.200220, 0.200220, 0.200220] }, { "keytime": 341.000000, "scale": [ 0.200287, 0.200287, 0.200287] }, { "keytime": 407.666687, "scale": [ 0.200646, 0.200646, 0.200646] }, { "keytime": 441.000031, "scale": [ 0.200832, 0.200832, 0.200832] }, { "keytime": 507.666718, "scale": [ 0.201191, 0.201191, 0.201191] }, { "keytime": 541.000061, "scale": [ 0.201376, 0.201376, 0.201376] }, { "keytime": 607.666687, "scale": [ 0.202166, 0.202166, 0.202166] }, { "keytime": 641.000000, "scale": [ 0.202572, 0.202572, 0.202572] }, { "keytime": 674.333313, "scale": [ 0.203013, 0.203013, 0.203013] }, { "keytime": 740.999939, "scale": [ 0.204180, 0.204180, 0.204180] }, { "keytime": 774.333252, "scale": [ 0.204917, 0.204917, 0.204917] }, { "keytime": 807.666565, "scale": [ 0.205682, 0.205682, 0.205682] }, { "keytime": 840.999878, "scale": [ 0.206492, 0.206492, 0.206492] }, { "keytime": 874.333191, "scale": [ 0.207490, 0.207490, 0.207490] }, { "keytime": 907.666504, "scale": [ 0.208458, 0.208458, 0.208458] }, { "keytime": 940.999817, "scale": [ 0.209588, 0.209588, 0.209588] }, { "keytime": 974.333130, "scale": [ 0.210814, 0.210814, 0.210814] }, { "keytime": 1007.666443, "scale": [ 0.212058, 0.212058, 0.212058] }, { "keytime": 1040.999756, "scale": [ 0.213482, 0.213482, 0.213482] }, { "keytime": 1074.333130, "scale": [ 0.214949, 0.214949, 0.214949] }, { "keytime": 1107.666504, "scale": [ 0.216549, 0.216549, 0.216549] }, { "keytime": 1140.999878, "scale": [ 0.218213, 0.218213, 0.218213] }, { "keytime": 1174.333252, "scale": [ 0.219985, 0.219985, 0.219985] }, { "keytime": 1207.666626, "scale": [ 0.221888, 0.221888, 0.221888] }, { "keytime": 1241.000000, "scale": [ 0.223848, 0.223848, 0.223848] }, { "keytime": 1274.333374, "scale": [ 0.225926, 0.225926, 0.225926] }, { "keytime": 1307.666748, "scale": [ 0.228063, 0.228063, 0.228063] }, { "keytime": 1341.000122, "scale": [ 0.230322, 0.230322, 0.230322] }, { "keytime": 1407.666870, "scale": [ 0.235044, 0.235044, 0.235044] }, { "keytime": 1441.000244, "scale": [ 0.237636, 0.237636, 0.237636] }, { "keytime": 1474.333618, "scale": [ 0.240208, 0.240208, 0.240208] }, { "keytime": 1507.666992, "scale": [ 0.242826, 0.242826, 0.242826] }, { "keytime": 1541.000366, "scale": [ 0.245678, 0.245678, 0.245678] }, { "keytime": 1574.333740, "scale": [ 0.248446, 0.248446, 0.248446] }, { "keytime": 1607.667114, "scale": [ 0.251347, 0.251347, 0.251347] }, { "keytime": 1641.000488, "scale": [ 0.254386, 0.254386, 0.254386] }, { "keytime": 1674.333862, "scale": [ 0.257374, 0.257374, 0.257374] }, { "keytime": 1707.667236, "scale": [ 0.260487, 0.260487, 0.260487] }, { "keytime": 1741.000610, "scale": [ 0.263695, 0.263695, 0.263695] }, { "keytime": 1774.333984, "scale": [ 0.266993, 0.266993, 0.266993] }, { "keytime": 1807.667358, "scale": [ 0.270519, 0.270519, 0.270519] }, { "keytime": 1841.000732, "scale": [ 0.274419, 0.274419, 0.274419] }, { "keytime": 1874.334106, "scale": [ 0.278462, 0.278462, 0.278462] }, { "keytime": 1907.667480, "scale": [ 0.282845, 0.282845, 0.282845] }, { "keytime": 1941.000854, "scale": [ 0.287625, 0.287625, 0.287625] }, { "keytime": 1974.334229, "scale": [ 0.292524, 0.292524, 0.292524] }, { "keytime": 2007.667603, "scale": [ 0.297676, 0.297676, 0.297676] }, { "keytime": 2041.000977, "scale": [ 0.303255, 0.303255, 0.303255] }, { "keytime": 2074.334473, "scale": [ 0.309011, 0.309011, 0.309011] }, { "keytime": 2107.667725, "scale": [ 0.315017, 0.315017, 0.315017] }, { "keytime": 2141.000977, "scale": [ 0.321468, 0.321468, 0.321468] }, { "keytime": 2174.334229, "scale": [ 0.327982, 0.327982, 0.327982] }, { "keytime": 2207.667480, "scale": [ 0.334749, 0.334749, 0.334749] }, { "keytime": 2241.000732, "scale": [ 0.342056, 0.342056, 0.342056] }, { "keytime": 2274.333984, "scale": [ 0.349398, 0.349398, 0.349398] }, { "keytime": 2307.667236, "scale": [ 0.356979, 0.356979, 0.356979] }, { "keytime": 2374.333740, "scale": [ 0.373102, 0.373102, 0.373102] }, { "keytime": 2407.666992, "scale": [ 0.381470, 0.381470, 0.381470] }, { "keytime": 2441.000244, "scale": [ 0.390323, 0.390323, 0.390323] }, { "keytime": 2474.333496, "scale": [ 0.399141, 0.399141, 0.399141] }, { "keytime": 2507.666748, "scale": [ 0.408173, 0.408173, 0.408173] }, { "keytime": 2541.000000, "scale": [ 0.417703, 0.417703, 0.417703] }, { "keytime": 2574.333252, "scale": [ 0.427227, 0.427227, 0.427227] }, { "keytime": 2607.666504, "scale": [ 0.436945, 0.436945, 0.436945] }, { "keytime": 2640.999756, "scale": [ 0.446850, 0.446850, 0.446850] }, { "keytime": 2674.333008, "scale": [ 0.457249, 0.457249, 0.457249] }, { "keytime": 2707.666260, "scale": [ 0.467524, 0.467524, 0.467524] }, { "keytime": 2740.999512, "scale": [ 0.478019, 0.478019, 0.478019] }, { "keytime": 2774.332764, "scale": [ 0.488991, 0.488991, 0.488991] }, { "keytime": 2807.666016, "scale": [ 0.499793, 0.499793, 0.499793] }, { "keytime": 2840.999268, "scale": [ 0.510732, 0.510732, 0.510732] }, { "keytime": 2874.332520, "scale": [ 0.522145, 0.522145, 0.522145] }, { "keytime": 2907.665771, "scale": [ 0.533449, 0.533449, 0.533449] }, { "keytime": 2940.999023, "scale": [ 0.544755, 0.544755, 0.544755] }, { "keytime": 2974.332275, "scale": [ 0.556524, 0.556524, 0.556524] }, { "keytime": 3040.998779, "scale": [ 0.579621, 0.579621, 0.579621] }, { "keytime": 3074.332031, "scale": [ 0.591712, 0.591712, 0.591712] }, { "keytime": 3140.998535, "scale": [ 0.615195, 0.615195, 0.615195] }, { "keytime": 3174.331787, "scale": [ 0.627292, 0.627292, 0.627292] }, { "keytime": 3240.998291, "scale": [ 0.650774, 0.650775, 0.650774] }, { "keytime": 3274.331543, "scale": [ 0.662872, 0.662872, 0.662872] }, { "keytime": 3340.998047, "scale": [ 0.686354, 0.686354, 0.686354] }, { "keytime": 3374.331299, "scale": [ 0.698451, 0.698451, 0.698451] }, { "keytime": 3407.664551, "scale": [ 0.709952, 0.709952, 0.709952] }, { "keytime": 3440.997803, "scale": [ 0.721451, 0.721451, 0.721451] }, { "keytime": 3474.331055, "scale": [ 0.733165, 0.733165, 0.733165] }, { "keytime": 3540.997559, "scale": [ 0.755621, 0.755621, 0.755621] }, { "keytime": 3574.330811, "scale": [ 0.766936, 0.766936, 0.766936] }, { "keytime": 3607.664062, "scale": [ 0.777765, 0.777765, 0.777765] }, { "keytime": 3640.997314, "scale": [ 0.788442, 0.788442, 0.788442] }, { "keytime": 3674.330566, "scale": [ 0.799269, 0.799269, 0.799269] }, { "keytime": 3707.663818, "scale": [ 0.809599, 0.809599, 0.809599] }, { "keytime": 3740.997070, "scale": [ 0.819685, 0.819685, 0.819685] }, { "keytime": 3774.330322, "scale": [ 0.829872, 0.829872, 0.829872] }, { "keytime": 3807.663574, "scale": [ 0.839549, 0.839549, 0.839549] }, { "keytime": 3840.996826, "scale": [ 0.849016, 0.849016, 0.849016] }, { "keytime": 3874.330078, "scale": [ 0.858532, 0.858532, 0.858532] }, { "keytime": 3907.663330, "scale": [ 0.867462, 0.867461, 0.867461] }, { "keytime": 3940.996582, "scale": [ 0.876154, 0.876154, 0.876154] }, { "keytime": 3974.329834, "scale": [ 0.884854, 0.884854, 0.884854] }, { "keytime": 4007.663086, "scale": [ 0.893045, 0.893045, 0.893045] }, { "keytime": 4040.996338, "scale": [ 0.900972, 0.900972, 0.900972] }, { "keytime": 4074.329590, "scale": [ 0.908787, 0.908787, 0.908787] }, { "keytime": 4107.663086, "scale": [ 0.916094, 0.916094, 0.916094] }, { "keytime": 4140.996094, "scale": [ 0.923131, 0.923131, 0.923131] }, { "keytime": 4174.329590, "scale": [ 0.930090, 0.930091, 0.930091] }, { "keytime": 4207.663086, "scale": [ 0.936558, 0.936558, 0.936558] }, { "keytime": 4240.996582, "scale": [ 0.942652, 0.942652, 0.942652] }, { "keytime": 4274.330078, "scale": [ 0.948634, 0.948635, 0.948634] }, { "keytime": 4307.663574, "scale": [ 0.954146, 0.954146, 0.954146] }, { "keytime": 4340.997070, "scale": [ 0.959369, 0.959369, 0.959369] }, { "keytime": 4374.330566, "scale": [ 0.964436, 0.964436, 0.964436] }, { "keytime": 4407.664062, "scale": [ 0.968962, 0.968962, 0.968962] }, { "keytime": 4440.997559, "scale": [ 0.973196, 0.973195, 0.973196] }, { "keytime": 4474.331055, "scale": [ 0.977249, 0.977249, 0.977249] }, { "keytime": 4507.664551, "scale": [ 0.980884, 0.980884, 0.980884] }, { "keytime": 4540.998047, "scale": [ 0.984213, 0.984213, 0.984213] }, { "keytime": 4574.331543, "scale": [ 0.987245, 0.987245, 0.987245] }, { "keytime": 4607.665039, "scale": [ 0.989883, 0.989883, 0.989883] }, { "keytime": 4640.998535, "scale": [ 0.992229, 0.992229, 0.992229] }, { "keytime": 4674.332031, "scale": [ 0.994336, 0.994336, 0.994336] }, { "keytime": 4707.665527, "scale": [ 0.996079, 0.996079, 0.996079] }, { "keytime": 4740.999023, "scale": [ 0.997438, 0.997438, 0.997438] }, { "keytime": 4774.332520, "scale": [ 0.998539, 0.998539, 0.998539] }, { "keytime": 4807.666016, "scale": [ 0.999312, 0.999312, 0.999313] }, { "keytime": 4832.000000, "scale": [ 0.999748, 0.999748, 0.999748] } ] }, { "boneId": "Bone_016", "keyframes": [ { "keytime": 41.000000, "scale": [ 1.000000, 1.000000, 1.000000], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 74.333328, "scale": [ 0.999539, 0.999539, 0.999539], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 107.666664, "scale": [ 0.998395, 0.998396, 0.998395], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 141.000000, "scale": [ 0.996495, 0.996495, 0.996495], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 174.333328, "scale": [ 0.993948, 0.993948, 0.993948], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 207.666656, "scale": [ 0.990690, 0.990690, 0.990690], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 240.999985, "scale": [ 0.986509, 0.986509, 0.986509], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 274.333313, "scale": [ 0.981478, 0.981478, 0.981478], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 307.666656, "scale": [ 0.975880, 0.975880, 0.975880], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 341.000000, "scale": [ 0.969375, 0.969374, 0.969375], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 374.333344, "scale": [ 0.962352, 0.962352, 0.962352], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 407.666687, "scale": [ 0.954404, 0.954404, 0.954404], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 441.000031, "scale": [ 0.945505, 0.945505, 0.945505], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 474.333374, "scale": [ 0.936170, 0.936170, 0.936170], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 507.666718, "scale": [ 0.926164, 0.926164, 0.926164], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 541.000061, "scale": [ 0.915142, 0.915142, 0.915142], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 574.333374, "scale": [ 0.903561, 0.903561, 0.903561], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 607.666687, "scale": [ 0.891344, 0.891344, 0.891344], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 641.000000, "scale": [ 0.878101, 0.878101, 0.878101], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 674.333313, "scale": [ 0.864624, 0.864624, 0.864624], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 707.666626, "scale": [ 0.850533, 0.850533, 0.850533], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 740.999939, "scale": [ 0.835682, 0.835682, 0.835682], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 774.333252, "scale": [ 0.819810, 0.819810, 0.819810], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 807.666565, "scale": [ 0.803862, 0.803862, 0.803862], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 840.999878, "scale": [ 0.787408, 0.787408, 0.787408], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 874.333191, "scale": [ 0.769929, 0.769929, 0.769929], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 907.666504, "scale": [ 0.752363, 0.752363, 0.752363], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 940.999817, "scale": [ 0.734386, 0.734387, 0.734386], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 974.333130, "scale": [ 0.715462, 0.715462, 0.715462], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 1007.666443, "scale": [ 0.696731, 0.696731, 0.696731], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 1040.999756, "scale": [ 0.677662, 0.677662, 0.677662], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 1074.333130, "scale": [ 0.657637, 0.657637, 0.657637], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 1107.666504, "scale": [ 0.637958, 0.637958, 0.637958], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 1140.999878, "scale": [ 0.618080, 0.618080, 0.618080], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 1174.333252, "scale": [ 0.597406, 0.597406, 0.597406], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 1207.666626, "scale": [ 0.577149, 0.577149, 0.577149], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 1241.000000, "scale": [ 0.556279, 0.556279, 0.556279], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 1307.666748, "scale": [ 0.515766, 0.515766, 0.515766], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 1341.000122, "scale": [ 0.494896, 0.494896, 0.494896], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 1374.333496, "scale": [ 0.474639, 0.474639, 0.474639], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 1407.666870, "scale": [ 0.454629, 0.454629, 0.454629], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 1441.000244, "scale": [ 0.434202, 0.434202, 0.434202], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 1474.333618, "scale": [ 0.414596, 0.414596, 0.414596], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 1507.666992, "scale": [ 0.395236, 0.395236, 0.395236], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 1541.000366, "scale": [ 0.375589, 0.375589, 0.375589], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 1574.333740, "scale": [ 0.356961, 0.356961, 0.356961], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 1607.667114, "scale": [ 0.338702, 0.338702, 0.338702], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 1641.000488, "scale": [ 0.320305, 0.320305, 0.320305], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 1674.333862, "scale": [ 0.302880, 0.302880, 0.302880], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 1707.667236, "scale": [ 0.285916, 0.285916, 0.285916], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 1741.000610, "scale": [ 0.269100, 0.269100, 0.269100], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 1774.333984, "scale": [ 0.253315, 0.253315, 0.253315], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 1807.667358, "scale": [ 0.238066, 0.238066, 0.238066], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 1841.000732, "scale": [ 0.222944, 0.222944, 0.222944], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 1874.334106, "scale": [ 0.208853, 0.208853, 0.208853], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 1907.667480, "scale": [ 0.195564, 0.195564, 0.195564], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 1941.000854, "scale": [ 0.182516, 0.182516, 0.182516], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 1974.334229, "scale": [ 0.170499, 0.170499, 0.170499], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 2007.667603, "scale": [ 0.159123, 0.159123, 0.159123], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 2041.000977, "scale": [ 0.148102, 0.148102, 0.148102], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 2074.334473, "scale": [ 0.138304, 0.138304, 0.138304], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 2107.667725, "scale": [ 0.129182, 0.129182, 0.129182], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 2141.000977, "scale": [ 0.120498, 0.120498, 0.120498], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 2174.334229, "scale": [ 0.112767, 0.112767, 0.112767], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 2207.667480, "scale": [ 0.105744, 0.105744, 0.105744], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 2241.000732, "scale": [ 0.099457, 0.099457, 0.099457], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 2274.333984, "scale": [ 0.094078, 0.094078, 0.094078], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 2307.667236, "scale": [ 0.089393, 0.089393, 0.089393], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 2341.000488, "scale": [ 0.085304, 0.085304, 0.085304], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 2374.333740, "scale": [ 0.082046, 0.082046, 0.082046], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 2407.666992, "scale": [ 0.079717, 0.079717, 0.079717], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 2441.000244, "scale": [ 0.078033, 0.078033, 0.078033], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 2474.333496, "scale": [ 0.077104, 0.077104, 0.077104], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 2507.666748, "scale": [ 0.076865, 0.076865, 0.076865], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 2541.000000, "scale": [ 0.077374, 0.077374, 0.077374], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 2574.333252, "scale": [ 0.078861, 0.078861, 0.078861], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 2607.666504, "scale": [ 0.081084, 0.081084, 0.081084], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 2640.999756, "scale": [ 0.084048, 0.084048, 0.084048], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 2674.333008, "scale": [ 0.087890, 0.087890, 0.087890], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 2707.666260, "scale": [ 0.092391, 0.092391, 0.092391], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 2740.999512, "scale": [ 0.097881, 0.097881, 0.097881], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 2774.332764, "scale": [ 0.104313, 0.104313, 0.104313], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 2807.666016, "scale": [ 0.111319, 0.111319, 0.111319], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 2840.999268, "scale": [ 0.119065, 0.119065, 0.119065], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 2874.332520, "scale": [ 0.127846, 0.127846, 0.127846], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 2907.665771, "scale": [ 0.137347, 0.137347, 0.137347], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 2940.999023, "scale": [ 0.147567, 0.147567, 0.147567], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 2974.332275, "scale": [ 0.158846, 0.158846, 0.158846], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 3007.665527, "scale": [ 0.170508, 0.170508, 0.170508], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 3040.998779, "scale": [ 0.182889, 0.182889, 0.182889], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 3074.332031, "scale": [ 0.196558, 0.196558, 0.196558], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 3107.665283, "scale": [ 0.210503, 0.210503, 0.210503], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 3140.998535, "scale": [ 0.225084, 0.225084, 0.225084], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 3174.331787, "scale": [ 0.240762, 0.240762, 0.240762], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 3207.665039, "scale": [ 0.256600, 0.256600, 0.256600], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 3240.998291, "scale": [ 0.273190, 0.273190, 0.273190], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 3274.331543, "scale": [ 0.290838, 0.290838, 0.290838], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 3307.664795, "scale": [ 0.308490, 0.308490, 0.308490], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 3340.998047, "scale": [ 0.326622, 0.326622, 0.326622], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 3374.331299, "scale": [ 0.345794, 0.345794, 0.345794], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 3407.664551, "scale": [ 0.364948, 0.364948, 0.364948], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 3440.997803, "scale": [ 0.384462, 0.384462, 0.384462], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 3474.331055, "scale": [ 0.404912, 0.404912, 0.404912], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 3507.664307, "scale": [ 0.425058, 0.425058, 0.425058], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 3540.997559, "scale": [ 0.445471, 0.445471, 0.445471], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 3574.330811, "scale": [ 0.466776, 0.466776, 0.466776], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 3607.664062, "scale": [ 0.487665, 0.487665, 0.487665], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 3640.997314, "scale": [ 0.508627, 0.508627, 0.508627], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 3674.330566, "scale": [ 0.530224, 0.530224, 0.530224], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 3740.997070, "scale": [ 0.572147, 0.572147, 0.572147], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 3774.330322, "scale": [ 0.593744, 0.593744, 0.593744], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 3807.663574, "scale": [ 0.614572, 0.614572, 0.614572], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 3840.996826, "scale": [ 0.635197, 0.635197, 0.635197], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 3874.330078, "scale": [ 0.656229, 0.656229, 0.656229], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 3907.663330, "scale": [ 0.676298, 0.676298, 0.676298], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 3940.996582, "scale": [ 0.696059, 0.696059, 0.696059], "translation": [ 0.623223, -0.000000, 0.000000] }, { "keytime": 3974.329834, "scale": [ 0.716061, 0.716061, 0.716061], "translation": [ 0.623223, -0.000000, 0.000000] }, { "keytime": 4007.663086, "scale": [ 0.735092, 0.735092, 0.735092], "translation": [ 0.623223, -0.000000, 0.000000] }, { "keytime": 4040.996338, "scale": [ 0.753700, 0.753701, 0.753701], "translation": [ 0.623223, -0.000000, 0.000000] }, { "keytime": 4074.329590, "scale": [ 0.772260, 0.772260, 0.772260], "translation": [ 0.623223, -0.000000, 0.000000] }, { "keytime": 4107.663086, "scale": [ 0.789763, 0.789763, 0.789763], "translation": [ 0.623223, -0.000000, 0.000000] }, { "keytime": 4140.996094, "scale": [ 0.806747, 0.806747, 0.806747], "translation": [ 0.623223, -0.000000, 0.000000] }, { "keytime": 4174.329590, "scale": [ 0.823671, 0.823670, 0.823671], "translation": [ 0.623223, -0.000000, 0.000000] }, { "keytime": 4207.663086, "scale": [ 0.839508, 0.839508, 0.839508], "translation": [ 0.623223, -0.000000, 0.000000] }, { "keytime": 4240.996582, "scale": [ 0.854551, 0.854551, 0.854551], "translation": [ 0.623223, -0.000000, 0.000000] }, { "keytime": 4274.330078, "scale": [ 0.869398, 0.869398, 0.869398], "translation": [ 0.623223, -0.000000, 0.000000] }, { "keytime": 4307.663574, "scale": [ 0.883147, 0.883147, 0.883147], "translation": [ 0.623223, -0.000000, 0.000000] }, { "keytime": 4340.997070, "scale": [ 0.896238, 0.896238, 0.896238], "translation": [ 0.623223, -0.000000, 0.000000] }, { "keytime": 4374.330566, "scale": [ 0.908995, 0.908995, 0.908995], "translation": [ 0.623223, -0.000000, 0.000000] }, { "keytime": 4407.664062, "scale": [ 0.920448, 0.920449, 0.920449], "translation": [ 0.623223, -0.000000, 0.000000] }, { "keytime": 4440.997559, "scale": [ 0.931196, 0.931196, 0.931196], "translation": [ 0.623223, -0.000000, 0.000000] }, { "keytime": 4474.331055, "scale": [ 0.941517, 0.941517, 0.941517], "translation": [ 0.623223, -0.000000, 0.000000] }, { "keytime": 4507.664551, "scale": [ 0.950799, 0.950799, 0.950798], "translation": [ 0.623223, -0.000000, 0.000000] }, { "keytime": 4540.998047, "scale": [ 0.959321, 0.959321, 0.959321], "translation": [ 0.623223, -0.000000, 0.000000] }, { "keytime": 4574.331543, "scale": [ 0.967103, 0.967104, 0.967104], "translation": [ 0.623223, -0.000000, 0.000000] }, { "keytime": 4607.665039, "scale": [ 0.973887, 0.973887, 0.973887], "translation": [ 0.623223, -0.000000, 0.000000] }, { "keytime": 4640.998535, "scale": [ 0.979927, 0.979927, 0.979927], "translation": [ 0.623223, -0.000000, 0.000000] }, { "keytime": 4674.332031, "scale": [ 0.985360, 0.985360, 0.985360], "translation": [ 0.623223, -0.000000, 0.000000] }, { "keytime": 4707.665527, "scale": [ 0.989861, 0.989861, 0.989861], "translation": [ 0.623223, -0.000000, 0.000000] }, { "keytime": 4740.999023, "scale": [ 0.993373, 0.993373, 0.993373], "translation": [ 0.623223, -0.000000, 0.000000] }, { "keytime": 4774.332520, "scale": [ 0.996219, 0.996219, 0.996219], "translation": [ 0.623223, -0.000000, 0.000000] }, { "keytime": 4807.666016, "scale": [ 0.998220, 0.998220, 0.998221], "translation": [ 0.623223, -0.000000, 0.000000] }, { "keytime": 4832.000000, "scale": [ 0.999347, 0.999347, 0.999347], "translation": [ 0.623223, -0.000000, 0.000000] } ] }, { "boneId": "Bone_017", "keyframes": [ { "keytime": 41.000000, "scale": [ 0.560000, 0.560000, 0.560000], "translation": [ 0.522341, 0.000001, 0.000002] }, { "keytime": 74.333328, "scale": [ 0.559887, 0.559887, 0.559887], "translation": [ 0.522341, 0.000001, 0.000002] }, { "keytime": 107.666664, "scale": [ 0.559605, 0.559605, 0.559605], "translation": [ 0.522341, 0.000001, 0.000002] }, { "keytime": 141.000000, "scale": [ 0.559137, 0.559137, 0.559137], "translation": [ 0.522341, 0.000001, 0.000002] }, { "keytime": 174.333328, "scale": [ 0.558511, 0.558511, 0.558511], "translation": [ 0.522341, 0.000001, 0.000002] }, { "keytime": 207.666656, "scale": [ 0.557710, 0.557710, 0.557710], "translation": [ 0.522341, 0.000001, 0.000002] }, { "keytime": 240.999985, "scale": [ 0.556682, 0.556682, 0.556682], "translation": [ 0.522341, 0.000001, 0.000002] }, { "keytime": 274.333313, "scale": [ 0.555445, 0.555445, 0.555445], "translation": [ 0.522341, 0.000001, 0.000002] }, { "keytime": 307.666656, "scale": [ 0.554069, 0.554069, 0.554069], "translation": [ 0.522341, 0.000001, 0.000002] }, { "keytime": 341.000000, "scale": [ 0.552468, 0.552468, 0.552468], "translation": [ 0.522341, 0.000001, 0.000002] }, { "keytime": 374.333344, "scale": [ 0.550739, 0.550739, 0.550739], "translation": [ 0.522341, 0.000001, 0.000002] }, { "keytime": 407.666687, "scale": [ 0.548781, 0.548781, 0.548781], "translation": [ 0.522341, 0.000001, 0.000002] }, { "keytime": 441.000031, "scale": [ 0.546585, 0.546585, 0.546585], "translation": [ 0.522341, 0.000001, 0.000002] }, { "keytime": 474.333374, "scale": [ 0.544279, 0.544279, 0.544279], "translation": [ 0.522341, 0.000001, 0.000002] }, { "keytime": 507.666718, "scale": [ 0.541803, 0.541802, 0.541802], "translation": [ 0.522341, 0.000001, 0.000002] }, { "keytime": 541.000061, "scale": [ 0.539070, 0.539070, 0.539070], "translation": [ 0.522341, 0.000001, 0.000002] }, { "keytime": 574.333374, "scale": [ 0.536191, 0.536191, 0.536191], "translation": [ 0.522341, 0.000001, 0.000002] }, { "keytime": 607.666687, "scale": [ 0.533145, 0.533145, 0.533145], "translation": [ 0.522341, 0.000000, 0.000002] }, { "keytime": 641.000000, "scale": [ 0.529834, 0.529834, 0.529834], "translation": [ 0.522341, 0.000000, 0.000002] }, { "keytime": 674.333313, "scale": [ 0.526454, 0.526454, 0.526454], "translation": [ 0.522341, 0.000000, 0.000002] }, { "keytime": 707.666626, "scale": [ 0.522908, 0.522908, 0.522907], "translation": [ 0.522340, 0.000000, 0.000002] }, { "keytime": 740.999939, "scale": [ 0.519150, 0.519150, 0.519150], "translation": [ 0.522340, 0.000000, 0.000002] }, { "keytime": 774.333252, "scale": [ 0.515116, 0.515116, 0.515116], "translation": [ 0.522340, 0.000000, 0.000002] }, { "keytime": 807.666565, "scale": [ 0.511042, 0.511042, 0.511042], "translation": [ 0.522340, 0.000000, 0.000002] }, { "keytime": 840.999878, "scale": [ 0.506817, 0.506817, 0.506817], "translation": [ 0.522340, 0.000000, 0.000002] }, { "keytime": 874.333191, "scale": [ 0.502303, 0.502303, 0.502303], "translation": [ 0.522340, 0.000000, 0.000002] }, { "keytime": 907.666504, "scale": [ 0.497728, 0.497728, 0.497728], "translation": [ 0.522340, 0.000000, 0.000002] }, { "keytime": 940.999817, "scale": [ 0.493014, 0.493014, 0.493014], "translation": [ 0.522340, 0.000000, 0.000002] }, { "keytime": 974.333130, "scale": [ 0.488014, 0.488014, 0.488013], "translation": [ 0.522340, 0.000000, 0.000002] }, { "keytime": 1007.666443, "scale": [ 0.483025, 0.483025, 0.483025], "translation": [ 0.522340, 0.000000, 0.000002] }, { "keytime": 1040.999756, "scale": [ 0.477904, 0.477904, 0.477903], "translation": [ 0.522340, 0.000000, 0.000002] }, { "keytime": 1074.333130, "scale": [ 0.472461, 0.472461, 0.472461], "translation": [ 0.522340, 0.000000, 0.000002] }, { "keytime": 1107.666504, "scale": [ 0.467003, 0.467003, 0.467003], "translation": [ 0.522340, 0.000000, 0.000002] }, { "keytime": 1140.999878, "scale": [ 0.461484, 0.461484, 0.461484], "translation": [ 0.522340, 0.000000, 0.000002] }, { "keytime": 1174.333252, "scale": [ 0.455732, 0.455732, 0.455732], "translation": [ 0.522340, 0.000000, 0.000002] }, { "keytime": 1207.666626, "scale": [ 0.449939, 0.449939, 0.449939], "translation": [ 0.522340, 0.000000, 0.000002] }, { "keytime": 1241.000000, "scale": [ 0.443970, 0.443970, 0.443970], "translation": [ 0.522340, 0.000000, 0.000002] }, { "keytime": 1274.333374, "scale": [ 0.438004, 0.438004, 0.438004], "translation": [ 0.522340, 0.000000, 0.000002] }, { "keytime": 1307.666748, "scale": [ 0.431979, 0.431979, 0.431979], "translation": [ 0.522340, 0.000000, 0.000002] }, { "keytime": 1341.000122, "scale": [ 0.425717, 0.425717, 0.425717], "translation": [ 0.522340, 0.000000, 0.000002] }, { "keytime": 1407.666870, "scale": [ 0.413227, 0.413227, 0.413227], "translation": [ 0.522340, 0.000000, 0.000002] }, { "keytime": 1441.000244, "scale": [ 0.406793, 0.406793, 0.406793], "translation": [ 0.522340, 0.000000, 0.000002] }, { "keytime": 1474.333618, "scale": [ 0.400458, 0.400458, 0.400458], "translation": [ 0.522340, 0.000000, 0.000002] }, { "keytime": 1507.666992, "scale": [ 0.394031, 0.394031, 0.394031], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 1541.000366, "scale": [ 0.387410, 0.387410, 0.387409], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 1607.667114, "scale": [ 0.374556, 0.374556, 0.374555], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 1641.000488, "scale": [ 0.367934, 0.367934, 0.367934], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 1707.667236, "scale": [ 0.355080, 0.355080, 0.355080], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 1741.000610, "scale": [ 0.348549, 0.348549, 0.348549], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 1807.667358, "scale": [ 0.335876, 0.335876, 0.335876], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 1841.000732, "scale": [ 0.329348, 0.329348, 0.329347], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 1874.334106, "scale": [ 0.323011, 0.323011, 0.323011], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 1907.667480, "scale": [ 0.316886, 0.316886, 0.316886], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 1941.000854, "scale": [ 0.310577, 0.310577, 0.310577], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 1974.334229, "scale": [ 0.304558, 0.304558, 0.304558], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 2007.667603, "scale": [ 0.298643, 0.298643, 0.298643], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 2041.000977, "scale": [ 0.292549, 0.292549, 0.292549], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 2107.667725, "scale": [ 0.281227, 0.281227, 0.281227], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 2141.000977, "scale": [ 0.275544, 0.275544, 0.275544], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 2207.667480, "scale": [ 0.264811, 0.264811, 0.264811], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 2241.000732, "scale": [ 0.259529, 0.259529, 0.259529], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 2274.333984, "scale": [ 0.254538, 0.254538, 0.254538], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 2307.667236, "scale": [ 0.249678, 0.249678, 0.249678], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 2341.000488, "scale": [ 0.244816, 0.244816, 0.244816], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 2374.333740, "scale": [ 0.240239, 0.240239, 0.240239], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 2407.666992, "scale": [ 0.235855, 0.235855, 0.235855], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 2441.000244, "scale": [ 0.231494, 0.231494, 0.231494], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 2474.333496, "scale": [ 0.227416, 0.227416, 0.227416], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 2507.666748, "scale": [ 0.223491, 0.223491, 0.223491], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 2541.000000, "scale": [ 0.219615, 0.219615, 0.219615], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 2574.333252, "scale": [ 0.216069, 0.216069, 0.216069], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 2607.666504, "scale": [ 0.212684, 0.212684, 0.212684], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 2640.999756, "scale": [ 0.209463, 0.209463, 0.209463], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 2674.333008, "scale": [ 0.206319, 0.206319, 0.206319], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 2707.666260, "scale": [ 0.203439, 0.203439, 0.203439], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 2740.999512, "scale": [ 0.200783, 0.200783, 0.200783], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 2774.332764, "scale": [ 0.198222, 0.198222, 0.198222], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 2807.666016, "scale": [ 0.195910, 0.195910, 0.195910], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 2840.999268, "scale": [ 0.193770, 0.193770, 0.193770], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 2874.332520, "scale": [ 0.191749, 0.191749, 0.191749], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 2907.665771, "scale": [ 0.190018, 0.190018, 0.190018], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 2940.999023, "scale": [ 0.188458, 0.188458, 0.188458], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 2974.332275, "scale": [ 0.187031, 0.187031, 0.187031], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 3007.665527, "scale": [ 0.185821, 0.185821, 0.185821], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 3040.998779, "scale": [ 0.184789, 0.184789, 0.184789], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 3074.332031, "scale": [ 0.183956, 0.183956, 0.183956], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 3107.665283, "scale": [ 0.183325, 0.183325, 0.183325], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 3140.998535, "scale": [ 0.182863, 0.182863, 0.182863], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 3174.331787, "scale": [ 0.182567, 0.182567, 0.182567], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 3207.665039, "scale": [ 0.182453, 0.182454, 0.182453], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 3240.998291, "scale": [ 0.183322, 0.183322, 0.183322], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 3274.331543, "scale": [ 0.185576, 0.185576, 0.185576], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 3307.664795, "scale": [ 0.189132, 0.189132, 0.189132], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 3340.998047, "scale": [ 0.194021, 0.194021, 0.194021], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 3374.331299, "scale": [ 0.200512, 0.200512, 0.200512], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 3407.664551, "scale": [ 0.208609, 0.208609, 0.208608], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 3440.997803, "scale": [ 0.218037, 0.218037, 0.218037], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 3474.331055, "scale": [ 0.229141, 0.229141, 0.229141], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 3507.664307, "scale": [ 0.241255, 0.241255, 0.241255], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 3540.997559, "scale": [ 0.254714, 0.254714, 0.254714], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 3574.330811, "scale": [ 0.270290, 0.270290, 0.270290], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 3607.664062, "scale": [ 0.286673, 0.286673, 0.286673], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 3640.997314, "scale": [ 0.304235, 0.304235, 0.304235], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 3674.330566, "scale": [ 0.323541, 0.323541, 0.323541], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 3707.663818, "scale": [ 0.343411, 0.343411, 0.343411], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 3740.997070, "scale": [ 0.364626, 0.364626, 0.364626], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 3774.330322, "scale": [ 0.387444, 0.387444, 0.387444], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 3807.663574, "scale": [ 0.410471, 0.410471, 0.410471], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 3840.996826, "scale": [ 0.434278, 0.434278, 0.434278], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 3874.330078, "scale": [ 0.459566, 0.459566, 0.459566], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 3907.663330, "scale": [ 0.484880, 0.484881, 0.484880], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 3940.996582, "scale": [ 0.510635, 0.510635, 0.510635], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 3974.329834, "scale": [ 0.537536, 0.537536, 0.537536], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 4007.663086, "scale": [ 0.563901, 0.563901, 0.563901], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 4040.996338, "scale": [ 0.590422, 0.590422, 0.590422], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 4074.329590, "scale": [ 0.617746, 0.617746, 0.617746], "translation": [ 0.522340, 0.000000, 0.000000] }, { "keytime": 4107.663086, "scale": [ 0.644118, 0.644118, 0.644118], "translation": [ 0.522340, 0.000000, 0.000000] }, { "keytime": 4140.996094, "scale": [ 0.670246, 0.670246, 0.670246], "translation": [ 0.522340, 0.000000, 0.000000] }, { "keytime": 4174.329590, "scale": [ 0.696804, 0.696804, 0.696804], "translation": [ 0.522340, 0.000000, 0.000000] }, { "keytime": 4207.663086, "scale": [ 0.722126, 0.722126, 0.722126], "translation": [ 0.522340, 0.000000, 0.000000] }, { "keytime": 4240.996582, "scale": [ 0.746686, 0.746686, 0.746686], "translation": [ 0.522340, 0.000000, 0.000000] }, { "keytime": 4274.330078, "scale": [ 0.771265, 0.771265, 0.771265], "translation": [ 0.522340, 0.000000, 0.000000] }, { "keytime": 4307.663574, "scale": [ 0.794325, 0.794325, 0.794325], "translation": [ 0.522340, 0.000000, 0.000000] }, { "keytime": 4340.997070, "scale": [ 0.816538, 0.816538, 0.816538], "translation": [ 0.522340, 0.000000, 0.000000] }, { "keytime": 4374.330566, "scale": [ 0.838425, 0.838425, 0.838425], "translation": [ 0.522340, 0.000000, 0.000000] }, { "keytime": 4407.664062, "scale": [ 0.858308, 0.858308, 0.858309], "translation": [ 0.522340, 0.000000, 0.000000] }, { "keytime": 4440.997559, "scale": [ 0.877101, 0.877101, 0.877101], "translation": [ 0.522340, 0.000000, 0.000000] }, { "keytime": 4474.331055, "scale": [ 0.895269, 0.895269, 0.895269], "translation": [ 0.522340, 0.000000, 0.000000] }, { "keytime": 4507.664551, "scale": [ 0.911702, 0.911702, 0.911702], "translation": [ 0.522340, 0.000000, 0.000000] }, { "keytime": 4540.998047, "scale": [ 0.926869, 0.926869, 0.926870], "translation": [ 0.522340, 0.000000, 0.000000] }, { "keytime": 4574.331543, "scale": [ 0.940789, 0.940789, 0.940789], "translation": [ 0.522340, 0.000000, 0.000000] }, { "keytime": 4607.665039, "scale": [ 0.952955, 0.952955, 0.952955], "translation": [ 0.522340, 0.000000, 0.000000] }, { "keytime": 4640.998535, "scale": [ 0.963813, 0.963813, 0.963813], "translation": [ 0.522340, 0.000000, 0.000000] }, { "keytime": 4674.332031, "scale": [ 0.973597, 0.973597, 0.973597], "translation": [ 0.522340, 0.000000, 0.000000] }, { "keytime": 4707.665527, "scale": [ 0.981712, 0.981712, 0.981712], "translation": [ 0.522340, 0.000000, 0.000000] }, { "keytime": 4740.999023, "scale": [ 0.988049, 0.988049, 0.988049], "translation": [ 0.522340, 0.000000, 0.000000] }, { "keytime": 4774.332520, "scale": [ 0.993184, 0.993183, 0.993184], "translation": [ 0.522340, 0.000000, 0.000000] }, { "keytime": 4807.666016, "scale": [ 0.996794, 0.996793, 0.996794], "translation": [ 0.522340, 0.000000, 0.000000] }, { "keytime": 4832.000000, "scale": [ 0.998824, 0.998824, 0.998824], "translation": [ 0.522340, 0.000000, 0.000000] } ] }, { "boneId": "Bone_027", "keyframes": [ { "keytime": 41.000000, "scale": [ 0.610000, 0.610000, 0.610000], "translation": [ 0.338165, -0.000000, 0.000004] }, { "keytime": 107.666664, "scale": [ 0.609734, 0.609734, 0.609734], "translation": [ 0.338167, -0.000000, 0.000005] }, { "keytime": 141.000000, "scale": [ 0.609464, 0.609464, 0.609464], "translation": [ 0.338168, -0.000000, 0.000005] }, { "keytime": 207.666656, "scale": [ 0.608674, 0.608674, 0.608674], "translation": [ 0.338170, -0.000000, 0.000006] }, { "keytime": 240.999985, "scale": [ 0.608029, 0.608029, 0.608029], "translation": [ 0.338171, -0.000000, 0.000007] }, { "keytime": 274.333313, "scale": [ 0.607360, 0.607360, 0.607360], "translation": [ 0.338172, -0.000000, 0.000007] }, { "keytime": 307.666656, "scale": [ 0.606590, 0.606590, 0.606590], "translation": [ 0.338173, -0.000000, 0.000007] }, { "keytime": 341.000000, "scale": [ 0.605665, 0.605665, 0.605665], "translation": [ 0.338174, -0.000000, 0.000008] }, { "keytime": 374.333344, "scale": [ 0.604768, 0.604768, 0.604768], "translation": [ 0.338175, -0.000000, 0.000008] }, { "keytime": 407.666687, "scale": [ 0.603632, 0.603632, 0.603632], "translation": [ 0.338176, -0.000000, 0.000009] }, { "keytime": 441.000031, "scale": [ 0.602459, 0.602459, 0.602459], "translation": [ 0.338177, -0.000000, 0.000009] }, { "keytime": 474.333374, "scale": [ 0.601204, 0.601205, 0.601205], "translation": [ 0.338178, -0.000000, 0.000010] }, { "keytime": 507.666718, "scale": [ 0.599832, 0.599832, 0.599832], "translation": [ 0.338179, -0.000000, 0.000010] }, { "keytime": 541.000061, "scale": [ 0.598418, 0.598419, 0.598419], "translation": [ 0.338180, -0.000000, 0.000011] }, { "keytime": 607.666687, "scale": [ 0.595220, 0.595221, 0.595220], "translation": [ 0.338182, -0.000000, 0.000011] }, { "keytime": 641.000000, "scale": [ 0.593462, 0.593462, 0.593462], "translation": [ 0.338183, -0.000000, 0.000012] }, { "keytime": 707.666626, "scale": [ 0.589824, 0.589824, 0.589824], "translation": [ 0.338185, -0.000000, 0.000013] }, { "keytime": 740.999939, "scale": [ 0.587797, 0.587797, 0.587797], "translation": [ 0.338186, -0.000000, 0.000013] }, { "keytime": 774.333252, "scale": [ 0.585704, 0.585704, 0.585704], "translation": [ 0.338187, -0.000000, 0.000014] }, { "keytime": 807.666565, "scale": [ 0.583573, 0.583573, 0.583573], "translation": [ 0.338188, -0.000000, 0.000014] }, { "keytime": 840.999878, "scale": [ 0.581335, 0.581336, 0.581335], "translation": [ 0.338189, -0.000000, 0.000014] }, { "keytime": 874.333191, "scale": [ 0.579030, 0.579031, 0.579031], "translation": [ 0.338190, -0.000000, 0.000015] }, { "keytime": 907.666504, "scale": [ 0.576597, 0.576597, 0.576597], "translation": [ 0.338191, -0.000000, 0.000015] }, { "keytime": 940.999817, "scale": [ 0.574161, 0.574161, 0.574161], "translation": [ 0.338192, -0.000000, 0.000016] }, { "keytime": 974.333130, "scale": [ 0.571557, 0.571557, 0.571557], "translation": [ 0.338194, -0.000000, 0.000016] }, { "keytime": 1040.999756, "scale": [ 0.566302, 0.566303, 0.566303], "translation": [ 0.338196, -0.000000, 0.000017] }, { "keytime": 1074.333130, "scale": [ 0.563412, 0.563412, 0.563412], "translation": [ 0.338197, -0.000000, 0.000018] }, { "keytime": 1107.666504, "scale": [ 0.560600, 0.560601, 0.560601], "translation": [ 0.338198, -0.000000, 0.000018] }, { "keytime": 1140.999878, "scale": [ 0.557705, 0.557706, 0.557706], "translation": [ 0.338199, -0.000000, 0.000018] }, { "keytime": 1174.333252, "scale": [ 0.554627, 0.554627, 0.554627], "translation": [ 0.338200, -0.000000, 0.000019] }, { "keytime": 1207.666626, "scale": [ 0.551639, 0.551639, 0.551639], "translation": [ 0.338201, -0.000000, 0.000019] }, { "keytime": 1241.000000, "scale": [ 0.548390, 0.548390, 0.548390], "translation": [ 0.338202, -0.000000, 0.000020] }, { "keytime": 1274.333374, "scale": [ 0.545233, 0.545233, 0.545233], "translation": [ 0.338203, -0.000000, 0.000020] }, { "keytime": 1307.666748, "scale": [ 0.541998, 0.541998, 0.541998], "translation": [ 0.338204, -0.000000, 0.000021] }, { "keytime": 1341.000122, "scale": [ 0.538579, 0.538579, 0.538579], "translation": [ 0.338205, -0.000000, 0.000021] }, { "keytime": 1374.333496, "scale": [ 0.535260, 0.535260, 0.535260], "translation": [ 0.338206, -0.000000, 0.000021] }, { "keytime": 1407.666870, "scale": [ 0.531753, 0.531753, 0.531753], "translation": [ 0.338207, -0.000000, 0.000022] }, { "keytime": 1441.000244, "scale": [ 0.528137, 0.528137, 0.528137], "translation": [ 0.338208, -0.000000, 0.000022] }, { "keytime": 1474.333618, "scale": [ 0.524627, 0.524628, 0.524628], "translation": [ 0.338209, -0.000000, 0.000023] }, { "keytime": 1507.666992, "scale": [ 0.521069, 0.521069, 0.521069], "translation": [ 0.338210, -0.000000, 0.000023] }, { "keytime": 1541.000366, "scale": [ 0.517233, 0.517233, 0.517233], "translation": [ 0.338211, -0.000000, 0.000024] }, { "keytime": 1607.667114, "scale": [ 0.509789, 0.509789, 0.509789], "translation": [ 0.338213, -0.000000, 0.000025] }, { "keytime": 1641.000488, "scale": [ 0.505855, 0.505855, 0.505855], "translation": [ 0.338214, -0.000000, 0.000025] }, { "keytime": 1707.667236, "scale": [ 0.498021, 0.498021, 0.498021], "translation": [ 0.338216, -0.000000, 0.000026] }, { "keytime": 1741.000610, "scale": [ 0.493985, 0.493985, 0.493985], "translation": [ 0.338217, -0.000000, 0.000026] }, { "keytime": 1774.333984, "scale": [ 0.489937, 0.489937, 0.489937], "translation": [ 0.338218, -0.000000, 0.000027] }, { "keytime": 1807.667358, "scale": [ 0.485844, 0.485844, 0.485844], "translation": [ 0.338219, -0.000000, 0.000027] }, { "keytime": 1841.000732, "scale": [ 0.481627, 0.481628, 0.481627], "translation": [ 0.338220, -0.000000, 0.000028] }, { "keytime": 1874.334106, "scale": [ 0.477535, 0.477535, 0.477535], "translation": [ 0.338221, -0.000000, 0.000028] }, { "keytime": 1907.667480, "scale": [ 0.473265, 0.473265, 0.473265], "translation": [ 0.338222, -0.000000, 0.000028] }, { "keytime": 1941.000854, "scale": [ 0.468864, 0.468864, 0.468864], "translation": [ 0.338223, -0.000000, 0.000029] }, { "keytime": 2007.667603, "scale": [ 0.460321, 0.460321, 0.460321], "translation": [ 0.338225, -0.000000, 0.000030] }, { "keytime": 2041.000977, "scale": [ 0.455920, 0.455920, 0.455920], "translation": [ 0.338226, -0.000000, 0.000030] }, { "keytime": 2107.667725, "scale": [ 0.447001, 0.447001, 0.447001], "translation": [ 0.338228, -0.000000, 0.000031] }, { "keytime": 2141.000977, "scale": [ 0.442407, 0.442407, 0.442407], "translation": [ 0.338229, -0.000000, 0.000032] }, { "keytime": 2207.667480, "scale": [ 0.433488, 0.433488, 0.433488], "translation": [ 0.338231, -0.000000, 0.000032] }, { "keytime": 2241.000732, "scale": [ 0.428894, 0.428894, 0.428894], "translation": [ 0.338232, -0.000000, -0.000105] }, { "keytime": 2274.333984, "scale": [ 0.424302, 0.424302, 0.424302], "translation": [ 0.338233, -0.000000, -0.000129] }, { "keytime": 2307.667236, "scale": [ 0.419665, 0.419665, 0.419665], "translation": [ 0.338234, -0.000000, -0.000115] }, { "keytime": 2341.000488, "scale": [ 0.414887, 0.414887, 0.414887], "translation": [ 0.338235, -0.000000, -0.000057] }, { "keytime": 2374.333740, "scale": [ 0.410250, 0.410250, 0.410250], "translation": [ 0.338236, -0.000000, 0.000133] }, { "keytime": 2407.666992, "scale": [ 0.405613, 0.405613, 0.405613], "translation": [ 0.338237, -0.000000, 0.000059] }, { "keytime": 2441.000244, "scale": [ 0.400836, 0.400836, 0.400836], "translation": [ 0.338165, -0.000000, -0.000021] }, { "keytime": 2474.333496, "scale": [ 0.396199, 0.396199, 0.396199], "translation": [ 0.338162, -0.000000, -0.000099] }, { "keytime": 2507.666748, "scale": [ 0.391561, 0.391562, 0.391561], "translation": [ 0.338234, -0.000000, -0.000103] }, { "keytime": 2541.000000, "scale": [ 0.386784, 0.386784, 0.386784], "translation": [ 0.338233, -0.000000, 0.000143] }, { "keytime": 2607.666504, "scale": [ 0.377510, 0.377510, 0.377510], "translation": [ 0.338231, -0.000000, -0.000109] }, { "keytime": 2640.999756, "scale": [ 0.372873, 0.372873, 0.372873], "translation": [ 0.338230, -0.000000, -0.000100] }, { "keytime": 2674.333008, "scale": [ 0.368095, 0.368095, 0.368095], "translation": [ 0.338229, -0.000000, -0.000022] }, { "keytime": 2707.666260, "scale": [ 0.363458, 0.363458, 0.363458], "translation": [ 0.338228, -0.000000, -0.000222] }, { "keytime": 2740.999512, "scale": [ 0.358821, 0.358821, 0.358821], "translation": [ 0.338227, -0.000000, -0.000049] }, { "keytime": 2774.332764, "scale": [ 0.354044, 0.354044, 0.354044], "translation": [ 0.338226, -0.000000, -0.000114] }, { "keytime": 2807.666016, "scale": [ 0.349407, 0.349407, 0.349407], "translation": [ 0.338225, -0.000000, -0.000128] }, { "keytime": 2840.999268, "scale": [ 0.344770, 0.344770, 0.344770], "translation": [ 0.338224, -0.000000, -0.000029] }, { "keytime": 2874.332520, "scale": [ 0.339992, 0.339992, 0.339992], "translation": [ 0.338223, -0.000000, -0.000055] }, { "keytime": 2940.999023, "scale": [ 0.330718, 0.330718, 0.330718], "translation": [ 0.338221, -0.000000, -0.000106] }, { "keytime": 2974.332275, "scale": [ 0.325940, 0.325940, 0.325940], "translation": [ 0.338220, -0.000000, -0.000048] }, { "keytime": 3007.665527, "scale": [ 0.321303, 0.321303, 0.321303], "translation": [ 0.338219, -0.000000, 0.000062] }, { "keytime": 3040.998779, "scale": [ 0.316666, 0.316666, 0.316666], "translation": [ 0.338218, -0.000000, 0.000061] }, { "keytime": 3074.332031, "scale": [ 0.311889, 0.311889, 0.311889], "translation": [ 0.338217, -0.000000, 0.000060] }, { "keytime": 3107.665283, "scale": [ 0.307252, 0.307252, 0.307252], "translation": [ 0.338216, -0.000000, 0.000058] }, { "keytime": 3140.998535, "scale": [ 0.302740, 0.302740, 0.302740], "translation": [ 0.338215, -0.000000, 0.000057] }, { "keytime": 3174.331787, "scale": [ 0.298234, 0.298234, 0.298234], "translation": [ 0.338214, -0.000000, 0.000056] }, { "keytime": 3240.998291, "scale": [ 0.289489, 0.289489, 0.289488], "translation": [ 0.338212, -0.000000, 0.000054] }, { "keytime": 3274.331543, "scale": [ 0.284983, 0.284983, 0.284983], "translation": [ 0.338211, -0.000000, 0.000053] }, { "keytime": 3307.664795, "scale": [ 0.280717, 0.280717, 0.280716], "translation": [ 0.338210, -0.000000, 0.000052] }, { "keytime": 3340.998047, "scale": [ 0.276563, 0.276563, 0.276563], "translation": [ 0.338209, -0.000000, 0.000051] }, { "keytime": 3374.331299, "scale": [ 0.272284, 0.272284, 0.272284], "translation": [ 0.338208, -0.000000, 0.000050] }, { "keytime": 3407.664551, "scale": [ 0.268130, 0.268130, 0.268130], "translation": [ 0.338207, -0.000000, 0.000049] }, { "keytime": 3440.997803, "scale": [ 0.264122, 0.264122, 0.264122], "translation": [ 0.338206, -0.000000, 0.000047] }, { "keytime": 3474.331055, "scale": [ 0.260049, 0.260049, 0.260049], "translation": [ 0.338205, -0.000000, 0.000046] }, { "keytime": 3507.664307, "scale": [ 0.256139, 0.256140, 0.256139], "translation": [ 0.338204, -0.000000, 0.000045] }, { "keytime": 3540.997559, "scale": [ 0.252376, 0.252376, 0.252376], "translation": [ 0.338203, -0.000000, 0.000044] }, { "keytime": 3574.330811, "scale": [ 0.248499, 0.248499, 0.248499], "translation": [ 0.338202, -0.000000, 0.000043] }, { "keytime": 3607.664062, "scale": [ 0.244896, 0.244896, 0.244896], "translation": [ 0.338201, -0.000000, 0.000042] }, { "keytime": 3640.997314, "scale": [ 0.241351, 0.241351, 0.241351], "translation": [ 0.338200, -0.000000, 0.000041] }, { "keytime": 3674.330566, "scale": [ 0.237760, 0.237760, 0.237760], "translation": [ 0.338199, -0.000000, 0.000040] }, { "keytime": 3740.997070, "scale": [ 0.231169, 0.231169, 0.231169], "translation": [ 0.338197, -0.000000, 0.000038] }, { "keytime": 3774.330322, "scale": [ 0.227986, 0.227986, 0.227986], "translation": [ 0.338196, -0.000000, 0.000036] }, { "keytime": 3807.663574, "scale": [ 0.224975, 0.224975, 0.224975], "translation": [ 0.338195, -0.000000, 0.000035] }, { "keytime": 3840.996826, "scale": [ 0.222017, 0.222017, 0.222017], "translation": [ 0.338194, -0.000000, 0.000034] }, { "keytime": 3874.330078, "scale": [ 0.219158, 0.219158, 0.219158], "translation": [ 0.338193, -0.000000, 0.000033] }, { "keytime": 3907.663330, "scale": [ 0.216553, 0.216553, 0.216553], "translation": [ 0.338192, -0.000000, 0.000032] }, { "keytime": 3940.996582, "scale": [ 0.214083, 0.214083, 0.214083], "translation": [ 0.338191, -0.000000, 0.000031] }, { "keytime": 3974.329834, "scale": [ 0.211684, 0.211684, 0.211684], "translation": [ 0.338190, -0.000000, 0.000030] }, { "keytime": 4007.663086, "scale": [ 0.209505, 0.209505, 0.209505], "translation": [ 0.338190, -0.000000, 0.000029] }, { "keytime": 4040.996338, "scale": [ 0.207483, 0.207483, 0.207483], "translation": [ 0.338189, -0.000000, 0.000028] }, { "keytime": 4074.329590, "scale": [ 0.205619, 0.205619, 0.205619], "translation": [ 0.338188, -0.000000, 0.000027] }, { "keytime": 4107.663086, "scale": [ 0.203988, 0.203988, 0.203988], "translation": [ 0.338187, -0.000000, 0.000025] }, { "keytime": 4140.996094, "scale": [ 0.202536, 0.202536, 0.202536], "translation": [ 0.338186, 0.000000, 0.000024] }, { "keytime": 4174.329590, "scale": [ 0.201237, 0.201237, 0.201237], "translation": [ 0.338185, 0.000000, 0.000023] }, { "keytime": 4207.663086, "scale": [ 0.200177, 0.200177, 0.200177], "translation": [ 0.338184, 0.000000, 0.000022] }, { "keytime": 4240.996582, "scale": [ 0.199392, 0.199392, 0.199392], "translation": [ 0.338183, 0.000000, 0.000021] }, { "keytime": 4274.330078, "scale": [ 0.198811, 0.198811, 0.198811], "translation": [ 0.338182, 0.000000, 0.000020] }, { "keytime": 4307.663574, "scale": [ 0.198482, 0.198482, 0.198482], "translation": [ 0.338181, 0.000000, 0.000019] }, { "keytime": 4340.997070, "scale": [ 0.200200, 0.200200, 0.200200], "translation": [ 0.338180, 0.000000, 0.000018] }, { "keytime": 4374.330566, "scale": [ 0.208762, 0.208762, 0.208762], "translation": [ 0.338179, 0.000000, 0.000017] }, { "keytime": 4407.664062, "scale": [ 0.233695, 0.233695, 0.233695], "translation": [ 0.338178, 0.000000, 0.000016] }, { "keytime": 4440.997559, "scale": [ 0.270767, 0.270767, 0.270767], "translation": [ 0.338177, 0.000000, 0.000014] }, { "keytime": 4474.331055, "scale": [ 0.321036, 0.321036, 0.321036], "translation": [ 0.338176, 0.000000, 0.000013] }, { "keytime": 4507.664551, "scale": [ 0.380502, 0.380502, 0.380502], "translation": [ 0.338175, 0.000000, 0.000012] }, { "keytime": 4540.998047, "scale": [ 0.449405, 0.449405, 0.449406], "translation": [ 0.338174, 0.000000, 0.000011] }, { "keytime": 4574.331543, "scale": [ 0.528521, 0.528521, 0.528521], "translation": [ 0.338173, 0.000000, 0.000010] }, { "keytime": 4607.665039, "scale": [ 0.607649, 0.607649, 0.607649], "translation": [ 0.338172, 0.000000, 0.000009] }, { "keytime": 4640.998535, "scale": [ 0.686172, 0.686172, 0.686172], "translation": [ 0.338171, 0.000000, 0.000008] }, { "keytime": 4674.332031, "scale": [ 0.763564, 0.763564, 0.763564], "translation": [ 0.338170, 0.000000, 0.000007] }, { "keytime": 4707.665527, "scale": [ 0.832468, 0.832468, 0.832468], "translation": [ 0.338169, 0.000000, 0.000006] }, { "keytime": 4740.999023, "scale": [ 0.889327, 0.889327, 0.889327], "translation": [ 0.338168, 0.000000, 0.000005] }, { "keytime": 4774.332520, "scale": [ 0.936403, 0.936403, 0.936403], "translation": [ 0.338167, 0.000000, 0.000003] }, { "keytime": 4807.666016, "scale": [ 0.969984, 0.969984, 0.969984], "translation": [ 0.338166, 0.000000, 0.000002] }, { "keytime": 4832.000000, "scale": [ 0.989001, 0.989001, 0.989001], "translation": [ 0.338165, 0.000000, 0.000002] } ] }, { "boneId": "Bone_019", "keyframes": [ { "keytime": 41.000000, "scale": [ 0.200000, 0.200000, 0.200000] }, { "keytime": 307.666656, "scale": [ 0.200220, 0.200220, 0.200220] }, { "keytime": 341.000000, "scale": [ 0.200287, 0.200287, 0.200287] }, { "keytime": 407.666687, "scale": [ 0.200646, 0.200646, 0.200646] }, { "keytime": 441.000031, "scale": [ 0.200832, 0.200832, 0.200832] }, { "keytime": 507.666718, "scale": [ 0.201191, 0.201191, 0.201191] }, { "keytime": 541.000061, "scale": [ 0.201376, 0.201376, 0.201376] }, { "keytime": 607.666687, "scale": [ 0.202166, 0.202166, 0.202166] }, { "keytime": 641.000000, "scale": [ 0.202572, 0.202572, 0.202572] }, { "keytime": 674.333313, "scale": [ 0.203013, 0.203013, 0.203013] }, { "keytime": 740.999939, "scale": [ 0.204180, 0.204180, 0.204180] }, { "keytime": 774.333252, "scale": [ 0.204917, 0.204917, 0.204917] }, { "keytime": 807.666565, "scale": [ 0.205682, 0.205682, 0.205682] }, { "keytime": 840.999878, "scale": [ 0.206492, 0.206492, 0.206492] }, { "keytime": 874.333191, "scale": [ 0.207490, 0.207490, 0.207490] }, { "keytime": 907.666504, "scale": [ 0.208458, 0.208458, 0.208458] }, { "keytime": 940.999817, "scale": [ 0.209588, 0.209588, 0.209588] }, { "keytime": 974.333130, "scale": [ 0.210814, 0.210814, 0.210814] }, { "keytime": 1007.666443, "scale": [ 0.212058, 0.212058, 0.212058] }, { "keytime": 1040.999756, "scale": [ 0.213482, 0.213482, 0.213482] }, { "keytime": 1074.333130, "scale": [ 0.214949, 0.214949, 0.214949] }, { "keytime": 1107.666504, "scale": [ 0.216549, 0.216549, 0.216549] }, { "keytime": 1140.999878, "scale": [ 0.218213, 0.218213, 0.218213] }, { "keytime": 1174.333252, "scale": [ 0.219985, 0.219985, 0.219985] }, { "keytime": 1207.666626, "scale": [ 0.221888, 0.221888, 0.221888] }, { "keytime": 1241.000000, "scale": [ 0.223848, 0.223848, 0.223848] }, { "keytime": 1274.333374, "scale": [ 0.225926, 0.225926, 0.225926] }, { "keytime": 1307.666748, "scale": [ 0.228063, 0.228063, 0.228063] }, { "keytime": 1341.000122, "scale": [ 0.230322, 0.230322, 0.230321] }, { "keytime": 1407.666870, "scale": [ 0.235044, 0.235044, 0.235044] }, { "keytime": 1441.000244, "scale": [ 0.237636, 0.237636, 0.237636] }, { "keytime": 1474.333618, "scale": [ 0.240208, 0.240208, 0.240208] }, { "keytime": 1507.666992, "scale": [ 0.242826, 0.242826, 0.242826] }, { "keytime": 1541.000366, "scale": [ 0.245678, 0.245678, 0.245678] }, { "keytime": 1574.333740, "scale": [ 0.248446, 0.248446, 0.248446] }, { "keytime": 1607.667114, "scale": [ 0.251348, 0.251347, 0.251347] }, { "keytime": 1641.000488, "scale": [ 0.254386, 0.254386, 0.254386] }, { "keytime": 1674.333862, "scale": [ 0.257374, 0.257374, 0.257374] }, { "keytime": 1707.667236, "scale": [ 0.260487, 0.260487, 0.260487] }, { "keytime": 1741.000610, "scale": [ 0.263695, 0.263695, 0.263695] }, { "keytime": 1774.333984, "scale": [ 0.266993, 0.266993, 0.266993] }, { "keytime": 1807.667358, "scale": [ 0.270519, 0.270519, 0.270519] }, { "keytime": 1841.000732, "scale": [ 0.274419, 0.274419, 0.274419] }, { "keytime": 1874.334106, "scale": [ 0.278462, 0.278462, 0.278462] }, { "keytime": 1907.667480, "scale": [ 0.282845, 0.282845, 0.282845] }, { "keytime": 1941.000854, "scale": [ 0.287625, 0.287625, 0.287625] }, { "keytime": 1974.334229, "scale": [ 0.292524, 0.292524, 0.292524] }, { "keytime": 2007.667603, "scale": [ 0.297676, 0.297676, 0.297676] }, { "keytime": 2041.000977, "scale": [ 0.303255, 0.303255, 0.303255] }, { "keytime": 2074.334473, "scale": [ 0.309011, 0.309011, 0.309011] }, { "keytime": 2107.667725, "scale": [ 0.315017, 0.315017, 0.315017] }, { "keytime": 2141.000977, "scale": [ 0.321468, 0.321468, 0.321468] }, { "keytime": 2174.334229, "scale": [ 0.327982, 0.327982, 0.327982] }, { "keytime": 2207.667480, "scale": [ 0.334749, 0.334749, 0.334749] }, { "keytime": 2241.000732, "scale": [ 0.342056, 0.342056, 0.342056] }, { "keytime": 2274.333984, "scale": [ 0.349398, 0.349398, 0.349398] }, { "keytime": 2307.667236, "scale": [ 0.356979, 0.356979, 0.356979] }, { "keytime": 2374.333740, "scale": [ 0.373102, 0.373102, 0.373102] }, { "keytime": 2407.666992, "scale": [ 0.381470, 0.381470, 0.381470] }, { "keytime": 2441.000244, "scale": [ 0.390323, 0.390323, 0.390323] }, { "keytime": 2474.333496, "scale": [ 0.399141, 0.399141, 0.399141] }, { "keytime": 2507.666748, "scale": [ 0.408173, 0.408173, 0.408173] }, { "keytime": 2541.000000, "scale": [ 0.417703, 0.417703, 0.417703] }, { "keytime": 2574.333252, "scale": [ 0.427227, 0.427227, 0.427227] }, { "keytime": 2607.666504, "scale": [ 0.436945, 0.436945, 0.436945] }, { "keytime": 2640.999756, "scale": [ 0.446850, 0.446850, 0.446850] }, { "keytime": 2674.333008, "scale": [ 0.457250, 0.457249, 0.457249] }, { "keytime": 2707.666260, "scale": [ 0.467524, 0.467524, 0.467524] }, { "keytime": 2740.999512, "scale": [ 0.478019, 0.478019, 0.478019] }, { "keytime": 2774.332764, "scale": [ 0.488991, 0.488991, 0.488991] }, { "keytime": 2807.666016, "scale": [ 0.499793, 0.499793, 0.499793] }, { "keytime": 2840.999268, "scale": [ 0.510732, 0.510732, 0.510732] }, { "keytime": 2874.332520, "scale": [ 0.522145, 0.522145, 0.522145] }, { "keytime": 2907.665771, "scale": [ 0.533449, 0.533449, 0.533449] }, { "keytime": 2940.999023, "scale": [ 0.544755, 0.544755, 0.544755] }, { "keytime": 2974.332275, "scale": [ 0.556524, 0.556524, 0.556524] }, { "keytime": 3040.998779, "scale": [ 0.579621, 0.579621, 0.579621] }, { "keytime": 3074.332031, "scale": [ 0.591712, 0.591712, 0.591712] }, { "keytime": 3140.998535, "scale": [ 0.615195, 0.615195, 0.615195] }, { "keytime": 3174.331787, "scale": [ 0.627292, 0.627292, 0.627292] }, { "keytime": 3240.998291, "scale": [ 0.650774, 0.650775, 0.650775] }, { "keytime": 3274.331543, "scale": [ 0.662872, 0.662872, 0.662872] }, { "keytime": 3340.998047, "scale": [ 0.686354, 0.686354, 0.686354] }, { "keytime": 3374.331299, "scale": [ 0.698451, 0.698451, 0.698451] }, { "keytime": 3407.664551, "scale": [ 0.709952, 0.709953, 0.709952] }, { "keytime": 3440.997803, "scale": [ 0.721451, 0.721451, 0.721451] }, { "keytime": 3474.331055, "scale": [ 0.733165, 0.733165, 0.733165] }, { "keytime": 3540.997559, "scale": [ 0.755621, 0.755622, 0.755621] }, { "keytime": 3574.330811, "scale": [ 0.766936, 0.766936, 0.766936] }, { "keytime": 3607.664062, "scale": [ 0.777765, 0.777765, 0.777765] }, { "keytime": 3640.997314, "scale": [ 0.788442, 0.788442, 0.788442] }, { "keytime": 3674.330566, "scale": [ 0.799269, 0.799269, 0.799269] }, { "keytime": 3707.663818, "scale": [ 0.809599, 0.809599, 0.809599] }, { "keytime": 3740.997070, "scale": [ 0.819685, 0.819685, 0.819685] }, { "keytime": 3774.330322, "scale": [ 0.829872, 0.829872, 0.829872] }, { "keytime": 3807.663574, "scale": [ 0.839549, 0.839549, 0.839549] }, { "keytime": 3840.996826, "scale": [ 0.849016, 0.849016, 0.849016] }, { "keytime": 3874.330078, "scale": [ 0.858532, 0.858532, 0.858532] }, { "keytime": 3907.663330, "scale": [ 0.867462, 0.867462, 0.867462] }, { "keytime": 3940.996582, "scale": [ 0.876154, 0.876154, 0.876154] }, { "keytime": 3974.329834, "scale": [ 0.884854, 0.884854, 0.884854] }, { "keytime": 4007.663086, "scale": [ 0.893045, 0.893045, 0.893045] }, { "keytime": 4040.996338, "scale": [ 0.900972, 0.900973, 0.900972] }, { "keytime": 4074.329590, "scale": [ 0.908787, 0.908787, 0.908787] }, { "keytime": 4107.663086, "scale": [ 0.916094, 0.916094, 0.916094] }, { "keytime": 4140.996094, "scale": [ 0.923131, 0.923131, 0.923131] }, { "keytime": 4174.329590, "scale": [ 0.930091, 0.930091, 0.930091] }, { "keytime": 4207.663086, "scale": [ 0.936558, 0.936558, 0.936558] }, { "keytime": 4240.996582, "scale": [ 0.942652, 0.942652, 0.942652] }, { "keytime": 4274.330078, "scale": [ 0.948635, 0.948635, 0.948634] }, { "keytime": 4307.663574, "scale": [ 0.954146, 0.954146, 0.954146] }, { "keytime": 4340.997070, "scale": [ 0.959369, 0.959369, 0.959369] }, { "keytime": 4374.330566, "scale": [ 0.964436, 0.964436, 0.964436] }, { "keytime": 4407.664062, "scale": [ 0.968962, 0.968962, 0.968962] }, { "keytime": 4440.997559, "scale": [ 0.973196, 0.973195, 0.973196] }, { "keytime": 4474.331055, "scale": [ 0.977249, 0.977249, 0.977249] }, { "keytime": 4507.664551, "scale": [ 0.980884, 0.980884, 0.980884] }, { "keytime": 4540.998047, "scale": [ 0.984213, 0.984213, 0.984213] }, { "keytime": 4574.331543, "scale": [ 0.987245, 0.987245, 0.987245] }, { "keytime": 4607.665039, "scale": [ 0.989883, 0.989883, 0.989883] }, { "keytime": 4640.998535, "scale": [ 0.992229, 0.992229, 0.992229] }, { "keytime": 4674.332031, "scale": [ 0.994336, 0.994336, 0.994336] }, { "keytime": 4707.665527, "scale": [ 0.996079, 0.996079, 0.996079] }, { "keytime": 4740.999023, "scale": [ 0.997438, 0.997438, 0.997438] }, { "keytime": 4774.332520, "scale": [ 0.998539, 0.998539, 0.998539] }, { "keytime": 4807.666016, "scale": [ 0.999313, 0.999312, 0.999312] }, { "keytime": 4832.000000, "scale": [ 0.999748, 0.999748, 0.999748] } ] }, { "boneId": "Bone_020", "keyframes": [ { "keytime": 41.000000, "scale": [ 1.000000, 1.000000, 1.000000] }, { "keytime": 74.333328, "scale": [ 0.999539, 0.999539, 0.999539] }, { "keytime": 107.666664, "scale": [ 0.998395, 0.998396, 0.998396] }, { "keytime": 141.000000, "scale": [ 0.996495, 0.996495, 0.996495] }, { "keytime": 174.333328, "scale": [ 0.993948, 0.993948, 0.993948] }, { "keytime": 207.666656, "scale": [ 0.990690, 0.990690, 0.990690] }, { "keytime": 240.999985, "scale": [ 0.986510, 0.986510, 0.986509] }, { "keytime": 274.333313, "scale": [ 0.981478, 0.981478, 0.981478] }, { "keytime": 307.666656, "scale": [ 0.975880, 0.975880, 0.975880] }, { "keytime": 341.000000, "scale": [ 0.969374, 0.969375, 0.969375] }, { "keytime": 374.333344, "scale": [ 0.962352, 0.962352, 0.962352] }, { "keytime": 407.666687, "scale": [ 0.954404, 0.954405, 0.954405] }, { "keytime": 441.000031, "scale": [ 0.945505, 0.945505, 0.945505] }, { "keytime": 474.333374, "scale": [ 0.936170, 0.936170, 0.936170] }, { "keytime": 507.666718, "scale": [ 0.926164, 0.926164, 0.926164] }, { "keytime": 541.000061, "scale": [ 0.915142, 0.915142, 0.915142] }, { "keytime": 574.333374, "scale": [ 0.903561, 0.903561, 0.903561] }, { "keytime": 607.666687, "scale": [ 0.891344, 0.891344, 0.891344] }, { "keytime": 641.000000, "scale": [ 0.878101, 0.878101, 0.878101] }, { "keytime": 674.333313, "scale": [ 0.864624, 0.864624, 0.864624] }, { "keytime": 707.666626, "scale": [ 0.850533, 0.850533, 0.850533] }, { "keytime": 740.999939, "scale": [ 0.835682, 0.835682, 0.835682] }, { "keytime": 774.333252, "scale": [ 0.819810, 0.819810, 0.819810] }, { "keytime": 807.666565, "scale": [ 0.803862, 0.803862, 0.803862] }, { "keytime": 840.999878, "scale": [ 0.787408, 0.787408, 0.787408] }, { "keytime": 874.333191, "scale": [ 0.769929, 0.769929, 0.769929] }, { "keytime": 907.666504, "scale": [ 0.752363, 0.752363, 0.752363] }, { "keytime": 940.999817, "scale": [ 0.734387, 0.734387, 0.734387] }, { "keytime": 974.333130, "scale": [ 0.715462, 0.715462, 0.715462] }, { "keytime": 1007.666443, "scale": [ 0.696731, 0.696731, 0.696731] }, { "keytime": 1040.999756, "scale": [ 0.677662, 0.677662, 0.677662] }, { "keytime": 1074.333130, "scale": [ 0.657637, 0.657637, 0.657637] }, { "keytime": 1107.666504, "scale": [ 0.637958, 0.637958, 0.637958] }, { "keytime": 1140.999878, "scale": [ 0.618080, 0.618080, 0.618080] }, { "keytime": 1174.333252, "scale": [ 0.597405, 0.597406, 0.597406] }, { "keytime": 1207.666626, "scale": [ 0.577149, 0.577149, 0.577149] }, { "keytime": 1241.000000, "scale": [ 0.556279, 0.556279, 0.556279] }, { "keytime": 1307.666748, "scale": [ 0.515766, 0.515766, 0.515766] }, { "keytime": 1341.000122, "scale": [ 0.494896, 0.494896, 0.494896] }, { "keytime": 1374.333496, "scale": [ 0.474639, 0.474639, 0.474639] }, { "keytime": 1407.666870, "scale": [ 0.454629, 0.454629, 0.454629] }, { "keytime": 1441.000244, "scale": [ 0.434202, 0.434202, 0.434202] }, { "keytime": 1474.333618, "scale": [ 0.414596, 0.414596, 0.414596] }, { "keytime": 1507.666992, "scale": [ 0.395236, 0.395236, 0.395236] }, { "keytime": 1541.000366, "scale": [ 0.375589, 0.375590, 0.375589] }, { "keytime": 1574.333740, "scale": [ 0.356961, 0.356961, 0.356961] }, { "keytime": 1607.667114, "scale": [ 0.338702, 0.338702, 0.338702] }, { "keytime": 1641.000488, "scale": [ 0.320305, 0.320305, 0.320305] }, { "keytime": 1674.333862, "scale": [ 0.302880, 0.302880, 0.302880] }, { "keytime": 1707.667236, "scale": [ 0.285916, 0.285916, 0.285916] }, { "keytime": 1741.000610, "scale": [ 0.269100, 0.269100, 0.269100] }, { "keytime": 1774.333984, "scale": [ 0.253315, 0.253315, 0.253315] }, { "keytime": 1807.667358, "scale": [ 0.238066, 0.238066, 0.238066] }, { "keytime": 1841.000732, "scale": [ 0.222944, 0.222944, 0.222944] }, { "keytime": 1874.334106, "scale": [ 0.208853, 0.208854, 0.208854] }, { "keytime": 1907.667480, "scale": [ 0.195564, 0.195564, 0.195564] }, { "keytime": 1941.000854, "scale": [ 0.182516, 0.182516, 0.182516] }, { "keytime": 1974.334229, "scale": [ 0.170499, 0.170499, 0.170499] }, { "keytime": 2007.667603, "scale": [ 0.159123, 0.159123, 0.159123] }, { "keytime": 2041.000977, "scale": [ 0.148102, 0.148102, 0.148102] }, { "keytime": 2074.334473, "scale": [ 0.138304, 0.138304, 0.138305] }, { "keytime": 2107.667725, "scale": [ 0.129182, 0.129182, 0.129182] }, { "keytime": 2141.000977, "scale": [ 0.120498, 0.120498, 0.120498] }, { "keytime": 2174.334229, "scale": [ 0.112767, 0.112767, 0.112767] }, { "keytime": 2207.667480, "scale": [ 0.105744, 0.105745, 0.105745] }, { "keytime": 2241.000732, "scale": [ 0.099457, 0.099457, 0.099457] }, { "keytime": 2274.333984, "scale": [ 0.094078, 0.094078, 0.094078] }, { "keytime": 2307.667236, "scale": [ 0.089393, 0.089393, 0.089393] }, { "keytime": 2341.000488, "scale": [ 0.085304, 0.085304, 0.085304] }, { "keytime": 2374.333740, "scale": [ 0.082046, 0.082046, 0.082046] }, { "keytime": 2407.666992, "scale": [ 0.079717, 0.079717, 0.079717] }, { "keytime": 2441.000244, "scale": [ 0.078033, 0.078033, 0.078033] }, { "keytime": 2474.333496, "scale": [ 0.077104, 0.077104, 0.077104] }, { "keytime": 2507.666748, "scale": [ 0.076865, 0.076865, 0.076865] }, { "keytime": 2541.000000, "scale": [ 0.077374, 0.077374, 0.077374] }, { "keytime": 2574.333252, "scale": [ 0.078861, 0.078861, 0.078861] }, { "keytime": 2607.666504, "scale": [ 0.081084, 0.081084, 0.081084] }, { "keytime": 2640.999756, "scale": [ 0.084048, 0.084048, 0.084048] }, { "keytime": 2674.333008, "scale": [ 0.087890, 0.087890, 0.087890] }, { "keytime": 2707.666260, "scale": [ 0.092391, 0.092391, 0.092391] }, { "keytime": 2740.999512, "scale": [ 0.097881, 0.097881, 0.097881] }, { "keytime": 2774.332764, "scale": [ 0.104313, 0.104313, 0.104313] }, { "keytime": 2807.666016, "scale": [ 0.111319, 0.111319, 0.111319] }, { "keytime": 2840.999268, "scale": [ 0.119065, 0.119065, 0.119065] }, { "keytime": 2874.332520, "scale": [ 0.127846, 0.127846, 0.127846] }, { "keytime": 2907.665771, "scale": [ 0.137347, 0.137347, 0.137347] }, { "keytime": 2940.999023, "scale": [ 0.147567, 0.147567, 0.147567] }, { "keytime": 2974.332275, "scale": [ 0.158846, 0.158846, 0.158846] }, { "keytime": 3007.665527, "scale": [ 0.170508, 0.170508, 0.170508] }, { "keytime": 3040.998779, "scale": [ 0.182889, 0.182889, 0.182889] }, { "keytime": 3074.332031, "scale": [ 0.196558, 0.196558, 0.196558] }, { "keytime": 3107.665283, "scale": [ 0.210503, 0.210503, 0.210503] }, { "keytime": 3140.998535, "scale": [ 0.225084, 0.225084, 0.225084] }, { "keytime": 3174.331787, "scale": [ 0.240762, 0.240762, 0.240762] }, { "keytime": 3207.665039, "scale": [ 0.256600, 0.256600, 0.256600] }, { "keytime": 3240.998291, "scale": [ 0.273190, 0.273190, 0.273190] }, { "keytime": 3274.331543, "scale": [ 0.290838, 0.290838, 0.290839] }, { "keytime": 3307.664795, "scale": [ 0.308490, 0.308490, 0.308490] }, { "keytime": 3340.998047, "scale": [ 0.326622, 0.326622, 0.326622] }, { "keytime": 3374.331299, "scale": [ 0.345794, 0.345794, 0.345794] }, { "keytime": 3407.664551, "scale": [ 0.364948, 0.364948, 0.364948] }, { "keytime": 3440.997803, "scale": [ 0.384462, 0.384462, 0.384462] }, { "keytime": 3474.331055, "scale": [ 0.404912, 0.404912, 0.404912] }, { "keytime": 3507.664307, "scale": [ 0.425058, 0.425058, 0.425058] }, { "keytime": 3540.997559, "scale": [ 0.445471, 0.445471, 0.445471] }, { "keytime": 3574.330811, "scale": [ 0.466776, 0.466776, 0.466776] }, { "keytime": 3607.664062, "scale": [ 0.487665, 0.487665, 0.487665] }, { "keytime": 3640.997314, "scale": [ 0.508627, 0.508627, 0.508627] }, { "keytime": 3674.330566, "scale": [ 0.530224, 0.530224, 0.530224] }, { "keytime": 3740.997070, "scale": [ 0.572147, 0.572147, 0.572147] }, { "keytime": 3774.330322, "scale": [ 0.593744, 0.593744, 0.593744] }, { "keytime": 3807.663574, "scale": [ 0.614572, 0.614572, 0.614572] }, { "keytime": 3840.996826, "scale": [ 0.635197, 0.635197, 0.635197] }, { "keytime": 3874.330078, "scale": [ 0.656229, 0.656229, 0.656229] }, { "keytime": 3907.663330, "scale": [ 0.676298, 0.676298, 0.676298] }, { "keytime": 3940.996582, "scale": [ 0.696059, 0.696059, 0.696059] }, { "keytime": 3974.329834, "scale": [ 0.716061, 0.716061, 0.716061] }, { "keytime": 4007.663086, "scale": [ 0.735092, 0.735092, 0.735092] }, { "keytime": 4040.996338, "scale": [ 0.753701, 0.753700, 0.753701] }, { "keytime": 4074.329590, "scale": [ 0.772260, 0.772260, 0.772260] }, { "keytime": 4107.663086, "scale": [ 0.789763, 0.789763, 0.789763] }, { "keytime": 4140.996094, "scale": [ 0.806747, 0.806747, 0.806747] }, { "keytime": 4174.329590, "scale": [ 0.823670, 0.823670, 0.823670] }, { "keytime": 4207.663086, "scale": [ 0.839508, 0.839508, 0.839508] }, { "keytime": 4240.996582, "scale": [ 0.854551, 0.854551, 0.854551] }, { "keytime": 4274.330078, "scale": [ 0.869398, 0.869398, 0.869398] }, { "keytime": 4307.663574, "scale": [ 0.883147, 0.883147, 0.883147] }, { "keytime": 4340.997070, "scale": [ 0.896238, 0.896238, 0.896238] }, { "keytime": 4374.330566, "scale": [ 0.908995, 0.908995, 0.908995] }, { "keytime": 4407.664062, "scale": [ 0.920448, 0.920448, 0.920448] }, { "keytime": 4440.997559, "scale": [ 0.931196, 0.931196, 0.931196] }, { "keytime": 4474.331055, "scale": [ 0.941517, 0.941517, 0.941517] }, { "keytime": 4507.664551, "scale": [ 0.950799, 0.950798, 0.950799] }, { "keytime": 4540.998047, "scale": [ 0.959321, 0.959321, 0.959321] }, { "keytime": 4574.331543, "scale": [ 0.967104, 0.967104, 0.967104] }, { "keytime": 4607.665039, "scale": [ 0.973887, 0.973887, 0.973887] }, { "keytime": 4640.998535, "scale": [ 0.979927, 0.979927, 0.979927] }, { "keytime": 4674.332031, "scale": [ 0.985360, 0.985360, 0.985360] }, { "keytime": 4707.665527, "scale": [ 0.989861, 0.989860, 0.989861] }, { "keytime": 4740.999023, "scale": [ 0.993373, 0.993373, 0.993373] }, { "keytime": 4774.332520, "scale": [ 0.996219, 0.996219, 0.996219] }, { "keytime": 4807.666016, "scale": [ 0.998221, 0.998221, 0.998221] }, { "keytime": 4832.000000, "scale": [ 0.999347, 0.999347, 0.999347] } ] }, { "boneId": "Bone_021", "keyframes": [ { "keytime": 41.000000, "scale": [ 0.560000, 0.560000, 0.560000], "translation": [ 0.544526, 0.000002, 0.000001] }, { "keytime": 74.333328, "scale": [ 0.559886, 0.559886, 0.559886], "translation": [ 0.544526, 0.000002, 0.000001] }, { "keytime": 107.666664, "scale": [ 0.559605, 0.559605, 0.559605], "translation": [ 0.544526, 0.000002, 0.000001] }, { "keytime": 141.000000, "scale": [ 0.559137, 0.559137, 0.559137], "translation": [ 0.544526, 0.000002, 0.000001] }, { "keytime": 174.333328, "scale": [ 0.558511, 0.558511, 0.558511], "translation": [ 0.544526, 0.000002, 0.000001] }, { "keytime": 207.666656, "scale": [ 0.557710, 0.557710, 0.557710], "translation": [ 0.544526, 0.000002, 0.000001] }, { "keytime": 240.999985, "scale": [ 0.556682, 0.556682, 0.556682], "translation": [ 0.544526, 0.000002, 0.000001] }, { "keytime": 274.333313, "scale": [ 0.555445, 0.555445, 0.555445], "translation": [ 0.544526, 0.000002, 0.000001] }, { "keytime": 307.666656, "scale": [ 0.554069, 0.554069, 0.554068], "translation": [ 0.544526, 0.000002, 0.000001] }, { "keytime": 341.000000, "scale": [ 0.552468, 0.552468, 0.552468], "translation": [ 0.544526, 0.000002, 0.000001] }, { "keytime": 374.333344, "scale": [ 0.550739, 0.550739, 0.550739], "translation": [ 0.544526, 0.000002, 0.000001] }, { "keytime": 407.666687, "scale": [ 0.548781, 0.548781, 0.548781], "translation": [ 0.544526, 0.000002, 0.000001] }, { "keytime": 441.000031, "scale": [ 0.546585, 0.546585, 0.546585], "translation": [ 0.544526, 0.000001, 0.000001] }, { "keytime": 474.333374, "scale": [ 0.544279, 0.544279, 0.544278], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 507.666718, "scale": [ 0.541802, 0.541802, 0.541802], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 541.000061, "scale": [ 0.539070, 0.539070, 0.539070], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 574.333374, "scale": [ 0.536191, 0.536191, 0.536191], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 607.666687, "scale": [ 0.533145, 0.533145, 0.533145], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 641.000000, "scale": [ 0.529834, 0.529834, 0.529834], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 674.333313, "scale": [ 0.526454, 0.526454, 0.526454], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 707.666626, "scale": [ 0.522907, 0.522907, 0.522907], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 740.999939, "scale": [ 0.519150, 0.519150, 0.519150], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 774.333252, "scale": [ 0.515116, 0.515116, 0.515116], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 807.666565, "scale": [ 0.511042, 0.511042, 0.511042], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 840.999878, "scale": [ 0.506817, 0.506817, 0.506817], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 874.333191, "scale": [ 0.502303, 0.502303, 0.502303], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 907.666504, "scale": [ 0.497728, 0.497728, 0.497728], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 940.999817, "scale": [ 0.493014, 0.493014, 0.493014], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 974.333130, "scale": [ 0.488014, 0.488013, 0.488013], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 1007.666443, "scale": [ 0.483025, 0.483025, 0.483025], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 1040.999756, "scale": [ 0.477904, 0.477904, 0.477903], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 1074.333130, "scale": [ 0.472461, 0.472461, 0.472461], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 1107.666504, "scale": [ 0.467003, 0.467003, 0.467003], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 1140.999878, "scale": [ 0.461484, 0.461484, 0.461484], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 1174.333252, "scale": [ 0.455732, 0.455732, 0.455732], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 1207.666626, "scale": [ 0.449939, 0.449939, 0.449939], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 1241.000000, "scale": [ 0.443970, 0.443970, 0.443970], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 1274.333374, "scale": [ 0.438004, 0.438004, 0.438004], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 1307.666748, "scale": [ 0.431979, 0.431979, 0.431979], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 1341.000122, "scale": [ 0.425717, 0.425717, 0.425717], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 1407.666870, "scale": [ 0.413227, 0.413227, 0.413227], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 1441.000244, "scale": [ 0.406793, 0.406793, 0.406793], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 1474.333618, "scale": [ 0.400458, 0.400458, 0.400458], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 1507.666992, "scale": [ 0.394031, 0.394031, 0.394031], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 1541.000366, "scale": [ 0.387409, 0.387409, 0.387409], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 1607.667114, "scale": [ 0.374555, 0.374555, 0.374555], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 1641.000488, "scale": [ 0.367934, 0.367934, 0.367934], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 1707.667236, "scale": [ 0.355080, 0.355080, 0.355080], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 1741.000610, "scale": [ 0.348549, 0.348549, 0.348549], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 1807.667358, "scale": [ 0.335876, 0.335876, 0.335876], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 1841.000732, "scale": [ 0.329347, 0.329347, 0.329347], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 1874.334106, "scale": [ 0.323011, 0.323011, 0.323011], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 1907.667480, "scale": [ 0.316886, 0.316886, 0.316886], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 1941.000854, "scale": [ 0.310577, 0.310577, 0.310577], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 1974.334229, "scale": [ 0.304557, 0.304557, 0.304557], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 2007.667603, "scale": [ 0.298643, 0.298643, 0.298643], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 2041.000977, "scale": [ 0.292549, 0.292549, 0.292549], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 2107.667725, "scale": [ 0.281227, 0.281227, 0.281227], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 2141.000977, "scale": [ 0.275544, 0.275544, 0.275544], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 2207.667480, "scale": [ 0.264811, 0.264811, 0.264811], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 2241.000732, "scale": [ 0.259529, 0.259529, 0.259529], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 2274.333984, "scale": [ 0.254538, 0.254538, 0.254538], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 2307.667236, "scale": [ 0.249678, 0.249678, 0.249678], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 2341.000488, "scale": [ 0.244816, 0.244816, 0.244816], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 2374.333740, "scale": [ 0.240239, 0.240239, 0.240239], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 2407.666992, "scale": [ 0.235855, 0.235855, 0.235855], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 2441.000244, "scale": [ 0.231494, 0.231494, 0.231494], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 2474.333496, "scale": [ 0.227416, 0.227416, 0.227416], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 2507.666748, "scale": [ 0.223491, 0.223491, 0.223491], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 2541.000000, "scale": [ 0.219615, 0.219615, 0.219615], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 2574.333252, "scale": [ 0.216069, 0.216069, 0.216069], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 2607.666504, "scale": [ 0.212684, 0.212684, 0.212684], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 2640.999756, "scale": [ 0.209463, 0.209463, 0.209463], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 2674.333008, "scale": [ 0.206319, 0.206319, 0.206319], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 2707.666260, "scale": [ 0.203439, 0.203439, 0.203439], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 2740.999512, "scale": [ 0.200783, 0.200783, 0.200783], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 2774.332764, "scale": [ 0.198222, 0.198222, 0.198221], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 2807.666016, "scale": [ 0.195910, 0.195910, 0.195910], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 2840.999268, "scale": [ 0.193770, 0.193770, 0.193769], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 2874.332520, "scale": [ 0.191749, 0.191749, 0.191749], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 2907.665771, "scale": [ 0.190018, 0.190018, 0.190018], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 2940.999023, "scale": [ 0.188458, 0.188458, 0.188458], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 2974.332275, "scale": [ 0.187031, 0.187031, 0.187031], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 3007.665527, "scale": [ 0.185821, 0.185821, 0.185821], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 3040.998779, "scale": [ 0.184789, 0.184789, 0.184789], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 3074.332031, "scale": [ 0.183956, 0.183956, 0.183956], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 3107.665283, "scale": [ 0.183325, 0.183325, 0.183325], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 3140.998535, "scale": [ 0.182863, 0.182863, 0.182863], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 3174.331787, "scale": [ 0.182567, 0.182567, 0.182567], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 3207.665039, "scale": [ 0.182453, 0.182453, 0.182453], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 3240.998291, "scale": [ 0.183322, 0.183322, 0.183322], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 3274.331543, "scale": [ 0.185576, 0.185576, 0.185576], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 3307.664795, "scale": [ 0.189132, 0.189132, 0.189132], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 3340.998047, "scale": [ 0.194021, 0.194021, 0.194021], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 3374.331299, "scale": [ 0.200512, 0.200512, 0.200512], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 3407.664551, "scale": [ 0.208608, 0.208609, 0.208609], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 3440.997803, "scale": [ 0.218037, 0.218037, 0.218037], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 3474.331055, "scale": [ 0.229141, 0.229141, 0.229141], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 3507.664307, "scale": [ 0.241255, 0.241255, 0.241255], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 3540.997559, "scale": [ 0.254714, 0.254714, 0.254714], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 3574.330811, "scale": [ 0.270290, 0.270290, 0.270290], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 3607.664062, "scale": [ 0.286673, 0.286673, 0.286673], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 3640.997314, "scale": [ 0.304235, 0.304235, 0.304235], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 3674.330566, "scale": [ 0.323541, 0.323541, 0.323541], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 3707.663818, "scale": [ 0.343411, 0.343411, 0.343411], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 3740.997070, "scale": [ 0.364626, 0.364626, 0.364626], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 3774.330322, "scale": [ 0.387445, 0.387444, 0.387445], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 3807.663574, "scale": [ 0.410471, 0.410471, 0.410471], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 3840.996826, "scale": [ 0.434278, 0.434278, 0.434278], "translation": [ 0.544527, 0.000000, 0.000001] }, { "keytime": 3874.330078, "scale": [ 0.459566, 0.459566, 0.459566], "translation": [ 0.544527, 0.000000, 0.000001] }, { "keytime": 3907.663330, "scale": [ 0.484880, 0.484880, 0.484880], "translation": [ 0.544527, 0.000000, 0.000001] }, { "keytime": 3940.996582, "scale": [ 0.510635, 0.510635, 0.510635], "translation": [ 0.544527, 0.000000, 0.000001] }, { "keytime": 3974.329834, "scale": [ 0.537536, 0.537536, 0.537536], "translation": [ 0.544527, 0.000000, 0.000001] }, { "keytime": 4007.663086, "scale": [ 0.563901, 0.563901, 0.563901], "translation": [ 0.544527, 0.000000, 0.000001] }, { "keytime": 4040.996338, "scale": [ 0.590422, 0.590422, 0.590422], "translation": [ 0.544527, 0.000000, 0.000001] }, { "keytime": 4074.329590, "scale": [ 0.617746, 0.617746, 0.617746], "translation": [ 0.544527, 0.000000, 0.000001] }, { "keytime": 4107.663086, "scale": [ 0.644118, 0.644118, 0.644118], "translation": [ 0.544527, 0.000000, 0.000001] }, { "keytime": 4140.996094, "scale": [ 0.670246, 0.670246, 0.670246], "translation": [ 0.544527, 0.000000, 0.000000] }, { "keytime": 4174.329590, "scale": [ 0.696803, 0.696803, 0.696803], "translation": [ 0.544527, 0.000000, 0.000000] }, { "keytime": 4207.663086, "scale": [ 0.722126, 0.722126, 0.722126], "translation": [ 0.544527, 0.000000, 0.000000] }, { "keytime": 4240.996582, "scale": [ 0.746686, 0.746686, 0.746686], "translation": [ 0.544527, 0.000000, 0.000000] }, { "keytime": 4274.330078, "scale": [ 0.771265, 0.771265, 0.771265], "translation": [ 0.544527, 0.000000, 0.000000] }, { "keytime": 4307.663574, "scale": [ 0.794325, 0.794325, 0.794325], "translation": [ 0.544527, 0.000000, 0.000000] }, { "keytime": 4340.997070, "scale": [ 0.816538, 0.816538, 0.816538], "translation": [ 0.544527, 0.000000, 0.000000] }, { "keytime": 4374.330566, "scale": [ 0.838425, 0.838425, 0.838425], "translation": [ 0.544527, 0.000000, 0.000000] }, { "keytime": 4407.664062, "scale": [ 0.858308, 0.858308, 0.858309], "translation": [ 0.544527, 0.000000, 0.000000] }, { "keytime": 4440.997559, "scale": [ 0.877101, 0.877101, 0.877101], "translation": [ 0.544527, 0.000000, 0.000000] }, { "keytime": 4474.331055, "scale": [ 0.895269, 0.895269, 0.895269], "translation": [ 0.544527, 0.000000, 0.000000] }, { "keytime": 4507.664551, "scale": [ 0.911702, 0.911702, 0.911702], "translation": [ 0.544527, 0.000000, 0.000000] }, { "keytime": 4540.998047, "scale": [ 0.926869, 0.926869, 0.926869], "translation": [ 0.544527, 0.000000, 0.000000] }, { "keytime": 4574.331543, "scale": [ 0.940789, 0.940789, 0.940789], "translation": [ 0.544527, 0.000000, 0.000000] }, { "keytime": 4607.665039, "scale": [ 0.952955, 0.952955, 0.952955], "translation": [ 0.544527, 0.000000, 0.000000] }, { "keytime": 4640.998535, "scale": [ 0.963813, 0.963813, 0.963813], "translation": [ 0.544527, 0.000000, 0.000000] }, { "keytime": 4674.332031, "scale": [ 0.973597, 0.973597, 0.973597], "translation": [ 0.544527, 0.000000, 0.000000] }, { "keytime": 4707.665527, "scale": [ 0.981712, 0.981712, 0.981712], "translation": [ 0.544527, 0.000000, 0.000000] }, { "keytime": 4740.999023, "scale": [ 0.988049, 0.988049, 0.988049], "translation": [ 0.544527, 0.000000, 0.000000] }, { "keytime": 4774.332520, "scale": [ 0.993184, 0.993184, 0.993184], "translation": [ 0.544527, 0.000000, 0.000000] }, { "keytime": 4807.666016, "scale": [ 0.996794, 0.996794, 0.996794], "translation": [ 0.544527, 0.000000, 0.000000] }, { "keytime": 4832.000000, "scale": [ 0.998824, 0.998824, 0.998824], "translation": [ 0.544527, 0.000000, 0.000000] } ] }, { "boneId": "Bone_022", "keyframes": [ { "keytime": 41.000000, "scale": [ 0.659330, 0.659330, 0.659330] }, { "keytime": 74.333328, "scale": [ 0.659230, 0.659230, 0.659230] }, { "keytime": 107.666664, "scale": [ 0.658983, 0.658983, 0.658983] }, { "keytime": 141.000000, "scale": [ 0.658573, 0.658573, 0.658573] }, { "keytime": 174.333328, "scale": [ 0.658023, 0.658023, 0.658023] }, { "keytime": 207.666656, "scale": [ 0.657320, 0.657320, 0.657320] }, { "keytime": 240.999985, "scale": [ 0.656418, 0.656419, 0.656418] }, { "keytime": 274.333313, "scale": [ 0.655334, 0.655334, 0.655334] }, { "keytime": 307.666656, "scale": [ 0.654126, 0.654126, 0.654126] }, { "keytime": 341.000000, "scale": [ 0.652722, 0.652722, 0.652722] }, { "keytime": 374.333344, "scale": [ 0.651205, 0.651205, 0.651205] }, { "keytime": 407.666687, "scale": [ 0.649486, 0.649486, 0.649486] }, { "keytime": 441.000031, "scale": [ 0.647558, 0.647558, 0.647558] }, { "keytime": 474.333374, "scale": [ 0.645532, 0.645532, 0.645532] }, { "keytime": 507.666718, "scale": [ 0.643356, 0.643356, 0.643356] }, { "keytime": 541.000061, "scale": [ 0.640954, 0.640954, 0.640954] }, { "keytime": 574.333374, "scale": [ 0.638419, 0.638419, 0.638419] }, { "keytime": 607.666687, "scale": [ 0.635736, 0.635736, 0.635736] }, { "keytime": 641.000000, "scale": [ 0.632817, 0.632817, 0.632817] }, { "keytime": 674.333313, "scale": [ 0.629833, 0.629832, 0.629833] }, { "keytime": 707.666626, "scale": [ 0.626698, 0.626698, 0.626698] }, { "keytime": 740.999939, "scale": [ 0.623371, 0.623371, 0.623371] }, { "keytime": 774.333252, "scale": [ 0.619793, 0.619793, 0.619793] }, { "keytime": 807.666565, "scale": [ 0.616175, 0.616175, 0.616175] }, { "keytime": 840.999878, "scale": [ 0.612415, 0.612415, 0.612415] }, { "keytime": 874.333191, "scale": [ 0.608389, 0.608389, 0.608389] }, { "keytime": 907.666504, "scale": [ 0.604298, 0.604298, 0.604298] }, { "keytime": 940.999817, "scale": [ 0.600071, 0.600071, 0.600071] }, { "keytime": 1007.666443, "scale": [ 0.591081, 0.591081, 0.591081] }, { "keytime": 1040.999756, "scale": [ 0.586451, 0.586451, 0.586451] }, { "keytime": 1074.333130, "scale": [ 0.581511, 0.581511, 0.581511] }, { "keytime": 1107.666504, "scale": [ 0.576589, 0.576589, 0.576589] }, { "keytime": 1140.999878, "scale": [ 0.571547, 0.571547, 0.571547] }, { "keytime": 1174.333252, "scale": [ 0.566211, 0.566211, 0.566211] }, { "keytime": 1207.666626, "scale": [ 0.560857, 0.560857, 0.560857] }, { "keytime": 1241.000000, "scale": [ 0.555340, 0.555340, 0.555340] }, { "keytime": 1274.333374, "scale": [ 0.549774, 0.549774, 0.549774] }, { "keytime": 1307.666748, "scale": [ 0.544136, 0.544136, 0.544136] }, { "keytime": 1341.000122, "scale": [ 0.538262, 0.538262, 0.538262] }, { "keytime": 1407.666870, "scale": [ 0.526474, 0.526474, 0.526474] }, { "keytime": 1441.000244, "scale": [ 0.520231, 0.520231, 0.520231] }, { "keytime": 1474.333618, "scale": [ 0.514111, 0.514111, 0.514111] }, { "keytime": 1507.666992, "scale": [ 0.507947, 0.507947, 0.507947] }, { "keytime": 1541.000366, "scale": [ 0.501444, 0.501444, 0.501444] }, { "keytime": 1574.333740, "scale": [ 0.495132, 0.495132, 0.495132] }, { "keytime": 1607.667114, "scale": [ 0.488681, 0.488681, 0.488681] }, { "keytime": 1641.000488, "scale": [ 0.481984, 0.481984, 0.481984] }, { "keytime": 1707.667236, "scale": [ 0.468984, 0.468984, 0.468984] }, { "keytime": 1741.000610, "scale": [ 0.462121, 0.462121, 0.462121] }, { "keytime": 1807.667358, "scale": [ 0.448794, 0.448794, 0.448794] }, { "keytime": 1841.000732, "scale": [ 0.441928, 0.441928, 0.441928] }, { "keytime": 1907.667480, "scale": [ 0.428601, 0.428601, 0.428601] }, { "keytime": 1941.000854, "scale": [ 0.421736, 0.421736, 0.421736] }, { "keytime": 2007.667603, "scale": [ 0.408408, 0.408408, 0.408408] }, { "keytime": 2041.000977, "scale": [ 0.401543, 0.401543, 0.401543] }, { "keytime": 2107.667725, "scale": [ 0.388215, 0.388215, 0.388215] }, { "keytime": 2141.000977, "scale": [ 0.381350, 0.381350, 0.381350] }, { "keytime": 2174.334229, "scale": [ 0.374742, 0.374742, 0.374742] }, { "keytime": 2207.667480, "scale": [ 0.368311, 0.368311, 0.368311] }, { "keytime": 2241.000732, "scale": [ 0.361686, 0.361685, 0.361685] }, { "keytime": 2274.333984, "scale": [ 0.355255, 0.355254, 0.355254] }, { "keytime": 2307.667236, "scale": [ 0.348926, 0.348926, 0.348926] }, { "keytime": 2341.000488, "scale": [ 0.342517, 0.342517, 0.342517] }, { "keytime": 2374.333740, "scale": [ 0.336297, 0.336297, 0.336297] }, { "keytime": 2407.666992, "scale": [ 0.330284, 0.330284, 0.330284] }, { "keytime": 2441.000244, "scale": [ 0.324091, 0.324091, 0.324091] }, { "keytime": 2474.333496, "scale": [ 0.318200, 0.318200, 0.318200] }, { "keytime": 2507.666748, "scale": [ 0.312430, 0.312430, 0.312430] }, { "keytime": 2541.000000, "scale": [ 0.306486, 0.306486, 0.306486] }, { "keytime": 2607.666504, "scale": [ 0.295487, 0.295487, 0.295487] }, { "keytime": 2674.333008, "scale": [ 0.284768, 0.284768, 0.284768] }, { "keytime": 2707.666260, "scale": [ 0.279565, 0.279565, 0.279565] }, { "keytime": 2740.999512, "scale": [ 0.274595, 0.274595, 0.274595] }, { "keytime": 2774.332764, "scale": [ 0.269602, 0.269602, 0.269602] }, { "keytime": 2807.666016, "scale": [ 0.264885, 0.264885, 0.264885] }, { "keytime": 2874.332520, "scale": [ 0.255703, 0.255703, 0.255703] }, { "keytime": 2907.665771, "scale": [ 0.251426, 0.251425, 0.251425] }, { "keytime": 2940.999023, "scale": [ 0.247282, 0.247282, 0.247282] }, { "keytime": 2974.332275, "scale": [ 0.243157, 0.243157, 0.243157] }, { "keytime": 3007.665527, "scale": [ 0.239294, 0.239294, 0.239294] }, { "keytime": 3040.998779, "scale": [ 0.235576, 0.235576, 0.235576] }, { "keytime": 3074.332031, "scale": [ 0.231938, 0.231938, 0.231938] }, { "keytime": 3107.665283, "scale": [ 0.228555, 0.228555, 0.228555] }, { "keytime": 3140.998535, "scale": [ 0.225318, 0.225318, 0.225318] }, { "keytime": 3174.331787, "scale": [ 0.222136, 0.222136, 0.222136] }, { "keytime": 3207.665039, "scale": [ 0.219200, 0.219200, 0.219200] }, { "keytime": 3240.998291, "scale": [ 0.216461, 0.216460, 0.216461] }, { "keytime": 3274.331543, "scale": [ 0.213792, 0.213792, 0.213792] }, { "keytime": 3307.664795, "scale": [ 0.211356, 0.211356, 0.211356] }, { "keytime": 3340.998047, "scale": [ 0.209069, 0.209069, 0.209069] }, { "keytime": 3374.331299, "scale": [ 0.206876, 0.206876, 0.206876] }, { "keytime": 3407.664551, "scale": [ 0.204949, 0.204949, 0.204949] }, { "keytime": 3440.997803, "scale": [ 0.203172, 0.203172, 0.203172] }, { "keytime": 3474.331055, "scale": [ 0.201500, 0.201500, 0.201500] }, { "keytime": 3507.664307, "scale": [ 0.200031, 0.200031, 0.200031] }, { "keytime": 3540.997559, "scale": [ 0.198718, 0.198718, 0.198718] }, { "keytime": 3574.330811, "scale": [ 0.197569, 0.197569, 0.197569] }, { "keytime": 3607.664062, "scale": [ 0.196610, 0.196610, 0.196610] }, { "keytime": 3640.997314, "scale": [ 0.195801, 0.195801, 0.195801] }, { "keytime": 3674.330566, "scale": [ 0.195126, 0.195126, 0.195126] }, { "keytime": 3707.663818, "scale": [ 0.194625, 0.194625, 0.194625] }, { "keytime": 3740.997070, "scale": [ 0.194321, 0.194321, 0.194321] }, { "keytime": 3774.330322, "scale": [ 0.194162, 0.194162, 0.194162] }, { "keytime": 3807.663574, "scale": [ 0.195118, 0.195118, 0.195118] }, { "keytime": 3840.996826, "scale": [ 0.198129, 0.198129, 0.198129] }, { "keytime": 3874.330078, "scale": [ 0.204594, 0.204594, 0.204594] }, { "keytime": 3907.663330, "scale": [ 0.215059, 0.215059, 0.215059] }, { "keytime": 3940.996582, "scale": [ 0.228636, 0.228636, 0.228636] }, { "keytime": 3974.329834, "scale": [ 0.245867, 0.245867, 0.245867] }, { "keytime": 4007.663086, "scale": [ 0.265681, 0.265681, 0.265681] }, { "keytime": 4040.996338, "scale": [ 0.288580, 0.288580, 0.288580] }, { "keytime": 4074.329590, "scale": [ 0.315977, 0.315977, 0.315977] }, { "keytime": 4107.663086, "scale": [ 0.345264, 0.345264, 0.345264] }, { "keytime": 4140.996094, "scale": [ 0.376949, 0.376948, 0.376949] }, { "keytime": 4174.329590, "scale": [ 0.411915, 0.411915, 0.411915] }, { "keytime": 4207.663086, "scale": [ 0.447864, 0.447864, 0.447864] }, { "keytime": 4240.996582, "scale": [ 0.485831, 0.485831, 0.485831] }, { "keytime": 4274.330078, "scale": [ 0.526051, 0.526051, 0.526051] }, { "keytime": 4307.663574, "scale": [ 0.565828, 0.565828, 0.565828] }, { "keytime": 4340.997070, "scale": [ 0.605977, 0.605977, 0.605977] }, { "keytime": 4374.330566, "scale": [ 0.647343, 0.647343, 0.647343] }, { "keytime": 4407.664062, "scale": [ 0.686777, 0.686777, 0.686777] }, { "keytime": 4440.997559, "scale": [ 0.725172, 0.725172, 0.725172] }, { "keytime": 4474.331055, "scale": [ 0.763313, 0.763313, 0.763313] }, { "keytime": 4507.664551, "scale": [ 0.798651, 0.798651, 0.798651] }, { "keytime": 4540.998047, "scale": [ 0.831971, 0.831971, 0.831971] }, { "keytime": 4574.331543, "scale": [ 0.863188, 0.863187, 0.863187] }, { "keytime": 4607.665039, "scale": [ 0.890811, 0.890811, 0.890811] }, { "keytime": 4640.998535, "scale": [ 0.915708, 0.915708, 0.915708] }, { "keytime": 4674.332031, "scale": [ 0.938327, 0.938327, 0.938326] }, { "keytime": 4707.665527, "scale": [ 0.957208, 0.957208, 0.957208] }, { "keytime": 4740.999023, "scale": [ 0.972020, 0.972020, 0.972020] }, { "keytime": 4774.332520, "scale": [ 0.984040, 0.984040, 0.984040] }, { "keytime": 4807.666016, "scale": [ 0.992495, 0.992496, 0.992495] }, { "keytime": 4832.000000, "scale": [ 0.997249, 0.997250, 0.997250] } ] }, { "boneId": "Bone_023", "keyframes": [ { "keytime": 41.000000, "scale": [ 0.610000, 0.610000, 0.610000], "translation": [ 0.327775, -0.000001, 0.000001] }, { "keytime": 107.666664, "scale": [ 0.609734, 0.609734, 0.609734], "translation": [ 0.327778, 0.000003, 0.000001] }, { "keytime": 141.000000, "scale": [ 0.609464, 0.609464, 0.609464], "translation": [ 0.327779, 0.000006, 0.000000] }, { "keytime": 207.666656, "scale": [ 0.608674, 0.608674, 0.608674], "translation": [ 0.327782, 0.000010, 0.000000] }, { "keytime": 240.999985, "scale": [ 0.608029, 0.608029, 0.608029], "translation": [ 0.327784, 0.000013, 0.000000] }, { "keytime": 274.333313, "scale": [ 0.607360, 0.607360, 0.607360], "translation": [ 0.327785, 0.000015, 0.000000] }, { "keytime": 307.666656, "scale": [ 0.606590, 0.606590, 0.606590], "translation": [ 0.327787, 0.000017, 0.000000] }, { "keytime": 341.000000, "scale": [ 0.605665, 0.605665, 0.605665], "translation": [ 0.327788, 0.000020, 0.000000] }, { "keytime": 374.333344, "scale": [ 0.604768, 0.604767, 0.604767], "translation": [ 0.327790, 0.000022, 0.000000] }, { "keytime": 407.666687, "scale": [ 0.603632, 0.603632, 0.603631], "translation": [ 0.327792, 0.000024, 0.000000] }, { "keytime": 441.000031, "scale": [ 0.602459, 0.602459, 0.602459], "translation": [ 0.327793, 0.000027, 0.000000] }, { "keytime": 474.333374, "scale": [ 0.601205, 0.601205, 0.601204], "translation": [ 0.327795, 0.000029, 0.000000] }, { "keytime": 507.666718, "scale": [ 0.599832, 0.599832, 0.599832], "translation": [ 0.327796, 0.000031, 0.000000] }, { "keytime": 541.000061, "scale": [ 0.598418, 0.598418, 0.598418], "translation": [ 0.327798, 0.000034, 0.000000] }, { "keytime": 607.666687, "scale": [ 0.595220, 0.595220, 0.595221], "translation": [ 0.327801, 0.000038, 0.000000] }, { "keytime": 641.000000, "scale": [ 0.593462, 0.593462, 0.593462], "translation": [ 0.327802, 0.000041, 0.000000] }, { "keytime": 707.666626, "scale": [ 0.589824, 0.589824, 0.589824], "translation": [ 0.327805, 0.000045, 0.000000] }, { "keytime": 740.999939, "scale": [ 0.587797, 0.587797, 0.587797], "translation": [ 0.327807, 0.000047, 0.000000] }, { "keytime": 774.333252, "scale": [ 0.585704, 0.585704, 0.585704], "translation": [ 0.327809, 0.000050, 0.000000] }, { "keytime": 807.666565, "scale": [ 0.583573, 0.583573, 0.583573], "translation": [ 0.327810, 0.000052, 0.000000] }, { "keytime": 840.999878, "scale": [ 0.581335, 0.581335, 0.581335], "translation": [ 0.327812, 0.000054, 0.000000] }, { "keytime": 874.333191, "scale": [ 0.579030, 0.579030, 0.579030], "translation": [ 0.327813, 0.000057, 0.000000] }, { "keytime": 907.666504, "scale": [ 0.576597, 0.576597, 0.576597], "translation": [ 0.327815, 0.000059, 0.000000] }, { "keytime": 940.999817, "scale": [ 0.574161, 0.574161, 0.574161], "translation": [ 0.327816, 0.000061, 0.000000] }, { "keytime": 974.333130, "scale": [ 0.571557, 0.571557, 0.571557], "translation": [ 0.327818, 0.000064, 0.000000] }, { "keytime": 1040.999756, "scale": [ 0.566302, 0.566302, 0.566302], "translation": [ 0.327821, 0.000068, 0.000000] }, { "keytime": 1074.333130, "scale": [ 0.563412, 0.563412, 0.563412], "translation": [ 0.327822, 0.000071, 0.000000] }, { "keytime": 1107.666504, "scale": [ 0.560601, 0.560601, 0.560600], "translation": [ 0.327824, 0.000073, 0.000000] }, { "keytime": 1140.999878, "scale": [ 0.557706, 0.557706, 0.557705], "translation": [ 0.327825, 0.000075, 0.000000] }, { "keytime": 1174.333252, "scale": [ 0.554627, 0.554627, 0.554627], "translation": [ 0.327827, 0.000078, 0.000000] }, { "keytime": 1207.666626, "scale": [ 0.551640, 0.551640, 0.551639], "translation": [ 0.327829, 0.000080, 0.000000] }, { "keytime": 1241.000000, "scale": [ 0.548390, 0.548390, 0.548390], "translation": [ 0.327830, 0.000082, 0.000000] }, { "keytime": 1274.333374, "scale": [ 0.545233, 0.545233, 0.545233], "translation": [ 0.327832, 0.000085, 0.000000] }, { "keytime": 1307.666748, "scale": [ 0.541998, 0.541998, 0.541998], "translation": [ 0.327833, 0.000087, 0.000000] }, { "keytime": 1341.000122, "scale": [ 0.538579, 0.538579, 0.538579], "translation": [ 0.327835, 0.000089, 0.000000] }, { "keytime": 1374.333496, "scale": [ 0.535260, 0.535260, 0.535260], "translation": [ 0.327836, 0.000092, 0.000000] }, { "keytime": 1407.666870, "scale": [ 0.531753, 0.531753, 0.531753], "translation": [ 0.327838, 0.000094, 0.000000] }, { "keytime": 1441.000244, "scale": [ 0.528137, 0.528137, 0.528137], "translation": [ 0.327839, 0.000096, 0.000000] }, { "keytime": 1474.333618, "scale": [ 0.524627, 0.524627, 0.524628], "translation": [ 0.327841, 0.000099, 0.000000] }, { "keytime": 1507.666992, "scale": [ 0.521069, 0.521069, 0.521069], "translation": [ 0.327843, 0.000101, 0.000000] }, { "keytime": 1541.000366, "scale": [ 0.517233, 0.517233, 0.517233], "translation": [ 0.327844, 0.000103, 0.000000] }, { "keytime": 1607.667114, "scale": [ 0.509789, 0.509789, 0.509789], "translation": [ 0.327847, 0.000108, 0.000000] }, { "keytime": 1641.000488, "scale": [ 0.505855, 0.505855, 0.505855], "translation": [ 0.327849, 0.000110, 0.000000] }, { "keytime": 1707.667236, "scale": [ 0.498021, 0.498021, 0.498021], "translation": [ 0.327852, 0.000115, 0.000000] }, { "keytime": 1741.000610, "scale": [ 0.493985, 0.493985, 0.493985], "translation": [ 0.327853, 0.000117, 0.000000] }, { "keytime": 1774.333984, "scale": [ 0.489937, 0.489937, 0.489937], "translation": [ 0.327855, 0.000119, 0.000000] }, { "keytime": 1807.667358, "scale": [ 0.485844, 0.485844, 0.485844], "translation": [ 0.327856, 0.000122, 0.000000] }, { "keytime": 1841.000732, "scale": [ 0.481627, 0.481627, 0.481627], "translation": [ 0.327858, 0.000124, 0.000000] }, { "keytime": 1874.334106, "scale": [ 0.477535, 0.477535, 0.477535], "translation": [ 0.327860, 0.000126, 0.000000] }, { "keytime": 1907.667480, "scale": [ 0.473265, 0.473265, 0.473265], "translation": [ 0.327861, 0.000129, 0.000000] }, { "keytime": 1941.000854, "scale": [ 0.468864, 0.468864, 0.468864], "translation": [ 0.327863, 0.000131, 0.000000] }, { "keytime": 1974.334229, "scale": [ 0.464592, 0.464592, 0.464592], "translation": [ 0.327864, 0.000133, 0.000000] }, { "keytime": 2007.667603, "scale": [ 0.460321, 0.460321, 0.460321], "translation": [ 0.327866, 0.000093, 0.000000] }, { "keytime": 2041.000977, "scale": [ 0.455920, 0.455920, 0.455920], "translation": [ 0.327867, -0.000096, 0.000000] }, { "keytime": 2074.334473, "scale": [ 0.451461, 0.451460, 0.451460], "translation": [ 0.327869, 0.000002, 0.000000] }, { "keytime": 2107.667725, "scale": [ 0.447001, 0.447001, 0.447001], "translation": [ 0.327870, 0.000011, 0.000000] }, { "keytime": 2141.000977, "scale": [ 0.442407, 0.442407, 0.442407], "translation": [ 0.327872, -0.000011, 0.000000] }, { "keytime": 2207.667480, "scale": [ 0.433488, 0.433488, 0.433488], "translation": [ 0.327875, -0.000056, 0.000000] }, { "keytime": 2241.000732, "scale": [ 0.428894, 0.428894, 0.428894], "translation": [ 0.327877, -0.000079, 0.000000] }, { "keytime": 2274.333984, "scale": [ 0.424302, 0.424302, 0.424302], "translation": [ 0.327878, -0.000101, 0.000000] }, { "keytime": 2307.667236, "scale": [ 0.419665, 0.419665, 0.419665], "translation": [ 0.327880, -0.000029, 0.000000] }, { "keytime": 2341.000488, "scale": [ 0.414887, 0.414887, 0.414887], "translation": [ 0.327881, 0.000044, 0.000000] }, { "keytime": 2374.333740, "scale": [ 0.410250, 0.410250, 0.410250], "translation": [ 0.327883, -0.000202, 0.000000] }, { "keytime": 2407.666992, "scale": [ 0.405613, 0.405613, 0.405613], "translation": [ 0.327884, -0.000001, 0.000000] }, { "keytime": 2441.000244, "scale": [ 0.400836, 0.400836, 0.400836], "translation": [ 0.327886, 0.000011, 0.000000] }, { "keytime": 2474.333496, "scale": [ 0.396199, 0.396198, 0.396199], "translation": [ 0.327887, -0.000048, 0.000000] }, { "keytime": 2507.666748, "scale": [ 0.391562, 0.391561, 0.391561], "translation": [ 0.327868, -0.000087, 0.000000] }, { "keytime": 2541.000000, "scale": [ 0.386784, 0.386784, 0.386784], "translation": [ 0.327780, -0.000062, 0.000000] }, { "keytime": 2640.999756, "scale": [ 0.372873, 0.372873, 0.372873], "translation": [ 0.327780, 0.000010, 0.000000] }, { "keytime": 2674.333008, "scale": [ 0.368095, 0.368095, 0.368095], "translation": [ 0.327779, 0.000034, 0.000000] }, { "keytime": 2740.999512, "scale": [ 0.358821, 0.358821, 0.358821], "translation": [ 0.327779, 0.000082, 0.000000] }, { "keytime": 2774.332764, "scale": [ 0.354044, 0.354044, 0.354044], "translation": [ 0.327779, 0.000060, 0.000000] }, { "keytime": 2840.999268, "scale": [ 0.344770, 0.344770, 0.344770], "translation": [ 0.327779, -0.000018, 0.000000] }, { "keytime": 2874.332520, "scale": [ 0.339992, 0.339992, 0.339992], "translation": [ 0.327779, -0.000058, 0.000000] }, { "keytime": 2940.999023, "scale": [ 0.330718, 0.330718, 0.330718], "translation": [ 0.327779, -0.000136, 0.000000] }, { "keytime": 2974.332275, "scale": [ 0.325940, 0.325940, 0.325940], "translation": [ 0.327779, -0.000105, 0.000000] }, { "keytime": 3040.998779, "scale": [ 0.316666, 0.316666, 0.316666], "translation": [ 0.327779, 0.000108, 0.000000] }, { "keytime": 3074.332031, "scale": [ 0.311889, 0.311889, 0.311889], "translation": [ 0.327779, -0.000013, 0.000000] }, { "keytime": 3107.665283, "scale": [ 0.307252, 0.307252, 0.307252], "translation": [ 0.327778, -0.000045, 0.000000] }, { "keytime": 3140.998535, "scale": [ 0.302740, 0.302740, 0.302740], "translation": [ 0.327778, -0.000044, 0.000000] }, { "keytime": 3174.331787, "scale": [ 0.298234, 0.298234, 0.298234], "translation": [ 0.327778, -0.000043, 0.000000] }, { "keytime": 3240.998291, "scale": [ 0.289489, 0.289488, 0.289489], "translation": [ 0.327778, -0.000042, 0.000000] }, { "keytime": 3274.331543, "scale": [ 0.284983, 0.284983, 0.284983], "translation": [ 0.327778, -0.000041, 0.000000] }, { "keytime": 3307.664795, "scale": [ 0.280716, 0.280716, 0.280716], "translation": [ 0.327778, -0.000040, 0.000000] }, { "keytime": 3340.998047, "scale": [ 0.276563, 0.276563, 0.276563], "translation": [ 0.327778, -0.000039, 0.000000] }, { "keytime": 3374.331299, "scale": [ 0.272284, 0.272284, 0.272284], "translation": [ 0.327778, -0.000038, 0.000000] }, { "keytime": 3407.664551, "scale": [ 0.268130, 0.268130, 0.268130], "translation": [ 0.327778, -0.000037, 0.000000] }, { "keytime": 3440.997803, "scale": [ 0.264122, 0.264122, 0.264122], "translation": [ 0.327778, -0.000037, 0.000000] }, { "keytime": 3474.331055, "scale": [ 0.260049, 0.260049, 0.260049], "translation": [ 0.327778, -0.000036, 0.000000] }, { "keytime": 3507.664307, "scale": [ 0.256140, 0.256139, 0.256139], "translation": [ 0.327778, -0.000035, 0.000000] }, { "keytime": 3540.997559, "scale": [ 0.252376, 0.252376, 0.252376], "translation": [ 0.327778, -0.000034, 0.000000] }, { "keytime": 3574.330811, "scale": [ 0.248499, 0.248499, 0.248499], "translation": [ 0.327777, -0.000033, 0.000000] }, { "keytime": 3607.664062, "scale": [ 0.244896, 0.244896, 0.244896], "translation": [ 0.327777, -0.000032, 0.000000] }, { "keytime": 3640.997314, "scale": [ 0.241351, 0.241351, 0.241351], "translation": [ 0.327777, -0.000032, 0.000000] }, { "keytime": 3674.330566, "scale": [ 0.237760, 0.237760, 0.237760], "translation": [ 0.327777, -0.000031, 0.000000] }, { "keytime": 3740.997070, "scale": [ 0.231169, 0.231169, 0.231169], "translation": [ 0.327777, -0.000029, 0.000000] }, { "keytime": 3774.330322, "scale": [ 0.227986, 0.227986, 0.227986], "translation": [ 0.327777, -0.000028, 0.000000] }, { "keytime": 3807.663574, "scale": [ 0.224975, 0.224975, 0.224975], "translation": [ 0.327777, -0.000027, 0.000000] }, { "keytime": 3840.996826, "scale": [ 0.222017, 0.222017, 0.222017], "translation": [ 0.327777, -0.000026, 0.000000] }, { "keytime": 3874.330078, "scale": [ 0.219158, 0.219158, 0.219158], "translation": [ 0.327777, -0.000026, 0.000000] }, { "keytime": 3907.663330, "scale": [ 0.216553, 0.216553, 0.216553], "translation": [ 0.327777, -0.000025, 0.000000] }, { "keytime": 3940.996582, "scale": [ 0.214083, 0.214083, 0.214083], "translation": [ 0.327777, -0.000024, 0.000000] }, { "keytime": 3974.329834, "scale": [ 0.211684, 0.211684, 0.211684], "translation": [ 0.327777, -0.000023, 0.000000] }, { "keytime": 4007.663086, "scale": [ 0.209505, 0.209505, 0.209505], "translation": [ 0.327776, -0.000022, 0.000000] }, { "keytime": 4040.996338, "scale": [ 0.207483, 0.207483, 0.207483], "translation": [ 0.327776, -0.000021, 0.000000] }, { "keytime": 4074.329590, "scale": [ 0.205619, 0.205619, 0.205619], "translation": [ 0.327776, -0.000020, 0.000000] }, { "keytime": 4107.663086, "scale": [ 0.203988, 0.203988, 0.203988], "translation": [ 0.327776, -0.000020, 0.000000] }, { "keytime": 4140.996094, "scale": [ 0.202536, 0.202536, 0.202536], "translation": [ 0.327776, -0.000019, 0.000000] }, { "keytime": 4174.329590, "scale": [ 0.201237, 0.201237, 0.201237], "translation": [ 0.327776, -0.000018, 0.000000] }, { "keytime": 4207.663086, "scale": [ 0.200177, 0.200177, 0.200177], "translation": [ 0.327776, -0.000017, 0.000000] }, { "keytime": 4240.996582, "scale": [ 0.199392, 0.199392, 0.199392], "translation": [ 0.327776, -0.000016, 0.000000] }, { "keytime": 4274.330078, "scale": [ 0.198811, 0.198811, 0.198811], "translation": [ 0.327776, -0.000015, 0.000000] }, { "keytime": 4307.663574, "scale": [ 0.198482, 0.198482, 0.198482], "translation": [ 0.327776, -0.000014, 0.000000] }, { "keytime": 4340.997070, "scale": [ 0.200200, 0.200200, 0.200200], "translation": [ 0.327776, -0.000014, 0.000000] }, { "keytime": 4374.330566, "scale": [ 0.208762, 0.208762, 0.208762], "translation": [ 0.327776, -0.000013, 0.000000] }, { "keytime": 4407.664062, "scale": [ 0.233695, 0.233695, 0.233695], "translation": [ 0.327776, -0.000012, 0.000000] }, { "keytime": 4440.997559, "scale": [ 0.270767, 0.270767, 0.270767], "translation": [ 0.327775, -0.000011, 0.000000] }, { "keytime": 4474.331055, "scale": [ 0.321036, 0.321036, 0.321036], "translation": [ 0.327775, -0.000010, 0.000000] }, { "keytime": 4507.664551, "scale": [ 0.380502, 0.380502, 0.380502], "translation": [ 0.327775, -0.000009, 0.000000] }, { "keytime": 4540.998047, "scale": [ 0.449406, 0.449406, 0.449406], "translation": [ 0.327775, -0.000009, 0.000000] }, { "keytime": 4574.331543, "scale": [ 0.528521, 0.528521, 0.528521], "translation": [ 0.327775, -0.000008, 0.000000] }, { "keytime": 4607.665039, "scale": [ 0.607649, 0.607649, 0.607649], "translation": [ 0.327775, -0.000007, 0.000000] }, { "keytime": 4640.998535, "scale": [ 0.686172, 0.686172, 0.686172], "translation": [ 0.327775, -0.000006, 0.000000] }, { "keytime": 4674.332031, "scale": [ 0.763564, 0.763564, 0.763564], "translation": [ 0.327775, -0.000005, 0.000000] }, { "keytime": 4707.665527, "scale": [ 0.832468, 0.832468, 0.832468], "translation": [ 0.327775, -0.000004, 0.000000] }, { "keytime": 4740.999023, "scale": [ 0.889327, 0.889327, 0.889327], "translation": [ 0.327775, -0.000003, 0.000000] }, { "keytime": 4774.332520, "scale": [ 0.936403, 0.936403, 0.936403], "translation": [ 0.327775, -0.000003, 0.000000] }, { "keytime": 4807.666016, "scale": [ 0.969984, 0.969984, 0.969984], "translation": [ 0.327775, -0.000002, 0.000000] }, { "keytime": 4832.000000, "scale": [ 0.989001, 0.989001, 0.989001], "translation": [ 0.327775, -0.000001, 0.000000] } ] } ] }, { "id": "life", "bones": [ { "boneId": "Bone", "keyframes": [ { "keytime": 41.000000, "rotation": [ 0.507984, -0.502482, 0.491842, 0.497550] }, { "keytime": 74.333328, "rotation": [ 0.507972, -0.502483, 0.491861, 0.497542] }, { "keytime": 107.666664, "rotation": [ 0.507943, -0.502487, 0.491909, 0.497521] }, { "keytime": 141.000000, "rotation": [ 0.507894, -0.502493, 0.491988, 0.497486] }, { "keytime": 174.333328, "rotation": [ 0.507828, -0.502501, 0.492094, 0.497440] }, { "keytime": 207.666656, "rotation": [ 0.507744, -0.502511, 0.492231, 0.497381] }, { "keytime": 240.999985, "rotation": [ 0.507635, -0.502525, 0.492405, 0.497305] }, { "keytime": 274.333313, "rotation": [ 0.507505, -0.502542, 0.492615, 0.497213] }, { "keytime": 307.666656, "rotation": [ 0.507360, -0.502560, 0.492848, 0.497111] }, { "keytime": 341.000000, "rotation": [ 0.507192, -0.502581, 0.493119, 0.496993] }, { "keytime": 374.333344, "rotation": [ 0.507010, -0.502602, 0.493412, 0.496867] }, { "keytime": 407.666687, "rotation": [ 0.506805, -0.502628, 0.493743, 0.496721] }, { "keytime": 441.000031, "rotation": [ 0.506574, -0.502658, 0.494113, 0.496558] }, { "keytime": 474.333374, "rotation": [ 0.506333, -0.502688, 0.494500, 0.496388] }, { "keytime": 507.666718, "rotation": [ 0.506074, -0.502718, 0.494916, 0.496207] }, { "keytime": 541.000061, "rotation": [ 0.505789, -0.502749, 0.495372, 0.496011] }, { "keytime": 574.333374, "rotation": [ 0.505491, -0.502789, 0.495851, 0.495796] }, { "keytime": 607.666687, "rotation": [ 0.505176, -0.502830, 0.496355, 0.495572] }, { "keytime": 641.000000, "rotation": [ 0.504835, -0.502871, 0.496900, 0.495331] }, { "keytime": 674.333313, "rotation": [ 0.504488, -0.502909, 0.497454, 0.495090] }, { "keytime": 707.666626, "rotation": [ 0.504126, -0.502946, 0.498031, 0.494841] }, { "keytime": 740.999939, "rotation": [ 0.503745, -0.502997, 0.498638, 0.494566] }, { "keytime": 774.333252, "rotation": [ 0.503341, -0.503047, 0.499282, 0.494276] }, { "keytime": 807.666565, "rotation": [-0.502935, 0.503093, -0.499927, -0.493989] }, { "keytime": 840.999878, "rotation": [-0.502516, 0.503136, -0.500593, -0.493699] }, { "keytime": 874.333191, "rotation": [-0.502068, 0.503179, -0.501301, -0.493393] }, { "keytime": 907.666504, "rotation": [-0.501628, 0.503236, -0.501999, -0.493071] }, { "keytime": 940.999817, "rotation": [-0.501178, 0.503290, -0.502712, -0.492747] }, { "keytime": 974.333130, "rotation": [ 0.500702, -0.503341, 0.503463, 0.492412] }, { "keytime": 1007.666443, "rotation": [ 0.500229, -0.503386, 0.504207, 0.492086] }, { "keytime": 1040.999756, "rotation": [ 0.499748, -0.503431, 0.504960, 0.491756] }, { "keytime": 1074.333130, "rotation": [ 0.499255, -0.503490, 0.505736, 0.491399] }, { "keytime": 1107.666504, "rotation": [ 0.498770, -0.503543, 0.506497, 0.491053] }, { "keytime": 1140.999878, "rotation": [ 0.498280, -0.503592, 0.507263, 0.490710] }, { "keytime": 1174.333252, "rotation": [ 0.497773, -0.503640, 0.508055, 0.490356] }, { "keytime": 1207.666626, "rotation": [ 0.497279, -0.503685, 0.508824, 0.490014] }, { "keytime": 1241.000000, "rotation": [ 0.496777, -0.503739, 0.509606, 0.489654] }, { "keytime": 1274.333374, "rotation": [ 0.496291, -0.503789, 0.510362, 0.489308] }, { "keytime": 1307.666748, "rotation": [ 0.495808, -0.503835, 0.511113, 0.488967] }, { "keytime": 1341.000122, "rotation": [ 0.495313, -0.503881, 0.511878, 0.488620] }, { "keytime": 1374.333496, "rotation": [ 0.494839, -0.503923, 0.512611, 0.488288] }, { "keytime": 1407.666870, "rotation": [ 0.494377, -0.503970, 0.513326, 0.487958] }, { "keytime": 1441.000244, "rotation": [ 0.493909, -0.504014, 0.514048, 0.487625] }, { "keytime": 1474.333618, "rotation": [ 0.493463, -0.504055, 0.514735, 0.487310] }, { "keytime": 1541.000366, "rotation": [ 0.492589, -0.504132, 0.516078, 0.486694] }, { "keytime": 1574.333740, "rotation": [ 0.492181, -0.504170, 0.516703, 0.486403] }, { "keytime": 1607.667114, "rotation": [ 0.491787, -0.504205, 0.517308, 0.486122] }, { "keytime": 1641.000488, "rotation": [ 0.491394, -0.504240, 0.517909, 0.485844] }, { "keytime": 1674.333862, "rotation": [ 0.491027, -0.504271, 0.518470, 0.485584] }, { "keytime": 1707.667236, "rotation": [ 0.490675, -0.504301, 0.519007, 0.485335] }, { "keytime": 1741.000610, "rotation": [ 0.490335, -0.504331, 0.519526, 0.485093] }, { "keytime": 1774.333984, "rotation": [ 0.490021, -0.504358, 0.520004, 0.484870] }, { "keytime": 1807.667358, "rotation": [ 0.489724, -0.504383, 0.520456, 0.484659] }, { "keytime": 1841.000732, "rotation": [ 0.489436, -0.504407, 0.520894, 0.484454] }, { "keytime": 1874.334106, "rotation": [ 0.489174, -0.504428, 0.521292, 0.484268] }, { "keytime": 1907.667480, "rotation": [ 0.488936, -0.504448, 0.521653, 0.484099] }, { "keytime": 1941.000854, "rotation": [ 0.488709, -0.504467, 0.521997, 0.483938] }, { "keytime": 1974.334229, "rotation": [ 0.488508, -0.504483, 0.522301, 0.483795] }, { "keytime": 2007.667603, "rotation": [ 0.488326, -0.504498, 0.522578, 0.483665] }, { "keytime": 2041.000977, "rotation": [ 0.488157, -0.504512, 0.522833, 0.483545] }, { "keytime": 2074.334473, "rotation": [ 0.488019, -0.504523, 0.523043, 0.483447] }, { "keytime": 2107.667725, "rotation": [ 0.487899, -0.504532, 0.523224, 0.483362] }, { "keytime": 2141.000977, "rotation": [ 0.487796, -0.504541, 0.523380, 0.483288] }, { "keytime": 2174.334229, "rotation": [ 0.487714, -0.504547, 0.523503, 0.483230] }, { "keytime": 2207.667480, "rotation": [ 0.487652, -0.504552, 0.523598, 0.483185] }, { "keytime": 2241.000732, "rotation": [ 0.487613, -0.504555, 0.523657, 0.483158] }, { "keytime": 2274.333984, "rotation": [ 0.487594, -0.504557, 0.523685, 0.483144] }, { "keytime": 2307.667236, "rotation": [ 0.487595, -0.504555, 0.523685, 0.483144] }, { "keytime": 2341.000488, "rotation": [ 0.487619, -0.504549, 0.523655, 0.483159] }, { "keytime": 2374.333740, "rotation": [ 0.487665, -0.504538, 0.523597, 0.483189] }, { "keytime": 2407.666992, "rotation": [ 0.487741, -0.504518, 0.523500, 0.483237] }, { "keytime": 2441.000244, "rotation": [ 0.487844, -0.504491, 0.523370, 0.483302] }, { "keytime": 2474.333496, "rotation": [ 0.487968, -0.504459, 0.523213, 0.483380] }, { "keytime": 2507.666748, "rotation": [ 0.488114, -0.504422, 0.523027, 0.483473] }, { "keytime": 2541.000000, "rotation": [ 0.488290, -0.504376, 0.522805, 0.483584] }, { "keytime": 2574.333252, "rotation": [ 0.488491, -0.504324, 0.522549, 0.483711] }, { "keytime": 2607.666504, "rotation": [ 0.488716, -0.504266, 0.522263, 0.483853] }, { "keytime": 2640.999756, "rotation": [ 0.488963, -0.504202, 0.521949, 0.484010] }, { "keytime": 2674.333008, "rotation": [ 0.489242, -0.504129, 0.521594, 0.484186] }, { "keytime": 2707.666260, "rotation": [ 0.489537, -0.504052, 0.521219, 0.484373] }, { "keytime": 2740.999512, "rotation": [ 0.489861, -0.503967, 0.520805, 0.484577] }, { "keytime": 2774.332764, "rotation": [ 0.490218, -0.503874, 0.520350, 0.484802] }, { "keytime": 2807.666016, "rotation": [ 0.490588, -0.503777, 0.519878, 0.485036] }, { "keytime": 2840.999268, "rotation": [ 0.490979, -0.503673, 0.519378, 0.485283] }, { "keytime": 2874.332520, "rotation": [ 0.491404, -0.503560, 0.518834, 0.485552] }, { "keytime": 2907.665771, "rotation": [ 0.491847, -0.503444, 0.518267, 0.485830] }, { "keytime": 2940.999023, "rotation": [ 0.492309, -0.503321, 0.517674, 0.486121] }, { "keytime": 2974.332275, "rotation": [ 0.492806, -0.503189, 0.517036, 0.486433] }, { "keytime": 3007.665527, "rotation": [ 0.493308, -0.503053, 0.516390, 0.486750] }, { "keytime": 3040.998779, "rotation": [ 0.493829, -0.502912, 0.515718, 0.487080] }, { "keytime": 3074.332031, "rotation": [ 0.494393, -0.502761, 0.514992, 0.487433] }, { "keytime": 3107.665283, "rotation": [ 0.494958, -0.502610, 0.514262, 0.487786] }, { "keytime": 3140.998535, "rotation": [ 0.495539, -0.502452, 0.513510, 0.488150] }, { "keytime": 3174.331787, "rotation": [ 0.496153, -0.502283, 0.512713, 0.488538] }, { "keytime": 3207.665039, "rotation": [ 0.496764, -0.502111, 0.511919, 0.488926] }, { "keytime": 3240.998291, "rotation": [ 0.497399, -0.501941, 0.511094, 0.489318] }, { "keytime": 3274.331543, "rotation": [ 0.498066, -0.501760, 0.510225, 0.489731] }, { "keytime": 3307.664795, "rotation": [ 0.498726, -0.501579, 0.509365, 0.490141] }, { "keytime": 3340.998047, "rotation": [ 0.499393, -0.501389, 0.508492, 0.490562] }, { "keytime": 3374.331299, "rotation": [ 0.500088, -0.501184, 0.507579, 0.491010] }, { "keytime": 3407.664551, "rotation": [ 0.500790, -0.501000, 0.506660, 0.491430] }, { "keytime": 3440.997803, "rotation": [ 0.501500, -0.500813, 0.505729, 0.491856] }, { "keytime": 3474.331055, "rotation": [ 0.502233, -0.500610, 0.504764, 0.492305] }, { "keytime": 3507.664307, "rotation": [ 0.502936, -0.500398, 0.503832, 0.492757] }, { "keytime": 3540.997559, "rotation": [ 0.503639, -0.500171, 0.502898, 0.493225] }, { "keytime": 3574.330811, "rotation": [ 0.504394, -0.499979, 0.501900, 0.493664] }, { "keytime": 3607.664062, "rotation": [ 0.505109, -0.499788, 0.500946, 0.494095] }, { "keytime": 3640.997314, "rotation": [ 0.505826, -0.499573, 0.499990, 0.494548] }, { "keytime": 3674.330566, "rotation": [ 0.506569, -0.499333, 0.498996, 0.495032] }, { "keytime": 3707.663818, "rotation": [ 0.507290, -0.499097, 0.498032, 0.495503] }, { "keytime": 3740.997070, "rotation": [ 0.508009, -0.498902, 0.497069, 0.495929] }, { "keytime": 3774.330322, "rotation": [ 0.508743, -0.498683, 0.496082, 0.496384] }, { "keytime": 3807.663574, "rotation": [ 0.509450, -0.498464, 0.495132, 0.496829] }, { "keytime": 3840.996826, "rotation": [ 0.510148, -0.498243, 0.494189, 0.497272] }, { "keytime": 3874.330078, "rotation": [ 0.510860, -0.498019, 0.493226, 0.497722] }, { "keytime": 3907.663330, "rotation": [ 0.511542, -0.497818, 0.492303, 0.498137] }, { "keytime": 3940.996582, "rotation": [ 0.512212, -0.497613, 0.491394, 0.498550] }, { "keytime": 3974.329834, "rotation": [ 0.512890, -0.497401, 0.490472, 0.498972] }, { "keytime": 4007.663086, "rotation": [ 0.513536, -0.497198, 0.489592, 0.499375] }, { "keytime": 4040.996338, "rotation": [ 0.514168, -0.496997, 0.488728, 0.499769] }, { "keytime": 4074.329590, "rotation": [ 0.514802, -0.496802, 0.487861, 0.500158] }, { "keytime": 4107.663086, "rotation": [ 0.515402, -0.496614, 0.487040, 0.500528] }, { "keytime": 4174.329590, "rotation": [ 0.516570, -0.496242, 0.485436, 0.501250] }, { "keytime": 4207.663086, "rotation": [ 0.517119, -0.496065, 0.484679, 0.501590] }, { "keytime": 4240.996582, "rotation": [ 0.517646, -0.495898, 0.483952, 0.501914] }, { "keytime": 4274.330078, "rotation": [ 0.518170, -0.495731, 0.483229, 0.502236] }, { "keytime": 4307.663574, "rotation": [ 0.518659, -0.495573, 0.482553, 0.502537] }, { "keytime": 4340.997070, "rotation": [ 0.519128, -0.495421, 0.481902, 0.502826] }, { "keytime": 4374.330566, "rotation": [ 0.519591, -0.495270, 0.481261, 0.503111] }, { "keytime": 4407.664062, "rotation": [ 0.520013, -0.495134, 0.480674, 0.503370] }, { "keytime": 4440.997559, "rotation": [ 0.520415, -0.495003, 0.480116, 0.503617] }, { "keytime": 4474.331055, "rotation": [ 0.520807, -0.494875, 0.479570, 0.503857] }, { "keytime": 4507.664551, "rotation": [ 0.521166, -0.494757, 0.479069, 0.504078] }, { "keytime": 4540.998047, "rotation": [ 0.521503, -0.494646, 0.478599, 0.504285] }, { "keytime": 4574.331543, "rotation": [ 0.521822, -0.494541, 0.478154, 0.504480] }, { "keytime": 4607.665039, "rotation": [ 0.522108, -0.494446, 0.477753, 0.504656] }, { "keytime": 4640.998535, "rotation": [ 0.522373, -0.494359, 0.477382, 0.504819] }, { "keytime": 4674.332031, "rotation": [ 0.522623, -0.494276, 0.477032, 0.504972] }, { "keytime": 4707.665527, "rotation": [ 0.522843, -0.494203, 0.476724, 0.505107] }, { "keytime": 4740.999023, "rotation": [ 0.523034, -0.494139, 0.476456, 0.505224] }, { "keytime": 4774.332520, "rotation": [ 0.523208, -0.494082, 0.476212, 0.505330] }, { "keytime": 4807.666016, "rotation": [ 0.523355, -0.494033, 0.476007, 0.505420] }, { "keytime": 4840.999512, "rotation": [ 0.523479, -0.493991, 0.475832, 0.505496] }, { "keytime": 4874.333008, "rotation": [ 0.523584, -0.493956, 0.475684, 0.505560] }, { "keytime": 4907.666504, "rotation": [ 0.523657, -0.493932, 0.475582, 0.505605] }, { "keytime": 4941.000000, "rotation": [ 0.523709, -0.493915, 0.475508, 0.505637] }, { "keytime": 4974.333496, "rotation": [ 0.523738, -0.493905, 0.475467, 0.505655] }, { "keytime": 5007.666992, "rotation": [ 0.523745, -0.493903, 0.475456, 0.505660] }, { "keytime": 5041.000488, "rotation": [ 0.523728, -0.493913, 0.475475, 0.505651] }, { "keytime": 5074.333984, "rotation": [ 0.523677, -0.493942, 0.475529, 0.505624] }, { "keytime": 5107.667480, "rotation": [ 0.523600, -0.493985, 0.475610, 0.505585] }, { "keytime": 5141.000977, "rotation": [ 0.523494, -0.494044, 0.475723, 0.505531] }, { "keytime": 5174.334473, "rotation": [ 0.523366, -0.494116, 0.475859, 0.505466] }, { "keytime": 5207.667969, "rotation": [ 0.523211, -0.494203, 0.476023, 0.505387] }, { "keytime": 5241.001465, "rotation": [ 0.523016, -0.494312, 0.476229, 0.505288] }, { "keytime": 5274.334961, "rotation": [ 0.522801, -0.494432, 0.476457, 0.505178] }, { "keytime": 5307.668457, "rotation": [ 0.522561, -0.494566, 0.476711, 0.505055] }, { "keytime": 5341.001953, "rotation": [ 0.522288, -0.494719, 0.476999, 0.504916] }, { "keytime": 5374.335449, "rotation": [ 0.521998, -0.494880, 0.477306, 0.504768] }, { "keytime": 5407.668945, "rotation": [ 0.521677, -0.495059, 0.477645, 0.504604] }, { "keytime": 5441.002441, "rotation": [ 0.521323, -0.495256, 0.478019, 0.504422] }, { "keytime": 5474.335938, "rotation": [ 0.520957, -0.495460, 0.478405, 0.504235] }, { "keytime": 5507.669434, "rotation": [ 0.520570, -0.495674, 0.478812, 0.504037] }, { "keytime": 5541.002930, "rotation": [ 0.520150, -0.495905, 0.479253, 0.503823] }, { "keytime": 5574.336426, "rotation": [ 0.519719, -0.496145, 0.479706, 0.503602] }, { "keytime": 5607.669922, "rotation": [ 0.519272, -0.496392, 0.480175, 0.503372] }, { "keytime": 5674.336914, "rotation": [ 0.518321, -0.496915, 0.481171, 0.502885] }, { "keytime": 5707.670410, "rotation": [ 0.517834, -0.497181, 0.481681, 0.502636] }, { "keytime": 5741.003906, "rotation": [ 0.517321, -0.497464, 0.482217, 0.502371] }, { "keytime": 5774.337402, "rotation": [ 0.516816, -0.497741, 0.482743, 0.502110] }, { "keytime": 5807.670898, "rotation": [ 0.516307, -0.498018, 0.483273, 0.501849] }, { "keytime": 5841.004395, "rotation": [ 0.515780, -0.498305, 0.483821, 0.501578] }, { "keytime": 5874.337891, "rotation": [ 0.515268, -0.498581, 0.484353, 0.501317] }, { "keytime": 5907.671387, "rotation": [ 0.514760, -0.498859, 0.484879, 0.501053] }, { "keytime": 5941.004883, "rotation": [ 0.514243, -0.499140, 0.485415, 0.500785] }, { "keytime": 5974.338379, "rotation": [ 0.513747, -0.499408, 0.485928, 0.500529] }, { "keytime": 6007.671875, "rotation": [ 0.513261, -0.499669, 0.486431, 0.500279] }, { "keytime": 6041.005371, "rotation": [ 0.512770, -0.499930, 0.486937, 0.500029] }, { "keytime": 6074.338867, "rotation": [ 0.512314, -0.500178, 0.487407, 0.499790] }, { "keytime": 6107.672363, "rotation": [ 0.511873, -0.500416, 0.487861, 0.499561] }, { "keytime": 6141.005859, "rotation": [ 0.511435, -0.500650, 0.488311, 0.499335] }, { "keytime": 6174.339355, "rotation": [ 0.511029, -0.500866, 0.488728, 0.499126] }, { "keytime": 6207.672852, "rotation": [ 0.510643, -0.501070, 0.489124, 0.498928] }, { "keytime": 6241.006348, "rotation": [ 0.510275, -0.501268, 0.489502, 0.498736] }, { "keytime": 6274.339844, "rotation": [ 0.509941, -0.501447, 0.489844, 0.498562] }, { "keytime": 6307.673340, "rotation": [ 0.509629, -0.501612, 0.490163, 0.498401] }, { "keytime": 6341.006836, "rotation": [ 0.509333, -0.501769, 0.490465, 0.498249] }, { "keytime": 6374.340332, "rotation": [ 0.509071, -0.501906, 0.490733, 0.498114] }, { "keytime": 6407.673828, "rotation": [ 0.508843, -0.502028, 0.490966, 0.497995] }, { "keytime": 6441.007324, "rotation": [ 0.508635, -0.502139, 0.491179, 0.497886] }, { "keytime": 6474.340820, "rotation": [ 0.508459, -0.502231, 0.491358, 0.497795] }, { "keytime": 6507.674316, "rotation": [ 0.508309, -0.502310, 0.491511, 0.497718] }, { "keytime": 6541.007812, "rotation": [ 0.508182, -0.502377, 0.491640, 0.497653] }, { "keytime": 6574.341309, "rotation": [ 0.508095, -0.502423, 0.491729, 0.497607] }, { "keytime": 6607.674805, "rotation": [ 0.508034, -0.502456, 0.491792, 0.497575] } ] }, { "boneId": "Bone_026", "keyframes": [ { "keytime": 41.000000, "rotation": [ 0.058774, -0.116409, 0.109280, 0.985420] }, { "keytime": 141.000000, "rotation": [ 0.058775, -0.116415, 0.109279, 0.985419] }, { "keytime": 207.666656, "rotation": [ 0.058777, -0.116423, 0.109278, 0.985418] }, { "keytime": 307.666656, "rotation": [ 0.058780, -0.116445, 0.109278, 0.985416] }, { "keytime": 374.333344, "rotation": [ 0.058783, -0.116465, 0.109277, 0.985413] }, { "keytime": 441.000031, "rotation": [ 0.058786, -0.116490, 0.109277, 0.985410] }, { "keytime": 541.000061, "rotation": [ 0.058791, -0.116536, 0.109275, 0.985404] }, { "keytime": 607.666687, "rotation": [ 0.058795, -0.116572, 0.109273, 0.985400] }, { "keytime": 707.666626, "rotation": [ 0.058801, -0.116632, 0.109270, 0.985393] }, { "keytime": 840.999878, "rotation": [ 0.058811, -0.116725, 0.109267, 0.985382] }, { "keytime": 1007.666443, "rotation": [ 0.058825, -0.116856, 0.109264, 0.985366] }, { "keytime": 1341.000122, "rotation": [ 0.058854, -0.117135, 0.109258, 0.985332] }, { "keytime": 1474.333618, "rotation": [ 0.058865, -0.117239, 0.109255, 0.985319] }, { "keytime": 1541.000366, "rotation": [ 0.058870, -0.117288, 0.109254, 0.985313] }, { "keytime": 1641.000488, "rotation": [ 0.058877, -0.117355, 0.109252, 0.985305] }, { "keytime": 1707.667236, "rotation": [ 0.058882, -0.117396, 0.109252, 0.985300] }, { "keytime": 1774.333984, "rotation": [ 0.058886, -0.117432, 0.109251, 0.985295] }, { "keytime": 1874.334106, "rotation": [ 0.058891, -0.117480, 0.109251, 0.985289] }, { "keytime": 1974.334229, "rotation": [ 0.058896, -0.117517, 0.109250, 0.985285] }, { "keytime": 2041.000977, "rotation": [ 0.058898, -0.117536, 0.109249, 0.985282] }, { "keytime": 2141.000977, "rotation": [ 0.058901, -0.117556, 0.109248, 0.985280] }, { "keytime": 2207.667480, "rotation": [ 0.058902, -0.117565, 0.109247, 0.985279] }, { "keytime": 2307.667236, "rotation": [ 0.058903, -0.117567, 0.109244, 0.985279] }, { "keytime": 2341.000488, "rotation": [ 0.058903, -0.117565, 0.109242, 0.985279] }, { "keytime": 2374.333740, "rotation": [ 0.058902, -0.117562, 0.109237, 0.985280] }, { "keytime": 2407.666992, "rotation": [ 0.058903, -0.117555, 0.109229, 0.985282] }, { "keytime": 2441.000244, "rotation": [ 0.058903, -0.117546, 0.109218, 0.985284] }, { "keytime": 2474.333496, "rotation": [ 0.058904, -0.117535, 0.109205, 0.985287] }, { "keytime": 2507.666748, "rotation": [ 0.058905, -0.117523, 0.109189, 0.985290] }, { "keytime": 2541.000000, "rotation": [ 0.058905, -0.117508, 0.109170, 0.985294] }, { "keytime": 2574.333252, "rotation": [ 0.058906, -0.117490, 0.109149, 0.985298] }, { "keytime": 2607.666504, "rotation": [ 0.058907, -0.117471, 0.109125, 0.985303] }, { "keytime": 2640.999756, "rotation": [ 0.058908, -0.117449, 0.109099, 0.985309] }, { "keytime": 2707.666260, "rotation": [ 0.058911, -0.117400, 0.109038, 0.985321] }, { "keytime": 2740.999512, "rotation": [ 0.058912, -0.117372, 0.109003, 0.985328] }, { "keytime": 2807.666016, "rotation": [ 0.058915, -0.117309, 0.108926, 0.985344] }, { "keytime": 2840.999268, "rotation": [ 0.058917, -0.117275, 0.108884, 0.985353] }, { "keytime": 2907.665771, "rotation": [ 0.058921, -0.117200, 0.108792, 0.985371] }, { "keytime": 2940.999023, "rotation": [ 0.058923, -0.117159, 0.108742, 0.985382] }, { "keytime": 3007.665527, "rotation": [ 0.058927, -0.117073, 0.108635, 0.985403] }, { "keytime": 3040.998779, "rotation": [ 0.058930, -0.117027, 0.108580, 0.985415] }, { "keytime": 3107.665283, "rotation": [ 0.058934, -0.116929, 0.108459, 0.985440] }, { "keytime": 3140.998535, "rotation": [ 0.058937, -0.116878, 0.108396, 0.985452] }, { "keytime": 3207.665039, "rotation": [ 0.058942, -0.116771, 0.108264, 0.985479] }, { "keytime": 3240.998291, "rotation": [ 0.058945, -0.116716, 0.108196, 0.985493] }, { "keytime": 3340.998047, "rotation": [ 0.058954, -0.116541, 0.107982, 0.985537] }, { "keytime": 3440.997803, "rotation": [ 0.058963, -0.116357, 0.107755, 0.985583] }, { "keytime": 3540.997559, "rotation": [ 0.058972, -0.116167, 0.107520, 0.985630] }, { "keytime": 3574.330811, "rotation": [ 0.058975, -0.116101, 0.107439, 0.985647] }, { "keytime": 3640.997314, "rotation": [ 0.058981, -0.115974, 0.107282, 0.985678] }, { "keytime": 3674.330566, "rotation": [ 0.058983, -0.115908, 0.107201, 0.985695] }, { "keytime": 3740.997070, "rotation": [ 0.058989, -0.115781, 0.107045, 0.985726] }, { "keytime": 3774.330322, "rotation": [ 0.058992, -0.115715, 0.106964, 0.985743] }, { "keytime": 3874.330078, "rotation": [ 0.059002, -0.115525, 0.106731, 0.985790] }, { "keytime": 3974.329834, "rotation": [ 0.059011, -0.115343, 0.106507, 0.985835] }, { "keytime": 4074.329590, "rotation": [ 0.059020, -0.115170, 0.106295, 0.985877] }, { "keytime": 4174.329590, "rotation": [ 0.059027, -0.115011, 0.106099, 0.985916] }, { "keytime": 4207.663086, "rotation": [ 0.059030, -0.114961, 0.106038, 0.985929] }, { "keytime": 4274.330078, "rotation": [ 0.059034, -0.114866, 0.105921, 0.985952] }, { "keytime": 4307.663574, "rotation": [ 0.059037, -0.114822, 0.105866, 0.985963] }, { "keytime": 4374.330566, "rotation": [ 0.059041, -0.114737, 0.105762, 0.985984] }, { "keytime": 4407.664062, "rotation": [ 0.059043, -0.114699, 0.105715, 0.985993] }, { "keytime": 4474.331055, "rotation": [ 0.059046, -0.114626, 0.105626, 0.986011] }, { "keytime": 4507.664551, "rotation": [ 0.059048, -0.114594, 0.105585, 0.986019] }, { "keytime": 4540.998047, "rotation": [ 0.059049, -0.114563, 0.105548, 0.986027] }, { "keytime": 4574.331543, "rotation": [ 0.059051, -0.114534, 0.105512, 0.986034] }, { "keytime": 4607.665039, "rotation": [ 0.059052, -0.114507, 0.105480, 0.986040] }, { "keytime": 4674.332031, "rotation": [ 0.059055, -0.114460, 0.105422, 0.986052] }, { "keytime": 4707.665527, "rotation": [ 0.059055, -0.114440, 0.105397, 0.986057] }, { "keytime": 4774.332520, "rotation": [ 0.059057, -0.114407, 0.105356, 0.986065] }, { "keytime": 4807.666016, "rotation": [ 0.059058, -0.114393, 0.105339, 0.986068] }, { "keytime": 4840.999512, "rotation": [ 0.059058, -0.114382, 0.105325, 0.986071] }, { "keytime": 4874.333008, "rotation": [ 0.059058, -0.114372, 0.105313, 0.986073] }, { "keytime": 4907.666504, "rotation": [ 0.059059, -0.114366, 0.105305, 0.986075] }, { "keytime": 4941.000000, "rotation": [ 0.059059, -0.114361, 0.105299, 0.986076] }, { "keytime": 4974.333496, "rotation": [ 0.059059, -0.114358, 0.105296, 0.986077] }, { "keytime": 5007.666992, "rotation": [ 0.059059, -0.114358, 0.105296, 0.986077] }, { "keytime": 5041.000488, "rotation": [ 0.059059, -0.114360, 0.105300, 0.986076] }, { "keytime": 5074.333984, "rotation": [ 0.059058, -0.114367, 0.105313, 0.986074] }, { "keytime": 5107.667480, "rotation": [ 0.059057, -0.114377, 0.105333, 0.986071] }, { "keytime": 5141.000977, "rotation": [ 0.059055, -0.114391, 0.105360, 0.986066] }, { "keytime": 5174.334473, "rotation": [ 0.059052, -0.114408, 0.105393, 0.986061] }, { "keytime": 5207.667969, "rotation": [ 0.059050, -0.114428, 0.105432, 0.986054] }, { "keytime": 5241.001465, "rotation": [ 0.059046, -0.114454, 0.105482, 0.986046] }, { "keytime": 5274.334961, "rotation": [ 0.059042, -0.114482, 0.105537, 0.986037] }, { "keytime": 5307.668457, "rotation": [ 0.059038, -0.114513, 0.105598, 0.986028] }, { "keytime": 5341.001953, "rotation": [ 0.059033, -0.114549, 0.105668, 0.986016] }, { "keytime": 5374.335449, "rotation": [ 0.059027, -0.114587, 0.105742, 0.986004] }, { "keytime": 5407.668945, "rotation": [ 0.059022, -0.114630, 0.105824, 0.985991] }, { "keytime": 5441.002441, "rotation": [ 0.059015, -0.114676, 0.105914, 0.985976] }, { "keytime": 5474.335938, "rotation": [ 0.059008, -0.114724, 0.106007, 0.985961] }, { "keytime": 5507.669434, "rotation": [ 0.059001, -0.114775, 0.106106, 0.985945] }, { "keytime": 5541.002930, "rotation": [ 0.058994, -0.114830, 0.106212, 0.985927] }, { "keytime": 5574.336426, "rotation": [ 0.058985, -0.114886, 0.106322, 0.985910] }, { "keytime": 5607.669922, "rotation": [ 0.058977, -0.114945, 0.106435, 0.985891] }, { "keytime": 5674.336914, "rotation": [ 0.058960, -0.115069, 0.106677, 0.985851] }, { "keytime": 5707.670410, "rotation": [ 0.058952, -0.115133, 0.106800, 0.985831] }, { "keytime": 5807.670898, "rotation": [ 0.058924, -0.115332, 0.107187, 0.985767] }, { "keytime": 5841.004395, "rotation": [ 0.058914, -0.115400, 0.107320, 0.985746] }, { "keytime": 5907.671387, "rotation": [ 0.058896, -0.115532, 0.107578, 0.985703] }, { "keytime": 5941.004883, "rotation": [ 0.058887, -0.115600, 0.107708, 0.985681] }, { "keytime": 5974.338379, "rotation": [ 0.058878, -0.115664, 0.107833, 0.985661] }, { "keytime": 6041.005371, "rotation": [ 0.058860, -0.115791, 0.108079, 0.985620] }, { "keytime": 6074.338867, "rotation": [ 0.058852, -0.115850, 0.108194, 0.985601] }, { "keytime": 6141.005859, "rotation": [ 0.058836, -0.115964, 0.108415, 0.985564] }, { "keytime": 6174.339355, "rotation": [ 0.058829, -0.116016, 0.108517, 0.985547] }, { "keytime": 6207.672852, "rotation": [ 0.058822, -0.116066, 0.108614, 0.985531] }, { "keytime": 6241.006348, "rotation": [ 0.058815, -0.116114, 0.108706, 0.985516] }, { "keytime": 6274.339844, "rotation": [ 0.058809, -0.116157, 0.108790, 0.985502] }, { "keytime": 6307.673340, "rotation": [ 0.058804, -0.116197, 0.108868, 0.985489] }, { "keytime": 6341.006836, "rotation": [ 0.058798, -0.116235, 0.108942, 0.985476] }, { "keytime": 6374.340332, "rotation": [ 0.058793, -0.116269, 0.109008, 0.985465] }, { "keytime": 6407.673828, "rotation": [ 0.058789, -0.116298, 0.109065, 0.985456] }, { "keytime": 6441.007324, "rotation": [ 0.058786, -0.116325, 0.109117, 0.985447] }, { "keytime": 6474.340820, "rotation": [ 0.058783, -0.116348, 0.109161, 0.985440] }, { "keytime": 6507.674316, "rotation": [ 0.058780, -0.116367, 0.109199, 0.985434] }, { "keytime": 6541.007812, "rotation": [ 0.058778, -0.116384, 0.109230, 0.985428] }, { "keytime": 6574.341309, "rotation": [ 0.058776, -0.116395, 0.109252, 0.985425] }, { "keytime": 6607.674805, "rotation": [ 0.058775, -0.116403, 0.109267, 0.985422] } ] }, { "boneId": "Bone_007", "keyframes": [ { "keytime": 41.000000, "rotation": [ 0.844233, 0.256493, 0.362806, 0.299756] }, { "keytime": 74.333328, "rotation": [ 0.844234, 0.256492, 0.362803, 0.299759] }, { "keytime": 107.666664, "rotation": [ 0.844236, 0.256489, 0.362794, 0.299764] }, { "keytime": 141.000000, "rotation": [ 0.844240, 0.256485, 0.362780, 0.299774] }, { "keytime": 174.333328, "rotation": [ 0.844245, 0.256480, 0.362762, 0.299787] }, { "keytime": 207.666656, "rotation": [ 0.844252, 0.256473, 0.362738, 0.299803] }, { "keytime": 240.999985, "rotation": [ 0.844260, 0.256464, 0.362707, 0.299825] }, { "keytime": 274.333313, "rotation": [ 0.844270, 0.256453, 0.362671, 0.299851] }, { "keytime": 307.666656, "rotation": [ 0.844281, 0.256441, 0.362630, 0.299879] }, { "keytime": 341.000000, "rotation": [ 0.844294, 0.256427, 0.362582, 0.299912] }, { "keytime": 374.333344, "rotation": [ 0.844308, 0.256412, 0.362531, 0.299948] }, { "keytime": 407.666687, "rotation": [ 0.844323, 0.256395, 0.362473, 0.299988] }, { "keytime": 441.000031, "rotation": [ 0.844341, 0.256376, 0.362409, 0.300034] }, { "keytime": 474.333374, "rotation": [ 0.844359, 0.256356, 0.362341, 0.300082] }, { "keytime": 507.666718, "rotation": [ 0.844378, 0.256334, 0.362268, 0.300133] }, { "keytime": 541.000061, "rotation": [ 0.844400, 0.256311, 0.362188, 0.300188] }, { "keytime": 574.333374, "rotation": [ 0.844423, 0.256286, 0.362104, 0.300247] }, { "keytime": 607.666687, "rotation": [ 0.844447, 0.256260, 0.362016, 0.300309] }, { "keytime": 674.333313, "rotation": [ 0.844498, 0.256203, 0.361823, 0.300444] }, { "keytime": 707.666626, "rotation": [ 0.844526, 0.256173, 0.361722, 0.300515] }, { "keytime": 740.999939, "rotation": [ 0.844554, 0.256142, 0.361615, 0.300590] }, { "keytime": 807.666565, "rotation": [ 0.844616, 0.256075, 0.361387, 0.300748] }, { "keytime": 840.999878, "rotation": [ 0.844647, 0.256040, 0.361270, 0.300830] }, { "keytime": 907.666504, "rotation": [ 0.844713, 0.255967, 0.361022, 0.301004] }, { "keytime": 940.999817, "rotation": [ 0.844747, 0.255929, 0.360896, 0.301092] }, { "keytime": 1040.999756, "rotation": [ 0.844853, 0.255812, 0.360501, 0.301369] }, { "keytime": 1074.333130, "rotation": [ 0.844889, 0.255771, 0.360363, 0.301466] }, { "keytime": 1140.999878, "rotation": [ 0.844961, 0.255691, 0.360093, 0.301656] }, { "keytime": 1174.333252, "rotation": [ 0.844998, 0.255650, 0.359954, 0.301753] }, { "keytime": 1207.666626, "rotation": [ 0.845034, 0.255610, 0.359819, 0.301848] }, { "keytime": 1241.000000, "rotation": [ 0.845070, 0.255568, 0.359680, 0.301945] }, { "keytime": 1341.000122, "rotation": [ 0.845178, 0.255448, 0.359275, 0.302228] }, { "keytime": 1374.333496, "rotation": [ 0.845212, 0.255410, 0.359145, 0.302319] }, { "keytime": 1441.000244, "rotation": [ 0.845280, 0.255334, 0.358889, 0.302497] }, { "keytime": 1474.333618, "rotation": [ 0.845313, 0.255298, 0.358766, 0.302582] }, { "keytime": 1541.000366, "rotation": [ 0.845376, 0.255228, 0.358526, 0.302748] }, { "keytime": 1574.333740, "rotation": [ 0.845406, 0.255195, 0.358414, 0.302825] }, { "keytime": 1641.000488, "rotation": [ 0.845463, 0.255132, 0.358198, 0.302974] }, { "keytime": 1674.333862, "rotation": [ 0.845490, 0.255102, 0.358098, 0.303044] }, { "keytime": 1707.667236, "rotation": [ 0.845515, 0.255073, 0.358002, 0.303112] }, { "keytime": 1741.000610, "rotation": [ 0.845539, 0.255046, 0.357909, 0.303177] }, { "keytime": 1774.333984, "rotation": [ 0.845562, 0.255020, 0.357824, 0.303236] }, { "keytime": 1807.667358, "rotation": [ 0.845583, 0.254996, 0.357742, 0.303292] }, { "keytime": 1841.000732, "rotation": [ 0.845604, 0.254973, 0.357664, 0.303347] }, { "keytime": 1874.334106, "rotation": [ 0.845623, 0.254952, 0.357592, 0.303396] }, { "keytime": 1907.667480, "rotation": [ 0.845640, 0.254933, 0.357528, 0.303441] }, { "keytime": 1941.000854, "rotation": [ 0.845656, 0.254914, 0.357466, 0.303485] }, { "keytime": 1974.334229, "rotation": [ 0.845670, 0.254898, 0.357411, 0.303523] }, { "keytime": 2007.667603, "rotation": [ 0.845683, 0.254883, 0.357361, 0.303557] }, { "keytime": 2041.000977, "rotation": [ 0.845695, 0.254870, 0.357316, 0.303589] }, { "keytime": 2074.334473, "rotation": [ 0.845705, 0.254859, 0.357278, 0.303615] }, { "keytime": 2107.667725, "rotation": [ 0.845714, 0.254849, 0.357245, 0.303638] }, { "keytime": 2141.000977, "rotation": [ 0.845721, 0.254841, 0.357217, 0.303658] }, { "keytime": 2174.334229, "rotation": [ 0.845727, 0.254834, 0.357195, 0.303673] }, { "keytime": 2207.667480, "rotation": [ 0.845731, 0.254829, 0.357178, 0.303685] }, { "keytime": 2241.000732, "rotation": [ 0.845734, 0.254826, 0.357167, 0.303692] }, { "keytime": 2274.333984, "rotation": [ 0.845736, 0.254825, 0.357162, 0.303695] }, { "keytime": 2307.667236, "rotation": [ 0.845736, 0.254824, 0.357161, 0.303695] }, { "keytime": 2341.000488, "rotation": [ 0.845736, 0.254825, 0.357165, 0.303692] }, { "keytime": 2374.333740, "rotation": [ 0.845735, 0.254826, 0.357170, 0.303686] }, { "keytime": 2407.666992, "rotation": [ 0.845734, 0.254826, 0.357181, 0.303677] }, { "keytime": 2441.000244, "rotation": [ 0.845732, 0.254828, 0.357194, 0.303664] }, { "keytime": 2474.333496, "rotation": [ 0.845730, 0.254829, 0.357211, 0.303649] }, { "keytime": 2507.666748, "rotation": [ 0.845728, 0.254831, 0.357230, 0.303631] }, { "keytime": 2541.000000, "rotation": [ 0.845726, 0.254833, 0.357254, 0.303609] }, { "keytime": 2574.333252, "rotation": [ 0.845722, 0.254835, 0.357281, 0.303584] }, { "keytime": 2607.666504, "rotation": [ 0.845719, 0.254838, 0.357311, 0.303556] }, { "keytime": 2640.999756, "rotation": [ 0.845715, 0.254841, 0.357344, 0.303525] }, { "keytime": 2707.666260, "rotation": [ 0.845706, 0.254848, 0.357421, 0.303453] }, { "keytime": 2740.999512, "rotation": [ 0.845701, 0.254852, 0.357464, 0.303413] }, { "keytime": 2807.666016, "rotation": [ 0.845689, 0.254861, 0.357562, 0.303322] }, { "keytime": 2840.999268, "rotation": [ 0.845683, 0.254866, 0.357615, 0.303274] }, { "keytime": 2874.332520, "rotation": [ 0.845676, 0.254872, 0.357672, 0.303220] }, { "keytime": 2907.665771, "rotation": [ 0.845669, 0.254877, 0.357732, 0.303165] }, { "keytime": 2940.999023, "rotation": [ 0.845662, 0.254883, 0.357795, 0.303107] }, { "keytime": 3007.665527, "rotation": [ 0.845645, 0.254896, 0.357931, 0.302982] }, { "keytime": 3040.998779, "rotation": [ 0.845637, 0.254903, 0.358002, 0.302916] }, { "keytime": 3107.665283, "rotation": [ 0.845618, 0.254917, 0.358156, 0.302774] }, { "keytime": 3140.998535, "rotation": [ 0.845608, 0.254925, 0.358236, 0.302701] }, { "keytime": 3207.665039, "rotation": [ 0.845587, 0.254942, 0.358405, 0.302545] }, { "keytime": 3240.998291, "rotation": [ 0.845576, 0.254950, 0.358492, 0.302465] }, { "keytime": 3340.998047, "rotation": [ 0.845541, 0.254977, 0.358769, 0.302211] }, { "keytime": 3440.997803, "rotation": [ 0.845503, 0.255007, 0.359063, 0.301943] }, { "keytime": 3540.997559, "rotation": [ 0.845463, 0.255037, 0.359370, 0.301666] }, { "keytime": 3640.997314, "rotation": [ 0.845420, 0.255069, 0.359684, 0.301383] }, { "keytime": 3674.330566, "rotation": [ 0.845406, 0.255081, 0.359791, 0.301287] }, { "keytime": 3740.997070, "rotation": [ 0.845377, 0.255103, 0.360000, 0.301099] }, { "keytime": 3774.330322, "rotation": [ 0.845362, 0.255114, 0.360107, 0.301002] }, { "keytime": 3840.996826, "rotation": [ 0.845333, 0.255136, 0.360314, 0.300818] }, { "keytime": 3874.330078, "rotation": [ 0.845318, 0.255147, 0.360421, 0.300723] }, { "keytime": 3974.329834, "rotation": [ 0.845273, 0.255182, 0.360726, 0.300453] }, { "keytime": 4074.329590, "rotation": [ 0.845229, 0.255216, 0.361020, 0.300197] }, { "keytime": 4174.329590, "rotation": [ 0.845185, 0.255250, 0.361297, 0.299957] }, { "keytime": 4207.663086, "rotation": [ 0.845171, 0.255260, 0.361385, 0.299882] }, { "keytime": 4274.330078, "rotation": [ 0.845143, 0.255282, 0.361555, 0.299738] }, { "keytime": 4307.663574, "rotation": [ 0.845129, 0.255292, 0.361636, 0.299670] }, { "keytime": 4374.330566, "rotation": [ 0.845102, 0.255313, 0.361792, 0.299541] }, { "keytime": 4407.664062, "rotation": [ 0.845089, 0.255323, 0.361865, 0.299481] }, { "keytime": 4474.331055, "rotation": [ 0.845063, 0.255343, 0.362004, 0.299368] }, { "keytime": 4507.664551, "rotation": [ 0.845051, 0.255353, 0.362068, 0.299317] }, { "keytime": 4574.331543, "rotation": [ 0.845027, 0.255372, 0.362191, 0.299221] }, { "keytime": 4607.665039, "rotation": [ 0.845015, 0.255381, 0.362246, 0.299179] }, { "keytime": 4674.332031, "rotation": [ 0.844992, 0.255399, 0.362350, 0.299101] }, { "keytime": 4707.665527, "rotation": [ 0.844981, 0.255407, 0.362398, 0.299068] }, { "keytime": 4774.332520, "rotation": [ 0.844961, 0.255424, 0.362483, 0.299009] }, { "keytime": 4807.666016, "rotation": [ 0.844951, 0.255431, 0.362520, 0.298985] }, { "keytime": 4874.333008, "rotation": [ 0.844932, 0.255447, 0.362588, 0.298944] }, { "keytime": 4941.000000, "rotation": [ 0.844914, 0.255461, 0.362642, 0.298916] }, { "keytime": 4974.333496, "rotation": [ 0.844905, 0.255468, 0.362664, 0.298907] }, { "keytime": 5041.000488, "rotation": [ 0.844889, 0.255483, 0.362703, 0.298895] }, { "keytime": 5107.667480, "rotation": [ 0.844869, 0.255503, 0.362736, 0.298892] }, { "keytime": 5174.334473, "rotation": [ 0.844847, 0.255528, 0.362767, 0.298896] }, { "keytime": 5207.667969, "rotation": [ 0.844835, 0.255543, 0.362781, 0.298901] }, { "keytime": 5274.334961, "rotation": [ 0.844808, 0.255578, 0.362807, 0.298916] }, { "keytime": 5307.668457, "rotation": [ 0.844794, 0.255597, 0.362818, 0.298927] }, { "keytime": 5374.335449, "rotation": [ 0.844763, 0.255639, 0.362838, 0.298953] }, { "keytime": 5474.335938, "rotation": [ 0.844712, 0.255712, 0.362861, 0.299006] }, { "keytime": 5574.336426, "rotation": [ 0.844658, 0.255794, 0.362876, 0.299072] }, { "keytime": 5674.336914, "rotation": [ 0.844600, 0.255883, 0.362883, 0.299150] }, { "keytime": 5807.670898, "rotation": [ 0.844523, 0.256008, 0.362881, 0.299263] }, { "keytime": 5941.004883, "rotation": [ 0.844447, 0.256132, 0.362872, 0.299384] }, { "keytime": 6041.005371, "rotation": [ 0.844394, 0.256218, 0.362862, 0.299470] }, { "keytime": 6141.005859, "rotation": [ 0.844348, 0.256296, 0.362849, 0.299549] }, { "keytime": 6207.672852, "rotation": [ 0.844321, 0.256342, 0.362840, 0.299597] }, { "keytime": 6274.339844, "rotation": [ 0.844297, 0.256382, 0.362832, 0.299639] }, { "keytime": 6341.006836, "rotation": [ 0.844277, 0.256417, 0.362824, 0.299675] }, { "keytime": 6407.673828, "rotation": [ 0.844261, 0.256445, 0.362818, 0.299705] }, { "keytime": 6474.340820, "rotation": [ 0.844248, 0.256466, 0.362813, 0.299728] }, { "keytime": 6541.007812, "rotation": [ 0.844239, 0.256482, 0.362809, 0.299744] }, { "keytime": 6607.674805, "rotation": [ 0.844235, 0.256490, 0.362807, 0.299754] } ] }, { "boneId": "Bone_008", "keyframes": [ { "keytime": 41.000000, "rotation": [ 0.930243, 0.004179, -0.112102, 0.349376] }, { "keytime": 74.333328, "rotation": [ 0.930243, 0.004178, -0.112099, 0.349378] }, { "keytime": 107.666664, "rotation": [ 0.930243, 0.004175, -0.112092, 0.349380] }, { "keytime": 141.000000, "rotation": [ 0.930242, 0.004169, -0.112079, 0.349385] }, { "keytime": 174.333328, "rotation": [ 0.930242, 0.004162, -0.112063, 0.349391] }, { "keytime": 207.666656, "rotation": [ 0.930242, 0.004153, -0.112041, 0.349399] }, { "keytime": 240.999985, "rotation": [ 0.930241, 0.004142, -0.112014, 0.349410] }, { "keytime": 274.333313, "rotation": [ 0.930240, 0.004129, -0.111981, 0.349422] }, { "keytime": 307.666656, "rotation": [ 0.930240, 0.004114, -0.111944, 0.349436] }, { "keytime": 341.000000, "rotation": [ 0.930239, 0.004097, -0.111901, 0.349452] }, { "keytime": 374.333344, "rotation": [ 0.930238, 0.004078, -0.111856, 0.349470] }, { "keytime": 407.666687, "rotation": [ 0.930237, 0.004057, -0.111804, 0.349489] }, { "keytime": 441.000031, "rotation": [ 0.930236, 0.004033, -0.111745, 0.349512] }, { "keytime": 474.333374, "rotation": [ 0.930234, 0.004008, -0.111684, 0.349535] }, { "keytime": 507.666718, "rotation": [ 0.930233, 0.003982, -0.111619, 0.349559] }, { "keytime": 541.000061, "rotation": [ 0.930232, 0.003954, -0.111547, 0.349586] }, { "keytime": 574.333374, "rotation": [ 0.930230, 0.003923, -0.111471, 0.349615] }, { "keytime": 607.666687, "rotation": [ 0.930229, 0.003890, -0.111392, 0.349645] }, { "keytime": 674.333313, "rotation": [ 0.930225, 0.003819, -0.111219, 0.349711] }, { "keytime": 707.666626, "rotation": [ 0.930223, 0.003782, -0.111128, 0.349745] }, { "keytime": 740.999939, "rotation": [ 0.930221, 0.003744, -0.111032, 0.349781] }, { "keytime": 807.666565, "rotation": [ 0.930217, 0.003662, -0.110827, 0.349858] }, { "keytime": 840.999878, "rotation": [ 0.930214, 0.003619, -0.110722, 0.349898] }, { "keytime": 907.666504, "rotation": [ 0.930210, 0.003528, -0.110499, 0.349982] }, { "keytime": 940.999817, "rotation": [ 0.930207, 0.003482, -0.110386, 0.350025] }, { "keytime": 1040.999756, "rotation": [ 0.930199, 0.003338, -0.110030, 0.350160] }, { "keytime": 1074.333130, "rotation": [ 0.930196, 0.003288, -0.109906, 0.350207] }, { "keytime": 1140.999878, "rotation": [ 0.930191, 0.003190, -0.109663, 0.350298] }, { "keytime": 1174.333252, "rotation": [ 0.930188, 0.003139, -0.109538, 0.350345] }, { "keytime": 1207.666626, "rotation": [ 0.930185, 0.003090, -0.109416, 0.350391] }, { "keytime": 1241.000000, "rotation": [ 0.930183, 0.003040, -0.109291, 0.350438] }, { "keytime": 1307.666748, "rotation": [ 0.930177, 0.002942, -0.109050, 0.350528] }, { "keytime": 1341.000122, "rotation": [ 0.930174, 0.002893, -0.108928, 0.350574] }, { "keytime": 1374.333496, "rotation": [ 0.930171, 0.002845, -0.108811, 0.350619] }, { "keytime": 1441.000244, "rotation": [ 0.930166, 0.002752, -0.108581, 0.350705] }, { "keytime": 1474.333618, "rotation": [ 0.930163, 0.002707, -0.108471, 0.350747] }, { "keytime": 1541.000366, "rotation": [ 0.930158, 0.002621, -0.108256, 0.350828] }, { "keytime": 1574.333740, "rotation": [ 0.930156, 0.002581, -0.108156, 0.350865] }, { "keytime": 1641.000488, "rotation": [ 0.930151, 0.002502, -0.107962, 0.350939] }, { "keytime": 1674.333862, "rotation": [ 0.930148, 0.002466, -0.107872, 0.350972] }, { "keytime": 1707.667236, "rotation": [ 0.930146, 0.002430, -0.107786, 0.351005] }, { "keytime": 1741.000610, "rotation": [ 0.930144, 0.002396, -0.107703, 0.351036] }, { "keytime": 1774.333984, "rotation": [ 0.930142, 0.002365, -0.107626, 0.351065] }, { "keytime": 1807.667358, "rotation": [ 0.930140, 0.002336, -0.107553, 0.351092] }, { "keytime": 1841.000732, "rotation": [ 0.930139, 0.002307, -0.107483, 0.351119] }, { "keytime": 1874.334106, "rotation": [ 0.930137, 0.002281, -0.107418, 0.351143] }, { "keytime": 1907.667480, "rotation": [ 0.930135, 0.002258, -0.107360, 0.351165] }, { "keytime": 1941.000854, "rotation": [ 0.930134, 0.002235, -0.107305, 0.351186] }, { "keytime": 1974.334229, "rotation": [ 0.930133, 0.002215, -0.107256, 0.351204] }, { "keytime": 2007.667603, "rotation": [ 0.930132, 0.002197, -0.107211, 0.351221] }, { "keytime": 2041.000977, "rotation": [ 0.930131, 0.002181, -0.107170, 0.351236] }, { "keytime": 2074.334473, "rotation": [ 0.930130, 0.002167, -0.107136, 0.351249] }, { "keytime": 2107.667725, "rotation": [ 0.930129, 0.002155, -0.107107, 0.351260] }, { "keytime": 2141.000977, "rotation": [ 0.930128, 0.002144, -0.107082, 0.351269] }, { "keytime": 2174.334229, "rotation": [ 0.930128, 0.002136, -0.107062, 0.351277] }, { "keytime": 2207.667480, "rotation": [ 0.930127, 0.002130, -0.107047, 0.351283] }, { "keytime": 2241.000732, "rotation": [ 0.930127, 0.002127, -0.107037, 0.351286] }, { "keytime": 2274.333984, "rotation": [ 0.930127, 0.002125, -0.107033, 0.351288] }, { "keytime": 2307.667236, "rotation": [ 0.930127, 0.002125, -0.107032, 0.351288] }, { "keytime": 2341.000488, "rotation": [ 0.930127, 0.002126, -0.107035, 0.351286] }, { "keytime": 2374.333740, "rotation": [ 0.930128, 0.002130, -0.107039, 0.351284] }, { "keytime": 2407.666992, "rotation": [ 0.930129, 0.002137, -0.107047, 0.351279] }, { "keytime": 2441.000244, "rotation": [ 0.930130, 0.002145, -0.107057, 0.351272] }, { "keytime": 2474.333496, "rotation": [ 0.930132, 0.002156, -0.107070, 0.351264] }, { "keytime": 2507.666748, "rotation": [ 0.930133, 0.002169, -0.107085, 0.351255] }, { "keytime": 2541.000000, "rotation": [ 0.930135, 0.002184, -0.107103, 0.351244] }, { "keytime": 2574.333252, "rotation": [ 0.930138, 0.002201, -0.107123, 0.351231] }, { "keytime": 2607.666504, "rotation": [ 0.930141, 0.002220, -0.107146, 0.351217] }, { "keytime": 2640.999756, "rotation": [ 0.930143, 0.002242, -0.107172, 0.351201] }, { "keytime": 2707.666260, "rotation": [ 0.930150, 0.002291, -0.107231, 0.351165] }, { "keytime": 2740.999512, "rotation": [ 0.930154, 0.002319, -0.107264, 0.351144] }, { "keytime": 2807.666016, "rotation": [ 0.930163, 0.002381, -0.107340, 0.351098] }, { "keytime": 2840.999268, "rotation": [ 0.930167, 0.002415, -0.107380, 0.351073] }, { "keytime": 2907.665771, "rotation": [ 0.930178, 0.002490, -0.107470, 0.351018] }, { "keytime": 2940.999023, "rotation": [ 0.930183, 0.002529, -0.107519, 0.350988] }, { "keytime": 3007.665527, "rotation": [ 0.930195, 0.002615, -0.107624, 0.350925] }, { "keytime": 3040.998779, "rotation": [ 0.930201, 0.002660, -0.107679, 0.350891] }, { "keytime": 3107.665283, "rotation": [ 0.930214, 0.002756, -0.107799, 0.350819] }, { "keytime": 3140.998535, "rotation": [ 0.930221, 0.002806, -0.107861, 0.350782] }, { "keytime": 3207.665039, "rotation": [ 0.930235, 0.002911, -0.107992, 0.350703] }, { "keytime": 3240.998291, "rotation": [ 0.930242, 0.002965, -0.108060, 0.350662] }, { "keytime": 3340.998047, "rotation": [ 0.930265, 0.003135, -0.108277, 0.350534] }, { "keytime": 3440.997803, "rotation": [ 0.930288, 0.003314, -0.108508, 0.350399] }, { "keytime": 3540.997559, "rotation": [ 0.930312, 0.003496, -0.108750, 0.350259] }, { "keytime": 3640.997314, "rotation": [ 0.930335, 0.003681, -0.109000, 0.350117] }, { "keytime": 3674.330566, "rotation": [ 0.930343, 0.003744, -0.109085, 0.350069] }, { "keytime": 3740.997070, "rotation": [ 0.930358, 0.003867, -0.109251, 0.349976] }, { "keytime": 3774.330322, "rotation": [ 0.930366, 0.003928, -0.109337, 0.349927] }, { "keytime": 3840.996826, "rotation": [ 0.930381, 0.004046, -0.109505, 0.349834] }, { "keytime": 3874.330078, "rotation": [ 0.930388, 0.004106, -0.109592, 0.349787] }, { "keytime": 3940.996582, "rotation": [ 0.930401, 0.004218, -0.109757, 0.349698] }, { "keytime": 3974.329834, "rotation": [ 0.930408, 0.004274, -0.109841, 0.349653] }, { "keytime": 4007.663086, "rotation": [ 0.930414, 0.004328, -0.109922, 0.349611] }, { "keytime": 4074.329590, "rotation": [ 0.930426, 0.004431, -0.110083, 0.349527] }, { "keytime": 4174.329590, "rotation": [ 0.930442, 0.004574, -0.110315, 0.349409] }, { "keytime": 4207.663086, "rotation": [ 0.930447, 0.004618, -0.110388, 0.349373] }, { "keytime": 4274.330078, "rotation": [ 0.930456, 0.004701, -0.110533, 0.349303] }, { "keytime": 4340.997070, "rotation": [ 0.930463, 0.004775, -0.110670, 0.349239] }, { "keytime": 4374.330566, "rotation": [ 0.930466, 0.004810, -0.110738, 0.349208] }, { "keytime": 4440.997559, "rotation": [ 0.930472, 0.004870, -0.110863, 0.349153] }, { "keytime": 4474.331055, "rotation": [ 0.930474, 0.004899, -0.110925, 0.349127] }, { "keytime": 4507.664551, "rotation": [ 0.930476, 0.004924, -0.110983, 0.349103] }, { "keytime": 4540.998047, "rotation": [ 0.930478, 0.004947, -0.111039, 0.349080] }, { "keytime": 4574.331543, "rotation": [ 0.930479, 0.004968, -0.111094, 0.349059] }, { "keytime": 4607.665039, "rotation": [ 0.930480, 0.004987, -0.111146, 0.349040] }, { "keytime": 4674.332031, "rotation": [ 0.930481, 0.005017, -0.111245, 0.349005] }, { "keytime": 4707.665527, "rotation": [ 0.930481, 0.005029, -0.111291, 0.348990] }, { "keytime": 4774.332520, "rotation": [ 0.930480, 0.005045, -0.111376, 0.348966] }, { "keytime": 4807.666016, "rotation": [ 0.930479, 0.005050, -0.111415, 0.348956] }, { "keytime": 4840.999512, "rotation": [ 0.930477, 0.005052, -0.111452, 0.348948] }, { "keytime": 4874.333008, "rotation": [ 0.930476, 0.005052, -0.111488, 0.348941] }, { "keytime": 4907.666504, "rotation": [ 0.930474, 0.005050, -0.111520, 0.348936] }, { "keytime": 4941.000000, "rotation": [ 0.930471, 0.005045, -0.111551, 0.348933] }, { "keytime": 5007.666992, "rotation": [ 0.930466, 0.005030, -0.111606, 0.348931] }, { "keytime": 5074.333984, "rotation": [ 0.930459, 0.005008, -0.111656, 0.348933] }, { "keytime": 5174.334473, "rotation": [ 0.930447, 0.004968, -0.111727, 0.348942] }, { "keytime": 5207.667969, "rotation": [ 0.930443, 0.004953, -0.111749, 0.348947] }, { "keytime": 5241.001465, "rotation": [ 0.930438, 0.004936, -0.111772, 0.348952] }, { "keytime": 5307.668457, "rotation": [ 0.930428, 0.004902, -0.111812, 0.348965] }, { "keytime": 5341.001953, "rotation": [ 0.930423, 0.004882, -0.111833, 0.348973] }, { "keytime": 5407.668945, "rotation": [ 0.930412, 0.004842, -0.111870, 0.348990] }, { "keytime": 5507.669434, "rotation": [ 0.930395, 0.004776, -0.111921, 0.349022] }, { "keytime": 5574.336426, "rotation": [ 0.930382, 0.004729, -0.111951, 0.349046] }, { "keytime": 5674.336914, "rotation": [ 0.930363, 0.004655, -0.111990, 0.349087] }, { "keytime": 5774.337402, "rotation": [ 0.930344, 0.004580, -0.112022, 0.349129] }, { "keytime": 5841.004395, "rotation": [ 0.930331, 0.004530, -0.112040, 0.349157] }, { "keytime": 5941.004883, "rotation": [ 0.930313, 0.004457, -0.112061, 0.349200] }, { "keytime": 6074.338867, "rotation": [ 0.930290, 0.004368, -0.112081, 0.349255] }, { "keytime": 6141.005859, "rotation": [ 0.930280, 0.004329, -0.112088, 0.349280] }, { "keytime": 6241.006348, "rotation": [ 0.930267, 0.004278, -0.112096, 0.349312] }, { "keytime": 6341.006836, "rotation": [ 0.930257, 0.004237, -0.112100, 0.349339] }, { "keytime": 6374.340332, "rotation": [ 0.930255, 0.004225, -0.112100, 0.349346] }, { "keytime": 6441.007324, "rotation": [ 0.930250, 0.004207, -0.112102, 0.349358] }, { "keytime": 6541.007812, "rotation": [ 0.930245, 0.004187, -0.112102, 0.349370] }, { "keytime": 6607.674805, "rotation": [ 0.930243, 0.004181, -0.112103, 0.349375] } ] }, { "boneId": "Bone_009", "keyframes": [ { "keytime": 41.000000, "rotation": [ 0.941757, 0.116163, 0.193957, -0.248960] }, { "keytime": 74.333328, "rotation": [ 0.941757, 0.116164, 0.193955, -0.248959] }, { "keytime": 107.666664, "rotation": [ 0.941758, 0.116166, 0.193949, -0.248958] }, { "keytime": 141.000000, "rotation": [ 0.941760, 0.116169, 0.193940, -0.248956] }, { "keytime": 174.333328, "rotation": [ 0.941763, 0.116174, 0.193928, -0.248954] }, { "keytime": 207.666656, "rotation": [ 0.941766, 0.116179, 0.193913, -0.248950] }, { "keytime": 240.999985, "rotation": [ 0.941771, 0.116186, 0.193893, -0.248946] }, { "keytime": 274.333313, "rotation": [ 0.941776, 0.116195, 0.193868, -0.248941] }, { "keytime": 307.666656, "rotation": [ 0.941782, 0.116205, 0.193842, -0.248936] }, { "keytime": 341.000000, "rotation": [ 0.941788, 0.116216, 0.193811, -0.248929] }, { "keytime": 374.333344, "rotation": [ 0.941796, 0.116228, 0.193777, -0.248922] }, { "keytime": 407.666687, "rotation": [ 0.941804, 0.116241, 0.193739, -0.248914] }, { "keytime": 441.000031, "rotation": [ 0.941813, 0.116256, 0.193697, -0.248906] }, { "keytime": 474.333374, "rotation": [ 0.941823, 0.116272, 0.193652, -0.248896] }, { "keytime": 507.666718, "rotation": [ 0.941833, 0.116290, 0.193604, -0.248886] }, { "keytime": 541.000061, "rotation": [ 0.941844, 0.116308, 0.193552, -0.248876] }, { "keytime": 574.333374, "rotation": [ 0.941857, 0.116328, 0.193497, -0.248864] }, { "keytime": 607.666687, "rotation": [ 0.941869, 0.116349, 0.193439, -0.248852] }, { "keytime": 674.333313, "rotation": [ 0.941896, 0.116394, 0.193312, -0.248826] }, { "keytime": 707.666626, "rotation": [ 0.941911, 0.116418, 0.193246, -0.248812] }, { "keytime": 740.999939, "rotation": [ 0.941926, 0.116443, 0.193176, -0.248798] }, { "keytime": 807.666565, "rotation": [ 0.941958, 0.116496, 0.193027, -0.248766] }, { "keytime": 840.999878, "rotation": [ 0.941974, 0.116524, 0.192950, -0.248751] }, { "keytime": 907.666504, "rotation": [ 0.942009, 0.116582, 0.192788, -0.248717] }, { "keytime": 940.999817, "rotation": [ 0.942027, 0.116612, 0.192705, -0.248700] }, { "keytime": 1040.999756, "rotation": [ 0.942083, 0.116704, 0.192446, -0.248645] }, { "keytime": 1074.333130, "rotation": [ 0.942102, 0.116737, 0.192355, -0.248627] }, { "keytime": 1140.999878, "rotation": [ 0.942140, 0.116800, 0.192178, -0.248590] }, { "keytime": 1174.333252, "rotation": [ 0.942160, 0.116833, 0.192086, -0.248571] }, { "keytime": 1207.666626, "rotation": [ 0.942179, 0.116864, 0.191998, -0.248553] }, { "keytime": 1241.000000, "rotation": [ 0.942198, 0.116897, 0.191907, -0.248534] }, { "keytime": 1307.666748, "rotation": [ 0.942236, 0.116960, 0.191731, -0.248498] }, { "keytime": 1341.000122, "rotation": [ 0.942255, 0.116992, 0.191642, -0.248480] }, { "keytime": 1374.333496, "rotation": [ 0.942273, 0.117023, 0.191557, -0.248462] }, { "keytime": 1441.000244, "rotation": [ 0.942309, 0.117082, 0.191389, -0.248427] }, { "keytime": 1541.000366, "rotation": [ 0.942359, 0.117168, 0.191152, -0.248378] }, { "keytime": 1574.333740, "rotation": [ 0.942375, 0.117194, 0.191079, -0.248362] }, { "keytime": 1641.000488, "rotation": [ 0.942405, 0.117244, 0.190938, -0.248333] }, { "keytime": 1674.333862, "rotation": [ 0.942419, 0.117268, 0.190872, -0.248319] }, { "keytime": 1707.667236, "rotation": [ 0.942432, 0.117290, 0.190809, -0.248307] }, { "keytime": 1741.000610, "rotation": [ 0.942445, 0.117312, 0.190748, -0.248293] }, { "keytime": 1774.333984, "rotation": [ 0.942457, 0.117332, 0.190692, -0.248282] }, { "keytime": 1841.000732, "rotation": [ 0.942480, 0.117369, 0.190588, -0.248260] }, { "keytime": 1874.334106, "rotation": [ 0.942490, 0.117386, 0.190541, -0.248250] }, { "keytime": 1907.667480, "rotation": [ 0.942499, 0.117401, 0.190499, -0.248241] }, { "keytime": 1941.000854, "rotation": [ 0.942507, 0.117416, 0.190458, -0.248233] }, { "keytime": 1974.334229, "rotation": [ 0.942515, 0.117428, 0.190422, -0.248225] }, { "keytime": 2007.667603, "rotation": [ 0.942522, 0.117440, 0.190390, -0.248218] }, { "keytime": 2041.000977, "rotation": [ 0.942528, 0.117451, 0.190360, -0.248212] }, { "keytime": 2074.334473, "rotation": [ 0.942533, 0.117460, 0.190335, -0.248207] }, { "keytime": 2107.667725, "rotation": [ 0.942538, 0.117467, 0.190314, -0.248203] }, { "keytime": 2141.000977, "rotation": [ 0.942542, 0.117474, 0.190296, -0.248199] }, { "keytime": 2174.334229, "rotation": [ 0.942545, 0.117479, 0.190281, -0.248196] }, { "keytime": 2207.667480, "rotation": [ 0.942547, 0.117483, 0.190270, -0.248193] }, { "keytime": 2241.000732, "rotation": [ 0.942548, 0.117486, 0.190263, -0.248193] }, { "keytime": 2274.333984, "rotation": [ 0.942549, 0.117487, 0.190260, -0.248192] }, { "keytime": 2307.667236, "rotation": [ 0.942549, 0.117487, 0.190259, -0.248191] }, { "keytime": 2341.000488, "rotation": [ 0.942549, 0.117485, 0.190261, -0.248192] }, { "keytime": 2374.333740, "rotation": [ 0.942548, 0.117483, 0.190266, -0.248193] }, { "keytime": 2407.666992, "rotation": [ 0.942546, 0.117479, 0.190273, -0.248196] }, { "keytime": 2474.333496, "rotation": [ 0.942542, 0.117466, 0.190295, -0.248202] }, { "keytime": 2507.666748, "rotation": [ 0.942539, 0.117458, 0.190309, -0.248206] }, { "keytime": 2541.000000, "rotation": [ 0.942535, 0.117449, 0.190326, -0.248211] }, { "keytime": 2574.333252, "rotation": [ 0.942531, 0.117438, 0.190345, -0.248217] }, { "keytime": 2607.666504, "rotation": [ 0.942527, 0.117425, 0.190366, -0.248224] }, { "keytime": 2640.999756, "rotation": [ 0.942522, 0.117412, 0.190390, -0.248231] }, { "keytime": 2707.666260, "rotation": [ 0.942510, 0.117380, 0.190445, -0.248247] }, { "keytime": 2740.999512, "rotation": [ 0.942504, 0.117362, 0.190476, -0.248257] }, { "keytime": 2807.666016, "rotation": [ 0.942489, 0.117323, 0.190546, -0.248278] }, { "keytime": 2840.999268, "rotation": [ 0.942481, 0.117301, 0.190583, -0.248289] }, { "keytime": 2907.665771, "rotation": [ 0.942464, 0.117253, 0.190666, -0.248315] }, { "keytime": 2940.999023, "rotation": [ 0.942454, 0.117228, 0.190711, -0.248328] }, { "keytime": 3007.665527, "rotation": [ 0.942434, 0.117173, 0.190807, -0.248357] }, { "keytime": 3040.998779, "rotation": [ 0.942423, 0.117144, 0.190857, -0.248373] }, { "keytime": 3107.665283, "rotation": [ 0.942400, 0.117082, 0.190966, -0.248406] }, { "keytime": 3140.998535, "rotation": [ 0.942389, 0.117050, 0.191022, -0.248423] }, { "keytime": 3207.665039, "rotation": [ 0.942364, 0.116982, 0.191140, -0.248459] }, { "keytime": 3240.998291, "rotation": [ 0.942351, 0.116946, 0.191202, -0.248477] }, { "keytime": 3340.998047, "rotation": [ 0.942310, 0.116836, 0.191395, -0.248535] }, { "keytime": 3374.331299, "rotation": [ 0.942295, 0.116796, 0.191464, -0.248556] }, { "keytime": 3440.997803, "rotation": [ 0.942267, 0.116719, 0.191598, -0.248597] }, { "keytime": 3540.997559, "rotation": [ 0.942222, 0.116598, 0.191809, -0.248661] }, { "keytime": 3574.330811, "rotation": [ 0.942206, 0.116557, 0.191882, -0.248683] }, { "keytime": 3640.997314, "rotation": [ 0.942177, 0.116476, 0.192022, -0.248725] }, { "keytime": 3674.330566, "rotation": [ 0.942161, 0.116434, 0.192095, -0.248747] }, { "keytime": 3740.997070, "rotation": [ 0.942131, 0.116353, 0.192236, -0.248789] }, { "keytime": 3774.330322, "rotation": [ 0.942116, 0.116312, 0.192308, -0.248811] }, { "keytime": 3874.330078, "rotation": [ 0.942071, 0.116191, 0.192518, -0.248875] }, { "keytime": 3974.329834, "rotation": [ 0.942028, 0.116076, 0.192720, -0.248935] }, { "keytime": 4074.329590, "rotation": [ 0.941987, 0.115966, 0.192910, -0.248993] }, { "keytime": 4174.329590, "rotation": [ 0.941949, 0.115865, 0.193087, -0.249046] }, { "keytime": 4207.663086, "rotation": [ 0.941938, 0.115834, 0.193142, -0.249062] }, { "keytime": 4274.330078, "rotation": [ 0.941915, 0.115773, 0.193247, -0.249094] }, { "keytime": 4340.997070, "rotation": [ 0.941894, 0.115718, 0.193343, -0.249124] }, { "keytime": 4374.330566, "rotation": [ 0.941885, 0.115691, 0.193389, -0.249138] }, { "keytime": 4407.664062, "rotation": [ 0.941876, 0.115667, 0.193432, -0.249150] }, { "keytime": 4474.331055, "rotation": [ 0.941858, 0.115621, 0.193512, -0.249175] }, { "keytime": 4507.664551, "rotation": [ 0.941851, 0.115600, 0.193548, -0.249185] }, { "keytime": 4574.331543, "rotation": [ 0.941836, 0.115563, 0.193614, -0.249206] }, { "keytime": 4607.665039, "rotation": [ 0.941830, 0.115546, 0.193643, -0.249214] }, { "keytime": 4674.332031, "rotation": [ 0.941819, 0.115516, 0.193695, -0.249230] }, { "keytime": 4707.665527, "rotation": [ 0.941814, 0.115503, 0.193717, -0.249237] }, { "keytime": 4774.332520, "rotation": [ 0.941806, 0.115482, 0.193754, -0.249248] }, { "keytime": 4807.666016, "rotation": [ 0.941803, 0.115474, 0.193769, -0.249252] }, { "keytime": 4874.333008, "rotation": [ 0.941798, 0.115460, 0.193792, -0.249259] }, { "keytime": 4907.666504, "rotation": [ 0.941796, 0.115456, 0.193799, -0.249262] }, { "keytime": 4941.000000, "rotation": [ 0.941795, 0.115453, 0.193805, -0.249263] }, { "keytime": 5007.666992, "rotation": [ 0.941795, 0.115451, 0.193809, -0.249264] }, { "keytime": 5074.333984, "rotation": [ 0.941794, 0.115454, 0.193810, -0.249263] }, { "keytime": 5141.000977, "rotation": [ 0.941794, 0.115462, 0.193811, -0.249259] }, { "keytime": 5207.667969, "rotation": [ 0.941793, 0.115475, 0.193814, -0.249254] }, { "keytime": 5307.668457, "rotation": [ 0.941791, 0.115505, 0.193821, -0.249241] }, { "keytime": 5374.335449, "rotation": [ 0.941790, 0.115531, 0.193826, -0.249230] }, { "keytime": 5441.002441, "rotation": [ 0.941788, 0.115561, 0.193832, -0.249217] }, { "keytime": 5541.002930, "rotation": [ 0.941785, 0.115615, 0.193844, -0.249194] }, { "keytime": 5607.669922, "rotation": [ 0.941784, 0.115655, 0.193852, -0.249177] }, { "keytime": 5707.670410, "rotation": [ 0.941780, 0.115720, 0.193866, -0.249148] }, { "keytime": 5941.004883, "rotation": [ 0.941771, 0.115882, 0.193899, -0.249081] }, { "keytime": 6041.005371, "rotation": [ 0.941768, 0.115948, 0.193911, -0.249052] }, { "keytime": 6141.005859, "rotation": [ 0.941765, 0.116008, 0.193924, -0.249026] }, { "keytime": 6241.006348, "rotation": [ 0.941762, 0.116061, 0.193935, -0.249004] }, { "keytime": 6341.006836, "rotation": [ 0.941760, 0.116103, 0.193944, -0.248986] }, { "keytime": 6407.673828, "rotation": [ 0.941759, 0.116125, 0.193949, -0.248976] }, { "keytime": 6474.340820, "rotation": [ 0.941758, 0.116142, 0.193952, -0.248969] }, { "keytime": 6541.007812, "rotation": [ 0.941757, 0.116154, 0.193955, -0.248964] }, { "keytime": 6607.674805, "rotation": [ 0.941757, 0.116161, 0.193956, -0.248961] } ] }, { "boneId": "Bone_010", "keyframes": [ { "keytime": 41.000000, "rotation": [-0.028916, 0.119078, -0.050256, 0.991191] }, { "keytime": 107.666664, "rotation": [-0.028916, 0.119074, -0.050257, 0.991191] }, { "keytime": 174.333328, "rotation": [-0.028917, 0.119062, -0.050258, 0.991192] }, { "keytime": 207.666656, "rotation": [-0.028918, 0.119054, -0.050259, 0.991193] }, { "keytime": 240.999985, "rotation": [-0.028919, 0.119043, -0.050259, 0.991194] }, { "keytime": 307.666656, "rotation": [-0.028921, 0.119016, -0.050261, 0.991198] }, { "keytime": 374.333344, "rotation": [-0.028923, 0.118981, -0.050263, 0.991202] }, { "keytime": 407.666687, "rotation": [-0.028924, 0.118961, -0.050265, 0.991204] }, { "keytime": 474.333374, "rotation": [-0.028927, 0.118915, -0.050270, 0.991209] }, { "keytime": 507.666718, "rotation": [-0.028929, 0.118889, -0.050272, 0.991212] }, { "keytime": 574.333374, "rotation": [-0.028932, 0.118832, -0.050277, 0.991219] }, { "keytime": 607.666687, "rotation": [-0.028934, 0.118801, -0.050280, 0.991222] }, { "keytime": 674.333313, "rotation": [-0.028938, 0.118733, -0.050285, 0.991230] }, { "keytime": 740.999939, "rotation": [-0.028943, 0.118660, -0.050291, 0.991238] }, { "keytime": 840.999878, "rotation": [-0.028950, 0.118540, -0.050300, 0.991252] }, { "keytime": 940.999817, "rotation": [-0.028958, 0.118408, -0.050310, 0.991267] }, { "keytime": 1040.999756, "rotation": [-0.028966, 0.118270, -0.050319, 0.991283] }, { "keytime": 1341.000122, "rotation": [-0.028992, 0.117841, -0.050349, 0.991331] }, { "keytime": 1441.000244, "rotation": [-0.029000, 0.117706, -0.050359, 0.991347] }, { "keytime": 1541.000366, "rotation": [-0.029008, 0.117579, -0.050367, 0.991361] }, { "keytime": 1641.000488, "rotation": [-0.029015, 0.117464, -0.050374, 0.991374] }, { "keytime": 1707.667236, "rotation": [-0.029020, 0.117395, -0.050379, 0.991382] }, { "keytime": 1741.000610, "rotation": [-0.029022, 0.117363, -0.050381, 0.991386] }, { "keytime": 1807.667358, "rotation": [-0.029025, 0.117304, -0.050384, 0.991392] }, { "keytime": 1841.000732, "rotation": [-0.029027, 0.117277, -0.050386, 0.991395] }, { "keytime": 1874.334106, "rotation": [-0.029029, 0.117252, -0.050388, 0.991398] }, { "keytime": 1941.000854, "rotation": [-0.029032, 0.117208, -0.050391, 0.991403] }, { "keytime": 2007.667603, "rotation": [-0.029034, 0.117171, -0.050394, 0.991407] }, { "keytime": 2041.000977, "rotation": [-0.029035, 0.117155, -0.050395, 0.991409] }, { "keytime": 2107.667725, "rotation": [-0.029037, 0.117131, -0.050398, 0.991412] }, { "keytime": 2141.000977, "rotation": [-0.029038, 0.117121, -0.050399, 0.991413] }, { "keytime": 2207.667480, "rotation": [-0.029039, 0.117107, -0.050401, 0.991414] }, { "keytime": 2274.333984, "rotation": [-0.029039, 0.117102, -0.050402, 0.991415] }, { "keytime": 2341.000488, "rotation": [-0.029040, 0.117103, -0.050403, 0.991415] }, { "keytime": 2407.666992, "rotation": [-0.029039, 0.117111, -0.050400, 0.991414] }, { "keytime": 2474.333496, "rotation": [-0.029036, 0.117125, -0.050397, 0.991413] }, { "keytime": 2541.000000, "rotation": [-0.029034, 0.117145, -0.050391, 0.991410] }, { "keytime": 2607.666504, "rotation": [-0.029031, 0.117172, -0.050383, 0.991408] }, { "keytime": 2640.999756, "rotation": [-0.029030, 0.117188, -0.050378, 0.991406] }, { "keytime": 2707.666260, "rotation": [-0.029027, 0.117224, -0.050369, 0.991403] }, { "keytime": 2740.999512, "rotation": [-0.029025, 0.117244, -0.050362, 0.991401] }, { "keytime": 2807.666016, "rotation": [-0.029022, 0.117290, -0.050349, 0.991396] }, { "keytime": 2840.999268, "rotation": [-0.029020, 0.117315, -0.050342, 0.991393] }, { "keytime": 2907.665771, "rotation": [-0.029017, 0.117370, -0.050326, 0.991388] }, { "keytime": 2940.999023, "rotation": [-0.029014, 0.117399, -0.050317, 0.991385] }, { "keytime": 3040.998779, "rotation": [-0.029004, 0.117495, -0.050289, 0.991375] }, { "keytime": 3140.998535, "rotation": [-0.028993, 0.117603, -0.050259, 0.991364] }, { "keytime": 3240.998291, "rotation": [-0.028983, 0.117722, -0.050224, 0.991352] }, { "keytime": 3340.998047, "rotation": [-0.028972, 0.117849, -0.050187, 0.991339] }, { "keytime": 3440.997803, "rotation": [-0.028961, 0.117983, -0.050148, 0.991326] }, { "keytime": 3540.997559, "rotation": [-0.028949, 0.118121, -0.050108, 0.991311] }, { "keytime": 3774.330322, "rotation": [-0.028923, 0.118451, -0.050015, 0.991278] }, { "keytime": 3907.663330, "rotation": [-0.028908, 0.118633, -0.049963, 0.991259] }, { "keytime": 4007.663086, "rotation": [-0.028897, 0.118763, -0.049924, 0.991246] }, { "keytime": 4074.329590, "rotation": [-0.028890, 0.118846, -0.049899, 0.991237] }, { "keytime": 4174.329590, "rotation": [-0.028879, 0.118962, -0.049866, 0.991225] }, { "keytime": 4274.330078, "rotation": [-0.028870, 0.119068, -0.049835, 0.991214] }, { "keytime": 4374.330566, "rotation": [-0.028863, 0.119162, -0.049808, 0.991205] }, { "keytime": 4474.331055, "rotation": [-0.028857, 0.119242, -0.049785, 0.991196] }, { "keytime": 4540.998047, "rotation": [-0.028854, 0.119288, -0.049771, 0.991192] }, { "keytime": 4574.331543, "rotation": [-0.028852, 0.119309, -0.049765, 0.991189] }, { "keytime": 4640.998535, "rotation": [-0.028848, 0.119346, -0.049754, 0.991186] }, { "keytime": 4707.665527, "rotation": [-0.028845, 0.119377, -0.049746, 0.991182] }, { "keytime": 4774.332520, "rotation": [-0.028841, 0.119402, -0.049738, 0.991180] }, { "keytime": 4840.999512, "rotation": [-0.028839, 0.119420, -0.049734, 0.991178] }, { "keytime": 4874.333008, "rotation": [-0.028839, 0.119427, -0.049731, 0.991177] }, { "keytime": 4941.000000, "rotation": [-0.028839, 0.119435, -0.049729, 0.991176] }, { "keytime": 5007.666992, "rotation": [-0.028840, 0.119438, -0.049728, 0.991176] }, { "keytime": 5041.000488, "rotation": [-0.028840, 0.119437, -0.049728, 0.991176] }, { "keytime": 5141.000977, "rotation": [-0.028840, 0.119431, -0.049736, 0.991176] }, { "keytime": 5207.667969, "rotation": [-0.028840, 0.119425, -0.049746, 0.991177] }, { "keytime": 5307.668457, "rotation": [-0.028844, 0.119410, -0.049768, 0.991177] }, { "keytime": 5374.335449, "rotation": [-0.028847, 0.119397, -0.049787, 0.991178] }, { "keytime": 5474.335938, "rotation": [-0.028851, 0.119373, -0.049822, 0.991179] }, { "keytime": 5541.002930, "rotation": [-0.028857, 0.119354, -0.049849, 0.991180] }, { "keytime": 5674.336914, "rotation": [-0.028866, 0.119312, -0.049911, 0.991181] }, { "keytime": 5974.338379, "rotation": [-0.028887, 0.119209, -0.050064, 0.991185] }, { "keytime": 6074.338867, "rotation": [-0.028894, 0.119177, -0.050112, 0.991187] }, { "keytime": 6141.005859, "rotation": [-0.028898, 0.119156, -0.050141, 0.991187] }, { "keytime": 6241.006348, "rotation": [-0.028903, 0.119130, -0.050180, 0.991189] }, { "keytime": 6341.006836, "rotation": [-0.028908, 0.119108, -0.050211, 0.991189] }, { "keytime": 6441.007324, "rotation": [-0.028912, 0.119093, -0.050234, 0.991190] }, { "keytime": 6507.674316, "rotation": [-0.028913, 0.119085, -0.050245, 0.991190] }, { "keytime": 6574.341309, "rotation": [-0.028914, 0.119080, -0.050252, 0.991190] }, { "keytime": 6607.674805, "rotation": [-0.028914, 0.119079, -0.050254, 0.991191] } ] }, { "boneId": "Bone_006", "keyframes": [ { "keytime": 41.000000, "rotation": [ 0.946508, -0.094656, -0.076917, -0.298741] }, { "keytime": 74.333328, "rotation": [ 0.946508, -0.094659, -0.076921, -0.298740] }, { "keytime": 107.666664, "rotation": [ 0.946507, -0.094663, -0.076931, -0.298740] }, { "keytime": 141.000000, "rotation": [ 0.946504, -0.094671, -0.076948, -0.298741] }, { "keytime": 174.333328, "rotation": [ 0.946501, -0.094681, -0.076971, -0.298741] }, { "keytime": 207.666656, "rotation": [ 0.946498, -0.094694, -0.077001, -0.298741] }, { "keytime": 240.999985, "rotation": [ 0.946493, -0.094712, -0.077039, -0.298741] }, { "keytime": 274.333313, "rotation": [ 0.946487, -0.094732, -0.077084, -0.298742] }, { "keytime": 307.666656, "rotation": [ 0.946480, -0.094755, -0.077135, -0.298743] }, { "keytime": 341.000000, "rotation": [ 0.946472, -0.094781, -0.077194, -0.298744] }, { "keytime": 374.333344, "rotation": [ 0.946464, -0.094809, -0.077257, -0.298746] }, { "keytime": 407.666687, "rotation": [ 0.946454, -0.094842, -0.077329, -0.298746] }, { "keytime": 441.000031, "rotation": [ 0.946444, -0.094878, -0.077409, -0.298747] }, { "keytime": 474.333374, "rotation": [ 0.946433, -0.094916, -0.077494, -0.298748] }, { "keytime": 507.666718, "rotation": [ 0.946421, -0.094957, -0.077584, -0.298750] }, { "keytime": 541.000061, "rotation": [ 0.946408, -0.095001, -0.077683, -0.298751] }, { "keytime": 574.333374, "rotation": [ 0.946394, -0.095048, -0.077787, -0.298753] }, { "keytime": 607.666687, "rotation": [ 0.946380, -0.095097, -0.077897, -0.298755] }, { "keytime": 674.333313, "rotation": [ 0.946348, -0.095205, -0.078136, -0.298758] }, { "keytime": 707.666626, "rotation": [ 0.946331, -0.095261, -0.078262, -0.298760] }, { "keytime": 740.999939, "rotation": [ 0.946314, -0.095321, -0.078394, -0.298762] }, { "keytime": 807.666565, "rotation": [ 0.946276, -0.095447, -0.078676, -0.298766] }, { "keytime": 840.999878, "rotation": [ 0.946257, -0.095513, -0.078821, -0.298768] }, { "keytime": 907.666504, "rotation": [ 0.946216, -0.095651, -0.079128, -0.298772] }, { "keytime": 940.999817, "rotation": [ 0.946195, -0.095722, -0.079285, -0.298774] }, { "keytime": 974.333130, "rotation": [ 0.946173, -0.095795, -0.079449, -0.298777] }, { "keytime": 1040.999756, "rotation": [ 0.946129, -0.095942, -0.079775, -0.298782] }, { "keytime": 1074.333130, "rotation": [ 0.946106, -0.096019, -0.079945, -0.298785] }, { "keytime": 1140.999878, "rotation": [ 0.946061, -0.096169, -0.080280, -0.298790] }, { "keytime": 1174.333252, "rotation": [ 0.946037, -0.096246, -0.080453, -0.298793] }, { "keytime": 1207.666626, "rotation": [ 0.946015, -0.096322, -0.080621, -0.298796] }, { "keytime": 1241.000000, "rotation": [ 0.945991, -0.096399, -0.080794, -0.298799] }, { "keytime": 1307.666748, "rotation": [ 0.945946, -0.096548, -0.081125, -0.298804] }, { "keytime": 1341.000122, "rotation": [ 0.945923, -0.096624, -0.081293, -0.298806] }, { "keytime": 1374.333496, "rotation": [ 0.945901, -0.096696, -0.081455, -0.298809] }, { "keytime": 1441.000244, "rotation": [ 0.945857, -0.096839, -0.081772, -0.298813] }, { "keytime": 1474.333618, "rotation": [ 0.945837, -0.096907, -0.081923, -0.298815] }, { "keytime": 1541.000366, "rotation": [ 0.945796, -0.097040, -0.082219, -0.298819] }, { "keytime": 1574.333740, "rotation": [ 0.945777, -0.097102, -0.082358, -0.298820] }, { "keytime": 1641.000488, "rotation": [ 0.945741, -0.097222, -0.082624, -0.298822] }, { "keytime": 1674.333862, "rotation": [ 0.945724, -0.097277, -0.082749, -0.298823] }, { "keytime": 1707.667236, "rotation": [ 0.945708, -0.097331, -0.082867, -0.298825] }, { "keytime": 1741.000610, "rotation": [ 0.945692, -0.097382, -0.082982, -0.298827] }, { "keytime": 1774.333984, "rotation": [ 0.945677, -0.097430, -0.083088, -0.298829] }, { "keytime": 1807.667358, "rotation": [ 0.945663, -0.097475, -0.083188, -0.298830] }, { "keytime": 1841.000732, "rotation": [ 0.945650, -0.097519, -0.083286, -0.298831] }, { "keytime": 1874.334106, "rotation": [ 0.945638, -0.097559, -0.083374, -0.298832] }, { "keytime": 1907.667480, "rotation": [ 0.945627, -0.097594, -0.083454, -0.298832] }, { "keytime": 1941.000854, "rotation": [ 0.945616, -0.097629, -0.083531, -0.298833] }, { "keytime": 1974.334229, "rotation": [ 0.945607, -0.097659, -0.083598, -0.298835] }, { "keytime": 2007.667603, "rotation": [ 0.945598, -0.097687, -0.083660, -0.298836] }, { "keytime": 2041.000977, "rotation": [ 0.945590, -0.097713, -0.083716, -0.298836] }, { "keytime": 2074.334473, "rotation": [ 0.945584, -0.097733, -0.083763, -0.298837] }, { "keytime": 2107.667725, "rotation": [ 0.945578, -0.097751, -0.083803, -0.298837] }, { "keytime": 2141.000977, "rotation": [ 0.945574, -0.097767, -0.083838, -0.298837] }, { "keytime": 2174.334229, "rotation": [ 0.945570, -0.097779, -0.083865, -0.298838] }, { "keytime": 2207.667480, "rotation": [ 0.945567, -0.097789, -0.083886, -0.298838] }, { "keytime": 2241.000732, "rotation": [ 0.945565, -0.097794, -0.083899, -0.298838] }, { "keytime": 2274.333984, "rotation": [ 0.945564, -0.097797, -0.083906, -0.298838] }, { "keytime": 2307.667236, "rotation": [ 0.945564, -0.097797, -0.083906, -0.298838] }, { "keytime": 2341.000488, "rotation": [ 0.945565, -0.097793, -0.083899, -0.298839] }, { "keytime": 2374.333740, "rotation": [ 0.945567, -0.097785, -0.083886, -0.298839] }, { "keytime": 2407.666992, "rotation": [ 0.945570, -0.097771, -0.083864, -0.298840] }, { "keytime": 2441.000244, "rotation": [ 0.945574, -0.097752, -0.083835, -0.298841] }, { "keytime": 2474.333496, "rotation": [ 0.945579, -0.097730, -0.083801, -0.298842] }, { "keytime": 2507.666748, "rotation": [ 0.945585, -0.097703, -0.083759, -0.298844] }, { "keytime": 2541.000000, "rotation": [ 0.945592, -0.097671, -0.083710, -0.298846] }, { "keytime": 2574.333252, "rotation": [ 0.945600, -0.097634, -0.083653, -0.298849] }, { "keytime": 2607.666504, "rotation": [ 0.945609, -0.097594, -0.083590, -0.298851] }, { "keytime": 2640.999756, "rotation": [ 0.945619, -0.097549, -0.083520, -0.298854] }, { "keytime": 2674.333008, "rotation": [ 0.945630, -0.097498, -0.083441, -0.298857] }, { "keytime": 2707.666260, "rotation": [ 0.945642, -0.097444, -0.083358, -0.298860] }, { "keytime": 2740.999512, "rotation": [ 0.945655, -0.097385, -0.083266, -0.298864] }, { "keytime": 2774.332764, "rotation": [ 0.945669, -0.097320, -0.083165, -0.298868] }, { "keytime": 2807.666016, "rotation": [ 0.945684, -0.097253, -0.083061, -0.298872] }, { "keytime": 2840.999268, "rotation": [ 0.945700, -0.097181, -0.082950, -0.298876] }, { "keytime": 2874.332520, "rotation": [ 0.945717, -0.097103, -0.082829, -0.298881] }, { "keytime": 2907.665771, "rotation": [ 0.945734, -0.097023, -0.082704, -0.298886] }, { "keytime": 2940.999023, "rotation": [ 0.945753, -0.096938, -0.082573, -0.298891] }, { "keytime": 3007.665527, "rotation": [ 0.945793, -0.096755, -0.082290, -0.298903] }, { "keytime": 3040.998779, "rotation": [ 0.945814, -0.096660, -0.082141, -0.298908] }, { "keytime": 3107.665283, "rotation": [ 0.945859, -0.096453, -0.081821, -0.298921] }, { "keytime": 3140.998535, "rotation": [ 0.945882, -0.096346, -0.081655, -0.298927] }, { "keytime": 3207.665039, "rotation": [ 0.945930, -0.096120, -0.081305, -0.298942] }, { "keytime": 3240.998291, "rotation": [ 0.945956, -0.096004, -0.081124, -0.298948] }, { "keytime": 3307.664795, "rotation": [ 0.946008, -0.095760, -0.080746, -0.298963] }, { "keytime": 3340.998047, "rotation": [ 0.946035, -0.095636, -0.080555, -0.298971] }, { "keytime": 3374.331299, "rotation": [ 0.946062, -0.095506, -0.080354, -0.298978] }, { "keytime": 3407.664551, "rotation": [ 0.946090, -0.095378, -0.080155, -0.298986] }, { "keytime": 3440.997803, "rotation": [ 0.946117, -0.095248, -0.079954, -0.298994] }, { "keytime": 3474.331055, "rotation": [ 0.946146, -0.095113, -0.079744, -0.299002] }, { "keytime": 3540.997559, "rotation": [ 0.946202, -0.094847, -0.079332, -0.299017] }, { "keytime": 3574.330811, "rotation": [ 0.946232, -0.094709, -0.079118, -0.299025] }, { "keytime": 3640.997314, "rotation": [ 0.946289, -0.094440, -0.078700, -0.299040] }, { "keytime": 3674.330566, "rotation": [ 0.946318, -0.094301, -0.078484, -0.299048] }, { "keytime": 3740.997070, "rotation": [ 0.946375, -0.094031, -0.078066, -0.299063] }, { "keytime": 3774.330322, "rotation": [ 0.946404, -0.093893, -0.077852, -0.299071] }, { "keytime": 3840.996826, "rotation": [ 0.946458, -0.093629, -0.077442, -0.299087] }, { "keytime": 3874.330078, "rotation": [ 0.946486, -0.093494, -0.077234, -0.299095] }, { "keytime": 3907.663330, "rotation": [ 0.946512, -0.093366, -0.077035, -0.299104] }, { "keytime": 3940.996582, "rotation": [ 0.946538, -0.093240, -0.076838, -0.299111] }, { "keytime": 3974.329834, "rotation": [ 0.946565, -0.093111, -0.076640, -0.299118] }, { "keytime": 4007.663086, "rotation": [ 0.946590, -0.092989, -0.076450, -0.299125] }, { "keytime": 4074.329590, "rotation": [ 0.946639, -0.092748, -0.076078, -0.299139] }, { "keytime": 4107.663086, "rotation": [ 0.946663, -0.092634, -0.075901, -0.299145] }, { "keytime": 4174.329590, "rotation": [ 0.946708, -0.092412, -0.075556, -0.299158] }, { "keytime": 4207.663086, "rotation": [ 0.946729, -0.092307, -0.075394, -0.299164] }, { "keytime": 4274.330078, "rotation": [ 0.946770, -0.092107, -0.075083, -0.299175] }, { "keytime": 4307.663574, "rotation": [ 0.946789, -0.092013, -0.074938, -0.299181] }, { "keytime": 4340.997070, "rotation": [ 0.946807, -0.091923, -0.074799, -0.299186] }, { "keytime": 4374.330566, "rotation": [ 0.946825, -0.091835, -0.074662, -0.299190] }, { "keytime": 4407.664062, "rotation": [ 0.946841, -0.091754, -0.074536, -0.299195] }, { "keytime": 4440.997559, "rotation": [ 0.946856, -0.091677, -0.074417, -0.299199] }, { "keytime": 4474.331055, "rotation": [ 0.946872, -0.091601, -0.074300, -0.299204] }, { "keytime": 4507.664551, "rotation": [ 0.946885, -0.091532, -0.074193, -0.299208] }, { "keytime": 4540.998047, "rotation": [ 0.946899, -0.091467, -0.074093, -0.299211] }, { "keytime": 4574.331543, "rotation": [ 0.946911, -0.091406, -0.073998, -0.299215] }, { "keytime": 4607.665039, "rotation": [ 0.946922, -0.091351, -0.073912, -0.299218] }, { "keytime": 4640.998535, "rotation": [ 0.946932, -0.091300, -0.073833, -0.299220] }, { "keytime": 4674.332031, "rotation": [ 0.946942, -0.091252, -0.073759, -0.299223] }, { "keytime": 4707.665527, "rotation": [ 0.946950, -0.091209, -0.073693, -0.299225] }, { "keytime": 4740.999023, "rotation": [ 0.946957, -0.091173, -0.073636, -0.299228] }, { "keytime": 4774.332520, "rotation": [ 0.946964, -0.091139, -0.073584, -0.299229] }, { "keytime": 4807.666016, "rotation": [ 0.946970, -0.091111, -0.073540, -0.299231] }, { "keytime": 4840.999512, "rotation": [ 0.946974, -0.091087, -0.073502, -0.299232] }, { "keytime": 4874.333008, "rotation": [ 0.946979, -0.091066, -0.073471, -0.299233] }, { "keytime": 4907.666504, "rotation": [ 0.946981, -0.091052, -0.073449, -0.299234] }, { "keytime": 4941.000000, "rotation": [ 0.946983, -0.091042, -0.073434, -0.299235] }, { "keytime": 4974.333496, "rotation": [ 0.946984, -0.091036, -0.073425, -0.299235] }, { "keytime": 5007.666992, "rotation": [ 0.946985, -0.091035, -0.073422, -0.299235] }, { "keytime": 5041.000488, "rotation": [ 0.946984, -0.091039, -0.073426, -0.299235] }, { "keytime": 5074.333984, "rotation": [ 0.946983, -0.091051, -0.073438, -0.299233] }, { "keytime": 5107.667480, "rotation": [ 0.946980, -0.091069, -0.073455, -0.299231] }, { "keytime": 5141.000977, "rotation": [ 0.946977, -0.091093, -0.073479, -0.299227] }, { "keytime": 5174.334473, "rotation": [ 0.946973, -0.091123, -0.073507, -0.299223] }, { "keytime": 5207.667969, "rotation": [ 0.946969, -0.091159, -0.073542, -0.299218] }, { "keytime": 5241.001465, "rotation": [ 0.946963, -0.091204, -0.073586, -0.299212] }, { "keytime": 5274.334961, "rotation": [ 0.946957, -0.091254, -0.073634, -0.299206] }, { "keytime": 5307.668457, "rotation": [ 0.946949, -0.091310, -0.073688, -0.299198] }, { "keytime": 5341.001953, "rotation": [ 0.946941, -0.091373, -0.073749, -0.299189] }, { "keytime": 5374.335449, "rotation": [ 0.946933, -0.091441, -0.073813, -0.299180] }, { "keytime": 5407.668945, "rotation": [ 0.946923, -0.091515, -0.073885, -0.299170] }, { "keytime": 5441.002441, "rotation": [ 0.946912, -0.091597, -0.073964, -0.299159] }, { "keytime": 5474.335938, "rotation": [ 0.946901, -0.091682, -0.074046, -0.299148] }, { "keytime": 5507.669434, "rotation": [ 0.946890, -0.091771, -0.074133, -0.299135] }, { "keytime": 5541.002930, "rotation": [ 0.946877, -0.091868, -0.074226, -0.299122] }, { "keytime": 5574.336426, "rotation": [ 0.946865, -0.091968, -0.074322, -0.299108] }, { "keytime": 5607.669922, "rotation": [ 0.946851, -0.092071, -0.074422, -0.299094] }, { "keytime": 5674.336914, "rotation": [ 0.946822, -0.092291, -0.074634, -0.299064] }, { "keytime": 5707.670410, "rotation": [ 0.946808, -0.092403, -0.074742, -0.299049] }, { "keytime": 5807.670898, "rotation": [ 0.946762, -0.092755, -0.075081, -0.299001] }, { "keytime": 5841.004395, "rotation": [ 0.946746, -0.092875, -0.075198, -0.298985] }, { "keytime": 5907.671387, "rotation": [ 0.946715, -0.093109, -0.075424, -0.298954] }, { "keytime": 5941.004883, "rotation": [ 0.946699, -0.093228, -0.075538, -0.298938] }, { "keytime": 5974.338379, "rotation": [ 0.946684, -0.093342, -0.075648, -0.298922] }, { "keytime": 6041.005371, "rotation": [ 0.946654, -0.093565, -0.075863, -0.298891] }, { "keytime": 6074.338867, "rotation": [ 0.946641, -0.093669, -0.075964, -0.298876] }, { "keytime": 6141.005859, "rotation": [ 0.946614, -0.093870, -0.076158, -0.298849] }, { "keytime": 6174.339355, "rotation": [ 0.946602, -0.093963, -0.076248, -0.298836] }, { "keytime": 6207.672852, "rotation": [ 0.946590, -0.094051, -0.076332, -0.298824] }, { "keytime": 6241.006348, "rotation": [ 0.946579, -0.094135, -0.076414, -0.298812] }, { "keytime": 6274.339844, "rotation": [ 0.946568, -0.094211, -0.076487, -0.298802] }, { "keytime": 6307.673340, "rotation": [ 0.946559, -0.094282, -0.076556, -0.298792] }, { "keytime": 6341.006836, "rotation": [ 0.946550, -0.094349, -0.076621, -0.298783] }, { "keytime": 6374.340332, "rotation": [ 0.946542, -0.094409, -0.076678, -0.298775] }, { "keytime": 6407.673828, "rotation": [ 0.946535, -0.094461, -0.076728, -0.298767] }, { "keytime": 6441.007324, "rotation": [ 0.946528, -0.094508, -0.076774, -0.298761] }, { "keytime": 6474.340820, "rotation": [ 0.946523, -0.094548, -0.076813, -0.298755] }, { "keytime": 6507.674316, "rotation": [ 0.946518, -0.094582, -0.076845, -0.298751] }, { "keytime": 6541.007812, "rotation": [ 0.946514, -0.094611, -0.076873, -0.298747] }, { "keytime": 6574.341309, "rotation": [ 0.946512, -0.094631, -0.076892, -0.298744] }, { "keytime": 6607.674805, "rotation": [ 0.946510, -0.094645, -0.076906, -0.298742] } ] }, { "boneId": "Bone_012", "keyframes": [ { "keytime": 41.000000, "rotation": [ 0.890821, 0.018866, 0.049021, -0.451308] }, { "keytime": 74.333328, "rotation": [ 0.890820, 0.018855, 0.049020, -0.451310] }, { "keytime": 107.666664, "rotation": [ 0.890819, 0.018826, 0.049017, -0.451315] }, { "keytime": 141.000000, "rotation": [ 0.890816, 0.018779, 0.049012, -0.451322] }, { "keytime": 174.333328, "rotation": [ 0.890813, 0.018715, 0.049005, -0.451331] }, { "keytime": 207.666656, "rotation": [ 0.890809, 0.018634, 0.048995, -0.451344] }, { "keytime": 240.999985, "rotation": [ 0.890804, 0.018529, 0.048984, -0.451360] }, { "keytime": 274.333313, "rotation": [ 0.890798, 0.018403, 0.048970, -0.451379] }, { "keytime": 307.666656, "rotation": [ 0.890791, 0.018263, 0.048954, -0.451400] }, { "keytime": 341.000000, "rotation": [ 0.890782, 0.018101, 0.048936, -0.451425] }, { "keytime": 374.333344, "rotation": [ 0.890773, 0.017925, 0.048917, -0.451451] }, { "keytime": 407.666687, "rotation": [ 0.890763, 0.017727, 0.048895, -0.451481] }, { "keytime": 441.000031, "rotation": [ 0.890752, 0.017505, 0.048870, -0.451515] }, { "keytime": 474.333374, "rotation": [ 0.890740, 0.017272, 0.048844, -0.451550] }, { "keytime": 507.666718, "rotation": [ 0.890727, 0.017023, 0.048817, -0.451588] }, { "keytime": 541.000061, "rotation": [ 0.890713, 0.016749, 0.048786, -0.451630] }, { "keytime": 574.333374, "rotation": [ 0.890698, 0.016462, 0.048754, -0.451673] }, { "keytime": 607.666687, "rotation": [ 0.890683, 0.016159, 0.048720, -0.451719] }, { "keytime": 641.000000, "rotation": [ 0.890665, 0.015831, 0.048684, -0.451768] }, { "keytime": 674.333313, "rotation": [ 0.890648, 0.015498, 0.048647, -0.451818] }, { "keytime": 707.666626, "rotation": [ 0.890629, 0.015150, 0.048608, -0.451871] }, { "keytime": 740.999939, "rotation": [ 0.890610, 0.014785, 0.048568, -0.451926] }, { "keytime": 807.666565, "rotation": [ 0.890568, 0.014006, 0.048481, -0.452042] }, { "keytime": 840.999878, "rotation": [ 0.890546, 0.013605, 0.048436, -0.452102] }, { "keytime": 907.666504, "rotation": [ 0.890499, 0.012756, 0.048342, -0.452229] }, { "keytime": 940.999817, "rotation": [ 0.890475, 0.012323, 0.048294, -0.452294] }, { "keytime": 974.333130, "rotation": [ 0.890450, 0.011869, 0.048243, -0.452362] }, { "keytime": 1007.666443, "rotation": [ 0.890424, 0.011422, 0.048193, -0.452429] }, { "keytime": 1040.999756, "rotation": [ 0.890399, 0.010969, 0.048143, -0.452496] }, { "keytime": 1074.333130, "rotation": [ 0.890371, 0.010496, 0.048090, -0.452566] }, { "keytime": 1140.999878, "rotation": [ 0.890318, 0.009571, 0.047986, -0.452702] }, { "keytime": 1174.333252, "rotation": [ 0.890290, 0.009092, 0.047934, -0.452773] }, { "keytime": 1207.666626, "rotation": [ 0.890263, 0.008628, 0.047882, -0.452841] }, { "keytime": 1241.000000, "rotation": [ 0.890234, 0.008151, 0.047829, -0.452912] }, { "keytime": 1274.333374, "rotation": [ 0.890207, 0.007691, 0.047777, -0.452979] }, { "keytime": 1307.666748, "rotation": [ 0.890179, 0.007235, 0.047726, -0.453046] }, { "keytime": 1341.000122, "rotation": [ 0.890151, 0.006770, 0.047674, -0.453115] }, { "keytime": 1374.333496, "rotation": [ 0.890124, 0.006325, 0.047625, -0.453180] }, { "keytime": 1407.666870, "rotation": [ 0.890097, 0.005889, 0.047576, -0.453244] }, { "keytime": 1441.000244, "rotation": [ 0.890069, 0.005448, 0.047527, -0.453308] }, { "keytime": 1474.333618, "rotation": [ 0.890043, 0.005029, 0.047480, -0.453369] }, { "keytime": 1541.000366, "rotation": [ 0.889992, 0.004210, 0.047389, -0.453488] }, { "keytime": 1574.333740, "rotation": [ 0.889967, 0.003828, 0.047346, -0.453544] }, { "keytime": 1607.667114, "rotation": [ 0.889944, 0.003458, 0.047304, -0.453597] }, { "keytime": 1641.000488, "rotation": [ 0.889920, 0.003090, 0.047263, -0.453650] }, { "keytime": 1674.333862, "rotation": [ 0.889898, 0.002748, 0.047225, -0.453700] }, { "keytime": 1707.667236, "rotation": [ 0.889877, 0.002419, 0.047188, -0.453748] }, { "keytime": 1741.000610, "rotation": [ 0.889856, 0.002101, 0.047153, -0.453793] }, { "keytime": 1774.333984, "rotation": [ 0.889837, 0.001808, 0.047120, -0.453836] }, { "keytime": 1807.667358, "rotation": [ 0.889819, 0.001531, 0.047089, -0.453876] }, { "keytime": 1841.000732, "rotation": [ 0.889801, 0.001262, 0.047059, -0.453914] }, { "keytime": 1874.334106, "rotation": [ 0.889785, 0.001018, 0.047032, -0.453949] }, { "keytime": 1907.667480, "rotation": [ 0.889770, 0.000796, 0.047007, -0.453981] }, { "keytime": 1941.000854, "rotation": [ 0.889756, 0.000586, 0.046983, -0.454011] }, { "keytime": 1974.334229, "rotation": [ 0.889744, 0.000398, 0.046962, -0.454038] }, { "keytime": 2007.667603, "rotation": [ 0.889732, 0.000228, 0.046943, -0.454063] }, { "keytime": 2041.000977, "rotation": [ 0.889722, 0.000072, 0.046926, -0.454085] }, { "keytime": 2074.334473, "rotation": [ 0.889713, -0.000057, 0.046911, -0.454104] }, { "keytime": 2107.667725, "rotation": [ 0.889706, -0.000168, 0.046899, -0.454120] }, { "keytime": 2141.000977, "rotation": [ 0.889699, -0.000264, 0.046888, -0.454133] }, { "keytime": 2174.334229, "rotation": [ 0.889694, -0.000340, 0.046879, -0.454144] }, { "keytime": 2207.667480, "rotation": [ 0.889690, -0.000398, 0.046873, -0.454152] }, { "keytime": 2241.000732, "rotation": [ 0.889688, -0.000434, 0.046869, -0.454158] }, { "keytime": 2274.333984, "rotation": [ 0.889686, -0.000452, 0.046867, -0.454160] }, { "keytime": 2307.667236, "rotation": [ 0.889686, -0.000452, 0.046867, -0.454160] }, { "keytime": 2341.000488, "rotation": [ 0.889687, -0.000435, 0.046871, -0.454158] }, { "keytime": 2374.333740, "rotation": [ 0.889689, -0.000400, 0.046878, -0.454153] }, { "keytime": 2407.666992, "rotation": [ 0.889693, -0.000343, 0.046890, -0.454145] }, { "keytime": 2441.000244, "rotation": [ 0.889697, -0.000267, 0.046906, -0.454135] }, { "keytime": 2474.333496, "rotation": [ 0.889703, -0.000175, 0.046925, -0.454122] }, { "keytime": 2507.666748, "rotation": [ 0.889709, -0.000066, 0.046948, -0.454107] }, { "keytime": 2541.000000, "rotation": [ 0.889717, 0.000065, 0.046975, -0.454089] }, { "keytime": 2574.333252, "rotation": [ 0.889726, 0.000216, 0.047006, -0.454068] }, { "keytime": 2607.666504, "rotation": [ 0.889736, 0.000383, 0.047041, -0.454045] }, { "keytime": 2640.999756, "rotation": [ 0.889747, 0.000568, 0.047080, -0.454019] }, { "keytime": 2674.333008, "rotation": [ 0.889759, 0.000776, 0.047123, -0.453990] }, { "keytime": 2707.666260, "rotation": [ 0.889772, 0.000996, 0.047169, -0.453959] }, { "keytime": 2740.999512, "rotation": [ 0.889787, 0.001238, 0.047219, -0.453926] }, { "keytime": 2774.332764, "rotation": [ 0.889802, 0.001505, 0.047275, -0.453889] }, { "keytime": 2807.666016, "rotation": [ 0.889818, 0.001781, 0.047332, -0.453850] }, { "keytime": 2840.999268, "rotation": [ 0.889835, 0.002074, 0.047393, -0.453809] }, { "keytime": 2874.332520, "rotation": [ 0.889854, 0.002393, 0.047460, -0.453765] }, { "keytime": 2907.665771, "rotation": [ 0.889873, 0.002723, 0.047528, -0.453719] }, { "keytime": 2940.999023, "rotation": [ 0.889892, 0.003070, 0.047600, -0.453670] }, { "keytime": 2974.332275, "rotation": [ 0.889913, 0.003443, 0.047678, -0.453618] }, { "keytime": 3007.665527, "rotation": [ 0.889935, 0.003819, 0.047756, -0.453565] }, { "keytime": 3040.998779, "rotation": [ 0.889956, 0.004212, 0.047838, -0.453510] }, { "keytime": 3107.665283, "rotation": [ 0.890003, 0.005059, 0.048014, -0.453391] }, { "keytime": 3140.998535, "rotation": [ 0.890027, 0.005496, 0.048105, -0.453329] }, { "keytime": 3207.665039, "rotation": [ 0.890077, 0.006422, 0.048298, -0.453198] }, { "keytime": 3240.998291, "rotation": [ 0.890103, 0.006899, 0.048397, -0.453130] }, { "keytime": 3274.331543, "rotation": [ 0.890129, 0.007402, 0.048501, -0.453059] }, { "keytime": 3307.664795, "rotation": [ 0.890155, 0.007899, 0.048605, -0.452988] }, { "keytime": 3340.998047, "rotation": [ 0.890182, 0.008406, 0.048710, -0.452916] }, { "keytime": 3374.331299, "rotation": [ 0.890209, 0.008937, 0.048820, -0.452840] }, { "keytime": 3407.664551, "rotation": [ 0.890236, 0.009462, 0.048929, -0.452765] }, { "keytime": 3440.997803, "rotation": [ 0.890263, 0.009994, 0.049040, -0.452689] }, { "keytime": 3474.331055, "rotation": [ 0.890290, 0.010547, 0.049155, -0.452610] }, { "keytime": 3507.664307, "rotation": [ 0.890317, 0.011090, 0.049267, -0.452532] }, { "keytime": 3540.997559, "rotation": [ 0.890344, 0.011636, 0.049381, -0.452452] }, { "keytime": 3574.330811, "rotation": [ 0.890372, 0.012203, 0.049499, -0.452371] }, { "keytime": 3640.997314, "rotation": [ 0.890424, 0.013309, 0.049728, -0.452211] }, { "keytime": 3674.330566, "rotation": [ 0.890451, 0.013879, 0.049846, -0.452128] }, { "keytime": 3707.663818, "rotation": [ 0.890476, 0.014432, 0.049961, -0.452048] }, { "keytime": 3740.997070, "rotation": [ 0.890501, 0.014983, 0.050075, -0.451968] }, { "keytime": 3774.330322, "rotation": [ 0.890527, 0.015547, 0.050192, -0.451886] }, { "keytime": 3807.663574, "rotation": [ 0.890551, 0.016091, 0.050305, -0.451806] }, { "keytime": 3840.996826, "rotation": [ 0.890575, 0.016630, 0.050417, -0.451727] }, { "keytime": 3874.330078, "rotation": [ 0.890599, 0.017181, 0.050531, -0.451647] }, { "keytime": 3907.663330, "rotation": [ 0.890622, 0.017706, 0.050640, -0.451569] }, { "keytime": 3940.996582, "rotation": [ 0.890644, 0.018224, 0.050748, -0.451493] }, { "keytime": 3974.329834, "rotation": [ 0.890666, 0.018749, 0.050856, -0.451415] }, { "keytime": 4007.663086, "rotation": [ 0.890687, 0.019250, 0.050960, -0.451341] }, { "keytime": 4074.329590, "rotation": [ 0.890727, 0.020234, 0.051164, -0.451196] }, { "keytime": 4107.663086, "rotation": [ 0.890746, 0.020700, 0.051261, -0.451127] }, { "keytime": 4174.329590, "rotation": [ 0.890782, 0.021611, 0.051449, -0.450991] }, { "keytime": 4207.663086, "rotation": [ 0.890799, 0.022040, 0.051538, -0.450927] }, { "keytime": 4240.996582, "rotation": [ 0.890815, 0.022451, 0.051623, -0.450866] }, { "keytime": 4274.330078, "rotation": [ 0.890830, 0.022860, 0.051708, -0.450805] }, { "keytime": 4307.663574, "rotation": [ 0.890845, 0.023243, 0.051787, -0.450747] }, { "keytime": 4340.997070, "rotation": [ 0.890859, 0.023610, 0.051863, -0.450692] }, { "keytime": 4374.330566, "rotation": [ 0.890872, 0.023973, 0.051938, -0.450638] }, { "keytime": 4407.664062, "rotation": [ 0.890884, 0.024304, 0.052007, -0.450588] }, { "keytime": 4440.997559, "rotation": [ 0.890896, 0.024619, 0.052072, -0.450541] }, { "keytime": 4474.331055, "rotation": [ 0.890907, 0.024928, 0.052136, -0.450494] }, { "keytime": 4507.664551, "rotation": [ 0.890917, 0.025210, 0.052194, -0.450452] }, { "keytime": 4540.998047, "rotation": [ 0.890927, 0.025475, 0.052249, -0.450412] }, { "keytime": 4574.331543, "rotation": [ 0.890935, 0.025726, 0.052301, -0.450374] }, { "keytime": 4607.665039, "rotation": [ 0.890943, 0.025952, 0.052348, -0.450340] }, { "keytime": 4640.998535, "rotation": [ 0.890951, 0.026160, 0.052391, -0.450308] }, { "keytime": 4674.332031, "rotation": [ 0.890958, 0.026358, 0.052432, -0.450278] }, { "keytime": 4707.665527, "rotation": [ 0.890964, 0.026531, 0.052468, -0.450252] }, { "keytime": 4740.999023, "rotation": [ 0.890969, 0.026682, 0.052499, -0.450229] }, { "keytime": 4774.332520, "rotation": [ 0.890974, 0.026819, 0.052527, -0.450209] }, { "keytime": 4807.666016, "rotation": [ 0.890978, 0.026935, 0.052551, -0.450191] }, { "keytime": 4840.999512, "rotation": [ 0.890981, 0.027033, 0.052572, -0.450176] }, { "keytime": 4874.333008, "rotation": [ 0.890984, 0.027116, 0.052589, -0.450164] }, { "keytime": 4907.666504, "rotation": [ 0.890986, 0.027174, 0.052601, -0.450155] }, { "keytime": 4941.000000, "rotation": [ 0.890987, 0.027215, 0.052609, -0.450149] }, { "keytime": 4974.333496, "rotation": [ 0.890988, 0.027238, 0.052614, -0.450145] }, { "keytime": 5007.666992, "rotation": [ 0.890988, 0.027245, 0.052615, -0.450144] }, { "keytime": 5041.000488, "rotation": [ 0.890988, 0.027235, 0.052611, -0.450145] }, { "keytime": 5074.333984, "rotation": [ 0.890987, 0.027208, 0.052599, -0.450149] }, { "keytime": 5107.667480, "rotation": [ 0.890987, 0.027167, 0.052582, -0.450155] }, { "keytime": 5141.000977, "rotation": [ 0.890986, 0.027110, 0.052557, -0.450163] }, { "keytime": 5174.334473, "rotation": [ 0.890985, 0.027041, 0.052528, -0.450173] }, { "keytime": 5207.667969, "rotation": [ 0.890984, 0.026958, 0.052492, -0.450185] }, { "keytime": 5241.001465, "rotation": [ 0.890982, 0.026853, 0.052447, -0.450199] }, { "keytime": 5274.334961, "rotation": [ 0.890980, 0.026738, 0.052398, -0.450216] }, { "keytime": 5307.668457, "rotation": [ 0.890978, 0.026609, 0.052342, -0.450234] }, { "keytime": 5341.001953, "rotation": [ 0.890976, 0.026463, 0.052280, -0.450254] }, { "keytime": 5374.335449, "rotation": [ 0.890973, 0.026307, 0.052213, -0.450276] }, { "keytime": 5407.668945, "rotation": [ 0.890970, 0.026135, 0.052139, -0.450301] }, { "keytime": 5441.002441, "rotation": [ 0.890967, 0.025945, 0.052058, -0.450327] }, { "keytime": 5474.335938, "rotation": [ 0.890964, 0.025749, 0.051974, -0.450355] }, { "keytime": 5507.669434, "rotation": [ 0.890960, 0.025542, 0.051885, -0.450384] }, { "keytime": 5541.002930, "rotation": [ 0.890956, 0.025318, 0.051789, -0.450415] }, { "keytime": 5574.336426, "rotation": [ 0.890952, 0.025087, 0.051690, -0.450448] }, { "keytime": 5607.669922, "rotation": [ 0.890948, 0.024849, 0.051588, -0.450481] }, { "keytime": 5674.336914, "rotation": [ 0.890938, 0.024341, 0.051370, -0.450553] }, { "keytime": 5707.670410, "rotation": [ 0.890934, 0.024081, 0.051258, -0.450588] }, { "keytime": 5741.003906, "rotation": [ 0.890928, 0.023808, 0.051141, -0.450627] }, { "keytime": 5774.337402, "rotation": [ 0.890923, 0.023539, 0.051026, -0.450664] }, { "keytime": 5807.670898, "rotation": [ 0.890918, 0.023268, 0.050910, -0.450702] }, { "keytime": 5841.004395, "rotation": [ 0.890912, 0.022988, 0.050790, -0.450740] }, { "keytime": 5874.337891, "rotation": [ 0.890907, 0.022716, 0.050673, -0.450778] }, { "keytime": 5907.671387, "rotation": [ 0.890902, 0.022447, 0.050557, -0.450816] }, { "keytime": 5941.004883, "rotation": [ 0.890896, 0.022172, 0.050439, -0.450853] }, { "keytime": 5974.338379, "rotation": [ 0.890890, 0.021909, 0.050327, -0.450890] }, { "keytime": 6041.005371, "rotation": [ 0.890879, 0.021392, 0.050105, -0.450961] }, { "keytime": 6074.338867, "rotation": [ 0.890874, 0.021150, 0.050001, -0.450995] }, { "keytime": 6107.672363, "rotation": [ 0.890869, 0.020917, 0.049901, -0.451027] }, { "keytime": 6141.005859, "rotation": [ 0.890864, 0.020686, 0.049802, -0.451059] }, { "keytime": 6174.339355, "rotation": [ 0.890859, 0.020471, 0.049710, -0.451088] }, { "keytime": 6207.672852, "rotation": [ 0.890854, 0.020268, 0.049623, -0.451116] }, { "keytime": 6241.006348, "rotation": [ 0.890850, 0.020073, 0.049539, -0.451143] }, { "keytime": 6274.339844, "rotation": [ 0.890845, 0.019897, 0.049463, -0.451167] }, { "keytime": 6307.673340, "rotation": [ 0.890842, 0.019732, 0.049393, -0.451190] }, { "keytime": 6341.006836, "rotation": [ 0.890838, 0.019577, 0.049326, -0.451211] }, { "keytime": 6374.340332, "rotation": [ 0.890835, 0.019439, 0.049267, -0.451230] }, { "keytime": 6407.673828, "rotation": [ 0.890832, 0.019318, 0.049215, -0.451247] }, { "keytime": 6441.007324, "rotation": [ 0.890829, 0.019209, 0.049168, -0.451262] }, { "keytime": 6474.340820, "rotation": [ 0.890827, 0.019116, 0.049128, -0.451274] }, { "keytime": 6507.674316, "rotation": [ 0.890825, 0.019037, 0.049095, -0.451285] }, { "keytime": 6541.007812, "rotation": [ 0.890823, 0.018971, 0.049066, -0.451294] }, { "keytime": 6574.341309, "rotation": [ 0.890822, 0.018925, 0.049046, -0.451301] }, { "keytime": 6607.674805, "rotation": [ 0.890821, 0.018892, 0.049032, -0.451305] } ] }, { "boneId": "Bone_005", "keyframes": [ { "keytime": 41.000000, "rotation": [ 0.037465, 0.144803, -0.157657, 0.976101] }, { "keytime": 74.333328, "rotation": [ 0.037467, 0.144810, -0.157657, 0.976100] }, { "keytime": 107.666664, "rotation": [ 0.037471, 0.144826, -0.157659, 0.976097] }, { "keytime": 141.000000, "rotation": [ 0.037477, 0.144854, -0.157662, 0.976092] }, { "keytime": 174.333328, "rotation": [ 0.037485, 0.144890, -0.157665, 0.976086] }, { "keytime": 207.666656, "rotation": [ 0.037494, 0.144937, -0.157669, 0.976078] }, { "keytime": 240.999985, "rotation": [ 0.037508, 0.144997, -0.157674, 0.976068] }, { "keytime": 274.333313, "rotation": [ 0.037523, 0.145070, -0.157680, 0.976055] }, { "keytime": 307.666656, "rotation": [ 0.037541, 0.145151, -0.157687, 0.976041] }, { "keytime": 341.000000, "rotation": [ 0.037560, 0.145244, -0.157695, 0.976025] }, { "keytime": 374.333344, "rotation": [ 0.037583, 0.145345, -0.157704, 0.976008] }, { "keytime": 407.666687, "rotation": [ 0.037607, 0.145460, -0.157714, 0.975989] }, { "keytime": 441.000031, "rotation": [ 0.037635, 0.145588, -0.157725, 0.975967] }, { "keytime": 474.333374, "rotation": [ 0.037663, 0.145722, -0.157737, 0.975944] }, { "keytime": 507.666718, "rotation": [ 0.037695, 0.145865, -0.157749, 0.975919] }, { "keytime": 541.000061, "rotation": [ 0.037729, 0.146023, -0.157763, 0.975892] }, { "keytime": 574.333374, "rotation": [ 0.037764, 0.146189, -0.157777, 0.975863] }, { "keytime": 607.666687, "rotation": [ 0.037802, 0.146363, -0.157792, 0.975833] }, { "keytime": 641.000000, "rotation": [ 0.037843, 0.146552, -0.157808, 0.975801] }, { "keytime": 674.333313, "rotation": [ 0.037884, 0.146744, -0.157824, 0.975768] }, { "keytime": 707.666626, "rotation": [ 0.037927, 0.146944, -0.157842, 0.975733] }, { "keytime": 740.999939, "rotation": [ 0.037973, 0.147155, -0.157860, 0.975697] }, { "keytime": 807.666565, "rotation": [ 0.038070, 0.147603, -0.157899, 0.975619] }, { "keytime": 840.999878, "rotation": [ 0.038119, 0.147835, -0.157918, 0.975579] }, { "keytime": 907.666504, "rotation": [ 0.038225, 0.148324, -0.157961, 0.975493] }, { "keytime": 940.999817, "rotation": [ 0.038279, 0.148573, -0.157982, 0.975450] }, { "keytime": 974.333130, "rotation": [ 0.038335, 0.148834, -0.158004, 0.975404] }, { "keytime": 1007.666443, "rotation": [ 0.038391, 0.149092, -0.158027, 0.975359] }, { "keytime": 1040.999756, "rotation": [ 0.038447, 0.149353, -0.158050, 0.975313] }, { "keytime": 1074.333130, "rotation": [ 0.038506, 0.149625, -0.158073, 0.975265] }, { "keytime": 1140.999878, "rotation": [ 0.038620, 0.150158, -0.158118, 0.975172] }, { "keytime": 1174.333252, "rotation": [ 0.038679, 0.150433, -0.158141, 0.975123] }, { "keytime": 1207.666626, "rotation": [ 0.038736, 0.150700, -0.158164, 0.975076] }, { "keytime": 1241.000000, "rotation": [ 0.038795, 0.150975, -0.158187, 0.975027] }, { "keytime": 1274.333374, "rotation": [ 0.038852, 0.151240, -0.158209, 0.974980] }, { "keytime": 1307.666748, "rotation": [ 0.038908, 0.151503, -0.158232, 0.974934] }, { "keytime": 1341.000122, "rotation": [ 0.038965, 0.151770, -0.158255, 0.974886] }, { "keytime": 1374.333496, "rotation": [ 0.039020, 0.152027, -0.158276, 0.974841] }, { "keytime": 1407.666870, "rotation": [ 0.039074, 0.152278, -0.158297, 0.974796] }, { "keytime": 1441.000244, "rotation": [ 0.039129, 0.152531, -0.158319, 0.974750] }, { "keytime": 1474.333618, "rotation": [ 0.039181, 0.152772, -0.158340, 0.974707] }, { "keytime": 1541.000366, "rotation": [ 0.039284, 0.153243, -0.158381, 0.974622] }, { "keytime": 1574.333740, "rotation": [ 0.039330, 0.153463, -0.158399, 0.974583] }, { "keytime": 1641.000488, "rotation": [ 0.039422, 0.153888, -0.158435, 0.974506] }, { "keytime": 1674.333862, "rotation": [ 0.039464, 0.154085, -0.158451, 0.974471] }, { "keytime": 1707.667236, "rotation": [ 0.039506, 0.154274, -0.158468, 0.974437] }, { "keytime": 1741.000610, "rotation": [ 0.039545, 0.154457, -0.158483, 0.974404] }, { "keytime": 1774.333984, "rotation": [ 0.039581, 0.154626, -0.158498, 0.974373] }, { "keytime": 1807.667358, "rotation": [ 0.039615, 0.154785, -0.158511, 0.974344] }, { "keytime": 1841.000732, "rotation": [ 0.039649, 0.154939, -0.158524, 0.974316] }, { "keytime": 1874.334106, "rotation": [ 0.039679, 0.155080, -0.158536, 0.974290] }, { "keytime": 1907.667480, "rotation": [ 0.039706, 0.155208, -0.158547, 0.974267] }, { "keytime": 1941.000854, "rotation": [ 0.039733, 0.155329, -0.158557, 0.974245] }, { "keytime": 1974.334229, "rotation": [ 0.039756, 0.155436, -0.158566, 0.974226] }, { "keytime": 2007.667603, "rotation": [ 0.039777, 0.155534, -0.158574, 0.974208] }, { "keytime": 2041.000977, "rotation": [ 0.039796, 0.155624, -0.158583, 0.974191] }, { "keytime": 2074.334473, "rotation": [ 0.039812, 0.155698, -0.158588, 0.974178] }, { "keytime": 2107.667725, "rotation": [ 0.039826, 0.155762, -0.158594, 0.974166] }, { "keytime": 2141.000977, "rotation": [ 0.039838, 0.155818, -0.158599, 0.974156] }, { "keytime": 2174.334229, "rotation": [ 0.039847, 0.155861, -0.158602, 0.974148] }, { "keytime": 2207.667480, "rotation": [ 0.039855, 0.155895, -0.158606, 0.974142] }, { "keytime": 2241.000732, "rotation": [ 0.039859, 0.155915, -0.158607, 0.974138] }, { "keytime": 2274.333984, "rotation": [ 0.039861, 0.155925, -0.158608, 0.974136] }, { "keytime": 2307.667236, "rotation": [ 0.039862, 0.155926, -0.158608, 0.974136] }, { "keytime": 2341.000488, "rotation": [ 0.039861, 0.155915, -0.158605, 0.974139] }, { "keytime": 2374.333740, "rotation": [ 0.039858, 0.155895, -0.158601, 0.974143] }, { "keytime": 2407.666992, "rotation": [ 0.039853, 0.155861, -0.158593, 0.974150] }, { "keytime": 2441.000244, "rotation": [ 0.039847, 0.155815, -0.158583, 0.974159] }, { "keytime": 2474.333496, "rotation": [ 0.039839, 0.155760, -0.158571, 0.974170] }, { "keytime": 2507.666748, "rotation": [ 0.039830, 0.155695, -0.158556, 0.974183] }, { "keytime": 2541.000000, "rotation": [ 0.039819, 0.155617, -0.158539, 0.974199] }, { "keytime": 2574.333252, "rotation": [ 0.039806, 0.155527, -0.158518, 0.974217] }, { "keytime": 2607.666504, "rotation": [ 0.039792, 0.155428, -0.158496, 0.974237] }, { "keytime": 2640.999756, "rotation": [ 0.039777, 0.155318, -0.158471, 0.974259] }, { "keytime": 2674.333008, "rotation": [ 0.039759, 0.155193, -0.158443, 0.974284] }, { "keytime": 2707.666260, "rotation": [ 0.039741, 0.155062, -0.158414, 0.974311] }, { "keytime": 2740.999512, "rotation": [ 0.039720, 0.154918, -0.158381, 0.974340] }, { "keytime": 2774.332764, "rotation": [ 0.039698, 0.154759, -0.158345, 0.974372] }, { "keytime": 2807.666016, "rotation": [ 0.039675, 0.154594, -0.158308, 0.974405] }, { "keytime": 2840.999268, "rotation": [ 0.039650, 0.154420, -0.158269, 0.974440] }, { "keytime": 2874.332520, "rotation": [ 0.039624, 0.154230, -0.158227, 0.974478] }, { "keytime": 2907.665771, "rotation": [ 0.039596, 0.154033, -0.158182, 0.974518] }, { "keytime": 2940.999023, "rotation": [ 0.039566, 0.153826, -0.158136, 0.974559] }, { "keytime": 2974.332275, "rotation": [ 0.039535, 0.153604, -0.158086, 0.974603] }, { "keytime": 3007.665527, "rotation": [ 0.039503, 0.153379, -0.158035, 0.974648] }, { "keytime": 3040.998779, "rotation": [ 0.039470, 0.153146, -0.157982, 0.974695] }, { "keytime": 3107.665283, "rotation": [ 0.039398, 0.152641, -0.157868, 0.974795] }, { "keytime": 3140.998535, "rotation": [ 0.039361, 0.152380, -0.157810, 0.974847] }, { "keytime": 3207.665039, "rotation": [ 0.039282, 0.151828, -0.157685, 0.974957] }, { "keytime": 3240.998291, "rotation": [ 0.039241, 0.151543, -0.157621, 0.975013] }, { "keytime": 3274.331543, "rotation": [ 0.039198, 0.151244, -0.157553, 0.975072] }, { "keytime": 3307.664795, "rotation": [ 0.039156, 0.150947, -0.157486, 0.975131] }, { "keytime": 3340.998047, "rotation": [ 0.039113, 0.150645, -0.157418, 0.975190] }, { "keytime": 3374.331299, "rotation": [ 0.039067, 0.150329, -0.157347, 0.975252] }, { "keytime": 3407.664551, "rotation": [ 0.039022, 0.150016, -0.157276, 0.975314] }, { "keytime": 3440.997803, "rotation": [ 0.038976, 0.149699, -0.157204, 0.975376] }, { "keytime": 3474.331055, "rotation": [ 0.038928, 0.149369, -0.157129, 0.975440] }, { "keytime": 3507.664307, "rotation": [ 0.038881, 0.149045, -0.157056, 0.975504] }, { "keytime": 3540.997559, "rotation": [ 0.038833, 0.148720, -0.156982, 0.975567] }, { "keytime": 3574.330811, "rotation": [ 0.038784, 0.148381, -0.156905, 0.975633] }, { "keytime": 3640.997314, "rotation": [ 0.038688, 0.147722, -0.156756, 0.975761] }, { "keytime": 3674.330566, "rotation": [ 0.038639, 0.147382, -0.156679, 0.975826] }, { "keytime": 3740.997070, "rotation": [ 0.038543, 0.146724, -0.156530, 0.975953] }, { "keytime": 3774.330322, "rotation": [ 0.038493, 0.146387, -0.156454, 0.976018] }, { "keytime": 3807.663574, "rotation": [ 0.038445, 0.146063, -0.156380, 0.976080] }, { "keytime": 3840.996826, "rotation": [ 0.038397, 0.145742, -0.156307, 0.976142] }, { "keytime": 3874.330078, "rotation": [ 0.038349, 0.145413, -0.156233, 0.976205] }, { "keytime": 3907.663330, "rotation": [ 0.038303, 0.145100, -0.156161, 0.976265] }, { "keytime": 3940.996582, "rotation": [ 0.038256, 0.144791, -0.156090, 0.976324] }, { "keytime": 3974.329834, "rotation": [ 0.038209, 0.144478, -0.156019, 0.976383] }, { "keytime": 4007.663086, "rotation": [ 0.038164, 0.144179, -0.155951, 0.976440] }, { "keytime": 4074.329590, "rotation": [ 0.038075, 0.143593, -0.155817, 0.976551] }, { "keytime": 4107.663086, "rotation": [ 0.038033, 0.143315, -0.155753, 0.976604] }, { "keytime": 4174.329590, "rotation": [ 0.037950, 0.142772, -0.155629, 0.976706] }, { "keytime": 4207.663086, "rotation": [ 0.037910, 0.142517, -0.155571, 0.976755] }, { "keytime": 4274.330078, "rotation": [ 0.037834, 0.142027, -0.155459, 0.976847] }, { "keytime": 4307.663574, "rotation": [ 0.037798, 0.141800, -0.155406, 0.976889] }, { "keytime": 4340.997070, "rotation": [ 0.037763, 0.141580, -0.155356, 0.976931] }, { "keytime": 4374.330566, "rotation": [ 0.037728, 0.141365, -0.155306, 0.976971] }, { "keytime": 4407.664062, "rotation": [ 0.037697, 0.141167, -0.155261, 0.977008] }, { "keytime": 4440.997559, "rotation": [ 0.037666, 0.140980, -0.155217, 0.977043] }, { "keytime": 4474.331055, "rotation": [ 0.037635, 0.140796, -0.155175, 0.977078] }, { "keytime": 4507.664551, "rotation": [ 0.037607, 0.140628, -0.155136, 0.977109] }, { "keytime": 4540.998047, "rotation": [ 0.037580, 0.140470, -0.155099, 0.977139] }, { "keytime": 4574.331543, "rotation": [ 0.037554, 0.140321, -0.155065, 0.977167] }, { "keytime": 4607.665039, "rotation": [ 0.037530, 0.140187, -0.155033, 0.977192] }, { "keytime": 4640.998535, "rotation": [ 0.037508, 0.140063, -0.155004, 0.977215] }, { "keytime": 4674.332031, "rotation": [ 0.037486, 0.139946, -0.154977, 0.977237] }, { "keytime": 4707.665527, "rotation": [ 0.037466, 0.139843, -0.154953, 0.977256] }, { "keytime": 4740.999023, "rotation": [ 0.037449, 0.139754, -0.154931, 0.977273] }, { "keytime": 4774.332520, "rotation": [ 0.037432, 0.139673, -0.154912, 0.977288] }, { "keytime": 4807.666016, "rotation": [ 0.037417, 0.139604, -0.154895, 0.977301] }, { "keytime": 4840.999512, "rotation": [ 0.037403, 0.139546, -0.154881, 0.977312] }, { "keytime": 4874.333008, "rotation": [ 0.037390, 0.139498, -0.154869, 0.977322] }, { "keytime": 4907.666504, "rotation": [ 0.037380, 0.139464, -0.154861, 0.977328] }, { "keytime": 4941.000000, "rotation": [ 0.037371, 0.139440, -0.154854, 0.977333] }, { "keytime": 4974.333496, "rotation": [ 0.037363, 0.139428, -0.154850, 0.977336] }, { "keytime": 5007.666992, "rotation": [ 0.037357, 0.139425, -0.154849, 0.977337] }, { "keytime": 5041.000488, "rotation": [ 0.037351, 0.139432, -0.154851, 0.977336] }, { "keytime": 5074.333984, "rotation": [ 0.037346, 0.139450, -0.154860, 0.977332] }, { "keytime": 5107.667480, "rotation": [ 0.037342, 0.139477, -0.154873, 0.977326] }, { "keytime": 5141.000977, "rotation": [ 0.037338, 0.139514, -0.154891, 0.977318] }, { "keytime": 5174.334473, "rotation": [ 0.037334, 0.139560, -0.154913, 0.977308] }, { "keytime": 5207.667969, "rotation": [ 0.037331, 0.139614, -0.154941, 0.977296] }, { "keytime": 5241.001465, "rotation": [ 0.037329, 0.139681, -0.154975, 0.977281] }, { "keytime": 5274.334961, "rotation": [ 0.037327, 0.139756, -0.155014, 0.977264] }, { "keytime": 5307.668457, "rotation": [ 0.037326, 0.139839, -0.155056, 0.977246] }, { "keytime": 5341.001953, "rotation": [ 0.037325, 0.139934, -0.155105, 0.977225] }, { "keytime": 5374.335449, "rotation": [ 0.037325, 0.140034, -0.155157, 0.977202] }, { "keytime": 5407.668945, "rotation": [ 0.037326, 0.140145, -0.155214, 0.977177] }, { "keytime": 5441.002441, "rotation": [ 0.037326, 0.140267, -0.155278, 0.977149] }, { "keytime": 5474.335938, "rotation": [ 0.037328, 0.140393, -0.155343, 0.977121] }, { "keytime": 5507.669434, "rotation": [ 0.037330, 0.140526, -0.155413, 0.977091] }, { "keytime": 5541.002930, "rotation": [ 0.037332, 0.140670, -0.155488, 0.977058] }, { "keytime": 5574.336426, "rotation": [ 0.037335, 0.140818, -0.155565, 0.977024] }, { "keytime": 5607.669922, "rotation": [ 0.037338, 0.140972, -0.155645, 0.976989] }, { "keytime": 5674.336914, "rotation": [ 0.037345, 0.141297, -0.155815, 0.976914] }, { "keytime": 5707.670410, "rotation": [ 0.037349, 0.141464, -0.155903, 0.976876] }, { "keytime": 5741.003906, "rotation": [ 0.037354, 0.141639, -0.155994, 0.976836] }, { "keytime": 5807.670898, "rotation": [ 0.037364, 0.141985, -0.156176, 0.976756] }, { "keytime": 5841.004395, "rotation": [ 0.037370, 0.142165, -0.156270, 0.976715] }, { "keytime": 5907.671387, "rotation": [ 0.037381, 0.142512, -0.156452, 0.976635] }, { "keytime": 5941.004883, "rotation": [ 0.037387, 0.142688, -0.156545, 0.976594] }, { "keytime": 5974.338379, "rotation": [ 0.037393, 0.142856, -0.156633, 0.976555] }, { "keytime": 6041.005371, "rotation": [ 0.037405, 0.143187, -0.156807, 0.976478] }, { "keytime": 6074.338867, "rotation": [ 0.037410, 0.143342, -0.156888, 0.976442] }, { "keytime": 6141.005859, "rotation": [ 0.037420, 0.143639, -0.157044, 0.976373] }, { "keytime": 6174.339355, "rotation": [ 0.037425, 0.143777, -0.157117, 0.976341] }, { "keytime": 6207.672852, "rotation": [ 0.037430, 0.143907, -0.157185, 0.976311] }, { "keytime": 6241.006348, "rotation": [ 0.037435, 0.144031, -0.157251, 0.976282] }, { "keytime": 6274.339844, "rotation": [ 0.037439, 0.144144, -0.157310, 0.976255] }, { "keytime": 6307.673340, "rotation": [ 0.037443, 0.144249, -0.157365, 0.976231] }, { "keytime": 6341.006836, "rotation": [ 0.037447, 0.144349, -0.157418, 0.976207] }, { "keytime": 6374.340332, "rotation": [ 0.037451, 0.144437, -0.157464, 0.976187] }, { "keytime": 6407.673828, "rotation": [ 0.037454, 0.144514, -0.157505, 0.976169] }, { "keytime": 6441.007324, "rotation": [ 0.037456, 0.144584, -0.157542, 0.976152] }, { "keytime": 6474.340820, "rotation": [ 0.037459, 0.144644, -0.157573, 0.976138] }, { "keytime": 6507.674316, "rotation": [ 0.037461, 0.144694, -0.157599, 0.976126] }, { "keytime": 6541.007812, "rotation": [ 0.037462, 0.144737, -0.157622, 0.976116] }, { "keytime": 6574.341309, "rotation": [ 0.037464, 0.144766, -0.157637, 0.976110] }, { "keytime": 6607.674805, "rotation": [ 0.037464, 0.144787, -0.157648, 0.976105] } ] }, { "boneId": "Bone_004", "keyframes": [ { "keytime": 41.000000, "rotation": [ 0.120534, 0.132313, -0.020722, 0.983634] }, { "keytime": 74.333328, "rotation": [ 0.120537, 0.132322, -0.020721, 0.983632] }, { "keytime": 107.666664, "rotation": [ 0.120543, 0.132344, -0.020720, 0.983629] }, { "keytime": 141.000000, "rotation": [ 0.120554, 0.132380, -0.020717, 0.983622] }, { "keytime": 174.333328, "rotation": [ 0.120568, 0.132429, -0.020714, 0.983614] }, { "keytime": 207.666656, "rotation": [ 0.120585, 0.132491, -0.020710, 0.983604] }, { "keytime": 240.999985, "rotation": [ 0.120608, 0.132570, -0.020705, 0.983590] }, { "keytime": 274.333313, "rotation": [ 0.120636, 0.132666, -0.020698, 0.983574] }, { "keytime": 307.666656, "rotation": [ 0.120667, 0.132772, -0.020691, 0.983556] }, { "keytime": 341.000000, "rotation": [ 0.120702, 0.132896, -0.020683, 0.983535] }, { "keytime": 374.333344, "rotation": [ 0.120741, 0.133030, -0.020675, 0.983513] }, { "keytime": 407.666687, "rotation": [ 0.120784, 0.133181, -0.020665, 0.983487] }, { "keytime": 441.000031, "rotation": [ 0.120833, 0.133350, -0.020654, 0.983459] }, { "keytime": 474.333374, "rotation": [ 0.120884, 0.133527, -0.020642, 0.983428] }, { "keytime": 507.666718, "rotation": [ 0.120939, 0.133717, -0.020629, 0.983396] }, { "keytime": 541.000061, "rotation": [ 0.120999, 0.133925, -0.020616, 0.983361] }, { "keytime": 574.333374, "rotation": [ 0.121062, 0.134144, -0.020601, 0.983323] }, { "keytime": 607.666687, "rotation": [ 0.121128, 0.134375, -0.020586, 0.983284] }, { "keytime": 641.000000, "rotation": [ 0.121200, 0.134624, -0.020570, 0.983241] }, { "keytime": 674.333313, "rotation": [ 0.121273, 0.134878, -0.020553, 0.983198] }, { "keytime": 707.666626, "rotation": [ 0.121349, 0.135142, -0.020536, 0.983153] }, { "keytime": 740.999939, "rotation": [ 0.121429, 0.135420, -0.020518, 0.983105] }, { "keytime": 807.666565, "rotation": [ 0.121599, 0.136013, -0.020479, 0.983003] }, { "keytime": 840.999878, "rotation": [ 0.121687, 0.136318, -0.020459, 0.982950] }, { "keytime": 907.666504, "rotation": [ 0.121873, 0.136965, -0.020416, 0.982838] }, { "keytime": 940.999817, "rotation": [ 0.121968, 0.137294, -0.020394, 0.982781] }, { "keytime": 974.333130, "rotation": [ 0.122067, 0.137639, -0.020372, 0.982721] }, { "keytime": 1007.666443, "rotation": [ 0.122165, 0.137980, -0.020349, 0.982661] }, { "keytime": 1040.999756, "rotation": [ 0.122264, 0.138324, -0.020326, 0.982601] }, { "keytime": 1074.333130, "rotation": [ 0.122367, 0.138684, -0.020303, 0.982538] }, { "keytime": 1140.999878, "rotation": [ 0.122570, 0.139387, -0.020257, 0.982414] }, { "keytime": 1174.333252, "rotation": [ 0.122674, 0.139751, -0.020233, 0.982350] }, { "keytime": 1207.666626, "rotation": [ 0.122775, 0.140105, -0.020210, 0.982287] }, { "keytime": 1241.000000, "rotation": [ 0.122879, 0.140467, -0.020186, 0.982223] }, { "keytime": 1274.333374, "rotation": [ 0.122980, 0.140817, -0.020163, 0.982161] }, { "keytime": 1307.666748, "rotation": [ 0.123080, 0.141164, -0.020140, 0.982099] }, { "keytime": 1341.000122, "rotation": [ 0.123181, 0.141517, -0.020117, 0.982036] }, { "keytime": 1374.333496, "rotation": [ 0.123279, 0.141856, -0.020094, 0.981975] }, { "keytime": 1407.666870, "rotation": [ 0.123374, 0.142187, -0.020072, 0.981916] }, { "keytime": 1441.000244, "rotation": [ 0.123470, 0.142522, -0.020050, 0.981856] }, { "keytime": 1474.333618, "rotation": [ 0.123561, 0.142841, -0.020029, 0.981798] }, { "keytime": 1541.000366, "rotation": [ 0.123740, 0.143463, -0.019988, 0.981686] }, { "keytime": 1574.333740, "rotation": [ 0.123823, 0.143754, -0.019969, 0.981633] }, { "keytime": 1641.000488, "rotation": [ 0.123984, 0.144314, -0.019932, 0.981532] }, { "keytime": 1674.333862, "rotation": [ 0.124059, 0.144575, -0.019915, 0.981484] }, { "keytime": 1707.667236, "rotation": [ 0.124131, 0.144824, -0.019898, 0.981439] }, { "keytime": 1741.000610, "rotation": [ 0.124200, 0.145066, -0.019882, 0.981394] }, { "keytime": 1774.333984, "rotation": [ 0.124264, 0.145288, -0.019868, 0.981354] }, { "keytime": 1807.667358, "rotation": [ 0.124324, 0.145499, -0.019854, 0.981315] }, { "keytime": 1841.000732, "rotation": [ 0.124383, 0.145703, -0.019840, 0.981278] }, { "keytime": 1874.334106, "rotation": [ 0.124436, 0.145889, -0.019828, 0.981244] }, { "keytime": 1907.667480, "rotation": [ 0.124484, 0.146057, -0.019817, 0.981213] }, { "keytime": 1941.000854, "rotation": [ 0.124530, 0.146217, -0.019806, 0.981183] }, { "keytime": 1974.334229, "rotation": [ 0.124571, 0.146360, -0.019797, 0.981157] }, { "keytime": 2007.667603, "rotation": [ 0.124608, 0.146489, -0.019788, 0.981133] }, { "keytime": 2041.000977, "rotation": [ 0.124642, 0.146608, -0.019781, 0.981111] }, { "keytime": 2074.334473, "rotation": [ 0.124670, 0.146705, -0.019774, 0.981093] }, { "keytime": 2107.667725, "rotation": [ 0.124694, 0.146790, -0.019769, 0.981078] }, { "keytime": 2141.000977, "rotation": [ 0.124715, 0.146863, -0.019764, 0.981064] }, { "keytime": 2174.334229, "rotation": [ 0.124732, 0.146921, -0.019760, 0.981053] }, { "keytime": 2207.667480, "rotation": [ 0.124744, 0.146965, -0.019757, 0.981045] }, { "keytime": 2241.000732, "rotation": [ 0.124752, 0.146992, -0.019755, 0.981040] }, { "keytime": 2274.333984, "rotation": [ 0.124756, 0.147005, -0.019754, 0.981038] }, { "keytime": 2307.667236, "rotation": [ 0.124756, 0.147006, -0.019754, 0.981038] }, { "keytime": 2341.000488, "rotation": [ 0.124753, 0.146993, -0.019754, 0.981040] }, { "keytime": 2374.333740, "rotation": [ 0.124748, 0.146969, -0.019754, 0.981044] }, { "keytime": 2407.666992, "rotation": [ 0.124738, 0.146929, -0.019753, 0.981052] }, { "keytime": 2441.000244, "rotation": [ 0.124725, 0.146874, -0.019752, 0.981061] }, { "keytime": 2474.333496, "rotation": [ 0.124710, 0.146809, -0.019751, 0.981073] }, { "keytime": 2507.666748, "rotation": [ 0.124692, 0.146731, -0.019750, 0.981087] }, { "keytime": 2541.000000, "rotation": [ 0.124670, 0.146638, -0.019749, 0.981104] }, { "keytime": 2574.333252, "rotation": [ 0.124645, 0.146531, -0.019747, 0.981123] }, { "keytime": 2607.666504, "rotation": [ 0.124617, 0.146412, -0.019746, 0.981144] }, { "keytime": 2640.999756, "rotation": [ 0.124586, 0.146281, -0.019744, 0.981168] }, { "keytime": 2674.333008, "rotation": [ 0.124551, 0.146133, -0.019742, 0.981194] }, { "keytime": 2707.666260, "rotation": [ 0.124514, 0.145977, -0.019739, 0.981222] }, { "keytime": 2740.999512, "rotation": [ 0.124474, 0.145805, -0.019737, 0.981253] }, { "keytime": 2774.332764, "rotation": [ 0.124429, 0.145615, -0.019734, 0.981287] }, { "keytime": 2807.666016, "rotation": [ 0.124383, 0.145419, -0.019731, 0.981322] }, { "keytime": 2840.999268, "rotation": [ 0.124334, 0.145211, -0.019728, 0.981359] }, { "keytime": 2874.332520, "rotation": [ 0.124281, 0.144984, -0.019725, 0.981399] }, { "keytime": 2907.665771, "rotation": [ 0.124226, 0.144749, -0.019722, 0.981441] }, { "keytime": 2940.999023, "rotation": [ 0.124168, 0.144503, -0.019718, 0.981485] }, { "keytime": 2974.332275, "rotation": [ 0.124105, 0.144238, -0.019714, 0.981532] }, { "keytime": 3007.665527, "rotation": [ 0.124042, 0.143970, -0.019711, 0.981579] }, { "keytime": 3040.998779, "rotation": [ 0.123977, 0.143691, -0.019707, 0.981628] }, { "keytime": 3107.665283, "rotation": [ 0.123835, 0.143089, -0.019698, 0.981734] }, { "keytime": 3140.998535, "rotation": [ 0.123762, 0.142778, -0.019694, 0.981789] }, { "keytime": 3207.665039, "rotation": [ 0.123607, 0.142120, -0.019684, 0.981904] }, { "keytime": 3240.998291, "rotation": [ 0.123527, 0.141780, -0.019679, 0.981963] }, { "keytime": 3274.331543, "rotation": [ 0.123443, 0.141423, -0.019674, 0.982026] }, { "keytime": 3307.664795, "rotation": [ 0.123359, 0.141069, -0.019669, 0.982087] }, { "keytime": 3340.998047, "rotation": [ 0.123275, 0.140709, -0.019664, 0.982149] }, { "keytime": 3374.331299, "rotation": [ 0.123185, 0.140331, -0.019658, 0.982215] }, { "keytime": 3407.664551, "rotation": [ 0.123097, 0.139958, -0.019653, 0.982279] }, { "keytime": 3440.997803, "rotation": [ 0.123008, 0.139580, -0.019648, 0.982344] }, { "keytime": 3474.331055, "rotation": [ 0.122915, 0.139186, -0.019642, 0.982412] }, { "keytime": 3507.664307, "rotation": [ 0.122824, 0.138800, -0.019637, 0.982478] }, { "keytime": 3540.997559, "rotation": [ 0.122732, 0.138411, -0.019631, 0.982545] }, { "keytime": 3574.330811, "rotation": [ 0.122637, 0.138008, -0.019625, 0.982613] }, { "keytime": 3640.997314, "rotation": [ 0.122452, 0.137221, -0.019614, 0.982747] }, { "keytime": 3674.330566, "rotation": [ 0.122356, 0.136815, -0.019608, 0.982815] }, { "keytime": 3740.997070, "rotation": [ 0.122171, 0.136030, -0.019596, 0.982948] }, { "keytime": 3774.330322, "rotation": [ 0.122076, 0.135628, -0.019590, 0.983015] }, { "keytime": 3807.663574, "rotation": [ 0.121985, 0.135241, -0.019584, 0.983080] }, { "keytime": 3840.996826, "rotation": [ 0.121894, 0.134857, -0.019579, 0.983144] }, { "keytime": 3874.330078, "rotation": [ 0.121801, 0.134465, -0.019573, 0.983209] }, { "keytime": 3907.663330, "rotation": [ 0.121713, 0.134091, -0.019568, 0.983271] }, { "keytime": 3940.996582, "rotation": [ 0.121626, 0.133722, -0.019562, 0.983333] }, { "keytime": 3974.329834, "rotation": [ 0.121537, 0.133348, -0.019557, 0.983394] }, { "keytime": 4007.663086, "rotation": [ 0.121453, 0.132991, -0.019552, 0.983453] }, { "keytime": 4074.329590, "rotation": [ 0.121287, 0.132291, -0.019542, 0.983568] }, { "keytime": 4107.663086, "rotation": [ 0.121209, 0.131959, -0.019537, 0.983623] }, { "keytime": 4174.329590, "rotation": [ 0.121056, 0.131311, -0.019528, 0.983728] }, { "keytime": 4207.663086, "rotation": [ 0.120983, 0.131005, -0.019523, 0.983778] }, { "keytime": 4274.330078, "rotation": [ 0.120845, 0.130420, -0.019515, 0.983873] }, { "keytime": 4307.663574, "rotation": [ 0.120780, 0.130148, -0.019511, 0.983917] }, { "keytime": 4340.997070, "rotation": [ 0.120718, 0.129886, -0.019507, 0.983959] }, { "keytime": 4374.330566, "rotation": [ 0.120657, 0.129628, -0.019503, 0.984001] }, { "keytime": 4407.664062, "rotation": [ 0.120601, 0.129392, -0.019500, 0.984039] }, { "keytime": 4440.997559, "rotation": [ 0.120548, 0.129167, -0.019496, 0.984075] }, { "keytime": 4474.331055, "rotation": [ 0.120496, 0.128947, -0.019493, 0.984110] }, { "keytime": 4507.664551, "rotation": [ 0.120449, 0.128746, -0.019490, 0.984143] }, { "keytime": 4540.998047, "rotation": [ 0.120404, 0.128557, -0.019487, 0.984173] }, { "keytime": 4574.331543, "rotation": [ 0.120361, 0.128378, -0.019485, 0.984201] }, { "keytime": 4607.665039, "rotation": [ 0.120323, 0.128218, -0.019483, 0.984227] }, { "keytime": 4640.998535, "rotation": [ 0.120288, 0.128069, -0.019480, 0.984251] }, { "keytime": 4674.332031, "rotation": [ 0.120255, 0.127928, -0.019478, 0.984273] }, { "keytime": 4707.665527, "rotation": [ 0.120226, 0.127804, -0.019477, 0.984293] }, { "keytime": 4740.999023, "rotation": [ 0.120200, 0.127697, -0.019475, 0.984310] }, { "keytime": 4774.332520, "rotation": [ 0.120177, 0.127599, -0.019474, 0.984326] }, { "keytime": 4807.666016, "rotation": [ 0.120157, 0.127517, -0.019472, 0.984339] }, { "keytime": 4840.999512, "rotation": [ 0.120141, 0.127446, -0.019471, 0.984350] }, { "keytime": 4874.333008, "rotation": [ 0.120127, 0.127387, -0.019470, 0.984359] }, { "keytime": 4907.666504, "rotation": [ 0.120117, 0.127346, -0.019470, 0.984366] }, { "keytime": 4941.000000, "rotation": [ 0.120110, 0.127317, -0.019469, 0.984370] }, { "keytime": 4974.333496, "rotation": [ 0.120106, 0.127300, -0.019469, 0.984373] }, { "keytime": 5007.666992, "rotation": [ 0.120105, 0.127295, -0.019470, 0.984374] }, { "keytime": 5041.000488, "rotation": [ 0.120106, 0.127301, -0.019472, 0.984373] }, { "keytime": 5074.333984, "rotation": [ 0.120107, 0.127317, -0.019475, 0.984371] }, { "keytime": 5107.667480, "rotation": [ 0.120109, 0.127342, -0.019482, 0.984367] }, { "keytime": 5141.000977, "rotation": [ 0.120112, 0.127376, -0.019490, 0.984362] }, { "keytime": 5174.334473, "rotation": [ 0.120115, 0.127417, -0.019500, 0.984356] }, { "keytime": 5207.667969, "rotation": [ 0.120120, 0.127467, -0.019513, 0.984349] }, { "keytime": 5241.001465, "rotation": [ 0.120125, 0.127530, -0.019528, 0.984340] }, { "keytime": 5274.334961, "rotation": [ 0.120131, 0.127599, -0.019546, 0.984330] }, { "keytime": 5307.668457, "rotation": [ 0.120138, 0.127676, -0.019565, 0.984318] }, { "keytime": 5341.001953, "rotation": [ 0.120145, 0.127764, -0.019586, 0.984306] }, { "keytime": 5374.335449, "rotation": [ 0.120154, 0.127857, -0.019610, 0.984292] }, { "keytime": 5407.668945, "rotation": [ 0.120162, 0.127960, -0.019635, 0.984277] }, { "keytime": 5441.002441, "rotation": [ 0.120172, 0.128074, -0.019664, 0.984261] }, { "keytime": 5474.335938, "rotation": [ 0.120182, 0.128191, -0.019693, 0.984244] }, { "keytime": 5507.669434, "rotation": [ 0.120192, 0.128315, -0.019724, 0.984226] }, { "keytime": 5541.002930, "rotation": [ 0.120205, 0.128450, -0.019758, 0.984206] }, { "keytime": 5574.336426, "rotation": [ 0.120216, 0.128588, -0.019792, 0.984186] }, { "keytime": 5607.669922, "rotation": [ 0.120228, 0.128731, -0.019828, 0.984165] }, { "keytime": 5674.336914, "rotation": [ 0.120255, 0.129035, -0.019904, 0.984120] }, { "keytime": 5707.670410, "rotation": [ 0.120268, 0.129190, -0.019943, 0.984097] }, { "keytime": 5741.003906, "rotation": [ 0.120282, 0.129354, -0.019984, 0.984073] }, { "keytime": 5807.670898, "rotation": [ 0.120309, 0.129678, -0.020064, 0.984026] }, { "keytime": 5841.004395, "rotation": [ 0.120323, 0.129845, -0.020106, 0.984001] }, { "keytime": 5907.671387, "rotation": [ 0.120350, 0.130170, -0.020186, 0.983953] }, { "keytime": 5941.004883, "rotation": [ 0.120364, 0.130334, -0.020227, 0.983929] }, { "keytime": 5974.338379, "rotation": [ 0.120378, 0.130492, -0.020267, 0.983906] }, { "keytime": 6041.005371, "rotation": [ 0.120405, 0.130801, -0.020343, 0.983860] }, { "keytime": 6074.338867, "rotation": [ 0.120417, 0.130946, -0.020380, 0.983838] }, { "keytime": 6141.005859, "rotation": [ 0.120441, 0.131224, -0.020449, 0.983797] }, { "keytime": 6174.339355, "rotation": [ 0.120452, 0.131353, -0.020482, 0.983778] }, { "keytime": 6207.672852, "rotation": [ 0.120462, 0.131475, -0.020511, 0.983759] }, { "keytime": 6241.006348, "rotation": [ 0.120473, 0.131591, -0.020541, 0.983742] }, { "keytime": 6274.339844, "rotation": [ 0.120481, 0.131697, -0.020567, 0.983726] }, { "keytime": 6307.673340, "rotation": [ 0.120490, 0.131795, -0.020592, 0.983711] }, { "keytime": 6341.006836, "rotation": [ 0.120498, 0.131888, -0.020615, 0.983697] }, { "keytime": 6374.340332, "rotation": [ 0.120505, 0.131971, -0.020635, 0.983685] }, { "keytime": 6407.673828, "rotation": [ 0.120511, 0.132043, -0.020654, 0.983674] }, { "keytime": 6441.007324, "rotation": [ 0.120517, 0.132108, -0.020670, 0.983665] }, { "keytime": 6474.340820, "rotation": [ 0.120521, 0.132164, -0.020684, 0.983656] }, { "keytime": 6507.674316, "rotation": [ 0.120526, 0.132211, -0.020696, 0.983649] }, { "keytime": 6541.007812, "rotation": [ 0.120528, 0.132251, -0.020705, 0.983643] }, { "keytime": 6574.341309, "rotation": [ 0.120531, 0.132278, -0.020713, 0.983639] }, { "keytime": 6607.674805, "rotation": [ 0.120533, 0.132298, -0.020717, 0.983636] } ] }, { "boneId": "Bone_001", "keyframes": [ { "keytime": 41.000000, "rotation": [ 0.330465, -0.069968, -0.091285, 0.936784] }, { "keytime": 74.333328, "rotation": [ 0.330455, -0.069973, -0.091273, 0.936788] }, { "keytime": 107.666664, "rotation": [ 0.330432, -0.069984, -0.091244, 0.936799] }, { "keytime": 141.000000, "rotation": [ 0.330393, -0.070003, -0.091195, 0.936816] }, { "keytime": 174.333328, "rotation": [ 0.330341, -0.070029, -0.091129, 0.936838] }, { "keytime": 207.666656, "rotation": [ 0.330275, -0.070062, -0.091046, 0.936867] }, { "keytime": 240.999985, "rotation": [ 0.330189, -0.070105, -0.090939, 0.936905] }, { "keytime": 274.333313, "rotation": [ 0.330086, -0.070156, -0.090810, 0.936950] }, { "keytime": 307.666656, "rotation": [ 0.329972, -0.070214, -0.090666, 0.937000] }, { "keytime": 341.000000, "rotation": [ 0.329839, -0.070280, -0.090500, 0.937057] }, { "keytime": 374.333344, "rotation": [ 0.329695, -0.070352, -0.090320, 0.937120] }, { "keytime": 407.666687, "rotation": [ 0.329533, -0.070434, -0.090117, 0.937191] }, { "keytime": 441.000031, "rotation": [ 0.329351, -0.070525, -0.089890, 0.937269] }, { "keytime": 474.333374, "rotation": [ 0.329160, -0.070621, -0.089652, 0.937352] }, { "keytime": 507.666718, "rotation": [ 0.328956, -0.070725, -0.089397, 0.937440] }, { "keytime": 541.000061, "rotation": [ 0.328731, -0.070838, -0.089116, 0.937537] }, { "keytime": 574.333374, "rotation": [ 0.328494, -0.070958, -0.088822, 0.937639] }, { "keytime": 607.666687, "rotation": [ 0.328245, -0.071085, -0.088513, 0.937746] }, { "keytime": 641.000000, "rotation": [ 0.327975, -0.071222, -0.088178, 0.937862] }, { "keytime": 674.333313, "rotation": [ 0.327701, -0.071362, -0.087838, 0.937979] }, { "keytime": 707.666626, "rotation": [ 0.327414, -0.071508, -0.087483, 0.938101] }, { "keytime": 740.999939, "rotation": [ 0.327113, -0.071662, -0.087111, 0.938229] }, { "keytime": 807.666565, "rotation": [ 0.326468, -0.071993, -0.086317, 0.938501] }, { "keytime": 840.999878, "rotation": [ 0.326136, -0.072164, -0.085908, 0.938641] }, { "keytime": 907.666504, "rotation": [ 0.325431, -0.072529, -0.085044, 0.938936] }, { "keytime": 940.999817, "rotation": [ 0.325071, -0.072717, -0.084604, 0.939086] }, { "keytime": 974.333130, "rotation": [ 0.324694, -0.072914, -0.084143, 0.939243] }, { "keytime": 1007.666443, "rotation": [ 0.324321, -0.073109, -0.083689, 0.939397] }, { "keytime": 1040.999756, "rotation": [ 0.323943, -0.073308, -0.083229, 0.939553] }, { "keytime": 1074.333130, "rotation": [ 0.323548, -0.073517, -0.082751, 0.939715] }, { "keytime": 1107.666504, "rotation": [ 0.323161, -0.073721, -0.082283, 0.939873] }, { "keytime": 1140.999878, "rotation": [ 0.322772, -0.073929, -0.081814, 0.940032] }, { "keytime": 1174.333252, "rotation": [ 0.322369, -0.074144, -0.081331, 0.940195] }, { "keytime": 1207.666626, "rotation": [ 0.321979, -0.074354, -0.080862, 0.940352] }, { "keytime": 1241.000000, "rotation": [ 0.321576, -0.074571, -0.080381, 0.940514] }, { "keytime": 1274.333374, "rotation": [ 0.321187, -0.074783, -0.079918, 0.940670] }, { "keytime": 1307.666748, "rotation": [ 0.320801, -0.074994, -0.079460, 0.940823] }, { "keytime": 1341.000122, "rotation": [ 0.320406, -0.075211, -0.078993, 0.940980] }, { "keytime": 1374.333496, "rotation": [ 0.320027, -0.075421, -0.078547, 0.941130] }, { "keytime": 1407.666870, "rotation": [ 0.319655, -0.075629, -0.078111, 0.941276] }, { "keytime": 1441.000244, "rotation": [ 0.319277, -0.075841, -0.077671, 0.941423] }, { "keytime": 1474.333618, "rotation": [ 0.318918, -0.076045, -0.077254, 0.941563] }, { "keytime": 1507.666992, "rotation": [ 0.318566, -0.076247, -0.076848, 0.941699] }, { "keytime": 1541.000366, "rotation": [ 0.318211, -0.076451, -0.076441, 0.941835] }, { "keytime": 1574.333740, "rotation": [ 0.317879, -0.076646, -0.076063, 0.941962] }, { "keytime": 1607.667114, "rotation": [ 0.317557, -0.076837, -0.075698, 0.942085] }, { "keytime": 1641.000488, "rotation": [ 0.317235, -0.077029, -0.075338, 0.942206] }, { "keytime": 1674.333862, "rotation": [ 0.316934, -0.077212, -0.075002, 0.942319] }, { "keytime": 1707.667236, "rotation": [ 0.316644, -0.077390, -0.074682, 0.942428] }, { "keytime": 1741.000610, "rotation": [ 0.316361, -0.077568, -0.074374, 0.942533] }, { "keytime": 1774.333984, "rotation": [ 0.316099, -0.077735, -0.074091, 0.942629] }, { "keytime": 1807.667358, "rotation": [ 0.315849, -0.077898, -0.073826, 0.942720] }, { "keytime": 1841.000732, "rotation": [ 0.315605, -0.078060, -0.073570, 0.942808] }, { "keytime": 1874.334106, "rotation": [ 0.315381, -0.078212, -0.073340, 0.942889] }, { "keytime": 1907.667480, "rotation": [ 0.315175, -0.078356, -0.073133, 0.942962] }, { "keytime": 1941.000854, "rotation": [ 0.314977, -0.078500, -0.072938, 0.943031] }, { "keytime": 1974.334229, "rotation": [ 0.314799, -0.078633, -0.072768, 0.943093] }, { "keytime": 2007.667603, "rotation": [ 0.314634, -0.078760, -0.072616, 0.943149] }, { "keytime": 2041.000977, "rotation": [ 0.314479, -0.078886, -0.072478, 0.943200] }, { "keytime": 2074.334473, "rotation": [ 0.314347, -0.078999, -0.072370, 0.943243] }, { "keytime": 2107.667725, "rotation": [ 0.314230, -0.079107, -0.072280, 0.943280] }, { "keytime": 2141.000977, "rotation": [ 0.314123, -0.079212, -0.072206, 0.943312] }, { "keytime": 2174.334229, "rotation": [ 0.314034, -0.079308, -0.072153, 0.943338] }, { "keytime": 2207.667480, "rotation": [ 0.313959, -0.079398, -0.072119, 0.943358] }, { "keytime": 2241.000732, "rotation": [ 0.313901, -0.079482, -0.072109, 0.943371] }, { "keytime": 2274.333984, "rotation": [ 0.313858, -0.079558, -0.072117, 0.943378] }, { "keytime": 2307.667236, "rotation": [ 0.313826, -0.079629, -0.072143, 0.943381] }, { "keytime": 2341.000488, "rotation": [ 0.313798, -0.079698, -0.072185, 0.943381] }, { "keytime": 2374.333740, "rotation": [ 0.313772, -0.079764, -0.072240, 0.943380] }, { "keytime": 2407.666992, "rotation": [ 0.313747, -0.079826, -0.072314, 0.943378] }, { "keytime": 2441.000244, "rotation": [ 0.313723, -0.079888, -0.072405, 0.943373] }, { "keytime": 2474.333496, "rotation": [ 0.313700, -0.079946, -0.072508, 0.943368] }, { "keytime": 2507.666748, "rotation": [ 0.313679, -0.080001, -0.072625, 0.943361] }, { "keytime": 2541.000000, "rotation": [ 0.313658, -0.080056, -0.072761, 0.943353] }, { "keytime": 2574.333252, "rotation": [ 0.313640, -0.080106, -0.072912, 0.943343] }, { "keytime": 2607.666504, "rotation": [ 0.313623, -0.080154, -0.073077, 0.943332] }, { "keytime": 2640.999756, "rotation": [ 0.313606, -0.080199, -0.073256, 0.943320] }, { "keytime": 2674.333008, "rotation": [ 0.313591, -0.080243, -0.073456, 0.943306] }, { "keytime": 2707.666260, "rotation": [ 0.313577, -0.080283, -0.073664, 0.943291] }, { "keytime": 2740.999512, "rotation": [ 0.313565, -0.080320, -0.073891, 0.943274] }, { "keytime": 2774.332764, "rotation": [ 0.313553, -0.080356, -0.074139, 0.943255] }, { "keytime": 2807.666016, "rotation": [ 0.313543, -0.080388, -0.074394, 0.943236] }, { "keytime": 2840.999268, "rotation": [ 0.313534, -0.080418, -0.074661, 0.943215] }, { "keytime": 2874.332520, "rotation": [ 0.313527, -0.080446, -0.074952, 0.943192] }, { "keytime": 2907.665771, "rotation": [ 0.313520, -0.080470, -0.075251, 0.943169] }, { "keytime": 2940.999023, "rotation": [ 0.313515, -0.080491, -0.075563, 0.943143] }, { "keytime": 2974.332275, "rotation": [ 0.313511, -0.080511, -0.075898, 0.943116] }, { "keytime": 3007.665527, "rotation": [ 0.313509, -0.080528, -0.076235, 0.943089] }, { "keytime": 3040.998779, "rotation": [ 0.313507, -0.080542, -0.076584, 0.943060] }, { "keytime": 3074.332031, "rotation": [ 0.313507, -0.080553, -0.076959, 0.943028] }, { "keytime": 3107.665283, "rotation": [ 0.313507, -0.080562, -0.077334, 0.942996] }, { "keytime": 3140.998535, "rotation": [ 0.313509, -0.080568, -0.077720, 0.942963] }, { "keytime": 3174.331787, "rotation": [ 0.313512, -0.080573, -0.078128, 0.942928] }, { "keytime": 3207.665039, "rotation": [ 0.313516, -0.080575, -0.078534, 0.942893] }, { "keytime": 3240.998291, "rotation": [ 0.313522, -0.080574, -0.078952, 0.942857] }, { "keytime": 3274.331543, "rotation": [ 0.313528, -0.080570, -0.079391, 0.942818] }, { "keytime": 3307.664795, "rotation": [ 0.313535, -0.080565, -0.079826, 0.942780] }, { "keytime": 3340.998047, "rotation": [ 0.313543, -0.080558, -0.080267, 0.942740] }, { "keytime": 3374.331299, "rotation": [ 0.313551, -0.080548, -0.080729, 0.942699] }, { "keytime": 3407.664551, "rotation": [ 0.313561, -0.080537, -0.081185, 0.942657] }, { "keytime": 3440.997803, "rotation": [ 0.313571, -0.080523, -0.081645, 0.942615] }, { "keytime": 3474.331055, "rotation": [ 0.313582, -0.080507, -0.082125, 0.942571] }, { "keytime": 3507.664307, "rotation": [ 0.313594, -0.080490, -0.082594, 0.942528] }, { "keytime": 3540.997559, "rotation": [ 0.313606, -0.080472, -0.083066, 0.942484] }, { "keytime": 3574.330811, "rotation": [ 0.313620, -0.080451, -0.083555, 0.942438] }, { "keytime": 3640.997314, "rotation": [ 0.313647, -0.080406, -0.084507, 0.942348] }, { "keytime": 3674.330566, "rotation": [ 0.313661, -0.080382, -0.084997, 0.942301] }, { "keytime": 3707.663818, "rotation": [ 0.313676, -0.080356, -0.085472, 0.942255] }, { "keytime": 3740.997070, "rotation": [ 0.313690, -0.080330, -0.085944, 0.942210] }, { "keytime": 3774.330322, "rotation": [ 0.313706, -0.080302, -0.086428, 0.942163] }, { "keytime": 3807.663574, "rotation": [ 0.313721, -0.080274, -0.086894, 0.942117] }, { "keytime": 3840.996826, "rotation": [ 0.313736, -0.080246, -0.087355, 0.942072] }, { "keytime": 3874.330078, "rotation": [ 0.313753, -0.080215, -0.087826, 0.942025] }, { "keytime": 3907.663330, "rotation": [ 0.313769, -0.080185, -0.088275, 0.941980] }, { "keytime": 3940.996582, "rotation": [ 0.313785, -0.080155, -0.088718, 0.941936] }, { "keytime": 3974.329834, "rotation": [ 0.313801, -0.080124, -0.089166, 0.941891] }, { "keytime": 4007.663086, "rotation": [ 0.313817, -0.080093, -0.089593, 0.941848] }, { "keytime": 4074.329590, "rotation": [ 0.313848, -0.080032, -0.090432, 0.941762] }, { "keytime": 4107.663086, "rotation": [ 0.313864, -0.080002, -0.090829, 0.941721] }, { "keytime": 4174.329590, "rotation": [ 0.313894, -0.079941, -0.091603, 0.941642] }, { "keytime": 4207.663086, "rotation": [ 0.313908, -0.079912, -0.091968, 0.941604] }, { "keytime": 4274.330078, "rotation": [ 0.313936, -0.079855, -0.092665, 0.941531] }, { "keytime": 4307.663574, "rotation": [ 0.313949, -0.079828, -0.092990, 0.941497] }, { "keytime": 4340.997070, "rotation": [ 0.313962, -0.079802, -0.093302, 0.941464] }, { "keytime": 4374.330566, "rotation": [ 0.313975, -0.079776, -0.093609, 0.941431] }, { "keytime": 4407.664062, "rotation": [ 0.313986, -0.079751, -0.093890, 0.941402] }, { "keytime": 4440.997559, "rotation": [ 0.313998, -0.079728, -0.094158, 0.941373] }, { "keytime": 4474.331055, "rotation": [ 0.314009, -0.079705, -0.094419, 0.941345] }, { "keytime": 4507.664551, "rotation": [ 0.314019, -0.079684, -0.094658, 0.941320] }, { "keytime": 4540.998047, "rotation": [ 0.314029, -0.079663, -0.094882, 0.941295] }, { "keytime": 4574.331543, "rotation": [ 0.314037, -0.079644, -0.095095, 0.941273] }, { "keytime": 4607.665039, "rotation": [ 0.314046, -0.079626, -0.095286, 0.941252] }, { "keytime": 4640.998535, "rotation": [ 0.314054, -0.079610, -0.095462, 0.941233] }, { "keytime": 4674.332031, "rotation": [ 0.314061, -0.079595, -0.095629, 0.941215] }, { "keytime": 4707.665527, "rotation": [ 0.314068, -0.079581, -0.095776, 0.941199] }, { "keytime": 4740.999023, "rotation": [ 0.314073, -0.079569, -0.095903, 0.941185] }, { "keytime": 4774.332520, "rotation": [ 0.314078, -0.079558, -0.096019, 0.941173] }, { "keytime": 4807.666016, "rotation": [ 0.314082, -0.079548, -0.096117, 0.941162] }, { "keytime": 4840.999512, "rotation": [ 0.314087, -0.079540, -0.096200, 0.941153] }, { "keytime": 4874.333008, "rotation": [ 0.314090, -0.079533, -0.096270, 0.941145] }, { "keytime": 4907.666504, "rotation": [ 0.314092, -0.079528, -0.096319, 0.941140] }, { "keytime": 4941.000000, "rotation": [ 0.314094, -0.079525, -0.096354, 0.941136] }, { "keytime": 4974.333496, "rotation": [ 0.314095, -0.079523, -0.096373, 0.941134] }, { "keytime": 5007.666992, "rotation": [ 0.314099, -0.079520, -0.096379, 0.941132] }, { "keytime": 5041.000488, "rotation": [ 0.314118, -0.079509, -0.096374, 0.941127] }, { "keytime": 5074.333984, "rotation": [ 0.314172, -0.079478, -0.096357, 0.941114] }, { "keytime": 5107.667480, "rotation": [ 0.314252, -0.079431, -0.096332, 0.941093] }, { "keytime": 5141.000977, "rotation": [ 0.314364, -0.079366, -0.096298, 0.941065] }, { "keytime": 5174.334473, "rotation": [ 0.314499, -0.079288, -0.096256, 0.941031] }, { "keytime": 5207.667969, "rotation": [ 0.314662, -0.079193, -0.096205, 0.940989] }, { "keytime": 5241.001465, "rotation": [ 0.314867, -0.079074, -0.096142, 0.940937] }, { "keytime": 5274.334961, "rotation": [ 0.315093, -0.078943, -0.096072, 0.940880] }, { "keytime": 5307.668457, "rotation": [ 0.315345, -0.078796, -0.095994, 0.940815] }, { "keytime": 5341.001953, "rotation": [ 0.315633, -0.078629, -0.095905, 0.940742] }, { "keytime": 5374.335449, "rotation": [ 0.315937, -0.078452, -0.095811, 0.940664] }, { "keytime": 5407.668945, "rotation": [ 0.316275, -0.078256, -0.095707, 0.940578] }, { "keytime": 5441.002441, "rotation": [ 0.316646, -0.078040, -0.095592, 0.940482] }, { "keytime": 5474.335938, "rotation": [ 0.317030, -0.077817, -0.095473, 0.940384] }, { "keytime": 5507.669434, "rotation": [ 0.317436, -0.077581, -0.095347, 0.940279] }, { "keytime": 5541.002930, "rotation": [ 0.317875, -0.077326, -0.095211, 0.940166] }, { "keytime": 5574.336426, "rotation": [ 0.318326, -0.077063, -0.095071, 0.940049] }, { "keytime": 5607.669922, "rotation": [ 0.318793, -0.076791, -0.094926, 0.939927] }, { "keytime": 5674.336914, "rotation": [ 0.319786, -0.076212, -0.094618, 0.939668] }, { "keytime": 5707.670410, "rotation": [ 0.320294, -0.075917, -0.094460, 0.939535] }, { "keytime": 5741.003906, "rotation": [ 0.320829, -0.075605, -0.094294, 0.939394] }, { "keytime": 5774.337402, "rotation": [ 0.321354, -0.075299, -0.094130, 0.939256] }, { "keytime": 5807.670898, "rotation": [ 0.321883, -0.074990, -0.093966, 0.939116] }, { "keytime": 5841.004395, "rotation": [ 0.322430, -0.074671, -0.093795, 0.938970] }, { "keytime": 5874.337891, "rotation": [ 0.322961, -0.074361, -0.093630, 0.938829] }, { "keytime": 5907.671387, "rotation": [ 0.323488, -0.074053, -0.093466, 0.938688] }, { "keytime": 5941.004883, "rotation": [ 0.324025, -0.073740, -0.093299, 0.938545] }, { "keytime": 5974.338379, "rotation": [ 0.324537, -0.073440, -0.093139, 0.938407] }, { "keytime": 6007.671875, "rotation": [ 0.325040, -0.073146, -0.092982, 0.938271] }, { "keytime": 6041.005371, "rotation": [ 0.325545, -0.072850, -0.092824, 0.938135] }, { "keytime": 6074.338867, "rotation": [ 0.326017, -0.072574, -0.092677, 0.938007] }, { "keytime": 6107.672363, "rotation": [ 0.326472, -0.072308, -0.092535, 0.937883] }, { "keytime": 6141.005859, "rotation": [ 0.326923, -0.072044, -0.092394, 0.937760] }, { "keytime": 6174.339355, "rotation": [ 0.327340, -0.071800, -0.092263, 0.937646] }, { "keytime": 6207.672852, "rotation": [ 0.327737, -0.071567, -0.092139, 0.937538] }, { "keytime": 6241.006348, "rotation": [ 0.328116, -0.071345, -0.092021, 0.937434] }, { "keytime": 6274.339844, "rotation": [ 0.328460, -0.071144, -0.091913, 0.937339] }, { "keytime": 6307.673340, "rotation": [ 0.328779, -0.070956, -0.091813, 0.937251] }, { "keytime": 6341.006836, "rotation": [ 0.329083, -0.070779, -0.091718, 0.937167] }, { "keytime": 6374.340332, "rotation": [ 0.329351, -0.070621, -0.091634, 0.937093] }, { "keytime": 6407.673828, "rotation": [ 0.329585, -0.070484, -0.091560, 0.937028] }, { "keytime": 6441.007324, "rotation": [ 0.329799, -0.070359, -0.091493, 0.936969] }, { "keytime": 6474.340820, "rotation": [ 0.329979, -0.070253, -0.091437, 0.936919] }, { "keytime": 6507.674316, "rotation": [ 0.330132, -0.070163, -0.091389, 0.936877] }, { "keytime": 6541.007812, "rotation": [ 0.330262, -0.070087, -0.091348, 0.936841] }, { "keytime": 6574.341309, "rotation": [ 0.330351, -0.070034, -0.091320, 0.936816] }, { "keytime": 6607.674805, "rotation": [ 0.330414, -0.069998, -0.091301, 0.936798] } ] }, { "boneId": "Bone_002", "keyframes": [ { "keytime": 41.000000, "rotation": [-0.293120, 0.037612, 0.099744, 0.950114] }, { "keytime": 74.333328, "rotation": [-0.293146, 0.037614, 0.099760, 0.950104] }, { "keytime": 107.666664, "rotation": [-0.293210, 0.037619, 0.099801, 0.950080] }, { "keytime": 141.000000, "rotation": [-0.293317, 0.037627, 0.099868, 0.950040] }, { "keytime": 174.333328, "rotation": [-0.293459, 0.037638, 0.099958, 0.949986] }, { "keytime": 207.666656, "rotation": [-0.293642, 0.037652, 0.100073, 0.949917] }, { "keytime": 240.999985, "rotation": [-0.293876, 0.037670, 0.100220, 0.949828] }, { "keytime": 274.333313, "rotation": [-0.294158, 0.037691, 0.100398, 0.949721] }, { "keytime": 307.666656, "rotation": [-0.294471, 0.037715, 0.100596, 0.949602] }, { "keytime": 341.000000, "rotation": [-0.294835, 0.037743, 0.100825, 0.949464] }, { "keytime": 374.333344, "rotation": [-0.295228, 0.037773, 0.101073, 0.949314] }, { "keytime": 407.666687, "rotation": [-0.295672, 0.037807, 0.101353, 0.949145] }, { "keytime": 441.000031, "rotation": [-0.296169, 0.037846, 0.101666, 0.948955] }, { "keytime": 474.333374, "rotation": [-0.296690, 0.037886, 0.101994, 0.948756] }, { "keytime": 507.666718, "rotation": [-0.297247, 0.037929, 0.102345, 0.948542] }, { "keytime": 541.000061, "rotation": [-0.297860, 0.037977, 0.102732, 0.948305] }, { "keytime": 574.333374, "rotation": [-0.298504, 0.038028, 0.103137, 0.948057] }, { "keytime": 607.666687, "rotation": [-0.299181, 0.038081, 0.103564, 0.947795] }, { "keytime": 641.000000, "rotation": [-0.299914, 0.038139, 0.104025, 0.947510] }, { "keytime": 674.333313, "rotation": [-0.300658, 0.038198, 0.104494, 0.947221] }, { "keytime": 707.666626, "rotation": [-0.301434, 0.038260, 0.104983, 0.946917] }, { "keytime": 740.999939, "rotation": [-0.302249, 0.038326, 0.105497, 0.946598] }, { "keytime": 807.666565, "rotation": [-0.303989, 0.038467, 0.106592, 0.945912] }, { "keytime": 840.999878, "rotation": [-0.304884, 0.038540, 0.107155, 0.945557] }, { "keytime": 907.666504, "rotation": [-0.306778, 0.038697, 0.108348, 0.944802] }, { "keytime": 940.999817, "rotation": [-0.307743, 0.038777, 0.108955, 0.944415] }, { "keytime": 974.333130, "rotation": [-0.308754, 0.038862, 0.109591, 0.944008] }, { "keytime": 1007.666443, "rotation": [-0.309750, 0.038946, 0.110217, 0.943605] }, { "keytime": 1040.999756, "rotation": [-0.310758, 0.039032, 0.110852, 0.943196] }, { "keytime": 1074.333130, "rotation": [-0.311809, 0.039123, 0.111513, 0.942767] }, { "keytime": 1107.666504, "rotation": [-0.312836, 0.039212, 0.112159, 0.942346] }, { "keytime": 1140.999878, "rotation": [-0.313867, 0.039302, 0.112806, 0.941922] }, { "keytime": 1174.333252, "rotation": [-0.314931, 0.039396, 0.113475, 0.941483] }, { "keytime": 1207.666626, "rotation": [-0.315963, 0.039489, 0.114123, 0.941055] }, { "keytime": 1241.000000, "rotation": [-0.317021, 0.039584, 0.114787, 0.940614] }, { "keytime": 1274.333374, "rotation": [-0.318042, 0.039678, 0.115428, 0.940187] }, { "keytime": 1307.666748, "rotation": [-0.319054, 0.039772, 0.116062, 0.939762] }, { "keytime": 1341.000122, "rotation": [-0.320084, 0.039869, 0.116709, 0.939327] }, { "keytime": 1374.333496, "rotation": [-0.321072, 0.039962, 0.117327, 0.938909] }, { "keytime": 1407.666870, "rotation": [-0.322038, 0.040056, 0.117932, 0.938498] }, { "keytime": 1441.000244, "rotation": [-0.323015, 0.040152, 0.118543, 0.938081] }, { "keytime": 1474.333618, "rotation": [-0.323942, 0.040245, 0.119123, 0.937684] }, { "keytime": 1507.666992, "rotation": [-0.324847, 0.040337, 0.119688, 0.937295] }, { "keytime": 1541.000366, "rotation": [-0.325755, 0.040431, 0.120255, 0.936903] }, { "keytime": 1574.333740, "rotation": [-0.326601, 0.040521, 0.120782, 0.936537] }, { "keytime": 1607.667114, "rotation": [-0.327419, 0.040610, 0.121291, 0.936182] }, { "keytime": 1641.000488, "rotation": [-0.328232, 0.040701, 0.121796, 0.935827] }, { "keytime": 1674.333862, "rotation": [-0.328990, 0.040787, 0.122267, 0.935496] }, { "keytime": 1707.667236, "rotation": [-0.329717, 0.040872, 0.122716, 0.935178] }, { "keytime": 1741.000610, "rotation": [-0.330420, 0.040958, 0.123151, 0.934868] }, { "keytime": 1774.333984, "rotation": [-0.331068, 0.041039, 0.123550, 0.934583] }, { "keytime": 1807.667358, "rotation": [-0.331681, 0.041119, 0.123927, 0.934312] }, { "keytime": 1841.000732, "rotation": [-0.332276, 0.041200, 0.124291, 0.934049] }, { "keytime": 1874.334106, "rotation": [-0.332816, 0.041276, 0.124621, 0.933809] }, { "keytime": 1907.667480, "rotation": [-0.333307, 0.041350, 0.124920, 0.933591] }, { "keytime": 1941.000854, "rotation": [-0.333774, 0.041424, 0.125202, 0.933383] }, { "keytime": 1974.334229, "rotation": [-0.334189, 0.041494, 0.125451, 0.933198] }, { "keytime": 2007.667603, "rotation": [-0.334567, 0.041561, 0.125676, 0.933029] }, { "keytime": 2041.000977, "rotation": [-0.334915, 0.041629, 0.125882, 0.932873] }, { "keytime": 2074.334473, "rotation": [-0.335201, 0.041692, 0.126049, 0.932745] }, { "keytime": 2107.667725, "rotation": [-0.335450, 0.041753, 0.126191, 0.932634] }, { "keytime": 2141.000977, "rotation": [-0.335666, 0.041814, 0.126311, 0.932537] }, { "keytime": 2174.334229, "rotation": [-0.335837, 0.041871, 0.126403, 0.932461] }, { "keytime": 2207.667480, "rotation": [-0.335969, 0.041925, 0.126470, 0.932402] }, { "keytime": 2241.000732, "rotation": [-0.336053, 0.041978, 0.126506, 0.932364] }, { "keytime": 2274.333984, "rotation": [-0.336096, 0.042028, 0.126516, 0.932345] }, { "keytime": 2307.667236, "rotation": [-0.336112, 0.042078, 0.126509, 0.932338] }, { "keytime": 2341.000488, "rotation": [-0.336111, 0.042132, 0.126491, 0.932338] }, { "keytime": 2374.333740, "rotation": [-0.336104, 0.042190, 0.126471, 0.932341] }, { "keytime": 2407.666992, "rotation": [-0.336088, 0.042254, 0.126447, 0.932347] }, { "keytime": 2441.000244, "rotation": [-0.336066, 0.042326, 0.126419, 0.932355] }, { "keytime": 2474.333496, "rotation": [-0.336038, 0.042401, 0.126390, 0.932366] }, { "keytime": 2507.666748, "rotation": [-0.336004, 0.042481, 0.126357, 0.932379] }, { "keytime": 2541.000000, "rotation": [-0.335961, 0.042569, 0.126320, 0.932395] }, { "keytime": 2574.333252, "rotation": [-0.335911, 0.042661, 0.126280, 0.932415] }, { "keytime": 2607.666504, "rotation": [-0.335854, 0.042758, 0.126236, 0.932437] }, { "keytime": 2640.999756, "rotation": [-0.335790, 0.042860, 0.126190, 0.932461] }, { "keytime": 2674.333008, "rotation": [-0.335717, 0.042970, 0.126138, 0.932489] }, { "keytime": 2707.666260, "rotation": [-0.335639, 0.043083, 0.126085, 0.932520] }, { "keytime": 2740.999512, "rotation": [-0.335552, 0.043201, 0.126027, 0.932553] }, { "keytime": 2774.332764, "rotation": [-0.335454, 0.043328, 0.125963, 0.932591] }, { "keytime": 2807.666016, "rotation": [-0.335352, 0.043457, 0.125898, 0.932631] }, { "keytime": 2840.999268, "rotation": [-0.335243, 0.043589, 0.125829, 0.932673] }, { "keytime": 2874.332520, "rotation": [-0.335122, 0.043731, 0.125754, 0.932720] }, { "keytime": 2907.665771, "rotation": [-0.334995, 0.043875, 0.125677, 0.932770] }, { "keytime": 2940.999023, "rotation": [-0.334860, 0.044022, 0.125595, 0.932822] }, { "keytime": 2974.332275, "rotation": [-0.334713, 0.044178, 0.125508, 0.932879] }, { "keytime": 3007.665527, "rotation": [-0.334563, 0.044334, 0.125418, 0.932937] }, { "keytime": 3040.998779, "rotation": [-0.334405, 0.044494, 0.125325, 0.932999] }, { "keytime": 3074.332031, "rotation": [-0.334232, 0.044663, 0.125224, 0.933066] }, { "keytime": 3107.665283, "rotation": [-0.334057, 0.044832, 0.125122, 0.933135] }, { "keytime": 3140.998535, "rotation": [-0.333874, 0.045003, 0.125015, 0.933206] }, { "keytime": 3207.665039, "rotation": [-0.333478, 0.045360, 0.124787, 0.933361] }, { "keytime": 3240.998291, "rotation": [-0.333269, 0.045540, 0.124667, 0.933443] }, { "keytime": 3274.331543, "rotation": [-0.333047, 0.045729, 0.124539, 0.933530] }, { "keytime": 3307.664795, "rotation": [-0.332823, 0.045914, 0.124411, 0.933618] }, { "keytime": 3340.998047, "rotation": [-0.332593, 0.046100, 0.124279, 0.933708] }, { "keytime": 3374.331299, "rotation": [-0.332347, 0.046294, 0.124139, 0.933805] }, { "keytime": 3407.664551, "rotation": [-0.332100, 0.046485, 0.123998, 0.933902] }, { "keytime": 3440.997803, "rotation": [-0.331845, 0.046676, 0.123853, 0.934003] }, { "keytime": 3474.331055, "rotation": [-0.331576, 0.046874, 0.123699, 0.934109] }, { "keytime": 3507.664307, "rotation": [-0.331308, 0.047066, 0.123546, 0.934214] }, { "keytime": 3540.997559, "rotation": [-0.331034, 0.047258, 0.123389, 0.934323] }, { "keytime": 3574.330811, "rotation": [-0.330743, 0.047456, 0.123222, 0.934438] }, { "keytime": 3607.664062, "rotation": [-0.330454, 0.047647, 0.123056, 0.934552] }, { "keytime": 3640.997314, "rotation": [-0.330159, 0.047837, 0.122887, 0.934669] }, { "keytime": 3674.330566, "rotation": [-0.329850, 0.048032, 0.122709, 0.934791] }, { "keytime": 3707.663818, "rotation": [-0.329544, 0.048220, 0.122532, 0.934913] }, { "keytime": 3740.997070, "rotation": [-0.329231, 0.048405, 0.122352, 0.935037] }, { "keytime": 3774.330322, "rotation": [-0.328904, 0.048594, 0.122162, 0.935167] }, { "keytime": 3807.663574, "rotation": [-0.328582, 0.048774, 0.121975, 0.935295] }, { "keytime": 3840.996826, "rotation": [-0.328255, 0.048952, 0.121785, 0.935425] }, { "keytime": 3874.330078, "rotation": [-0.327914, 0.049133, 0.121586, 0.935561] }, { "keytime": 3907.663330, "rotation": [-0.327578, 0.049303, 0.121389, 0.935696] }, { "keytime": 3940.996582, "rotation": [-0.327238, 0.049470, 0.121189, 0.935832] }, { "keytime": 3974.329834, "rotation": [-0.326885, 0.049638, 0.120980, 0.935973] }, { "keytime": 4007.663086, "rotation": [-0.326539, 0.049797, 0.120775, 0.936112] }, { "keytime": 4040.996338, "rotation": [-0.326190, 0.049952, 0.120568, 0.936252] }, { "keytime": 4074.329590, "rotation": [-0.325826, 0.050105, 0.120352, 0.936399] }, { "keytime": 4107.663086, "rotation": [-0.325472, 0.050249, 0.120140, 0.936541] }, { "keytime": 4140.996094, "rotation": [-0.325115, 0.050388, 0.119926, 0.936685] }, { "keytime": 4174.329590, "rotation": [-0.324745, 0.050526, 0.119703, 0.936835] }, { "keytime": 4207.663086, "rotation": [-0.324384, 0.050654, 0.119485, 0.936980] }, { "keytime": 4240.996582, "rotation": [-0.324023, 0.050776, 0.119265, 0.937127] }, { "keytime": 4274.330078, "rotation": [-0.323649, 0.050895, 0.119036, 0.937279] }, { "keytime": 4307.663574, "rotation": [-0.323285, 0.051005, 0.118813, 0.937427] }, { "keytime": 4340.997070, "rotation": [-0.322920, 0.051110, 0.118589, 0.937575] }, { "keytime": 4374.330566, "rotation": [-0.322545, 0.051211, 0.118356, 0.937728] }, { "keytime": 4407.664062, "rotation": [-0.322179, 0.051301, 0.118129, 0.937877] }, { "keytime": 4440.997559, "rotation": [-0.321814, 0.051386, 0.117901, 0.938027] }, { "keytime": 4474.331055, "rotation": [-0.321437, 0.051466, 0.117665, 0.938181] }, { "keytime": 4507.664551, "rotation": [-0.321073, 0.051538, 0.117435, 0.938331] }, { "keytime": 4540.998047, "rotation": [-0.320708, 0.051604, 0.117204, 0.938481] }, { "keytime": 4574.331543, "rotation": [-0.320333, 0.051663, 0.116966, 0.938635] }, { "keytime": 4607.665039, "rotation": [-0.319971, 0.051714, 0.116734, 0.938785] }, { "keytime": 4640.998535, "rotation": [-0.319609, 0.051759, 0.116502, 0.938935] }, { "keytime": 4674.332031, "rotation": [-0.319237, 0.051798, 0.116262, 0.939089] }, { "keytime": 4707.665527, "rotation": [-0.318878, 0.051830, 0.116029, 0.939238] }, { "keytime": 4740.999023, "rotation": [-0.318520, 0.051854, 0.115796, 0.939387] }, { "keytime": 4774.332520, "rotation": [-0.318153, 0.051871, 0.115555, 0.939540] }, { "keytime": 4807.666016, "rotation": [-0.317799, 0.051882, 0.115322, 0.939688] }, { "keytime": 4840.999512, "rotation": [-0.317446, 0.051887, 0.115088, 0.939835] }, { "keytime": 4874.333008, "rotation": [-0.317084, 0.051886, 0.114848, 0.939987] }, { "keytime": 4907.666504, "rotation": [-0.316735, 0.051876, 0.114614, 0.940134] }, { "keytime": 4941.000000, "rotation": [-0.316378, 0.051859, 0.114374, 0.940284] }, { "keytime": 4974.333496, "rotation": [-0.316033, 0.051837, 0.114141, 0.940430] }, { "keytime": 5007.666992, "rotation": [-0.315687, 0.051807, 0.113906, 0.940576] }, { "keytime": 5041.000488, "rotation": [-0.315321, 0.051761, 0.113659, 0.940731] }, { "keytime": 5074.333984, "rotation": [-0.314940, 0.051688, 0.113403, 0.940894] }, { "keytime": 5107.667480, "rotation": [-0.314539, 0.051593, 0.113137, 0.941065] }, { "keytime": 5141.000977, "rotation": [-0.314107, 0.051472, 0.112851, 0.941250] }, { "keytime": 5174.334473, "rotation": [-0.313669, 0.051333, 0.112562, 0.941439] }, { "keytime": 5207.667969, "rotation": [-0.313211, 0.051171, 0.112262, 0.941636] }, { "keytime": 5241.001465, "rotation": [-0.312715, 0.050975, 0.111939, 0.941850] }, { "keytime": 5274.334961, "rotation": [-0.312215, 0.050763, 0.111615, 0.942065] }, { "keytime": 5307.668457, "rotation": [-0.311698, 0.050530, 0.111281, 0.942289] }, { "keytime": 5341.001953, "rotation": [-0.311148, 0.050269, 0.110927, 0.942526] }, { "keytime": 5374.335449, "rotation": [-0.310597, 0.049994, 0.110574, 0.942764] }, { "keytime": 5407.668945, "rotation": [-0.310027, 0.049693, 0.110210, 0.943010] }, { "keytime": 5441.002441, "rotation": [-0.309426, 0.049363, 0.109827, 0.943269] }, { "keytime": 5474.335938, "rotation": [-0.308830, 0.049025, 0.109449, 0.943526] }, { "keytime": 5507.669434, "rotation": [-0.308222, 0.048670, 0.109065, 0.943788] }, { "keytime": 5541.002930, "rotation": [-0.307585, 0.048287, 0.108663, 0.944062] }, { "keytime": 5574.336426, "rotation": [-0.306955, 0.047896, 0.108268, 0.944332] }, { "keytime": 5607.669922, "rotation": [-0.306319, 0.047492, 0.107868, 0.944604] }, { "keytime": 5641.003418, "rotation": [-0.305659, 0.047064, 0.107454, 0.944887] }, { "keytime": 5674.336914, "rotation": [-0.305015, 0.046638, 0.107052, 0.945162] }, { "keytime": 5707.670410, "rotation": [-0.304369, 0.046202, 0.106649, 0.945437] }, { "keytime": 5741.003906, "rotation": [-0.303705, 0.045745, 0.106236, 0.945719] }, { "keytime": 5774.337402, "rotation": [-0.303064, 0.045298, 0.105838, 0.945991] }, { "keytime": 5807.670898, "rotation": [-0.302428, 0.044847, 0.105444, 0.946260] }, { "keytime": 5841.004395, "rotation": [-0.301780, 0.044382, 0.105043, 0.946533] }, { "keytime": 5874.337891, "rotation": [-0.301160, 0.043931, 0.104660, 0.946794] }, { "keytime": 5907.671387, "rotation": [-0.300556, 0.043484, 0.104287, 0.947048] }, { "keytime": 5941.004883, "rotation": [-0.299947, 0.043030, 0.103912, 0.947303] }, { "keytime": 5974.338379, "rotation": [-0.299371, 0.042597, 0.103558, 0.947543] }, { "keytime": 6007.671875, "rotation": [-0.298812, 0.042172, 0.103215, 0.947776] }, { "keytime": 6041.005371, "rotation": [-0.298256, 0.041745, 0.102874, 0.948007] }, { "keytime": 6074.338867, "rotation": [-0.297743, 0.041348, 0.102559, 0.948220] }, { "keytime": 6107.672363, "rotation": [-0.297252, 0.040964, 0.102259, 0.948423] }, { "keytime": 6141.005859, "rotation": [-0.296770, 0.040585, 0.101964, 0.948622] }, { "keytime": 6174.339355, "rotation": [-0.296327, 0.040233, 0.101693, 0.948805] }, { "keytime": 6207.672852, "rotation": [-0.295908, 0.039900, 0.101438, 0.948977] }, { "keytime": 6241.006348, "rotation": [-0.295512, 0.039581, 0.101196, 0.949139] }, { "keytime": 6274.339844, "rotation": [-0.295155, 0.039293, 0.100979, 0.949286] }, { "keytime": 6307.673340, "rotation": [-0.294824, 0.039024, 0.100778, 0.949421] }, { "keytime": 6341.006836, "rotation": [-0.294513, 0.038770, 0.100588, 0.949548] }, { "keytime": 6374.340332, "rotation": [-0.294238, 0.038545, 0.100422, 0.949660] }, { "keytime": 6407.673828, "rotation": [-0.294001, 0.038349, 0.100278, 0.949756] }, { "keytime": 6441.007324, "rotation": [-0.293785, 0.038170, 0.100147, 0.949844] }, { "keytime": 6474.340820, "rotation": [-0.293604, 0.038019, 0.100037, 0.949918] }, { "keytime": 6507.674316, "rotation": [-0.293450, 0.037890, 0.099944, 0.949980] }, { "keytime": 6541.007812, "rotation": [-0.293321, 0.037782, 0.099865, 0.950033] }, { "keytime": 6574.341309, "rotation": [-0.293232, 0.037707, 0.099812, 0.950069] }, { "keytime": 6607.674805, "rotation": [-0.293170, 0.037655, 0.099774, 0.950094] } ] }, { "boneId": "Bone_003", "keyframes": [ { "keytime": 41.000000, "rotation": [ 0.531192, -0.470676, 0.576916, -0.404311] }, { "keytime": 74.333328, "rotation": [ 0.531183, -0.470680, 0.576922, -0.404310] }, { "keytime": 107.666664, "rotation": [ 0.531162, -0.470690, 0.576937, -0.404305] }, { "keytime": 141.000000, "rotation": [ 0.531127, -0.470706, 0.576961, -0.404297] }, { "keytime": 174.333328, "rotation": [ 0.531080, -0.470728, 0.576994, -0.404286] }, { "keytime": 207.666656, "rotation": [ 0.531020, -0.470756, 0.577037, -0.404272] }, { "keytime": 240.999985, "rotation": [ 0.530943, -0.470792, 0.577091, -0.404254] }, { "keytime": 274.333313, "rotation": [ 0.530850, -0.470835, 0.577156, -0.404232] }, { "keytime": 307.666656, "rotation": [ 0.530747, -0.470883, 0.577229, -0.404208] }, { "keytime": 341.000000, "rotation": [ 0.530627, -0.470939, 0.577313, -0.404180] }, { "keytime": 374.333344, "rotation": [ 0.530497, -0.470999, 0.577404, -0.404150] }, { "keytime": 407.666687, "rotation": [ 0.530351, -0.471067, 0.577507, -0.404116] }, { "keytime": 441.000031, "rotation": [ 0.530187, -0.471143, 0.577622, -0.404078] }, { "keytime": 474.333374, "rotation": [ 0.530015, -0.471223, 0.577743, -0.404038] }, { "keytime": 507.666718, "rotation": [ 0.529831, -0.471308, 0.577872, -0.403996] }, { "keytime": 541.000061, "rotation": [ 0.529628, -0.471402, 0.578014, -0.403949] }, { "keytime": 574.333374, "rotation": [ 0.529415, -0.471500, 0.578163, -0.403899] }, { "keytime": 607.666687, "rotation": [ 0.529191, -0.471604, 0.578320, -0.403847] }, { "keytime": 641.000000, "rotation": [ 0.528949, -0.471716, 0.578490, -0.403791] }, { "keytime": 674.333313, "rotation": [ 0.528703, -0.471830, 0.578662, -0.403733] }, { "keytime": 707.666626, "rotation": [ 0.528446, -0.471949, 0.578842, -0.403673] }, { "keytime": 740.999939, "rotation": [ 0.528175, -0.472073, 0.579030, -0.403610] }, { "keytime": 807.666565, "rotation": [ 0.527599, -0.472339, 0.579433, -0.403476] }, { "keytime": 840.999878, "rotation": [ 0.527302, -0.472476, 0.579640, -0.403406] }, { "keytime": 907.666504, "rotation": [ 0.526672, -0.472766, 0.580079, -0.403259] }, { "keytime": 940.999817, "rotation": [ 0.526351, -0.472913, 0.580302, -0.403184] }, { "keytime": 974.333130, "rotation": [ 0.526015, -0.473067, 0.580536, -0.403105] }, { "keytime": 1007.666443, "rotation": [ 0.525683, -0.473219, 0.580766, -0.403028] }, { "keytime": 1040.999756, "rotation": [ 0.525347, -0.473373, 0.580999, -0.402949] }, { "keytime": 1074.333130, "rotation": [ 0.524997, -0.473534, 0.581243, -0.402866] }, { "keytime": 1140.999878, "rotation": [ 0.524309, -0.473848, 0.581718, -0.402706] }, { "keytime": 1174.333252, "rotation": [ 0.523954, -0.474011, 0.581964, -0.402622] }, { "keytime": 1207.666626, "rotation": [ 0.523609, -0.474168, 0.582203, -0.402540] }, { "keytime": 1241.000000, "rotation": [ 0.523254, -0.474329, 0.582448, -0.402457] }, { "keytime": 1274.333374, "rotation": [ 0.522913, -0.474484, 0.582684, -0.402376] }, { "keytime": 1307.666748, "rotation": [ 0.522574, -0.474639, 0.582918, -0.402296] }, { "keytime": 1341.000122, "rotation": [ 0.522228, -0.474796, 0.583156, -0.402214] }, { "keytime": 1374.333496, "rotation": [ 0.521896, -0.474946, 0.583384, -0.402136] }, { "keytime": 1407.666870, "rotation": [ 0.521571, -0.475093, 0.583607, -0.402060] }, { "keytime": 1441.000244, "rotation": [ 0.521243, -0.475242, 0.583833, -0.401982] }, { "keytime": 1474.333618, "rotation": [ 0.520931, -0.475383, 0.584047, -0.401908] }, { "keytime": 1541.000366, "rotation": [ 0.520321, -0.475659, 0.584466, -0.401763] }, { "keytime": 1574.333740, "rotation": [ 0.520036, -0.475788, 0.584661, -0.401696] }, { "keytime": 1641.000488, "rotation": [ 0.519486, -0.476036, 0.585038, -0.401565] }, { "keytime": 1674.333862, "rotation": [ 0.519230, -0.476151, 0.585213, -0.401505] }, { "keytime": 1707.667236, "rotation": [ 0.518985, -0.476261, 0.585380, -0.401446] }, { "keytime": 1741.000610, "rotation": [ 0.518748, -0.476368, 0.585543, -0.401390] }, { "keytime": 1774.333984, "rotation": [ 0.518529, -0.476467, 0.585692, -0.401338] }, { "keytime": 1807.667358, "rotation": [ 0.518322, -0.476559, 0.585833, -0.401289] }, { "keytime": 1841.000732, "rotation": [ 0.518122, -0.476650, 0.585970, -0.401241] }, { "keytime": 1874.334106, "rotation": [ 0.517939, -0.476731, 0.586094, -0.401198] }, { "keytime": 1907.667480, "rotation": [ 0.517774, -0.476806, 0.586207, -0.401158] }, { "keytime": 1941.000854, "rotation": [ 0.517616, -0.476876, 0.586314, -0.401121] }, { "keytime": 1974.334229, "rotation": [ 0.517476, -0.476939, 0.586410, -0.401087] }, { "keytime": 2007.667603, "rotation": [ 0.517349, -0.476996, 0.586496, -0.401057] }, { "keytime": 2041.000977, "rotation": [ 0.517232, -0.477048, 0.586576, -0.401029] }, { "keytime": 2074.334473, "rotation": [ 0.517136, -0.477091, 0.586641, -0.401006] }, { "keytime": 2107.667725, "rotation": [ 0.517053, -0.477129, 0.586698, -0.400986] }, { "keytime": 2141.000977, "rotation": [ 0.516981, -0.477161, 0.586747, -0.400969] }, { "keytime": 2174.334229, "rotation": [ 0.516924, -0.477186, 0.586785, -0.400956] }, { "keytime": 2207.667480, "rotation": [ 0.516881, -0.477206, 0.586815, -0.400945] }, { "keytime": 2241.000732, "rotation": [ 0.516854, -0.477218, 0.586833, -0.400939] }, { "keytime": 2274.333984, "rotation": [ 0.516841, -0.477224, 0.586842, -0.400936] }, { "keytime": 2307.667236, "rotation": [ 0.516840, -0.477224, 0.586843, -0.400935] }, { "keytime": 2341.000488, "rotation": [ 0.516850, -0.477220, 0.586836, -0.400938] }, { "keytime": 2374.333740, "rotation": [ 0.516870, -0.477210, 0.586822, -0.400943] }, { "keytime": 2407.666992, "rotation": [ 0.516903, -0.477196, 0.586799, -0.400952] }, { "keytime": 2441.000244, "rotation": [ 0.516948, -0.477175, 0.586768, -0.400964] }, { "keytime": 2474.333496, "rotation": [ 0.517001, -0.477151, 0.586731, -0.400978] }, { "keytime": 2507.666748, "rotation": [ 0.517065, -0.477123, 0.586687, -0.400994] }, { "keytime": 2541.000000, "rotation": [ 0.517141, -0.477088, 0.586634, -0.401014] }, { "keytime": 2574.333252, "rotation": [ 0.517229, -0.477049, 0.586573, -0.401037] }, { "keytime": 2607.666504, "rotation": [ 0.517326, -0.477005, 0.586506, -0.401063] }, { "keytime": 2640.999756, "rotation": [ 0.517434, -0.476956, 0.586431, -0.401091] }, { "keytime": 2674.333008, "rotation": [ 0.517555, -0.476901, 0.586347, -0.401123] }, { "keytime": 2707.666260, "rotation": [ 0.517683, -0.476843, 0.586258, -0.401156] }, { "keytime": 2740.999512, "rotation": [ 0.517824, -0.476780, 0.586160, -0.401193] }, { "keytime": 2774.332764, "rotation": [ 0.517979, -0.476709, 0.586052, -0.401234] }, { "keytime": 2807.666016, "rotation": [ 0.518140, -0.476637, 0.585940, -0.401276] }, { "keytime": 2840.999268, "rotation": [ 0.518310, -0.476560, 0.585822, -0.401320] }, { "keytime": 2874.332520, "rotation": [ 0.518496, -0.476476, 0.585693, -0.401369] }, { "keytime": 2907.665771, "rotation": [ 0.518688, -0.476389, 0.585559, -0.401419] }, { "keytime": 2940.999023, "rotation": [ 0.518890, -0.476297, 0.585419, -0.401472] }, { "keytime": 2974.332275, "rotation": [ 0.519106, -0.476199, 0.585268, -0.401528] }, { "keytime": 3007.665527, "rotation": [ 0.519325, -0.476099, 0.585115, -0.401585] }, { "keytime": 3040.998779, "rotation": [ 0.519553, -0.475996, 0.584956, -0.401645] }, { "keytime": 3107.665283, "rotation": [ 0.520045, -0.475772, 0.584613, -0.401773] }, { "keytime": 3140.998535, "rotation": [ 0.520299, -0.475657, 0.584435, -0.401839] }, { "keytime": 3207.665039, "rotation": [ 0.520837, -0.475412, 0.584059, -0.401979] }, { "keytime": 3240.998291, "rotation": [ 0.521114, -0.475285, 0.583865, -0.402051] }, { "keytime": 3274.331543, "rotation": [ 0.521405, -0.475152, 0.583661, -0.402127] }, { "keytime": 3307.664795, "rotation": [ 0.521694, -0.475021, 0.583459, -0.402202] }, { "keytime": 3340.998047, "rotation": [ 0.521988, -0.474886, 0.583253, -0.402278] }, { "keytime": 3374.331299, "rotation": [ 0.522296, -0.474745, 0.583037, -0.402358] }, { "keytime": 3407.664551, "rotation": [ 0.522600, -0.474606, 0.582823, -0.402437] }, { "keytime": 3440.997803, "rotation": [ 0.522908, -0.474465, 0.582607, -0.402517] }, { "keytime": 3474.331055, "rotation": [ 0.523229, -0.474318, 0.582381, -0.402600] }, { "keytime": 3507.664307, "rotation": [ 0.523543, -0.474173, 0.582160, -0.402682] }, { "keytime": 3540.997559, "rotation": [ 0.523859, -0.474028, 0.581937, -0.402763] }, { "keytime": 3574.330811, "rotation": [ 0.524187, -0.473877, 0.581706, -0.402848] }, { "keytime": 3640.997314, "rotation": [ 0.524827, -0.473583, 0.581254, -0.403014] }, { "keytime": 3674.330566, "rotation": [ 0.525156, -0.473431, 0.581021, -0.403099] }, { "keytime": 3740.997070, "rotation": [ 0.525794, -0.473136, 0.580570, -0.403264] }, { "keytime": 3774.330322, "rotation": [ 0.526120, -0.472985, 0.580339, -0.403348] }, { "keytime": 3807.663574, "rotation": [ 0.526434, -0.472840, 0.580116, -0.403429] }, { "keytime": 3840.996826, "rotation": [ 0.526745, -0.472696, 0.579895, -0.403509] }, { "keytime": 3874.330078, "rotation": [ 0.527063, -0.472549, 0.579670, -0.403590] }, { "keytime": 3907.663330, "rotation": [ 0.527367, -0.472408, 0.579454, -0.403668] }, { "keytime": 3940.996582, "rotation": [ 0.527665, -0.472269, 0.579242, -0.403745] }, { "keytime": 3974.329834, "rotation": [ 0.527968, -0.472128, 0.579026, -0.403823] }, { "keytime": 4007.663086, "rotation": [ 0.528257, -0.471994, 0.578821, -0.403897] }, { "keytime": 4074.329590, "rotation": [ 0.528824, -0.471730, 0.578417, -0.404043] }, { "keytime": 4107.663086, "rotation": [ 0.529093, -0.471605, 0.578225, -0.404111] }, { "keytime": 4174.329590, "rotation": [ 0.529617, -0.471360, 0.577850, -0.404246] }, { "keytime": 4207.663086, "rotation": [ 0.529864, -0.471244, 0.577674, -0.404309] }, { "keytime": 4274.330078, "rotation": [ 0.530336, -0.471024, 0.577336, -0.404430] }, { "keytime": 4307.663574, "rotation": [ 0.530556, -0.470921, 0.577179, -0.404486] }, { "keytime": 4340.997070, "rotation": [ 0.530768, -0.470821, 0.577027, -0.404540] }, { "keytime": 4374.330566, "rotation": [ 0.530976, -0.470724, 0.576878, -0.404593] }, { "keytime": 4407.664062, "rotation": [ 0.531167, -0.470634, 0.576741, -0.404642] }, { "keytime": 4440.997559, "rotation": [ 0.531348, -0.470549, 0.576611, -0.404688] }, { "keytime": 4474.331055, "rotation": [ 0.531525, -0.470466, 0.576484, -0.404733] }, { "keytime": 4507.664551, "rotation": [ 0.531687, -0.470390, 0.576367, -0.404775] }, { "keytime": 4540.998047, "rotation": [ 0.531840, -0.470318, 0.576258, -0.404814] }, { "keytime": 4574.331543, "rotation": [ 0.531984, -0.470251, 0.576154, -0.404850] }, { "keytime": 4607.665039, "rotation": [ 0.532113, -0.470190, 0.576061, -0.404883] }, { "keytime": 4640.998535, "rotation": [ 0.532233, -0.470133, 0.575975, -0.404914] }, { "keytime": 4674.332031, "rotation": [ 0.532347, -0.470080, 0.575893, -0.404943] }, { "keytime": 4707.665527, "rotation": [ 0.532446, -0.470033, 0.575822, -0.404968] }, { "keytime": 4740.999023, "rotation": [ 0.532533, -0.469992, 0.575759, -0.404990] }, { "keytime": 4774.332520, "rotation": [ 0.532612, -0.469955, 0.575703, -0.405010] }, { "keytime": 4807.666016, "rotation": [ 0.532678, -0.469924, 0.575655, -0.405027] }, { "keytime": 4840.999512, "rotation": [ 0.532735, -0.469897, 0.575614, -0.405042] }, { "keytime": 4874.333008, "rotation": [ 0.532782, -0.469875, 0.575580, -0.405054] }, { "keytime": 4907.666504, "rotation": [ 0.532816, -0.469859, 0.575556, -0.405062] }, { "keytime": 4941.000000, "rotation": [ 0.532839, -0.469848, 0.575539, -0.405068] }, { "keytime": 4974.333496, "rotation": [ 0.532852, -0.469842, 0.575529, -0.405072] }, { "keytime": 5007.666992, "rotation": [ 0.532857, -0.469840, 0.575526, -0.405073] }, { "keytime": 5041.000488, "rotation": [ 0.532855, -0.469841, 0.575528, -0.405072] }, { "keytime": 5074.333984, "rotation": [ 0.532849, -0.469844, 0.575532, -0.405070] }, { "keytime": 5107.667480, "rotation": [ 0.532841, -0.469848, 0.575539, -0.405066] }, { "keytime": 5141.000977, "rotation": [ 0.532830, -0.469854, 0.575548, -0.405061] }, { "keytime": 5174.334473, "rotation": [ 0.532816, -0.469860, 0.575560, -0.405055] }, { "keytime": 5207.667969, "rotation": [ 0.532800, -0.469868, 0.575574, -0.405047] }, { "keytime": 5241.001465, "rotation": [ 0.532779, -0.469879, 0.575591, -0.405037] }, { "keytime": 5274.334961, "rotation": [ 0.532756, -0.469891, 0.575610, -0.405027] }, { "keytime": 5307.668457, "rotation": [ 0.532730, -0.469904, 0.575631, -0.405016] }, { "keytime": 5374.335449, "rotation": [ 0.532671, -0.469933, 0.575682, -0.404988] }, { "keytime": 5407.668945, "rotation": [ 0.532636, -0.469951, 0.575710, -0.404972] }, { "keytime": 5474.335938, "rotation": [ 0.532560, -0.469990, 0.575774, -0.404937] }, { "keytime": 5507.669434, "rotation": [ 0.532519, -0.470010, 0.575809, -0.404918] }, { "keytime": 5574.336426, "rotation": [ 0.532428, -0.470056, 0.575884, -0.404877] }, { "keytime": 5607.669922, "rotation": [ 0.532381, -0.470079, 0.575924, -0.404856] }, { "keytime": 5707.670410, "rotation": [ 0.532228, -0.470156, 0.576051, -0.404786] }, { "keytime": 5807.670898, "rotation": [ 0.532067, -0.470237, 0.576187, -0.404711] }, { "keytime": 5941.004883, "rotation": [ 0.531850, -0.470345, 0.576369, -0.404611] }, { "keytime": 6041.005371, "rotation": [ 0.531696, -0.470422, 0.576499, -0.404539] }, { "keytime": 6141.005859, "rotation": [ 0.531554, -0.470493, 0.576615, -0.404476] }, { "keytime": 6207.672852, "rotation": [ 0.531470, -0.470536, 0.576684, -0.404439] }, { "keytime": 6241.006348, "rotation": [ 0.531432, -0.470555, 0.576716, -0.404421] }, { "keytime": 6274.339844, "rotation": [ 0.531397, -0.470573, 0.576746, -0.404405] }, { "keytime": 6341.006836, "rotation": [ 0.531333, -0.470605, 0.576798, -0.404376] }, { "keytime": 6374.340332, "rotation": [ 0.531306, -0.470619, 0.576821, -0.404364] }, { "keytime": 6441.007324, "rotation": [ 0.531260, -0.470641, 0.576860, -0.404342] }, { "keytime": 6474.340820, "rotation": [ 0.531242, -0.470650, 0.576875, -0.404334] }, { "keytime": 6507.674316, "rotation": [ 0.531226, -0.470658, 0.576888, -0.404327] }, { "keytime": 6541.007812, "rotation": [ 0.531212, -0.470665, 0.576899, -0.404321] }, { "keytime": 6574.341309, "rotation": [ 0.531204, -0.470670, 0.576906, -0.404317] }, { "keytime": 6607.674805, "rotation": [ 0.531197, -0.470673, 0.576912, -0.404314] } ] }, { "boneId": "Bone_018", "keyframes": [ { "keytime": 41.000000, "rotation": [ 0.029072, 0.144451, 0.060785, 0.987215] }, { "keytime": 107.666664, "rotation": [ 0.029073, 0.144450, 0.060788, 0.987215] }, { "keytime": 174.333328, "rotation": [ 0.029075, 0.144449, 0.060798, 0.987215] }, { "keytime": 207.666656, "rotation": [ 0.029077, 0.144449, 0.060806, 0.987214] }, { "keytime": 274.333313, "rotation": [ 0.029082, 0.144449, 0.060827, 0.987213] }, { "keytime": 307.666656, "rotation": [ 0.029085, 0.144449, 0.060839, 0.987212] }, { "keytime": 374.333344, "rotation": [ 0.029092, 0.144449, 0.060870, 0.987210] }, { "keytime": 441.000031, "rotation": [ 0.029101, 0.144450, 0.060908, 0.987207] }, { "keytime": 507.666718, "rotation": [ 0.029111, 0.144451, 0.060951, 0.987204] }, { "keytime": 574.333374, "rotation": [ 0.029122, 0.144452, 0.061002, 0.987200] }, { "keytime": 607.666687, "rotation": [ 0.029129, 0.144453, 0.061030, 0.987198] }, { "keytime": 707.666626, "rotation": [ 0.029151, 0.144456, 0.061121, 0.987191] }, { "keytime": 740.999939, "rotation": [ 0.029158, 0.144457, 0.061154, 0.987189] }, { "keytime": 840.999878, "rotation": [ 0.029183, 0.144461, 0.061260, 0.987181] }, { "keytime": 940.999817, "rotation": [ 0.029209, 0.144465, 0.061377, 0.987172] }, { "keytime": 1040.999756, "rotation": [ 0.029238, 0.144470, 0.061499, 0.987163] }, { "keytime": 1241.000000, "rotation": [ 0.029295, 0.144480, 0.061754, 0.987144] }, { "keytime": 1374.333496, "rotation": [ 0.029332, 0.144486, 0.061919, 0.987132] }, { "keytime": 1441.000244, "rotation": [ 0.029352, 0.144490, 0.061998, 0.987126] }, { "keytime": 1541.000366, "rotation": [ 0.029378, 0.144497, 0.062110, 0.987117] }, { "keytime": 1641.000488, "rotation": [ 0.029401, 0.144504, 0.062211, 0.987109] }, { "keytime": 1741.000610, "rotation": [ 0.029422, 0.144510, 0.062301, 0.987102] }, { "keytime": 1841.000732, "rotation": [ 0.029439, 0.144515, 0.062377, 0.987096] }, { "keytime": 1907.667480, "rotation": [ 0.029449, 0.144518, 0.062419, 0.987092] }, { "keytime": 1941.000854, "rotation": [ 0.029453, 0.144519, 0.062438, 0.987091] }, { "keytime": 2007.667603, "rotation": [ 0.029460, 0.144524, 0.062470, 0.987088] }, { "keytime": 2041.000977, "rotation": [ 0.029464, 0.144526, 0.062485, 0.987086] }, { "keytime": 2107.667725, "rotation": [ 0.029468, 0.144531, 0.062506, 0.987084] }, { "keytime": 2174.334229, "rotation": [ 0.029471, 0.144535, 0.062522, 0.987083] }, { "keytime": 2241.000732, "rotation": [ 0.029473, 0.144539, 0.062531, 0.987081] }, { "keytime": 2307.667236, "rotation": [ 0.029474, 0.144543, 0.062532, 0.987081] }, { "keytime": 2374.333740, "rotation": [ 0.029473, 0.144546, 0.062528, 0.987081] }, { "keytime": 2441.000244, "rotation": [ 0.029469, 0.144550, 0.062518, 0.987081] }, { "keytime": 2507.666748, "rotation": [ 0.029465, 0.144556, 0.062502, 0.987081] }, { "keytime": 2574.333252, "rotation": [ 0.029459, 0.144562, 0.062479, 0.987082] }, { "keytime": 2640.999756, "rotation": [ 0.029452, 0.144567, 0.062451, 0.987083] }, { "keytime": 2707.666260, "rotation": [ 0.029443, 0.144572, 0.062416, 0.987085] }, { "keytime": 2740.999512, "rotation": [ 0.029437, 0.144575, 0.062397, 0.987086] }, { "keytime": 2807.666016, "rotation": [ 0.029426, 0.144582, 0.062353, 0.987088] }, { "keytime": 2840.999268, "rotation": [ 0.029420, 0.144586, 0.062329, 0.987089] }, { "keytime": 2907.665771, "rotation": [ 0.029406, 0.144592, 0.062277, 0.987092] }, { "keytime": 2940.999023, "rotation": [ 0.029399, 0.144596, 0.062249, 0.987093] }, { "keytime": 3040.998779, "rotation": [ 0.029375, 0.144605, 0.062157, 0.987098] }, { "keytime": 3140.998535, "rotation": [ 0.029349, 0.144617, 0.062054, 0.987104] }, { "keytime": 3207.665039, "rotation": [ 0.029330, 0.144626, 0.061979, 0.987108] }, { "keytime": 3307.664795, "rotation": [ 0.029299, 0.144637, 0.061859, 0.987114] }, { "keytime": 3440.997803, "rotation": [ 0.029256, 0.144652, 0.061691, 0.987124] }, { "keytime": 3874.330078, "rotation": [ 0.029109, 0.144700, 0.061111, 0.987158] }, { "keytime": 3974.329834, "rotation": [ 0.029077, 0.144709, 0.060984, 0.987165] }, { "keytime": 4074.329590, "rotation": [ 0.029046, 0.144718, 0.060865, 0.987172] }, { "keytime": 4174.329590, "rotation": [ 0.029018, 0.144726, 0.060753, 0.987178] }, { "keytime": 4274.330078, "rotation": [ 0.028993, 0.144736, 0.060652, 0.987184] }, { "keytime": 4374.330566, "rotation": [ 0.028970, 0.144742, 0.060562, 0.987189] }, { "keytime": 4474.331055, "rotation": [ 0.028950, 0.144748, 0.060485, 0.987194] }, { "keytime": 4540.998047, "rotation": [ 0.028938, 0.144752, 0.060441, 0.987196] }, { "keytime": 4574.331543, "rotation": [ 0.028933, 0.144753, 0.060421, 0.987197] }, { "keytime": 4640.998535, "rotation": [ 0.028924, 0.144755, 0.060386, 0.987200] }, { "keytime": 4707.665527, "rotation": [ 0.028917, 0.144757, 0.060356, 0.987201] }, { "keytime": 4774.332520, "rotation": [ 0.028911, 0.144759, 0.060333, 0.987203] }, { "keytime": 4840.999512, "rotation": [ 0.028907, 0.144760, 0.060315, 0.987204] }, { "keytime": 4907.666504, "rotation": [ 0.028904, 0.144760, 0.060304, 0.987204] }, { "keytime": 4974.333496, "rotation": [ 0.028902, 0.144761, 0.060299, 0.987205] }, { "keytime": 5041.000488, "rotation": [ 0.028902, 0.144762, 0.060299, 0.987205] }, { "keytime": 5141.000977, "rotation": [ 0.028905, 0.144757, 0.060306, 0.987205] }, { "keytime": 5207.667969, "rotation": [ 0.028908, 0.144751, 0.060315, 0.987205] }, { "keytime": 5307.668457, "rotation": [ 0.028915, 0.144738, 0.060335, 0.987205] }, { "keytime": 5374.335449, "rotation": [ 0.028921, 0.144727, 0.060353, 0.987206] }, { "keytime": 5474.335938, "rotation": [ 0.028933, 0.144706, 0.060385, 0.987207] }, { "keytime": 5541.002930, "rotation": [ 0.028942, 0.144690, 0.060410, 0.987207] }, { "keytime": 5674.336914, "rotation": [ 0.028962, 0.144654, 0.060467, 0.987208] }, { "keytime": 6041.005371, "rotation": [ 0.029020, 0.144546, 0.060637, 0.987212] }, { "keytime": 6141.005859, "rotation": [ 0.029033, 0.144519, 0.060679, 0.987213] }, { "keytime": 6207.672852, "rotation": [ 0.029042, 0.144503, 0.060703, 0.987214] }, { "keytime": 6341.006836, "rotation": [ 0.029056, 0.144478, 0.060743, 0.987214] }, { "keytime": 6441.007324, "rotation": [ 0.029064, 0.144464, 0.060764, 0.987215] }, { "keytime": 6507.674316, "rotation": [ 0.029068, 0.144458, 0.060775, 0.987215] }, { "keytime": 6574.341309, "rotation": [ 0.029070, 0.144453, 0.060781, 0.987215] }, { "keytime": 6607.674805, "rotation": [ 0.029070, 0.144452, 0.060783, 0.987215] } ] }, { "boneId": "Bone_024", "keyframes": [ { "keytime": 41.000000, "rotation": [-0.018797, 0.111843, 0.071235, 0.990991] }, { "keytime": 74.333328, "rotation": [-0.018802, 0.111849, 0.071248, 0.990989] }, { "keytime": 107.666664, "rotation": [-0.018816, 0.111865, 0.071280, 0.990985] }, { "keytime": 141.000000, "rotation": [-0.018839, 0.111892, 0.071333, 0.990978] }, { "keytime": 174.333328, "rotation": [-0.018869, 0.111927, 0.071405, 0.990968] }, { "keytime": 207.666656, "rotation": [-0.018908, 0.111973, 0.071496, 0.990956] }, { "keytime": 240.999985, "rotation": [-0.018959, 0.112031, 0.071613, 0.990940] }, { "keytime": 274.333313, "rotation": [-0.019019, 0.112101, 0.071753, 0.990920] }, { "keytime": 307.666656, "rotation": [-0.019086, 0.112180, 0.071910, 0.990899] }, { "keytime": 341.000000, "rotation": [-0.019164, 0.112270, 0.072092, 0.990874] }, { "keytime": 374.333344, "rotation": [-0.019248, 0.112368, 0.072288, 0.990847] }, { "keytime": 407.666687, "rotation": [-0.019344, 0.112479, 0.072510, 0.990816] }, { "keytime": 441.000031, "rotation": [-0.019450, 0.112603, 0.072758, 0.990782] }, { "keytime": 474.333374, "rotation": [-0.019562, 0.112733, 0.073018, 0.990746] }, { "keytime": 507.666718, "rotation": [-0.019682, 0.112872, 0.073297, 0.990707] }, { "keytime": 541.000061, "rotation": [-0.019813, 0.113025, 0.073603, 0.990664] }, { "keytime": 574.333374, "rotation": [-0.019951, 0.113186, 0.073925, 0.990619] }, { "keytime": 607.666687, "rotation": [-0.020097, 0.113355, 0.074264, 0.990571] }, { "keytime": 641.000000, "rotation": [-0.020254, 0.113537, 0.074630, 0.990520] }, { "keytime": 674.333313, "rotation": [-0.020414, 0.113723, 0.075002, 0.990467] }, { "keytime": 707.666626, "rotation": [-0.020581, 0.113917, 0.075391, 0.990412] }, { "keytime": 740.999939, "rotation": [-0.020756, 0.114121, 0.075799, 0.990354] }, { "keytime": 807.666565, "rotation": [-0.021130, 0.114555, 0.076670, 0.990228] }, { "keytime": 840.999878, "rotation": [-0.021322, 0.114779, 0.077118, 0.990164] }, { "keytime": 907.666504, "rotation": [-0.021730, 0.115252, 0.078068, 0.990025] }, { "keytime": 940.999817, "rotation": [-0.021938, 0.115494, 0.078552, 0.989954] }, { "keytime": 974.333130, "rotation": [-0.022155, 0.115746, 0.079059, 0.989880] }, { "keytime": 1007.666443, "rotation": [-0.022370, 0.115995, 0.079559, 0.989806] }, { "keytime": 1040.999756, "rotation": [-0.022587, 0.116248, 0.080065, 0.989730] }, { "keytime": 1074.333130, "rotation": [-0.022815, 0.116511, 0.080593, 0.989651] }, { "keytime": 1107.666504, "rotation": [-0.023036, 0.116768, 0.081109, 0.989574] }, { "keytime": 1140.999878, "rotation": [-0.023258, 0.117026, 0.081626, 0.989495] }, { "keytime": 1174.333252, "rotation": [-0.023487, 0.117292, 0.082161, 0.989414] }, { "keytime": 1207.666626, "rotation": [-0.023710, 0.117550, 0.082680, 0.989335] }, { "keytime": 1241.000000, "rotation": [-0.023939, 0.117816, 0.083213, 0.989253] }, { "keytime": 1274.333374, "rotation": [-0.024160, 0.118072, 0.083726, 0.989174] }, { "keytime": 1307.666748, "rotation": [-0.024378, 0.118326, 0.084236, 0.989095] }, { "keytime": 1341.000122, "rotation": [-0.024601, 0.118584, 0.084755, 0.989014] }, { "keytime": 1374.333496, "rotation": [-0.024815, 0.118832, 0.085252, 0.988936] }, { "keytime": 1407.666870, "rotation": [-0.025024, 0.119074, 0.085739, 0.988860] }, { "keytime": 1441.000244, "rotation": [-0.025236, 0.119319, 0.086231, 0.988782] }, { "keytime": 1474.333618, "rotation": [-0.025436, 0.119552, 0.086699, 0.988708] }, { "keytime": 1541.000366, "rotation": [-0.025829, 0.120007, 0.087613, 0.988562] }, { "keytime": 1574.333740, "rotation": [-0.026012, 0.120219, 0.088040, 0.988494] }, { "keytime": 1607.667114, "rotation": [-0.026190, 0.120424, 0.088453, 0.988427] }, { "keytime": 1641.000488, "rotation": [-0.026366, 0.120628, 0.088863, 0.988361] }, { "keytime": 1674.333862, "rotation": [-0.026530, 0.120819, 0.089245, 0.988299] }, { "keytime": 1707.667236, "rotation": [-0.026688, 0.121001, 0.089612, 0.988239] }, { "keytime": 1741.000610, "rotation": [-0.026840, 0.121178, 0.089967, 0.988181] }, { "keytime": 1774.333984, "rotation": [-0.026981, 0.121340, 0.090294, 0.988127] }, { "keytime": 1807.667358, "rotation": [-0.027113, 0.121494, 0.090603, 0.988077] }, { "keytime": 1841.000732, "rotation": [-0.027242, 0.121643, 0.090903, 0.988027] }, { "keytime": 1874.334106, "rotation": [-0.027359, 0.121778, 0.091175, 0.987982] }, { "keytime": 1907.667480, "rotation": [-0.027465, 0.121901, 0.091422, 0.987941] }, { "keytime": 1941.000854, "rotation": [-0.027567, 0.122018, 0.091658, 0.987902] }, { "keytime": 1974.334229, "rotation": [-0.027656, 0.122122, 0.091867, 0.987867] }, { "keytime": 2007.667603, "rotation": [-0.027738, 0.122216, 0.092056, 0.987836] }, { "keytime": 2041.000977, "rotation": [-0.027813, 0.122303, 0.092231, 0.987807] }, { "keytime": 2074.334473, "rotation": [-0.027874, 0.122374, 0.092374, 0.987783] }, { "keytime": 2107.667725, "rotation": [-0.027928, 0.122436, 0.092498, 0.987762] }, { "keytime": 2141.000977, "rotation": [-0.027974, 0.122489, 0.092606, 0.987744] }, { "keytime": 2174.334229, "rotation": [-0.028010, 0.122532, 0.092690, 0.987730] }, { "keytime": 2207.667480, "rotation": [-0.028038, 0.122564, 0.092755, 0.987719] }, { "keytime": 2241.000732, "rotation": [-0.028055, 0.122584, 0.092796, 0.987712] }, { "keytime": 2274.333984, "rotation": [-0.028064, 0.122593, 0.092815, 0.987709] }, { "keytime": 2307.667236, "rotation": [-0.028065, 0.122595, 0.092817, 0.987708] }, { "keytime": 2341.000488, "rotation": [-0.028059, 0.122589, 0.092804, 0.987710] }, { "keytime": 2374.333740, "rotation": [-0.028047, 0.122578, 0.092779, 0.987715] }, { "keytime": 2407.666992, "rotation": [-0.028028, 0.122559, 0.092736, 0.987722] }, { "keytime": 2441.000244, "rotation": [-0.028003, 0.122533, 0.092679, 0.987731] }, { "keytime": 2474.333496, "rotation": [-0.027972, 0.122503, 0.092611, 0.987742] }, { "keytime": 2507.666748, "rotation": [-0.027935, 0.122466, 0.092529, 0.987755] }, { "keytime": 2541.000000, "rotation": [-0.027892, 0.122423, 0.092432, 0.987771] }, { "keytime": 2574.333252, "rotation": [-0.027841, 0.122373, 0.092320, 0.987789] }, { "keytime": 2607.666504, "rotation": [-0.027785, 0.122317, 0.092195, 0.987809] }, { "keytime": 2640.999756, "rotation": [-0.027724, 0.122255, 0.092057, 0.987831] }, { "keytime": 2674.333008, "rotation": [-0.027654, 0.122185, 0.091902, 0.987856] }, { "keytime": 2707.666260, "rotation": [-0.027581, 0.122112, 0.091738, 0.987883] }, { "keytime": 2740.999512, "rotation": [-0.027500, 0.122031, 0.091557, 0.987912] }, { "keytime": 2774.332764, "rotation": [-0.027410, 0.121941, 0.091358, 0.987944] }, { "keytime": 2807.666016, "rotation": [-0.027318, 0.121849, 0.091151, 0.987977] }, { "keytime": 2840.999268, "rotation": [-0.027220, 0.121750, 0.090933, 0.988012] }, { "keytime": 2874.332520, "rotation": [-0.027114, 0.121643, 0.090695, 0.988050] }, { "keytime": 2907.665771, "rotation": [-0.027003, 0.121532, 0.090447, 0.988089] }, { "keytime": 2940.999023, "rotation": [-0.026887, 0.121415, 0.090188, 0.988130] }, { "keytime": 2974.332275, "rotation": [-0.026762, 0.121290, 0.089910, 0.988174] }, { "keytime": 3007.665527, "rotation": [-0.026636, 0.121162, 0.089628, 0.988219] }, { "keytime": 3040.998779, "rotation": [-0.026505, 0.121030, 0.089334, 0.988265] }, { "keytime": 3107.665283, "rotation": [-0.026222, 0.120743, 0.088700, 0.988365] }, { "keytime": 3140.998535, "rotation": [-0.026076, 0.120595, 0.088372, 0.988417] }, { "keytime": 3207.665039, "rotation": [-0.025766, 0.120280, 0.087678, 0.988525] }, { "keytime": 3240.998291, "rotation": [-0.025606, 0.120117, 0.087320, 0.988581] }, { "keytime": 3274.331543, "rotation": [-0.025438, 0.119946, 0.086943, 0.988639] }, { "keytime": 3307.664795, "rotation": [-0.025272, 0.119775, 0.086569, 0.988697] }, { "keytime": 3340.998047, "rotation": [-0.025103, 0.119602, 0.086189, 0.988755] }, { "keytime": 3374.331299, "rotation": [-0.024925, 0.119420, 0.085790, 0.988816] }, { "keytime": 3407.664551, "rotation": [-0.024749, 0.119239, 0.085395, 0.988877] }, { "keytime": 3440.997803, "rotation": [-0.024571, 0.119056, 0.084995, 0.988938] }, { "keytime": 3474.331055, "rotation": [-0.024386, 0.118865, 0.084578, 0.989001] }, { "keytime": 3507.664307, "rotation": [-0.024204, 0.118677, 0.084169, 0.989063] }, { "keytime": 3540.997559, "rotation": [-0.024022, 0.118487, 0.083757, 0.989125] }, { "keytime": 3574.330811, "rotation": [-0.023832, 0.118290, 0.083329, 0.989189] }, { "keytime": 3640.997314, "rotation": [-0.023462, 0.117904, 0.082494, 0.989314] }, { "keytime": 3674.330566, "rotation": [-0.023271, 0.117704, 0.082064, 0.989378] }, { "keytime": 3740.997070, "rotation": [-0.022902, 0.117317, 0.081228, 0.989502] }, { "keytime": 3774.330322, "rotation": [-0.022714, 0.117117, 0.080800, 0.989565] }, { "keytime": 3807.663574, "rotation": [-0.022532, 0.116923, 0.080387, 0.989626] }, { "keytime": 3840.996826, "rotation": [-0.022351, 0.116731, 0.079977, 0.989686] }, { "keytime": 3874.330078, "rotation": [-0.022167, 0.116535, 0.079559, 0.989747] }, { "keytime": 3907.663330, "rotation": [-0.021991, 0.116346, 0.079159, 0.989805] }, { "keytime": 3940.996582, "rotation": [-0.021818, 0.116159, 0.078764, 0.989862] }, { "keytime": 3974.329834, "rotation": [-0.021642, 0.115969, 0.078363, 0.989920] }, { "keytime": 4007.663086, "rotation": [-0.021474, 0.115787, 0.077980, 0.989975] }, { "keytime": 4074.329590, "rotation": [-0.021145, 0.115426, 0.077227, 0.990084] }, { "keytime": 4107.663086, "rotation": [-0.020989, 0.115254, 0.076869, 0.990135] }, { "keytime": 4174.329590, "rotation": [-0.020684, 0.114914, 0.076168, 0.990235] }, { "keytime": 4207.663086, "rotation": [-0.020540, 0.114753, 0.075837, 0.990282] }, { "keytime": 4274.330078, "rotation": [-0.020266, 0.114440, 0.075200, 0.990373] }, { "keytime": 4307.663574, "rotation": [-0.020138, 0.114292, 0.074903, 0.990415] }, { "keytime": 4340.997070, "rotation": [-0.020015, 0.114148, 0.074616, 0.990455] }, { "keytime": 4374.330566, "rotation": [-0.019893, 0.114006, 0.074332, 0.990496] }, { "keytime": 4407.664062, "rotation": [-0.019782, 0.113873, 0.074071, 0.990533] }, { "keytime": 4440.997559, "rotation": [-0.019677, 0.113746, 0.073823, 0.990568] }, { "keytime": 4474.331055, "rotation": [-0.019573, 0.113620, 0.073578, 0.990603] }, { "keytime": 4507.664551, "rotation": [-0.019479, 0.113502, 0.073354, 0.990635] }, { "keytime": 4540.998047, "rotation": [-0.019390, 0.113390, 0.073141, 0.990665] }, { "keytime": 4574.331543, "rotation": [-0.019306, 0.113281, 0.072939, 0.990694] }, { "keytime": 4607.665039, "rotation": [-0.019231, 0.113181, 0.072755, 0.990720] }, { "keytime": 4640.998535, "rotation": [-0.019161, 0.113086, 0.072584, 0.990745] }, { "keytime": 4674.332031, "rotation": [-0.019095, 0.112994, 0.072421, 0.990769] }, { "keytime": 4707.665527, "rotation": [-0.019036, 0.112910, 0.072276, 0.990790] }, { "keytime": 4740.999023, "rotation": [-0.018986, 0.112834, 0.072147, 0.990809] }, { "keytime": 4774.332520, "rotation": [-0.018940, 0.112760, 0.072028, 0.990827] }, { "keytime": 4807.666016, "rotation": [-0.018901, 0.112694, 0.071925, 0.990843] }, { "keytime": 4840.999512, "rotation": [-0.018868, 0.112634, 0.071834, 0.990857] }, { "keytime": 4874.333008, "rotation": [-0.018841, 0.112577, 0.071755, 0.990870] }, { "keytime": 4907.666504, "rotation": [-0.018821, 0.112530, 0.071695, 0.990880] }, { "keytime": 4941.000000, "rotation": [-0.018807, 0.112486, 0.071646, 0.990888] }, { "keytime": 4974.333496, "rotation": [-0.018800, 0.112450, 0.071611, 0.990895] }, { "keytime": 5007.666992, "rotation": [-0.018797, 0.112418, 0.071586, 0.990901] }, { "keytime": 5074.333984, "rotation": [-0.018797, 0.112359, 0.071551, 0.990910] }, { "keytime": 5174.334473, "rotation": [-0.018795, 0.112277, 0.071501, 0.990923] }, { "keytime": 5241.001465, "rotation": [-0.018794, 0.112225, 0.071469, 0.990931] }, { "keytime": 5341.001953, "rotation": [-0.018794, 0.112154, 0.071425, 0.990942] }, { "keytime": 5441.002441, "rotation": [-0.018795, 0.112090, 0.071386, 0.990952] }, { "keytime": 5541.002930, "rotation": [-0.018797, 0.112034, 0.071352, 0.990961] }, { "keytime": 5641.003418, "rotation": [-0.018795, 0.111986, 0.071322, 0.990969] }, { "keytime": 5741.003906, "rotation": [-0.018795, 0.111945, 0.071298, 0.990975] }, { "keytime": 5841.004395, "rotation": [-0.018796, 0.111914, 0.071279, 0.990980] }, { "keytime": 5941.004883, "rotation": [-0.018796, 0.111889, 0.071264, 0.990984] }, { "keytime": 6074.338867, "rotation": [-0.018794, 0.111867, 0.071250, 0.990987] }, { "keytime": 6207.672852, "rotation": [-0.018794, 0.111853, 0.071242, 0.990990] }, { "keytime": 6341.006836, "rotation": [-0.018794, 0.111847, 0.071238, 0.990991] }, { "keytime": 6607.674805, "rotation": [-0.018796, 0.111844, 0.071236, 0.990991] } ] }, { "boneId": "Bone_011", "keyframes": [ { "keytime": 41.000000, "rotation": [-0.257462, -0.526275, -0.294907, 0.754836] }, { "keytime": 74.333328, "rotation": [-0.257492, -0.526281, -0.294880, 0.754833] }, { "keytime": 107.666664, "rotation": [-0.257568, -0.526295, -0.294814, 0.754823] }, { "keytime": 141.000000, "rotation": [-0.257694, -0.526318, -0.294703, 0.754807] }, { "keytime": 174.333328, "rotation": [-0.257862, -0.526349, -0.294556, 0.754785] }, { "keytime": 207.666656, "rotation": [-0.258077, -0.526390, -0.294367, 0.754757] }, { "keytime": 240.999985, "rotation": [-0.258354, -0.526441, -0.294124, 0.754721] }, { "keytime": 274.333313, "rotation": [-0.258686, -0.526503, -0.293832, 0.754678] }, { "keytime": 307.666656, "rotation": [-0.259056, -0.526571, -0.293507, 0.754630] }, { "keytime": 341.000000, "rotation": [-0.259486, -0.526651, -0.293130, 0.754573] }, { "keytime": 374.333344, "rotation": [-0.259950, -0.526737, -0.292722, 0.754512] }, { "keytime": 407.666687, "rotation": [-0.260474, -0.526833, -0.292261, 0.754443] }, { "keytime": 441.000031, "rotation": [-0.261060, -0.526940, -0.291745, 0.754365] }, { "keytime": 474.333374, "rotation": [-0.261675, -0.527053, -0.291204, 0.754282] }, { "keytime": 507.666718, "rotation": [-0.262332, -0.527173, -0.290624, 0.754193] }, { "keytime": 541.000061, "rotation": [-0.263056, -0.527305, -0.289987, 0.754094] }, { "keytime": 574.333374, "rotation": [-0.263815, -0.527442, -0.289317, 0.753991] }, { "keytime": 607.666687, "rotation": [-0.264614, -0.527586, -0.288611, 0.753881] }, { "keytime": 641.000000, "rotation": [-0.265478, -0.527742, -0.287846, 0.753760] }, { "keytime": 674.333313, "rotation": [-0.266356, -0.527899, -0.287070, 0.753636] }, { "keytime": 707.666626, "rotation": [-0.267271, -0.528064, -0.286259, 0.753506] }, { "keytime": 740.999939, "rotation": [-0.268233, -0.528234, -0.285406, 0.753368] }, { "keytime": 774.333252, "rotation": [-0.269257, -0.528414, -0.284497, 0.753220] }, { "keytime": 807.666565, "rotation": [-0.270283, -0.528594, -0.283585, 0.753070] }, { "keytime": 840.999878, "rotation": [-0.271338, -0.528779, -0.282647, 0.752914] }, { "keytime": 874.333191, "rotation": [-0.272454, -0.528974, -0.281653, 0.752746] }, { "keytime": 907.666504, "rotation": [-0.273570, -0.529166, -0.280657, 0.752578] }, { "keytime": 940.999817, "rotation": [-0.274707, -0.529361, -0.279642, 0.752405] }, { "keytime": 974.333130, "rotation": [-0.275898, -0.529564, -0.278577, 0.752221] }, { "keytime": 1007.666443, "rotation": [-0.277070, -0.529764, -0.277528, 0.752037] }, { "keytime": 1040.999756, "rotation": [-0.278257, -0.529966, -0.276464, 0.751849] }, { "keytime": 1074.333130, "rotation": [-0.279495, -0.530172, -0.275353, 0.751652] }, { "keytime": 1107.666504, "rotation": [-0.280704, -0.530372, -0.274266, 0.751457] }, { "keytime": 1140.999878, "rotation": [-0.281917, -0.530573, -0.273175, 0.751259] }, { "keytime": 1174.333252, "rotation": [-0.283168, -0.530780, -0.272048, 0.751052] }, { "keytime": 1207.666626, "rotation": [-0.284382, -0.530979, -0.270953, 0.750848] }, { "keytime": 1241.000000, "rotation": [-0.285627, -0.531180, -0.269828, 0.750639] }, { "keytime": 1274.333374, "rotation": [-0.286827, -0.531372, -0.268742, 0.750435] }, { "keytime": 1307.666748, "rotation": [-0.288016, -0.531562, -0.267665, 0.750229] }, { "keytime": 1341.000122, "rotation": [-0.289227, -0.531756, -0.266567, 0.750017] }, { "keytime": 1374.333496, "rotation": [-0.290386, -0.531940, -0.265514, 0.749812] }, { "keytime": 1407.666870, "rotation": [-0.291521, -0.532116, -0.264481, 0.749611] }, { "keytime": 1441.000244, "rotation": [-0.292668, -0.532294, -0.263437, 0.749406] }, { "keytime": 1474.333618, "rotation": [-0.293755, -0.532463, -0.262445, 0.749209] }, { "keytime": 1507.666992, "rotation": [-0.294817, -0.532627, -0.261476, 0.749014] }, { "keytime": 1541.000366, "rotation": [-0.295882, -0.532791, -0.260504, 0.748816] }, { "keytime": 1574.333740, "rotation": [-0.296874, -0.532940, -0.259596, 0.748633] }, { "keytime": 1607.667114, "rotation": [-0.297833, -0.533084, -0.258718, 0.748453] }, { "keytime": 1641.000488, "rotation": [-0.298785, -0.533227, -0.257845, 0.748273] }, { "keytime": 1674.333862, "rotation": [-0.299673, -0.533360, -0.257030, 0.748103] }, { "keytime": 1707.667236, "rotation": [-0.300523, -0.533487, -0.256249, 0.747940] }, { "keytime": 1741.000610, "rotation": [-0.301346, -0.533608, -0.255492, 0.747782] }, { "keytime": 1774.333984, "rotation": [-0.302103, -0.533719, -0.254795, 0.747635] }, { "keytime": 1807.667358, "rotation": [-0.302820, -0.533823, -0.254136, 0.747494] }, { "keytime": 1841.000732, "rotation": [-0.303514, -0.533925, -0.253496, 0.747358] }, { "keytime": 1874.334106, "rotation": [-0.304144, -0.534016, -0.252914, 0.747233] }, { "keytime": 1907.667480, "rotation": [-0.304717, -0.534099, -0.252386, 0.747119] }, { "keytime": 1941.000854, "rotation": [-0.305261, -0.534177, -0.251883, 0.747011] }, { "keytime": 1974.334229, "rotation": [-0.305744, -0.534246, -0.251437, 0.746915] }, { "keytime": 2007.667603, "rotation": [-0.306183, -0.534309, -0.251031, 0.746826] }, { "keytime": 2041.000977, "rotation": [-0.306587, -0.534367, -0.250657, 0.746745] }, { "keytime": 2074.334473, "rotation": [-0.306918, -0.534414, -0.250350, 0.746678] }, { "keytime": 2107.667725, "rotation": [-0.307205, -0.534454, -0.250085, 0.746620] }, { "keytime": 2141.000977, "rotation": [-0.307454, -0.534490, -0.249855, 0.746569] }, { "keytime": 2174.334229, "rotation": [-0.307649, -0.534517, -0.249674, 0.746529] }, { "keytime": 2207.667480, "rotation": [-0.307799, -0.534539, -0.249535, 0.746499] }, { "keytime": 2241.000732, "rotation": [-0.307893, -0.534552, -0.249448, 0.746480] }, { "keytime": 2274.333984, "rotation": [-0.307938, -0.534558, -0.249406, 0.746471] }, { "keytime": 2307.667236, "rotation": [-0.307934, -0.534555, -0.249410, 0.746473] }, { "keytime": 2341.000488, "rotation": [-0.307872, -0.534537, -0.249467, 0.746492] }, { "keytime": 2374.333740, "rotation": [-0.307750, -0.534503, -0.249581, 0.746529] }, { "keytime": 2407.666992, "rotation": [-0.307546, -0.534446, -0.249770, 0.746591] }, { "keytime": 2441.000244, "rotation": [-0.307272, -0.534369, -0.250024, 0.746674] }, { "keytime": 2474.333496, "rotation": [-0.306943, -0.534277, -0.250329, 0.746773] }, { "keytime": 2507.666748, "rotation": [-0.306553, -0.534167, -0.250691, 0.746890] }, { "keytime": 2541.000000, "rotation": [-0.306084, -0.534035, -0.251125, 0.747031] }, { "keytime": 2574.333252, "rotation": [-0.305545, -0.533883, -0.251624, 0.747192] }, { "keytime": 2607.666504, "rotation": [-0.304945, -0.533713, -0.252179, 0.747372] }, { "keytime": 2640.999756, "rotation": [-0.304283, -0.533526, -0.252792, 0.747569] }, { "keytime": 2674.333008, "rotation": [-0.303535, -0.533314, -0.253482, 0.747790] }, { "keytime": 2707.666260, "rotation": [-0.302745, -0.533090, -0.254212, 0.748022] }, { "keytime": 2740.999512, "rotation": [-0.301875, -0.532841, -0.255014, 0.748278] }, { "keytime": 2774.332764, "rotation": [-0.300914, -0.532566, -0.255899, 0.748558] }, { "keytime": 2807.666016, "rotation": [-0.299920, -0.532281, -0.256813, 0.748847] }, { "keytime": 2840.999268, "rotation": [-0.298866, -0.531978, -0.257782, 0.749150] }, { "keytime": 2874.332520, "rotation": [-0.297716, -0.531648, -0.258838, 0.749479] }, { "keytime": 2907.665771, "rotation": [-0.296522, -0.531300, -0.259932, 0.749820] }, { "keytime": 2940.999023, "rotation": [-0.295271, -0.530935, -0.261077, 0.750174] }, { "keytime": 2974.332275, "rotation": [-0.293923, -0.530542, -0.262309, 0.750552] }, { "keytime": 3007.665527, "rotation": [-0.292558, -0.530143, -0.263554, 0.750931] }, { "keytime": 3040.998779, "rotation": [-0.291137, -0.529727, -0.264850, 0.751321] }, { "keytime": 3074.332031, "rotation": [-0.289604, -0.529271, -0.266244, 0.751742] }, { "keytime": 3107.665283, "rotation": [-0.288063, -0.528812, -0.267642, 0.752160] }, { "keytime": 3140.998535, "rotation": [-0.286474, -0.528338, -0.269082, 0.752587] }, { "keytime": 3174.331787, "rotation": [-0.284786, -0.527833, -0.270609, 0.753034] }, { "keytime": 3207.665039, "rotation": [-0.283100, -0.527329, -0.272131, 0.753474] }, { "keytime": 3240.998291, "rotation": [-0.281360, -0.526799, -0.273697, 0.753929] }, { "keytime": 3274.331543, "rotation": [-0.279527, -0.526239, -0.275346, 0.754402] }, { "keytime": 3307.664795, "rotation": [-0.277708, -0.525683, -0.276978, 0.754864] }, { "keytime": 3340.998047, "rotation": [-0.275853, -0.525115, -0.278639, 0.755328] }, { "keytime": 3374.331299, "rotation": [-0.273905, -0.524517, -0.280379, 0.755808] }, { "keytime": 3407.664551, "rotation": [-0.271980, -0.523914, -0.282095, 0.756283] }, { "keytime": 3440.997803, "rotation": [-0.270028, -0.523302, -0.283830, 0.756757] }, { "keytime": 3474.331055, "rotation": [-0.267992, -0.522663, -0.285636, 0.757242] }, { "keytime": 3507.664307, "rotation": [-0.265995, -0.522035, -0.287405, 0.757710] }, { "keytime": 3540.997559, "rotation": [-0.263978, -0.521398, -0.289187, 0.758176] }, { "keytime": 3574.330811, "rotation": [-0.261888, -0.520727, -0.291028, 0.758657] }, { "keytime": 3607.664062, "rotation": [-0.259849, -0.520070, -0.292820, 0.759119] }, { "keytime": 3640.997314, "rotation": [-0.257803, -0.519410, -0.294614, 0.759574] }, { "keytime": 3674.330566, "rotation": [-0.255691, -0.518728, -0.296463, 0.760035] }, { "keytime": 3707.663818, "rotation": [-0.253640, -0.518063, -0.298253, 0.760475] }, { "keytime": 3740.997070, "rotation": [-0.251601, -0.517390, -0.300029, 0.760912] }, { "keytime": 3774.330322, "rotation": [-0.249508, -0.516698, -0.301847, 0.761352] }, { "keytime": 3807.663574, "rotation": [-0.247487, -0.516029, -0.303599, 0.761769] }, { "keytime": 3840.996826, "rotation": [-0.245479, -0.515364, -0.305335, 0.762175] }, { "keytime": 3874.330078, "rotation": [-0.243430, -0.514682, -0.307104, 0.762582] }, { "keytime": 3907.663330, "rotation": [-0.241475, -0.514020, -0.308786, 0.762970] }, { "keytime": 3940.996582, "rotation": [-0.239545, -0.513366, -0.310444, 0.763346] }, { "keytime": 3974.329834, "rotation": [-0.237585, -0.512702, -0.312124, 0.763721] }, { "keytime": 4007.663086, "rotation": [-0.235713, -0.512066, -0.313725, 0.764071] }, { "keytime": 4040.996338, "rotation": [-0.233876, -0.511440, -0.315293, 0.764409] }, { "keytime": 4074.329590, "rotation": [-0.232037, -0.510805, -0.316858, 0.764747] }, { "keytime": 4107.663086, "rotation": [-0.230294, -0.510201, -0.318340, 0.765061] }, { "keytime": 4140.996094, "rotation": [-0.228592, -0.509612, -0.319784, 0.765363] }, { "keytime": 4174.329590, "rotation": [-0.226885, -0.509019, -0.321229, 0.765659] }, { "keytime": 4207.663086, "rotation": [-0.225277, -0.508460, -0.322588, 0.765935] }, { "keytime": 4240.996582, "rotation": [-0.223736, -0.507917, -0.323887, 0.766198] }, { "keytime": 4274.330078, "rotation": [-0.222202, -0.507376, -0.325179, 0.766456] }, { "keytime": 4307.663574, "rotation": [-0.220767, -0.506870, -0.326385, 0.766692] }, { "keytime": 4340.997070, "rotation": [-0.219386, -0.506382, -0.327545, 0.766917] }, { "keytime": 4374.330566, "rotation": [-0.218024, -0.505900, -0.328686, 0.767135] }, { "keytime": 4407.664062, "rotation": [-0.216781, -0.505455, -0.329726, 0.767334] }, { "keytime": 4440.997559, "rotation": [-0.215596, -0.505031, -0.330716, 0.767521] }, { "keytime": 4474.331055, "rotation": [-0.214438, -0.504617, -0.331682, 0.767701] }, { "keytime": 4507.664551, "rotation": [-0.213376, -0.504236, -0.332567, 0.767864] }, { "keytime": 4540.998047, "rotation": [-0.212379, -0.503878, -0.333398, 0.768016] }, { "keytime": 4574.331543, "rotation": [-0.211436, -0.503537, -0.334182, 0.768158] }, { "keytime": 4607.665039, "rotation": [-0.210587, -0.503230, -0.334887, 0.768286] }, { "keytime": 4640.998535, "rotation": [-0.209801, -0.502946, -0.335539, 0.768402] }, { "keytime": 4674.332031, "rotation": [-0.209059, -0.502677, -0.336155, 0.768511] }, { "keytime": 4707.665527, "rotation": [-0.208406, -0.502440, -0.336696, 0.768607] }, { "keytime": 4740.999023, "rotation": [-0.207839, -0.502234, -0.337166, 0.768690] }, { "keytime": 4774.332520, "rotation": [-0.207322, -0.502045, -0.337594, 0.768764] }, { "keytime": 4807.666016, "rotation": [-0.206886, -0.501887, -0.337954, 0.768827] }, { "keytime": 4840.999512, "rotation": [-0.206515, -0.501752, -0.338261, 0.768880] }, { "keytime": 4874.333008, "rotation": [-0.206203, -0.501638, -0.338519, 0.768925] }, { "keytime": 4907.666504, "rotation": [-0.205986, -0.501558, -0.338697, 0.768956] }, { "keytime": 4941.000000, "rotation": [-0.205830, -0.501501, -0.338827, 0.768978] }, { "keytime": 4974.333496, "rotation": [-0.205743, -0.501470, -0.338898, 0.768990] }, { "keytime": 5007.666992, "rotation": [-0.205724, -0.501464, -0.338914, 0.768992] }, { "keytime": 5041.000488, "rotation": [-0.205782, -0.501494, -0.338866, 0.768978] }, { "keytime": 5074.333984, "rotation": [-0.205954, -0.501579, -0.338725, 0.768939] }, { "keytime": 5107.667480, "rotation": [-0.206211, -0.501708, -0.338513, 0.768879] }, { "keytime": 5141.000977, "rotation": [-0.206565, -0.501885, -0.338221, 0.768797] }, { "keytime": 5174.334473, "rotation": [-0.206996, -0.502100, -0.337865, 0.768697] }, { "keytime": 5207.667969, "rotation": [-0.207515, -0.502359, -0.337437, 0.768576] }, { "keytime": 5241.001465, "rotation": [-0.208166, -0.502684, -0.336899, 0.768424] }, { "keytime": 5274.334961, "rotation": [-0.208886, -0.503042, -0.336304, 0.768255] }, { "keytime": 5307.668457, "rotation": [-0.209689, -0.503441, -0.335640, 0.768065] }, { "keytime": 5341.001953, "rotation": [-0.210602, -0.503895, -0.334883, 0.767847] }, { "keytime": 5374.335449, "rotation": [-0.211571, -0.504377, -0.334080, 0.767615] }, { "keytime": 5407.668945, "rotation": [-0.212644, -0.504907, -0.333189, 0.767357] }, { "keytime": 5441.002441, "rotation": [-0.213826, -0.505491, -0.332205, 0.767070] }, { "keytime": 5474.335938, "rotation": [-0.215046, -0.506093, -0.331189, 0.766772] }, { "keytime": 5507.669434, "rotation": [-0.216333, -0.506727, -0.330116, 0.766453] }, { "keytime": 5541.002930, "rotation": [-0.217727, -0.507414, -0.328952, 0.766105] }, { "keytime": 5574.336426, "rotation": [-0.219161, -0.508115, -0.327751, 0.765746] }, { "keytime": 5607.669922, "rotation": [-0.220646, -0.508840, -0.326506, 0.765370] }, { "keytime": 5641.003418, "rotation": [-0.222224, -0.509609, -0.325181, 0.764966] }, { "keytime": 5674.336914, "rotation": [-0.223796, -0.510376, -0.323858, 0.764557] }, { "keytime": 5707.670410, "rotation": [-0.225403, -0.511159, -0.322503, 0.764135] }, { "keytime": 5741.003906, "rotation": [-0.227100, -0.511977, -0.321070, 0.763688] }, { "keytime": 5774.337402, "rotation": [-0.228764, -0.512778, -0.319660, 0.763245] }, { "keytime": 5807.670898, "rotation": [-0.230439, -0.513584, -0.318239, 0.762793] }, { "keytime": 5841.004395, "rotation": [-0.232170, -0.514416, -0.316768, 0.762319] }, { "keytime": 5874.337891, "rotation": [-0.233847, -0.515222, -0.315340, 0.761855] }, { "keytime": 5907.671387, "rotation": [-0.235514, -0.516014, -0.313917, 0.761393] }, { "keytime": 5941.004883, "rotation": [-0.237209, -0.516819, -0.312466, 0.760917] }, { "keytime": 5974.338379, "rotation": [-0.238827, -0.517587, -0.311080, 0.760457] }, { "keytime": 6007.671875, "rotation": [-0.240412, -0.518339, -0.309718, 0.760001] }, { "keytime": 6041.005371, "rotation": [-0.242005, -0.519093, -0.308348, 0.759538] }, { "keytime": 6074.338867, "rotation": [-0.243493, -0.519790, -0.307065, 0.759105] }, { "keytime": 6107.672363, "rotation": [-0.244927, -0.520462, -0.305826, 0.758683] }, { "keytime": 6141.005859, "rotation": [-0.246345, -0.521126, -0.304600, 0.758262] }, { "keytime": 6174.339355, "rotation": [-0.247658, -0.521741, -0.303462, 0.757867] }, { "keytime": 6207.672852, "rotation": [-0.248905, -0.522324, -0.302380, 0.757490] }, { "keytime": 6241.006348, "rotation": [-0.250096, -0.522876, -0.301344, 0.757129] }, { "keytime": 6274.339844, "rotation": [-0.251176, -0.523376, -0.300404, 0.756800] }, { "keytime": 6307.673340, "rotation": [-0.252180, -0.523841, -0.299529, 0.756491] }, { "keytime": 6341.006836, "rotation": [-0.253131, -0.524282, -0.298699, 0.756196] }, { "keytime": 6374.340332, "rotation": [-0.253973, -0.524671, -0.297963, 0.755934] }, { "keytime": 6407.673828, "rotation": [-0.254707, -0.525009, -0.297321, 0.755705] }, { "keytime": 6441.007324, "rotation": [-0.255376, -0.525317, -0.296735, 0.755495] }, { "keytime": 6474.340820, "rotation": [-0.255941, -0.525577, -0.296241, 0.755318] }, { "keytime": 6507.674316, "rotation": [-0.256421, -0.525798, -0.295820, 0.755166] }, { "keytime": 6541.007812, "rotation": [-0.256827, -0.525984, -0.295464, 0.755038] }, { "keytime": 6574.341309, "rotation": [-0.257107, -0.526112, -0.295218, 0.754949] }, { "keytime": 6607.674805, "rotation": [-0.257304, -0.526203, -0.295045, 0.754887] } ] }, { "boneId": "Bone_013", "keyframes": [ { "keytime": 41.000000, "rotation": [ 0.972828, -0.077793, -0.211695, 0.052333] }, { "keytime": 74.333328, "rotation": [ 0.972828, -0.077775, -0.211701, 0.052335] }, { "keytime": 107.666664, "rotation": [ 0.972828, -0.077730, -0.211716, 0.052341] }, { "keytime": 141.000000, "rotation": [ 0.972829, -0.077655, -0.211739, 0.052350] }, { "keytime": 174.333328, "rotation": [ 0.972829, -0.077555, -0.211771, 0.052363] }, { "keytime": 207.666656, "rotation": [ 0.972829, -0.077427, -0.211812, 0.052379] }, { "keytime": 240.999985, "rotation": [ 0.972830, -0.077263, -0.211864, 0.052399] }, { "keytime": 274.333313, "rotation": [ 0.972831, -0.077065, -0.211927, 0.052424] }, { "keytime": 307.666656, "rotation": [ 0.972831, -0.076845, -0.211997, 0.052452] }, { "keytime": 341.000000, "rotation": [ 0.972832, -0.076590, -0.212079, 0.052483] }, { "keytime": 374.333344, "rotation": [ 0.972833, -0.076314, -0.212166, 0.052518] }, { "keytime": 407.666687, "rotation": [ 0.972833, -0.076002, -0.212266, 0.052557] }, { "keytime": 441.000031, "rotation": [ 0.972834, -0.075653, -0.212377, 0.052600] }, { "keytime": 474.333374, "rotation": [ 0.972835, -0.075287, -0.212493, 0.052646] }, { "keytime": 507.666718, "rotation": [ 0.972835, -0.074895, -0.212617, 0.052695] }, { "keytime": 541.000061, "rotation": [ 0.972835, -0.074464, -0.212754, 0.052748] }, { "keytime": 574.333374, "rotation": [ 0.972835, -0.074012, -0.212898, 0.052805] }, { "keytime": 607.666687, "rotation": [ 0.972835, -0.073535, -0.213049, 0.052864] }, { "keytime": 641.000000, "rotation": [ 0.972835, -0.073020, -0.213213, 0.052928] }, { "keytime": 674.333313, "rotation": [ 0.972834, -0.072496, -0.213379, 0.052993] }, { "keytime": 707.666626, "rotation": [ 0.972833, -0.071949, -0.213552, 0.053061] }, { "keytime": 740.999939, "rotation": [ 0.972831, -0.071375, -0.213734, 0.053133] }, { "keytime": 807.666565, "rotation": [ 0.972826, -0.070149, -0.214122, 0.053285] }, { "keytime": 840.999878, "rotation": [ 0.972824, -0.069518, -0.214322, 0.053363] }, { "keytime": 907.666504, "rotation": [ 0.972816, -0.068182, -0.214745, 0.053530] }, { "keytime": 940.999817, "rotation": [ 0.972811, -0.067501, -0.214960, 0.053614] }, { "keytime": 974.333130, "rotation": [ 0.972806, -0.066786, -0.215185, 0.053702] }, { "keytime": 1007.666443, "rotation": [ 0.972800, -0.066083, -0.215407, 0.053790] }, { "keytime": 1040.999756, "rotation": [ 0.972793, -0.065370, -0.215632, 0.053878] }, { "keytime": 1074.333130, "rotation": [ 0.972786, -0.064626, -0.215867, 0.053970] }, { "keytime": 1107.666504, "rotation": [ 0.972778, -0.063899, -0.216096, 0.054060] }, { "keytime": 1140.999878, "rotation": [ 0.972770, -0.063170, -0.216325, 0.054151] }, { "keytime": 1174.333252, "rotation": [ 0.972760, -0.062416, -0.216562, 0.054244] }, { "keytime": 1207.666626, "rotation": [ 0.972751, -0.061685, -0.216791, 0.054334] }, { "keytime": 1241.000000, "rotation": [ 0.972740, -0.060934, -0.217028, 0.054427] }, { "keytime": 1274.333374, "rotation": [ 0.972730, -0.060210, -0.217255, 0.054517] }, { "keytime": 1307.666748, "rotation": [ 0.972718, -0.059492, -0.217480, 0.054606] }, { "keytime": 1341.000122, "rotation": [ 0.972706, -0.058761, -0.217710, 0.054696] }, { "keytime": 1374.333496, "rotation": [ 0.972695, -0.058059, -0.217930, 0.054783] }, { "keytime": 1407.666870, "rotation": [ 0.972682, -0.057373, -0.218145, 0.054868] }, { "keytime": 1441.000244, "rotation": [ 0.972669, -0.056679, -0.218362, 0.054953] }, { "keytime": 1474.333618, "rotation": [ 0.972657, -0.056019, -0.218568, 0.055035] }, { "keytime": 1541.000366, "rotation": [ 0.972630, -0.054730, -0.218971, 0.055194] }, { "keytime": 1574.333740, "rotation": [ 0.972618, -0.054128, -0.219159, 0.055268] }, { "keytime": 1607.667114, "rotation": [ 0.972605, -0.053545, -0.219341, 0.055339] }, { "keytime": 1641.000488, "rotation": [ 0.972592, -0.052966, -0.219522, 0.055410] }, { "keytime": 1674.333862, "rotation": [ 0.972579, -0.052426, -0.219690, 0.055477] }, { "keytime": 1707.667236, "rotation": [ 0.972567, -0.051909, -0.219852, 0.055541] }, { "keytime": 1741.000610, "rotation": [ 0.972554, -0.051408, -0.220008, 0.055602] }, { "keytime": 1774.333984, "rotation": [ 0.972543, -0.050947, -0.220152, 0.055659] }, { "keytime": 1807.667358, "rotation": [ 0.972532, -0.050510, -0.220287, 0.055713] }, { "keytime": 1841.000732, "rotation": [ 0.972521, -0.050087, -0.220419, 0.055765] }, { "keytime": 1874.334106, "rotation": [ 0.972511, -0.049702, -0.220539, 0.055812] }, { "keytime": 1907.667480, "rotation": [ 0.972502, -0.049353, -0.220647, 0.055855] }, { "keytime": 1941.000854, "rotation": [ 0.972493, -0.049021, -0.220751, 0.055896] }, { "keytime": 1974.334229, "rotation": [ 0.972484, -0.048726, -0.220842, 0.055932] }, { "keytime": 2007.667603, "rotation": [ 0.972477, -0.048458, -0.220926, 0.055965] }, { "keytime": 2041.000977, "rotation": [ 0.972470, -0.048212, -0.221002, 0.055995] }, { "keytime": 2074.334473, "rotation": [ 0.972464, -0.048009, -0.221065, 0.056020] }, { "keytime": 2107.667725, "rotation": [ 0.972459, -0.047834, -0.221120, 0.056041] }, { "keytime": 2141.000977, "rotation": [ 0.972455, -0.047682, -0.221167, 0.056060] }, { "keytime": 2174.334229, "rotation": [ 0.972452, -0.047563, -0.221204, 0.056075] }, { "keytime": 2207.667480, "rotation": [ 0.972449, -0.047471, -0.221232, 0.056086] }, { "keytime": 2241.000732, "rotation": [ 0.972447, -0.047414, -0.221250, 0.056093] }, { "keytime": 2274.333984, "rotation": [ 0.972447, -0.047387, -0.221258, 0.056096] }, { "keytime": 2307.667236, "rotation": [ 0.972446, -0.047389, -0.221259, 0.056096] }, { "keytime": 2341.000488, "rotation": [ 0.972446, -0.047426, -0.221252, 0.056091] }, { "keytime": 2374.333740, "rotation": [ 0.972447, -0.047497, -0.221239, 0.056082] }, { "keytime": 2407.666992, "rotation": [ 0.972447, -0.047615, -0.221216, 0.056067] }, { "keytime": 2441.000244, "rotation": [ 0.972447, -0.047775, -0.221185, 0.056046] }, { "keytime": 2474.333496, "rotation": [ 0.972447, -0.047966, -0.221149, 0.056021] }, { "keytime": 2507.666748, "rotation": [ 0.972448, -0.048193, -0.221105, 0.055992] }, { "keytime": 2541.000000, "rotation": [ 0.972448, -0.048465, -0.221053, 0.055957] }, { "keytime": 2574.333252, "rotation": [ 0.972448, -0.048777, -0.220993, 0.055917] }, { "keytime": 2607.666504, "rotation": [ 0.972449, -0.049125, -0.220927, 0.055872] }, { "keytime": 2640.999756, "rotation": [ 0.972449, -0.049509, -0.220853, 0.055822] }, { "keytime": 2674.333008, "rotation": [ 0.972449, -0.049942, -0.220770, 0.055766] }, { "keytime": 2707.666260, "rotation": [ 0.972448, -0.050399, -0.220682, 0.055707] }, { "keytime": 2740.999512, "rotation": [ 0.972448, -0.050903, -0.220585, 0.055642] }, { "keytime": 2774.332764, "rotation": [ 0.972447, -0.051458, -0.220479, 0.055570] }, { "keytime": 2807.666016, "rotation": [ 0.972446, -0.052032, -0.220368, 0.055496] }, { "keytime": 2840.999268, "rotation": [ 0.972444, -0.052640, -0.220251, 0.055417] }, { "keytime": 2874.332520, "rotation": [ 0.972442, -0.053303, -0.220123, 0.055331] }, { "keytime": 2907.665771, "rotation": [ 0.972439, -0.053990, -0.219990, 0.055242] }, { "keytime": 2940.999023, "rotation": [ 0.972436, -0.054710, -0.219851, 0.055149] }, { "keytime": 2974.332275, "rotation": [ 0.972431, -0.055485, -0.219701, 0.055048] }, { "keytime": 3007.665527, "rotation": [ 0.972426, -0.056269, -0.219549, 0.054947] }, { "keytime": 3040.998779, "rotation": [ 0.972420, -0.057084, -0.219391, 0.054841] }, { "keytime": 3074.332031, "rotation": [ 0.972413, -0.057963, -0.219220, 0.054727] }, { "keytime": 3107.665283, "rotation": [ 0.972406, -0.058844, -0.219048, 0.054613] }, { "keytime": 3140.998535, "rotation": [ 0.972397, -0.059753, -0.218871, 0.054495] }, { "keytime": 3174.331787, "rotation": [ 0.972386, -0.060717, -0.218684, 0.054370] }, { "keytime": 3207.665039, "rotation": [ 0.972375, -0.061678, -0.218496, 0.054245] }, { "keytime": 3240.998291, "rotation": [ 0.972362, -0.062669, -0.218302, 0.054116] }, { "keytime": 3274.331543, "rotation": [ 0.972348, -0.063713, -0.218097, 0.053980] }, { "keytime": 3307.664795, "rotation": [ 0.972333, -0.064747, -0.217894, 0.053846] }, { "keytime": 3340.998047, "rotation": [ 0.972316, -0.065800, -0.217687, 0.053708] }, { "keytime": 3374.331299, "rotation": [ 0.972297, -0.066903, -0.217470, 0.053565] }, { "keytime": 3407.664551, "rotation": [ 0.972277, -0.067994, -0.217255, 0.053423] }, { "keytime": 3440.997803, "rotation": [ 0.972256, -0.069099, -0.217037, 0.053278] }, { "keytime": 3474.331055, "rotation": [ 0.972233, -0.070249, -0.216809, 0.053128] }, { "keytime": 3507.664307, "rotation": [ 0.972208, -0.071375, -0.216586, 0.052981] }, { "keytime": 3540.997559, "rotation": [ 0.972183, -0.072511, -0.216360, 0.052832] }, { "keytime": 3574.330811, "rotation": [ 0.972155, -0.073689, -0.216126, 0.052679] }, { "keytime": 3640.997314, "rotation": [ 0.972096, -0.075985, -0.215667, 0.052378] }, { "keytime": 3674.330566, "rotation": [ 0.972063, -0.077169, -0.215431, 0.052223] }, { "keytime": 3707.663818, "rotation": [ 0.972031, -0.078317, -0.215201, 0.052072] }, { "keytime": 3740.997070, "rotation": [ 0.971997, -0.079460, -0.214971, 0.051923] }, { "keytime": 3774.330322, "rotation": [ 0.971961, -0.080631, -0.214735, 0.051770] }, { "keytime": 3807.663574, "rotation": [ 0.971924, -0.081760, -0.214507, 0.051622] }, { "keytime": 3840.996826, "rotation": [ 0.971887, -0.082880, -0.214281, 0.051475] }, { "keytime": 3874.330078, "rotation": [ 0.971848, -0.084021, -0.214050, 0.051325] }, { "keytime": 3907.663330, "rotation": [ 0.971810, -0.085111, -0.213829, 0.051182] }, { "keytime": 3940.996582, "rotation": [ 0.971770, -0.086186, -0.213610, 0.051040] }, { "keytime": 3974.329834, "rotation": [ 0.971729, -0.087276, -0.213388, 0.050897] }, { "keytime": 4007.663086, "rotation": [ 0.971689, -0.088315, -0.213176, 0.050760] }, { "keytime": 4074.329590, "rotation": [ 0.971607, -0.090355, -0.212758, 0.050492] }, { "keytime": 4107.663086, "rotation": [ 0.971567, -0.091322, -0.212559, 0.050365] }, { "keytime": 4174.329590, "rotation": [ 0.971486, -0.093209, -0.212170, 0.050116] }, { "keytime": 4207.663086, "rotation": [ 0.971446, -0.094098, -0.211986, 0.049999] }, { "keytime": 4240.996582, "rotation": [ 0.971408, -0.094951, -0.211809, 0.049886] }, { "keytime": 4274.330078, "rotation": [ 0.971369, -0.095799, -0.211632, 0.049774] }, { "keytime": 4307.663574, "rotation": [ 0.971331, -0.096591, -0.211467, 0.049670] }, { "keytime": 4340.997070, "rotation": [ 0.971295, -0.097353, -0.211308, 0.049569] }, { "keytime": 4374.330566, "rotation": [ 0.971259, -0.098104, -0.211150, 0.049470] }, { "keytime": 4407.664062, "rotation": [ 0.971225, -0.098790, -0.211005, 0.049380] }, { "keytime": 4440.997559, "rotation": [ 0.971193, -0.099443, -0.210867, 0.049293] }, { "keytime": 4474.331055, "rotation": [ 0.971161, -0.100081, -0.210732, 0.049209] }, { "keytime": 4507.664551, "rotation": [ 0.971132, -0.100666, -0.210608, 0.049132] }, { "keytime": 4540.998047, "rotation": [ 0.971104, -0.101215, -0.210490, 0.049060] }, { "keytime": 4574.331543, "rotation": [ 0.971077, -0.101734, -0.210379, 0.048991] }, { "keytime": 4607.665039, "rotation": [ 0.971053, -0.102201, -0.210278, 0.048930] }, { "keytime": 4640.998535, "rotation": [ 0.971031, -0.102634, -0.210184, 0.048873] }, { "keytime": 4674.332031, "rotation": [ 0.971009, -0.103041, -0.210095, 0.048819] }, { "keytime": 4707.665527, "rotation": [ 0.970991, -0.103400, -0.210015, 0.048772] }, { "keytime": 4740.999023, "rotation": [ 0.970975, -0.103712, -0.209946, 0.048730] }, { "keytime": 4774.332520, "rotation": [ 0.970960, -0.103996, -0.209881, 0.048693] }, { "keytime": 4807.666016, "rotation": [ 0.970948, -0.104236, -0.209826, 0.048662] }, { "keytime": 4840.999512, "rotation": [ 0.970938, -0.104439, -0.209778, 0.048635] }, { "keytime": 4874.333008, "rotation": [ 0.970929, -0.104611, -0.209737, 0.048613] }, { "keytime": 4907.666504, "rotation": [ 0.970924, -0.104729, -0.209706, 0.048598] }, { "keytime": 4941.000000, "rotation": [ 0.970921, -0.104815, -0.209682, 0.048587] }, { "keytime": 4974.333496, "rotation": [ 0.970919, -0.104862, -0.209666, 0.048581] }, { "keytime": 5007.666992, "rotation": [ 0.970920, -0.104873, -0.209656, 0.048580] }, { "keytime": 5041.000488, "rotation": [ 0.970924, -0.104842, -0.209652, 0.048585] }, { "keytime": 5074.333984, "rotation": [ 0.970933, -0.104753, -0.209653, 0.048597] }, { "keytime": 5107.667480, "rotation": [ 0.970945, -0.104620, -0.209658, 0.048617] }, { "keytime": 5141.000977, "rotation": [ 0.970962, -0.104437, -0.209667, 0.048643] }, { "keytime": 5174.334473, "rotation": [ 0.970981, -0.104213, -0.209680, 0.048674] }, { "keytime": 5207.667969, "rotation": [ 0.971005, -0.103945, -0.209697, 0.048712] }, { "keytime": 5241.001465, "rotation": [ 0.971034, -0.103607, -0.209719, 0.048759] }, { "keytime": 5274.334961, "rotation": [ 0.971065, -0.103235, -0.209744, 0.048811] }, { "keytime": 5307.668457, "rotation": [ 0.971100, -0.102819, -0.209774, 0.048869] }, { "keytime": 5341.001953, "rotation": [ 0.971139, -0.102346, -0.209807, 0.048936] }, { "keytime": 5374.335449, "rotation": [ 0.971181, -0.101843, -0.209844, 0.049006] }, { "keytime": 5407.668945, "rotation": [ 0.971226, -0.101287, -0.209885, 0.049083] }, { "keytime": 5441.002441, "rotation": [ 0.971276, -0.100674, -0.209931, 0.049169] }, { "keytime": 5474.335938, "rotation": [ 0.971326, -0.100041, -0.209978, 0.049257] }, { "keytime": 5507.669434, "rotation": [ 0.971379, -0.099373, -0.210029, 0.049350] }, { "keytime": 5541.002930, "rotation": [ 0.971436, -0.098648, -0.210084, 0.049451] }, { "keytime": 5574.336426, "rotation": [ 0.971494, -0.097903, -0.210141, 0.049555] }, { "keytime": 5607.669922, "rotation": [ 0.971553, -0.097132, -0.210200, 0.049662] }, { "keytime": 5674.336914, "rotation": [ 0.971676, -0.095491, -0.210327, 0.049890] }, { "keytime": 5707.670410, "rotation": [ 0.971738, -0.094653, -0.210392, 0.050006] }, { "keytime": 5741.003906, "rotation": [ 0.971803, -0.093769, -0.210460, 0.050129] }, { "keytime": 5774.337402, "rotation": [ 0.971866, -0.092900, -0.210528, 0.050248] }, { "keytime": 5807.670898, "rotation": [ 0.971928, -0.092025, -0.210596, 0.050369] }, { "keytime": 5841.004395, "rotation": [ 0.971991, -0.091120, -0.210666, 0.050495] }, { "keytime": 5874.337891, "rotation": [ 0.972052, -0.090241, -0.210734, 0.050617] }, { "keytime": 5907.671387, "rotation": [ 0.972112, -0.089369, -0.210802, 0.050738] }, { "keytime": 5941.004883, "rotation": [ 0.972172, -0.088481, -0.210871, 0.050861] }, { "keytime": 5974.338379, "rotation": [ 0.972228, -0.087632, -0.210936, 0.050978] }, { "keytime": 6007.671875, "rotation": [ 0.972283, -0.086798, -0.211001, 0.051093] }, { "keytime": 6041.005371, "rotation": [ 0.972337, -0.085960, -0.211066, 0.051209] }, { "keytime": 6074.338867, "rotation": [ 0.972387, -0.085178, -0.211126, 0.051316] }, { "keytime": 6107.672363, "rotation": [ 0.972435, -0.084423, -0.211185, 0.051421] }, { "keytime": 6141.005859, "rotation": [ 0.972481, -0.083676, -0.211242, 0.051524] }, { "keytime": 6174.339355, "rotation": [ 0.972524, -0.082983, -0.211296, 0.051619] }, { "keytime": 6207.672852, "rotation": [ 0.972564, -0.082324, -0.211347, 0.051710] }, { "keytime": 6241.006348, "rotation": [ 0.972602, -0.081695, -0.211395, 0.051796] }, { "keytime": 6274.339844, "rotation": [ 0.972636, -0.081125, -0.211439, 0.051875] }, { "keytime": 6307.673340, "rotation": [ 0.972668, -0.080594, -0.211480, 0.051948] }, { "keytime": 6341.006836, "rotation": [ 0.972697, -0.080090, -0.211519, 0.052018] }, { "keytime": 6374.340332, "rotation": [ 0.972723, -0.079644, -0.211553, 0.052079] }, { "keytime": 6407.673828, "rotation": [ 0.972745, -0.079255, -0.211583, 0.052132] }, { "keytime": 6441.007324, "rotation": [ 0.972766, -0.078900, -0.211610, 0.052181] }, { "keytime": 6474.340820, "rotation": [ 0.972783, -0.078601, -0.211633, 0.052222] }, { "keytime": 6507.674316, "rotation": [ 0.972797, -0.078346, -0.211653, 0.052257] }, { "keytime": 6541.007812, "rotation": [ 0.972809, -0.078130, -0.211670, 0.052287] }, { "keytime": 6574.341309, "rotation": [ 0.972818, -0.077982, -0.211681, 0.052307] }, { "keytime": 6607.674805, "rotation": [ 0.972823, -0.077877, -0.211689, 0.052322] } ] }, { "boneId": "Bone_014", "keyframes": [ { "keytime": 41.000000, "rotation": [ 0.067216, -0.167213, 0.028384, 0.983217] }, { "keytime": 74.333328, "rotation": [ 0.067231, -0.167212, 0.028338, 0.983218] }, { "keytime": 107.666664, "rotation": [ 0.067268, -0.167209, 0.028223, 0.983219] }, { "keytime": 141.000000, "rotation": [ 0.067328, -0.167204, 0.028031, 0.983221] }, { "keytime": 174.333328, "rotation": [ 0.067410, -0.167198, 0.027774, 0.983224] }, { "keytime": 207.666656, "rotation": [ 0.067514, -0.167190, 0.027446, 0.983227] }, { "keytime": 240.999985, "rotation": [ 0.067648, -0.167179, 0.027024, 0.983232] }, { "keytime": 274.333313, "rotation": [ 0.067809, -0.167167, 0.026517, 0.983236] }, { "keytime": 307.666656, "rotation": [ 0.067989, -0.167153, 0.025953, 0.983242] }, { "keytime": 341.000000, "rotation": [ 0.068198, -0.167136, 0.025297, 0.983247] }, { "keytime": 374.333344, "rotation": [ 0.068424, -0.167118, 0.024590, 0.983252] }, { "keytime": 407.666687, "rotation": [ 0.068680, -0.167098, 0.023790, 0.983258] }, { "keytime": 441.000031, "rotation": [ 0.068967, -0.167075, 0.022895, 0.983263] }, { "keytime": 474.333374, "rotation": [ 0.069268, -0.167051, 0.021957, 0.983267] }, { "keytime": 507.666718, "rotation": [ 0.069591, -0.167025, 0.020953, 0.983270] }, { "keytime": 541.000061, "rotation": [ 0.069947, -0.166996, 0.019847, 0.983273] }, { "keytime": 574.333374, "rotation": [ 0.070321, -0.166965, 0.018688, 0.983274] }, { "keytime": 607.666687, "rotation": [ 0.070715, -0.166933, 0.017467, 0.983274] }, { "keytime": 641.000000, "rotation": [ 0.071143, -0.166897, 0.016145, 0.983272] }, { "keytime": 674.333313, "rotation": [ 0.071579, -0.166861, 0.014803, 0.983267] }, { "keytime": 707.666626, "rotation": [ 0.072034, -0.166823, 0.013402, 0.983261] }, { "keytime": 740.999939, "rotation": [ 0.072514, -0.166781, 0.011930, 0.983251] }, { "keytime": 774.333252, "rotation": [ 0.073026, -0.166737, 0.010361, 0.983239] }, { "keytime": 807.666565, "rotation": [ 0.073541, -0.166693, 0.008790, 0.983223] }, { "keytime": 840.999878, "rotation": [ 0.074071, -0.166646, 0.007173, 0.983204] }, { "keytime": 907.666504, "rotation": [ 0.075200, -0.166546, 0.003750, 0.983155] }, { "keytime": 940.999817, "rotation": [ 0.075777, -0.166494, 0.002006, 0.983124] }, { "keytime": 974.333130, "rotation": [ 0.076385, -0.166439, 0.000178, 0.983089] }, { "keytime": 1007.666443, "rotation": [ 0.076985, -0.166385, -0.001623, 0.983050] }, { "keytime": 1040.999756, "rotation": [ 0.077595, -0.166329, -0.003447, 0.983007] }, { "keytime": 1074.333130, "rotation": [ 0.078234, -0.166269, -0.005350, 0.982958] }, { "keytime": 1107.666504, "rotation": [ 0.078861, -0.166210, -0.007208, 0.982906] }, { "keytime": 1140.999878, "rotation": [ 0.079493, -0.166150, -0.009073, 0.982849] }, { "keytime": 1174.333252, "rotation": [ 0.080148, -0.166087, -0.010999, 0.982787] }, { "keytime": 1207.666626, "rotation": [ 0.080786, -0.166026, -0.012868, 0.982722] }, { "keytime": 1241.000000, "rotation": [ 0.081446, -0.165962, -0.014784, 0.982652] }, { "keytime": 1274.333374, "rotation": [ 0.082086, -0.165900, -0.016632, 0.982580] }, { "keytime": 1307.666748, "rotation": [ 0.082723, -0.165837, -0.018463, 0.982504] }, { "keytime": 1341.000122, "rotation": [ 0.083377, -0.165773, -0.020329, 0.982423] }, { "keytime": 1374.333496, "rotation": [ 0.084007, -0.165711, -0.022117, 0.982341] }, { "keytime": 1407.666870, "rotation": [ 0.084630, -0.165648, -0.023866, 0.982257] }, { "keytime": 1441.000244, "rotation": [ 0.085264, -0.165585, -0.025632, 0.982168] }, { "keytime": 1474.333618, "rotation": [ 0.085870, -0.165524, -0.027309, 0.982081] }, { "keytime": 1507.666992, "rotation": [ 0.086468, -0.165464, -0.028946, 0.981991] }, { "keytime": 1541.000366, "rotation": [ 0.087073, -0.165403, -0.030586, 0.981898] }, { "keytime": 1574.333740, "rotation": [ 0.087644, -0.165345, -0.032114, 0.981809] }, { "keytime": 1607.667114, "rotation": [ 0.088203, -0.165289, -0.033591, 0.981719] }, { "keytime": 1641.000488, "rotation": [ 0.088765, -0.165232, -0.035057, 0.981626] }, { "keytime": 1674.333862, "rotation": [ 0.089297, -0.165179, -0.036423, 0.981537] }, { "keytime": 1707.667236, "rotation": [ 0.089813, -0.165128, -0.037730, 0.981449] }, { "keytime": 1741.000610, "rotation": [ 0.090323, -0.165077, -0.038994, 0.981362] }, { "keytime": 1774.333984, "rotation": [ 0.090802, -0.165029, -0.040157, 0.981279] }, { "keytime": 1807.667358, "rotation": [ 0.091264, -0.164984, -0.041255, 0.981198] }, { "keytime": 1841.000732, "rotation": [ 0.091722, -0.164940, -0.042317, 0.981117] }, { "keytime": 1874.334106, "rotation": [ 0.092149, -0.164899, -0.043281, 0.981042] }, { "keytime": 1907.667480, "rotation": [ 0.092551, -0.164861, -0.044153, 0.980972] }, { "keytime": 1941.000854, "rotation": [ 0.092946, -0.164825, -0.044981, 0.980903] }, { "keytime": 1974.334229, "rotation": [ 0.093311, -0.164792, -0.045713, 0.980840] }, { "keytime": 2007.667603, "rotation": [ 0.093657, -0.164762, -0.046376, 0.980781] }, { "keytime": 2041.000977, "rotation": [ 0.093993, -0.164733, -0.046983, 0.980725] }, { "keytime": 2074.334473, "rotation": [ 0.094293, -0.164709, -0.047477, 0.980676] }, { "keytime": 2107.667725, "rotation": [ 0.094574, -0.164687, -0.047901, 0.980632] }, { "keytime": 2141.000977, "rotation": [ 0.094844, -0.164667, -0.048263, 0.980592] }, { "keytime": 2174.334229, "rotation": [ 0.095086, -0.164651, -0.048543, 0.980557] }, { "keytime": 2207.667480, "rotation": [ 0.095308, -0.164637, -0.048752, 0.980528] }, { "keytime": 2241.000732, "rotation": [ 0.095510, -0.164627, -0.048871, 0.980504] }, { "keytime": 2274.333984, "rotation": [ 0.095687, -0.164619, -0.048914, 0.980486] }, { "keytime": 2307.667236, "rotation": [ 0.095847, -0.164604, -0.048888, 0.980474] }, { "keytime": 2341.000488, "rotation": [ 0.095996, -0.164570, -0.048788, 0.980470] }, { "keytime": 2374.333740, "rotation": [ 0.096128, -0.164509, -0.048620, 0.980476] }, { "keytime": 2407.666992, "rotation": [ 0.096244, -0.164410, -0.048357, 0.980494] }, { "keytime": 2441.000244, "rotation": [ 0.096351, -0.164279, -0.048013, 0.980522] }, { "keytime": 2474.333496, "rotation": [ 0.096442, -0.164123, -0.047607, 0.980559] }, { "keytime": 2507.666748, "rotation": [ 0.096520, -0.163938, -0.047129, 0.980605] }, { "keytime": 2541.000000, "rotation": [ 0.096587, -0.163718, -0.046561, 0.980663] }, { "keytime": 2574.333252, "rotation": [ 0.096635, -0.163465, -0.045914, 0.980731] }, { "keytime": 2607.666504, "rotation": [ 0.096670, -0.163185, -0.045195, 0.980807] }, { "keytime": 2640.999756, "rotation": [ 0.096692, -0.162875, -0.044406, 0.980893] }, { "keytime": 2674.333008, "rotation": [ 0.096702, -0.162527, -0.043517, 0.980989] }, { "keytime": 2707.666260, "rotation": [ 0.096697, -0.162159, -0.042582, 0.981092] }, { "keytime": 2740.999512, "rotation": [ 0.096676, -0.161755, -0.041554, 0.981205] }, { "keytime": 2774.332764, "rotation": [ 0.096641, -0.161309, -0.040423, 0.981329] }, { "keytime": 2807.666016, "rotation": [ 0.096594, -0.160847, -0.039255, 0.981456] }, { "keytime": 2840.999268, "rotation": [ 0.096534, -0.160359, -0.038019, 0.981591] }, { "keytime": 2874.332520, "rotation": [ 0.096459, -0.159826, -0.036673, 0.981736] }, { "keytime": 2907.665771, "rotation": [ 0.096369, -0.159273, -0.035278, 0.981886] }, { "keytime": 2940.999023, "rotation": [ 0.096266, -0.158694, -0.033819, 0.982041] }, { "keytime": 2974.332275, "rotation": [ 0.096148, -0.158071, -0.032249, 0.982206] }, { "keytime": 3007.665527, "rotation": [ 0.096020, -0.157440, -0.030663, 0.982371] }, { "keytime": 3040.998779, "rotation": [ 0.095880, -0.156784, -0.029014, 0.982540] }, { "keytime": 3074.332031, "rotation": [ 0.095721, -0.156075, -0.027236, 0.982719] }, { "keytime": 3107.665283, "rotation": [ 0.095554, -0.155364, -0.025453, 0.982896] }, { "keytime": 3140.998535, "rotation": [ 0.095376, -0.154630, -0.023617, 0.983074] }, { "keytime": 3174.331787, "rotation": [ 0.095180, -0.153852, -0.021670, 0.983260] }, { "keytime": 3207.665039, "rotation": [ 0.094979, -0.153075, -0.019728, 0.983442] }, { "keytime": 3240.998291, "rotation": [ 0.094766, -0.152272, -0.017726, 0.983625] }, { "keytime": 3274.331543, "rotation": [ 0.094535, -0.151427, -0.015618, 0.983814] }, { "keytime": 3307.664795, "rotation": [ 0.094302, -0.150589, -0.013531, 0.983996] }, { "keytime": 3340.998047, "rotation": [ 0.094059, -0.149735, -0.011406, 0.984176] }, { "keytime": 3374.331299, "rotation": [ 0.093799, -0.148839, -0.009179, 0.984360] }, { "keytime": 3407.664551, "rotation": [ 0.093537, -0.147951, -0.006976, 0.984537] }, { "keytime": 3440.997803, "rotation": [ 0.093268, -0.147052, -0.004748, 0.984710] }, { "keytime": 3474.331055, "rotation": [ 0.092983, -0.146115, -0.002427, 0.984885] }, { "keytime": 3507.664307, "rotation": [ 0.092700, -0.145196, -0.000154, 0.985051] }, { "keytime": 3540.997559, "rotation": [ 0.092410, -0.144270, 0.002136, 0.985212] }, { "keytime": 3574.330811, "rotation": [ 0.092106, -0.143307, 0.004512, 0.985373] }, { "keytime": 3607.664062, "rotation": [ 0.091806, -0.142369, 0.006826, 0.985523] }, { "keytime": 3640.997314, "rotation": [ 0.091502, -0.141428, 0.009143, 0.985668] }, { "keytime": 3674.330566, "rotation": [ 0.091185, -0.140458, 0.011531, 0.985811] }, { "keytime": 3707.663818, "rotation": [ 0.090874, -0.139516, 0.013846, 0.985944] }, { "keytime": 3740.997070, "rotation": [ 0.090562, -0.138578, 0.016150, 0.986070] }, { "keytime": 3774.330322, "rotation": [ 0.090239, -0.137615, 0.018511, 0.986193] }, { "keytime": 3807.663574, "rotation": [ 0.089925, -0.136686, 0.020786, 0.986305] }, { "keytime": 3840.996826, "rotation": [ 0.089611, -0.135764, 0.023043, 0.986411] }, { "keytime": 3874.330078, "rotation": [ 0.089288, -0.134824, 0.025343, 0.986513] }, { "keytime": 3907.663330, "rotation": [ 0.088978, -0.133924, 0.027539, 0.986605] }, { "keytime": 3940.996582, "rotation": [ 0.088669, -0.133037, 0.029704, 0.986690] }, { "keytime": 3974.329834, "rotation": [ 0.088354, -0.132137, 0.031899, 0.986770] }, { "keytime": 4007.663086, "rotation": [ 0.088052, -0.131278, 0.033992, 0.986842] }, { "keytime": 4040.996338, "rotation": [ 0.087753, -0.130435, 0.036044, 0.986908] }, { "keytime": 4074.329590, "rotation": [ 0.087453, -0.129590, 0.038098, 0.986969] }, { "keytime": 4107.663086, "rotation": [ 0.087166, -0.128789, 0.040044, 0.987022] }, { "keytime": 4140.996094, "rotation": [ 0.086885, -0.128007, 0.041940, 0.987069] }, { "keytime": 4174.329590, "rotation": [ 0.086602, -0.127224, 0.043840, 0.987113] }, { "keytime": 4207.663086, "rotation": [ 0.086335, -0.126487, 0.045629, 0.987150] }, { "keytime": 4240.996582, "rotation": [ 0.086077, -0.125779, 0.047342, 0.987182] }, { "keytime": 4274.330078, "rotation": [ 0.085819, -0.125074, 0.049047, 0.987211] }, { "keytime": 4307.663574, "rotation": [ 0.085577, -0.124416, 0.050640, 0.987235] }, { "keytime": 4340.997070, "rotation": [ 0.085344, -0.123782, 0.052171, 0.987255] }, { "keytime": 4374.330566, "rotation": [ 0.085112, -0.123158, 0.053680, 0.987272] }, { "keytime": 4407.664062, "rotation": [ 0.084900, -0.122587, 0.055058, 0.987286] }, { "keytime": 4440.997559, "rotation": [ 0.084698, -0.122043, 0.056369, 0.987296] }, { "keytime": 4474.331055, "rotation": [ 0.084499, -0.121512, 0.057650, 0.987305] }, { "keytime": 4507.664551, "rotation": [ 0.084317, -0.121026, 0.058823, 0.987311] }, { "keytime": 4540.998047, "rotation": [ 0.084144, -0.120568, 0.059925, 0.987316] }, { "keytime": 4574.331543, "rotation": [ 0.083981, -0.120136, 0.060966, 0.987318] }, { "keytime": 4607.665039, "rotation": [ 0.083834, -0.119747, 0.061903, 0.987320] }, { "keytime": 4640.998535, "rotation": [ 0.083697, -0.119387, 0.062770, 0.987320] }, { "keytime": 4674.332031, "rotation": [ 0.083568, -0.119048, 0.063588, 0.987320] }, { "keytime": 4707.665527, "rotation": [ 0.083454, -0.118749, 0.064307, 0.987319] }, { "keytime": 4740.999023, "rotation": [ 0.083354, -0.118489, 0.064932, 0.987318] }, { "keytime": 4774.332520, "rotation": [ 0.083263, -0.118253, 0.065502, 0.987316] }, { "keytime": 4807.666016, "rotation": [ 0.083186, -0.118054, 0.065981, 0.987314] }, { "keytime": 4840.999512, "rotation": [ 0.083121, -0.117885, 0.066388, 0.987313] }, { "keytime": 4874.333008, "rotation": [ 0.083066, -0.117743, 0.066731, 0.987311] }, { "keytime": 4907.666504, "rotation": [ 0.083027, -0.117645, 0.066969, 0.987310] }, { "keytime": 4941.000000, "rotation": [ 0.082999, -0.117574, 0.067140, 0.987309] }, { "keytime": 4974.333496, "rotation": [ 0.082983, -0.117536, 0.067234, 0.987309] }, { "keytime": 5007.666992, "rotation": [ 0.082973, -0.117535, 0.067259, 0.987308] }, { "keytime": 5041.000488, "rotation": [ 0.082955, -0.117592, 0.067215, 0.987306] }, { "keytime": 5074.333984, "rotation": [ 0.082904, -0.117757, 0.067087, 0.987299] }, { "keytime": 5107.667480, "rotation": [ 0.082827, -0.118003, 0.066896, 0.987289] }, { "keytime": 5141.000977, "rotation": [ 0.082721, -0.118343, 0.066633, 0.987275] }, { "keytime": 5174.334473, "rotation": [ 0.082592, -0.118755, 0.066312, 0.987258] }, { "keytime": 5207.667969, "rotation": [ 0.082437, -0.119252, 0.065927, 0.987237] }, { "keytime": 5241.001465, "rotation": [ 0.082242, -0.119875, 0.065444, 0.987210] }, { "keytime": 5274.334961, "rotation": [ 0.082027, -0.120563, 0.064909, 0.987179] }, { "keytime": 5307.668457, "rotation": [ 0.081787, -0.121330, 0.064314, 0.987144] }, { "keytime": 5341.001953, "rotation": [ 0.081514, -0.122203, 0.063635, 0.987103] }, { "keytime": 5374.335449, "rotation": [ 0.081224, -0.123129, 0.062915, 0.987058] }, { "keytime": 5407.668945, "rotation": [ 0.080903, -0.124155, 0.062118, 0.987006] }, { "keytime": 5441.002441, "rotation": [ 0.080549, -0.125285, 0.061239, 0.986947] }, { "keytime": 5474.335938, "rotation": [ 0.080183, -0.126452, 0.060331, 0.986884] }, { "keytime": 5507.669434, "rotation": [ 0.079796, -0.127683, 0.059373, 0.986815] }, { "keytime": 5541.002930, "rotation": [ 0.079376, -0.129018, 0.058333, 0.986738] }, { "keytime": 5574.336426, "rotation": [ 0.078945, -0.130389, 0.057265, 0.986654] }, { "keytime": 5607.669922, "rotation": [ 0.078498, -0.131809, 0.056158, 0.986565] }, { "keytime": 5641.003418, "rotation": [ 0.078022, -0.133320, 0.054980, 0.986466] }, { "keytime": 5674.336914, "rotation": [ 0.077547, -0.134826, 0.053805, 0.986364] }, { "keytime": 5707.670410, "rotation": [ 0.077060, -0.136368, 0.052601, 0.986255] }, { "keytime": 5741.003906, "rotation": [ 0.076546, -0.137992, 0.051332, 0.986136] }, { "keytime": 5774.337402, "rotation": [ 0.076042, -0.139588, 0.050086, 0.986014] }, { "keytime": 5807.670898, "rotation": [ 0.075533, -0.141195, 0.048830, 0.985888] }, { "keytime": 5841.004395, "rotation": [ 0.075006, -0.142856, 0.047530, 0.985752] }, { "keytime": 5874.337891, "rotation": [ 0.074494, -0.144467, 0.046268, 0.985616] }, { "keytime": 5907.671387, "rotation": [ 0.073987, -0.146066, 0.045015, 0.985477] }, { "keytime": 5941.004883, "rotation": [ 0.073469, -0.147694, 0.043739, 0.985330] }, { "keytime": 5974.338379, "rotation": [ 0.072974, -0.149250, 0.042520, 0.985186] }, { "keytime": 6007.671875, "rotation": [ 0.072487, -0.150775, 0.041323, 0.985041] }, { "keytime": 6041.005371, "rotation": [ 0.071997, -0.152309, 0.040119, 0.984890] }, { "keytime": 6074.338867, "rotation": [ 0.071541, -0.153739, 0.038995, 0.984746] }, { "keytime": 6107.672363, "rotation": [ 0.071100, -0.155120, 0.037911, 0.984604] }, { "keytime": 6141.005859, "rotation": [ 0.070663, -0.156485, 0.036837, 0.984460] }, { "keytime": 6174.339355, "rotation": [ 0.070257, -0.157751, 0.035841, 0.984324] }, { "keytime": 6207.672852, "rotation": [ 0.069872, -0.158954, 0.034895, 0.984192] }, { "keytime": 6241.006348, "rotation": [ 0.069504, -0.160102, 0.033991, 0.984064] }, { "keytime": 6274.339844, "rotation": [ 0.069170, -0.161143, 0.033171, 0.983945] }, { "keytime": 6307.673340, "rotation": [ 0.068858, -0.162111, 0.032408, 0.983833] }, { "keytime": 6341.006836, "rotation": [ 0.068563, -0.163030, 0.031684, 0.983726] }, { "keytime": 6374.340332, "rotation": [ 0.068302, -0.163843, 0.031043, 0.983629] }, { "keytime": 6407.673828, "rotation": [ 0.068074, -0.164551, 0.030485, 0.983544] }, { "keytime": 6441.007324, "rotation": [ 0.067866, -0.165198, 0.029974, 0.983466] }, { "keytime": 6474.340820, "rotation": [ 0.067690, -0.165743, 0.029544, 0.983399] }, { "keytime": 6507.674316, "rotation": [ 0.067541, -0.166207, 0.029178, 0.983342] }, { "keytime": 6541.007812, "rotation": [ 0.067414, -0.166599, 0.028869, 0.983294] }, { "keytime": 6574.341309, "rotation": [ 0.067327, -0.166870, 0.028655, 0.983260] }, { "keytime": 6607.674805, "rotation": [ 0.067266, -0.167060, 0.028505, 0.983236] } ] }, { "boneId": "Bone_025", "keyframes": [ { "keytime": 41.000000, "rotation": [-0.041422, -0.091947, -0.032720, 0.994364] }, { "keytime": 74.333328, "rotation": [-0.041419, -0.091941, -0.032712, 0.994365] }, { "keytime": 107.666664, "rotation": [-0.041411, -0.091927, -0.032691, 0.994367] }, { "keytime": 141.000000, "rotation": [-0.041397, -0.091902, -0.032656, 0.994371] }, { "keytime": 174.333328, "rotation": [-0.041378, -0.091870, -0.032609, 0.994376] }, { "keytime": 207.666656, "rotation": [-0.041353, -0.091828, -0.032548, 0.994383] }, { "keytime": 240.999985, "rotation": [-0.041321, -0.091774, -0.032469, 0.994392] }, { "keytime": 274.333313, "rotation": [-0.041282, -0.091708, -0.032372, 0.994403] }, { "keytime": 307.666656, "rotation": [-0.041237, -0.091635, -0.032262, 0.994415] }, { "keytime": 341.000000, "rotation": [-0.041185, -0.091550, -0.032133, 0.994429] }, { "keytime": 374.333344, "rotation": [-0.041128, -0.091458, -0.031992, 0.994445] }, { "keytime": 407.666687, "rotation": [-0.041062, -0.091353, -0.031829, 0.994462] }, { "keytime": 441.000031, "rotation": [-0.040987, -0.091235, -0.031644, 0.994482] }, { "keytime": 474.333374, "rotation": [-0.040907, -0.091111, -0.031447, 0.994503] }, { "keytime": 507.666718, "rotation": [-0.040821, -0.090977, -0.031233, 0.994526] }, { "keytime": 541.000061, "rotation": [-0.040724, -0.090829, -0.030993, 0.994551] }, { "keytime": 574.333374, "rotation": [-0.040619, -0.090673, -0.030736, 0.994577] }, { "keytime": 607.666687, "rotation": [-0.040508, -0.090508, -0.030461, 0.994605] }, { "keytime": 641.000000, "rotation": [-0.040384, -0.090327, -0.030157, 0.994636] }, { "keytime": 674.333313, "rotation": [-0.040257, -0.090143, -0.029843, 0.994667] }, { "keytime": 707.666626, "rotation": [-0.040121, -0.089950, -0.029510, 0.994700] }, { "keytime": 740.999939, "rotation": [-0.039975, -0.089744, -0.029150, 0.994735] }, { "keytime": 774.333252, "rotation": [-0.039816, -0.089524, -0.028758, 0.994773] }, { "keytime": 807.666565, "rotation": [-0.039653, -0.089302, -0.028358, 0.994811] }, { "keytime": 840.999878, "rotation": [-0.039482, -0.089072, -0.027937, 0.994850] }, { "keytime": 874.333191, "rotation": [-0.039297, -0.088826, -0.027482, 0.994892] }, { "keytime": 907.666504, "rotation": [-0.039106, -0.088577, -0.027012, 0.994935] }, { "keytime": 940.999817, "rotation": [-0.038906, -0.088321, -0.026523, 0.994978] }, { "keytime": 974.333130, "rotation": [-0.038692, -0.088050, -0.025997, 0.995025] }, { "keytime": 1007.666443, "rotation": [-0.038476, -0.087781, -0.025466, 0.995071] }, { "keytime": 1040.999756, "rotation": [-0.038250, -0.087506, -0.024914, 0.995118] }, { "keytime": 1074.333130, "rotation": [-0.038007, -0.087214, -0.024318, 0.995167] }, { "keytime": 1107.666504, "rotation": [-0.037763, -0.086926, -0.023719, 0.995216] }, { "keytime": 1140.999878, "rotation": [-0.037510, -0.086633, -0.023101, 0.995266] }, { "keytime": 1174.333252, "rotation": [-0.037242, -0.086327, -0.022444, 0.995318] }, { "keytime": 1207.666626, "rotation": [-0.036973, -0.086026, -0.021787, 0.995368] }, { "keytime": 1241.000000, "rotation": [-0.036686, -0.085711, -0.021084, 0.995421] }, { "keytime": 1274.333374, "rotation": [-0.036399, -0.085404, -0.020384, 0.995473] }, { "keytime": 1307.666748, "rotation": [-0.036105, -0.085093, -0.019666, 0.995524] }, { "keytime": 1341.000122, "rotation": [-0.035795, -0.084772, -0.018908, 0.995578] }, { "keytime": 1374.333496, "rotation": [-0.035487, -0.084459, -0.018156, 0.995629] }, { "keytime": 1407.666870, "rotation": [-0.035170, -0.084145, -0.017383, 0.995681] }, { "keytime": 1441.000244, "rotation": [-0.034837, -0.083821, -0.016570, 0.995734] }, { "keytime": 1474.333618, "rotation": [-0.034507, -0.083508, -0.015767, 0.995785] }, { "keytime": 1507.666992, "rotation": [-0.034172, -0.083196, -0.014949, 0.995835] }, { "keytime": 1541.000366, "rotation": [-0.033820, -0.082873, -0.014093, 0.995886] }, { "keytime": 1574.333740, "rotation": [-0.033471, -0.082564, -0.013244, 0.995935] }, { "keytime": 1607.667114, "rotation": [-0.033118, -0.082256, -0.012384, 0.995984] }, { "keytime": 1641.000488, "rotation": [-0.032748, -0.081942, -0.011486, 0.996033] }, { "keytime": 1674.333862, "rotation": [-0.032385, -0.081640, -0.010603, 0.996079] }, { "keytime": 1707.667236, "rotation": [-0.032018, -0.081341, -0.009710, 0.996125] }, { "keytime": 1741.000610, "rotation": [-0.031634, -0.081038, -0.008777, 0.996170] }, { "keytime": 1774.333984, "rotation": [-0.031257, -0.080747, -0.007863, 0.996213] }, { "keytime": 1807.667358, "rotation": [-0.030877, -0.080461, -0.006941, 0.996255] }, { "keytime": 1841.000732, "rotation": [-0.030482, -0.080170, -0.005983, 0.996297] }, { "keytime": 1874.334106, "rotation": [-0.030096, -0.079893, -0.005046, 0.996336] }, { "keytime": 1907.667480, "rotation": [-0.029706, -0.079622, -0.004100, 0.996374] }, { "keytime": 1941.000854, "rotation": [-0.029301, -0.079348, -0.003120, 0.996411] }, { "keytime": 1974.334229, "rotation": [-0.028906, -0.079088, -0.002164, 0.996446] }, { "keytime": 2007.667603, "rotation": [-0.028509, -0.078832, -0.001203, 0.996479] }, { "keytime": 2041.000977, "rotation": [-0.028098, -0.078575, -0.000208, 0.996512] }, { "keytime": 2074.334473, "rotation": [-0.027696, -0.078332, 0.000763, 0.996542] }, { "keytime": 2107.667725, "rotation": [-0.027293, -0.078096, 0.001737, 0.996571] }, { "keytime": 2141.000977, "rotation": [-0.026877, -0.077858, 0.002744, 0.996598] }, { "keytime": 2174.334229, "rotation": [-0.026471, -0.077633, 0.003723, 0.996624] }, { "keytime": 2207.667480, "rotation": [-0.026065, -0.077414, 0.004705, 0.996647] }, { "keytime": 2241.000732, "rotation": [-0.025644, -0.077197, 0.005718, 0.996670] }, { "keytime": 2274.333984, "rotation": [-0.025236, -0.076992, 0.006704, 0.996690] }, { "keytime": 2307.667236, "rotation": [-0.024822, -0.076790, 0.007703, 0.996709] }, { "keytime": 2341.000488, "rotation": [-0.024383, -0.076582, 0.008760, 0.996727] }, { "keytime": 2374.333740, "rotation": [-0.023941, -0.076377, 0.009826, 0.996743] }, { "keytime": 2407.666992, "rotation": [-0.023476, -0.076169, 0.010945, 0.996758] }, { "keytime": 2441.000244, "rotation": [-0.022981, -0.075951, 0.012139, 0.996773] }, { "keytime": 2474.333496, "rotation": [-0.022483, -0.075737, 0.013338, 0.996785] }, { "keytime": 2507.666748, "rotation": [-0.021969, -0.075520, 0.014575, 0.996796] }, { "keytime": 2541.000000, "rotation": [-0.021422, -0.075293, 0.015892, 0.996805] }, { "keytime": 2574.333252, "rotation": [-0.020869, -0.075070, 0.017222, 0.996811] }, { "keytime": 2607.666504, "rotation": [-0.020300, -0.074844, 0.018590, 0.996815] }, { "keytime": 2640.999756, "rotation": [-0.019715, -0.074615, 0.019996, 0.996817] }, { "keytime": 2674.333008, "rotation": [-0.019097, -0.074377, 0.021484, 0.996816] }, { "keytime": 2707.666260, "rotation": [-0.018480, -0.074143, 0.022967, 0.996812] }, { "keytime": 2740.999512, "rotation": [-0.017843, -0.073906, 0.024497, 0.996805] }, { "keytime": 2774.332764, "rotation": [-0.017171, -0.073660, 0.026111, 0.996794] }, { "keytime": 2807.666016, "rotation": [-0.016504, -0.073419, 0.027712, 0.996780] }, { "keytime": 2840.999268, "rotation": [-0.015823, -0.073175, 0.029348, 0.996762] }, { "keytime": 2874.332520, "rotation": [-0.015107, -0.072922, 0.031069, 0.996739] }, { "keytime": 2907.665771, "rotation": [-0.014393, -0.072674, 0.032782, 0.996713] }, { "keytime": 2940.999023, "rotation": [-0.013666, -0.072424, 0.034526, 0.996682] }, { "keytime": 2974.332275, "rotation": [-0.012905, -0.072165, 0.036353, 0.996646] }, { "keytime": 3007.665527, "rotation": [-0.012153, -0.071913, 0.038155, 0.996607] }, { "keytime": 3040.998779, "rotation": [-0.011391, -0.071657, 0.039985, 0.996562] }, { "keytime": 3074.332031, "rotation": [-0.010590, -0.071394, 0.041904, 0.996511] }, { "keytime": 3107.665283, "rotation": [-0.009803, -0.071137, 0.043791, 0.996457] }, { "keytime": 3140.998535, "rotation": [-0.009006, -0.070879, 0.045700, 0.996397] }, { "keytime": 3174.331787, "rotation": [-0.008177, -0.070613, 0.047688, 0.996330] }, { "keytime": 3207.665039, "rotation": [-0.007363, -0.070354, 0.049636, 0.996259] }, { "keytime": 3240.998291, "rotation": [-0.006541, -0.070095, 0.051606, 0.996183] }, { "keytime": 3274.331543, "rotation": [-0.005688, -0.069829, 0.053649, 0.996099] }, { "keytime": 3307.664795, "rotation": [-0.004854, -0.069570, 0.055644, 0.996012] }, { "keytime": 3340.998047, "rotation": [-0.004017, -0.069311, 0.057649, 0.995920] }, { "keytime": 3374.331299, "rotation": [-0.003150, -0.069046, 0.059722, 0.995819] }, { "keytime": 3440.997803, "rotation": [-0.001462, -0.068535, 0.063761, 0.995608] }, { "keytime": 3474.331055, "rotation": [-0.000592, -0.068273, 0.065843, 0.995491] }, { "keytime": 3507.664307, "rotation": [ 0.000252, -0.068021, 0.067861, 0.995373] }, { "keytime": 3540.997559, "rotation": [ 0.001094, -0.067771, 0.069874, 0.995251] }, { "keytime": 3574.330811, "rotation": [ 0.001957, -0.067516, 0.071937, 0.995120] }, { "keytime": 3607.664062, "rotation": [ 0.002791, -0.067272, 0.073928, 0.994988] }, { "keytime": 3640.997314, "rotation": [ 0.003618, -0.067030, 0.075906, 0.994853] }, { "keytime": 3674.330566, "rotation": [ 0.004465, -0.066784, 0.077927, 0.994710] }, { "keytime": 3707.663818, "rotation": [ 0.005278, -0.066548, 0.079871, 0.994567] }, { "keytime": 3740.997070, "rotation": [ 0.006081, -0.066317, 0.081787, 0.994422] }, { "keytime": 3774.330322, "rotation": [ 0.006898, -0.066083, 0.083737, 0.994270] }, { "keytime": 3807.663574, "rotation": [ 0.007680, -0.065859, 0.085604, 0.994120] }, { "keytime": 3840.996826, "rotation": [ 0.008450, -0.065640, 0.087443, 0.993969] }, { "keytime": 3874.330078, "rotation": [ 0.009231, -0.065418, 0.089305, 0.993811] }, { "keytime": 3907.663330, "rotation": [ 0.009971, -0.065210, 0.091070, 0.993657] }, { "keytime": 3940.996582, "rotation": [ 0.010696, -0.065006, 0.092800, 0.993503] }, { "keytime": 3974.329834, "rotation": [ 0.011428, -0.064800, 0.094545, 0.993344] }, { "keytime": 4007.663086, "rotation": [ 0.012121, -0.064606, 0.096199, 0.993189] }, { "keytime": 4040.996338, "rotation": [ 0.012798, -0.064417, 0.097812, 0.993035] }, { "keytime": 4074.329590, "rotation": [ 0.013472, -0.064231, 0.099418, 0.992879] }, { "keytime": 4107.663086, "rotation": [ 0.014107, -0.064055, 0.100932, 0.992729] }, { "keytime": 4140.996094, "rotation": [ 0.014723, -0.063885, 0.102401, 0.992580] }, { "keytime": 4174.329590, "rotation": [ 0.015338, -0.063715, 0.103866, 0.992430] }, { "keytime": 4207.663086, "rotation": [ 0.015914, -0.063557, 0.105239, 0.992286] }, { "keytime": 4240.996582, "rotation": [ 0.016464, -0.063406, 0.106549, 0.992147] }, { "keytime": 4274.330078, "rotation": [ 0.017009, -0.063258, 0.107847, 0.992007] }, { "keytime": 4307.663574, "rotation": [ 0.017516, -0.063119, 0.109055, 0.991875] }, { "keytime": 4340.997070, "rotation": [ 0.018002, -0.062987, 0.110212, 0.991747] }, { "keytime": 4374.330566, "rotation": [ 0.018479, -0.062858, 0.111348, 0.991619] }, { "keytime": 4407.664062, "rotation": [ 0.018913, -0.062741, 0.112382, 0.991502] }, { "keytime": 4440.997559, "rotation": [ 0.019325, -0.062629, 0.113362, 0.991389] }, { "keytime": 4474.331055, "rotation": [ 0.019726, -0.062521, 0.114317, 0.991279] }, { "keytime": 4507.664551, "rotation": [ 0.020093, -0.062423, 0.115190, 0.991177] }, { "keytime": 4540.998047, "rotation": [ 0.020436, -0.062331, 0.116006, 0.991080] }, { "keytime": 4574.331543, "rotation": [ 0.020759, -0.062244, 0.116775, 0.990988] }, { "keytime": 4607.665039, "rotation": [ 0.021050, -0.062167, 0.117466, 0.990906] }, { "keytime": 4640.998535, "rotation": [ 0.021317, -0.062096, 0.118103, 0.990829] }, { "keytime": 4674.332031, "rotation": [ 0.021569, -0.062029, 0.118702, 0.990756] }, { "keytime": 4707.665527, "rotation": [ 0.021791, -0.061970, 0.119229, 0.990691] }, { "keytime": 4740.999023, "rotation": [ 0.021982, -0.061919, 0.119685, 0.990635] }, { "keytime": 4774.332520, "rotation": [ 0.022156, -0.061873, 0.120099, 0.990584] }, { "keytime": 4807.666016, "rotation": [ 0.022303, -0.061835, 0.120448, 0.990541] }, { "keytime": 4840.999512, "rotation": [ 0.022427, -0.061802, 0.120743, 0.990504] }, { "keytime": 4874.333008, "rotation": [ 0.022532, -0.061774, 0.120992, 0.990473] }, { "keytime": 4907.666504, "rotation": [ 0.022604, -0.061755, 0.121164, 0.990452] }, { "keytime": 4941.000000, "rotation": [ 0.022656, -0.061742, 0.121288, 0.990436] }, { "keytime": 4974.333496, "rotation": [ 0.022685, -0.061734, 0.121356, 0.990428] }, { "keytime": 5007.666992, "rotation": [ 0.022679, -0.061739, 0.121343, 0.990429] }, { "keytime": 5041.000488, "rotation": [ 0.022608, -0.061774, 0.121173, 0.990449] }, { "keytime": 5074.333984, "rotation": [ 0.022399, -0.061876, 0.120673, 0.990509] }, { "keytime": 5107.667480, "rotation": [ 0.022086, -0.062029, 0.119925, 0.990597] }, { "keytime": 5141.000977, "rotation": [ 0.021653, -0.062240, 0.118892, 0.990718] }, { "keytime": 5174.334473, "rotation": [ 0.021127, -0.062496, 0.117635, 0.990863] }, { "keytime": 5207.667969, "rotation": [ 0.020493, -0.062804, 0.116120, 0.991036] }, { "keytime": 5241.001465, "rotation": [ 0.019697, -0.063192, 0.114218, 0.991248] }, { "keytime": 5274.334961, "rotation": [ 0.018817, -0.063620, 0.112114, 0.991478] }, { "keytime": 5307.668457, "rotation": [ 0.017835, -0.064097, 0.109766, 0.991728] }, { "keytime": 5341.001953, "rotation": [ 0.016715, -0.064639, 0.107090, 0.992005] }, { "keytime": 5374.335449, "rotation": [ 0.015527, -0.065214, 0.104249, 0.992289] }, { "keytime": 5407.668945, "rotation": [ 0.014211, -0.065851, 0.101100, 0.992593] }, { "keytime": 5441.002441, "rotation": [ 0.012759, -0.066553, 0.097626, 0.992913] }, { "keytime": 5474.335938, "rotation": [ 0.011259, -0.067276, 0.094036, 0.993229] }, { "keytime": 5507.669434, "rotation": [ 0.009674, -0.068039, 0.090241, 0.993546] }, { "keytime": 5541.002930, "rotation": [ 0.007955, -0.068864, 0.086125, 0.993870] }, { "keytime": 5574.336426, "rotation": [ 0.006188, -0.069713, 0.081891, 0.994181] }, { "keytime": 5607.669922, "rotation": [ 0.004357, -0.070591, 0.077500, 0.994481] }, { "keytime": 5641.003418, "rotation": [ 0.002407, -0.071523, 0.072826, 0.994774] }, { "keytime": 5674.336914, "rotation": [ 0.000461, -0.072449, 0.068159, 0.995040] }, { "keytime": 5707.670410, "rotation": [-0.001533, -0.073396, 0.063378, 0.995286] }, { "keytime": 5741.003906, "rotation": [-0.003633, -0.074395, 0.058335, 0.995515] }, { "keytime": 5774.337402, "rotation": [-0.005696, -0.075373, 0.053380, 0.995709] }, { "keytime": 5807.670898, "rotation": [-0.007775, -0.076356, 0.048385, 0.995876] }, { "keytime": 5841.004395, "rotation": [-0.009927, -0.077369, 0.043216, 0.996016] }, { "keytime": 5874.337891, "rotation": [-0.012015, -0.078349, 0.038198, 0.996121] }, { "keytime": 5907.671387, "rotation": [-0.014085, -0.079323, 0.033218, 0.996196] }, { "keytime": 5941.004883, "rotation": [-0.016193, -0.080312, 0.028144, 0.996241] }, { "keytime": 5974.338379, "rotation": [-0.018207, -0.081253, 0.023295, 0.996255] }, { "keytime": 6007.671875, "rotation": [-0.020183, -0.082173, 0.018538, 0.996241] }, { "keytime": 6041.005371, "rotation": [-0.022170, -0.083095, 0.013754, 0.996200] }, { "keytime": 6074.338867, "rotation": [-0.024021, -0.083956, 0.009292, 0.996137] }, { "keytime": 6107.672363, "rotation": [-0.025807, -0.084785, 0.004985, 0.996053] }, { "keytime": 6141.005859, "rotation": [-0.027574, -0.085601, 0.000725, 0.995948] }, { "keytime": 6174.339355, "rotation": [-0.029212, -0.086356, -0.003225, 0.995831] }, { "keytime": 6207.672852, "rotation": [-0.030767, -0.087071, -0.006977, 0.995702] }, { "keytime": 6241.006348, "rotation": [-0.032250, -0.087755, -0.010558, 0.995564] }, { "keytime": 6274.339844, "rotation": [-0.033594, -0.088372, -0.013804, 0.995425] }, { "keytime": 6307.673340, "rotation": [-0.034845, -0.088945, -0.016824, 0.995285] }, { "keytime": 6341.006836, "rotation": [-0.036030, -0.089488, -0.019687, 0.995141] }, { "keytime": 6374.340332, "rotation": [-0.037080, -0.089967, -0.022222, 0.995006] }, { "keytime": 6407.673828, "rotation": [-0.037993, -0.090385, -0.024429, 0.994882] }, { "keytime": 6441.007324, "rotation": [-0.038827, -0.090765, -0.026444, 0.994764] }, { "keytime": 6474.340820, "rotation": [-0.039529, -0.091085, -0.028142, 0.994660] }, { "keytime": 6507.674316, "rotation": [-0.040127, -0.091358, -0.029589, 0.994569] }, { "keytime": 6541.007812, "rotation": [-0.040632, -0.091587, -0.030809, 0.994491] }, { "keytime": 6574.341309, "rotation": [-0.040981, -0.091746, -0.031652, 0.994435] }, { "keytime": 6607.674805, "rotation": [-0.041226, -0.091858, -0.032245, 0.994396] } ] }, { "boneId": "Bone_015", "keyframes": [ { "keytime": 41.000000, "rotation": [-0.330449, 0.523340, -0.137150, 0.773375] }, { "keytime": 74.333328, "rotation": [-0.330446, 0.523341, -0.137148, 0.773376] }, { "keytime": 107.666664, "rotation": [-0.330440, 0.523343, -0.137144, 0.773377] }, { "keytime": 141.000000, "rotation": [-0.330429, 0.523348, -0.137138, 0.773380] }, { "keytime": 174.333328, "rotation": [-0.330415, 0.523353, -0.137130, 0.773384] }, { "keytime": 207.666656, "rotation": [-0.330396, 0.523361, -0.137120, 0.773388] }, { "keytime": 240.999985, "rotation": [-0.330373, 0.523371, -0.137107, 0.773394] }, { "keytime": 274.333313, "rotation": [-0.330344, 0.523382, -0.137091, 0.773401] }, { "keytime": 307.666656, "rotation": [-0.330313, 0.523395, -0.137074, 0.773409] }, { "keytime": 341.000000, "rotation": [-0.330276, 0.523410, -0.137053, 0.773418] }, { "keytime": 374.333344, "rotation": [-0.330236, 0.523426, -0.137031, 0.773428] }, { "keytime": 407.666687, "rotation": [-0.330192, 0.523445, -0.137006, 0.773440] }, { "keytime": 441.000031, "rotation": [-0.330141, 0.523465, -0.136978, 0.773452] }, { "keytime": 474.333374, "rotation": [-0.330089, 0.523486, -0.136949, 0.773465] }, { "keytime": 507.666718, "rotation": [-0.330032, 0.523509, -0.136917, 0.773479] }, { "keytime": 541.000061, "rotation": [-0.329971, 0.523535, -0.136883, 0.773495] }, { "keytime": 574.333374, "rotation": [-0.329906, 0.523561, -0.136847, 0.773511] }, { "keytime": 607.666687, "rotation": [-0.329837, 0.523589, -0.136808, 0.773528] }, { "keytime": 674.333313, "rotation": [-0.329688, 0.523650, -0.136725, 0.773565] }, { "keytime": 707.666626, "rotation": [-0.329609, 0.523682, -0.136681, 0.773585] }, { "keytime": 740.999939, "rotation": [-0.329527, 0.523716, -0.136635, 0.773605] }, { "keytime": 807.666565, "rotation": [-0.329351, 0.523788, -0.136537, 0.773649] }, { "keytime": 840.999878, "rotation": [-0.329260, 0.523825, -0.136487, 0.773671] }, { "keytime": 907.666504, "rotation": [-0.329068, 0.523903, -0.136380, 0.773719] }, { "keytime": 940.999817, "rotation": [-0.328970, 0.523943, -0.136325, 0.773743] }, { "keytime": 1040.999756, "rotation": [-0.328664, 0.524068, -0.136154, 0.773819] }, { "keytime": 1074.333130, "rotation": [-0.328557, 0.524111, -0.136095, 0.773845] }, { "keytime": 1140.999878, "rotation": [-0.328347, 0.524197, -0.135979, 0.773896] }, { "keytime": 1174.333252, "rotation": [-0.328239, 0.524241, -0.135919, 0.773923] }, { "keytime": 1207.666626, "rotation": [-0.328135, 0.524284, -0.135861, 0.773948] }, { "keytime": 1241.000000, "rotation": [-0.328027, 0.524328, -0.135801, 0.773975] }, { "keytime": 1341.000122, "rotation": [-0.327713, 0.524456, -0.135627, 0.774051] }, { "keytime": 1374.333496, "rotation": [-0.327612, 0.524497, -0.135571, 0.774076] }, { "keytime": 1441.000244, "rotation": [-0.327414, 0.524579, -0.135461, 0.774124] }, { "keytime": 1474.333618, "rotation": [-0.327319, 0.524617, -0.135408, 0.774147] }, { "keytime": 1541.000366, "rotation": [-0.327133, 0.524693, -0.135305, 0.774192] }, { "keytime": 1574.333740, "rotation": [-0.327047, 0.524729, -0.135257, 0.774213] }, { "keytime": 1641.000488, "rotation": [-0.326880, 0.524797, -0.135164, 0.774253] }, { "keytime": 1674.333862, "rotation": [-0.326802, 0.524829, -0.135121, 0.774272] }, { "keytime": 1707.667236, "rotation": [-0.326728, 0.524860, -0.135080, 0.774290] }, { "keytime": 1741.000610, "rotation": [-0.326656, 0.524890, -0.135040, 0.774307] }, { "keytime": 1774.333984, "rotation": [-0.326589, 0.524917, -0.135003, 0.774323] }, { "keytime": 1841.000732, "rotation": [-0.326465, 0.524968, -0.134935, 0.774352] }, { "keytime": 1874.334106, "rotation": [-0.326410, 0.524991, -0.134905, 0.774365] }, { "keytime": 1907.667480, "rotation": [-0.326360, 0.525012, -0.134877, 0.774377] }, { "keytime": 1941.000854, "rotation": [-0.326312, 0.525032, -0.134851, 0.774388] }, { "keytime": 1974.334229, "rotation": [-0.326269, 0.525050, -0.134827, 0.774398] }, { "keytime": 2007.667603, "rotation": [-0.326231, 0.525067, -0.134806, 0.774407] }, { "keytime": 2041.000977, "rotation": [-0.326195, 0.525082, -0.134787, 0.774415] }, { "keytime": 2074.334473, "rotation": [-0.326166, 0.525094, -0.134771, 0.774422] }, { "keytime": 2107.667725, "rotation": [-0.326140, 0.525105, -0.134757, 0.774427] }, { "keytime": 2141.000977, "rotation": [-0.326118, 0.525115, -0.134745, 0.774432] }, { "keytime": 2174.334229, "rotation": [-0.326101, 0.525123, -0.134736, 0.774435] }, { "keytime": 2207.667480, "rotation": [-0.326088, 0.525129, -0.134729, 0.774438] }, { "keytime": 2241.000732, "rotation": [-0.326079, 0.525133, -0.134725, 0.774439] }, { "keytime": 2274.333984, "rotation": [-0.326075, 0.525136, -0.134723, 0.774440] }, { "keytime": 2307.667236, "rotation": [-0.326075, 0.525137, -0.134724, 0.774439] }, { "keytime": 2341.000488, "rotation": [-0.326078, 0.525137, -0.134726, 0.774437] }, { "keytime": 2374.333740, "rotation": [-0.326085, 0.525135, -0.134731, 0.774435] }, { "keytime": 2407.666992, "rotation": [-0.326097, 0.525133, -0.134738, 0.774430] }, { "keytime": 2441.000244, "rotation": [-0.326112, 0.525129, -0.134747, 0.774425] }, { "keytime": 2474.333496, "rotation": [-0.326130, 0.525125, -0.134759, 0.774418] }, { "keytime": 2507.666748, "rotation": [-0.326152, 0.525119, -0.134772, 0.774410] }, { "keytime": 2541.000000, "rotation": [-0.326179, 0.525112, -0.134788, 0.774401] }, { "keytime": 2574.333252, "rotation": [-0.326209, 0.525104, -0.134807, 0.774391] }, { "keytime": 2607.666504, "rotation": [-0.326243, 0.525095, -0.134827, 0.774379] }, { "keytime": 2640.999756, "rotation": [-0.326280, 0.525084, -0.134849, 0.774366] }, { "keytime": 2674.333008, "rotation": [-0.326322, 0.525073, -0.134875, 0.774352] }, { "keytime": 2707.666260, "rotation": [-0.326367, 0.525060, -0.134901, 0.774337] }, { "keytime": 2740.999512, "rotation": [-0.326416, 0.525047, -0.134931, 0.774321] }, { "keytime": 2807.666016, "rotation": [-0.326526, 0.525016, -0.134996, 0.774284] }, { "keytime": 2840.999268, "rotation": [-0.326585, 0.524999, -0.135032, 0.774264] }, { "keytime": 2874.332520, "rotation": [-0.326649, 0.524981, -0.135070, 0.774243] }, { "keytime": 2907.665771, "rotation": [-0.326716, 0.524961, -0.135110, 0.774220] }, { "keytime": 2940.999023, "rotation": [-0.326786, 0.524941, -0.135152, 0.774197] }, { "keytime": 3007.665527, "rotation": [-0.326938, 0.524898, -0.135242, 0.774147] }, { "keytime": 3040.998779, "rotation": [-0.327017, 0.524875, -0.135290, 0.774121] }, { "keytime": 3107.665283, "rotation": [-0.327189, 0.524825, -0.135392, 0.774064] }, { "keytime": 3140.998535, "rotation": [-0.327277, 0.524800, -0.135444, 0.774035] }, { "keytime": 3207.665039, "rotation": [-0.327465, 0.524745, -0.135556, 0.773973] }, { "keytime": 3240.998291, "rotation": [-0.327561, 0.524717, -0.135613, 0.773941] }, { "keytime": 3340.998047, "rotation": [-0.327866, 0.524629, -0.135794, 0.773840] }, { "keytime": 3440.997803, "rotation": [-0.328188, 0.524534, -0.135984, 0.773734] }, { "keytime": 3474.331055, "rotation": [-0.328300, 0.524501, -0.136051, 0.773697] }, { "keytime": 3540.997559, "rotation": [-0.328520, 0.524437, -0.136182, 0.773625] }, { "keytime": 3574.330811, "rotation": [-0.328635, 0.524403, -0.136250, 0.773587] }, { "keytime": 3640.997314, "rotation": [-0.328859, 0.524337, -0.136382, 0.773513] }, { "keytime": 3674.330566, "rotation": [-0.328974, 0.524303, -0.136450, 0.773475] }, { "keytime": 3740.997070, "rotation": [-0.329197, 0.524237, -0.136582, 0.773402] }, { "keytime": 3774.330322, "rotation": [-0.329311, 0.524203, -0.136650, 0.773364] }, { "keytime": 3874.330078, "rotation": [-0.329641, 0.524106, -0.136846, 0.773255] }, { "keytime": 3907.663330, "rotation": [-0.329748, 0.524074, -0.136909, 0.773220] }, { "keytime": 3974.329834, "rotation": [-0.329959, 0.524011, -0.137034, 0.773150] }, { "keytime": 4007.663086, "rotation": [-0.330060, 0.523981, -0.137094, 0.773116] }, { "keytime": 4074.329590, "rotation": [-0.330259, 0.523922, -0.137212, 0.773051] }, { "keytime": 4107.663086, "rotation": [-0.330354, 0.523894, -0.137268, 0.773019] }, { "keytime": 4174.329590, "rotation": [-0.330538, 0.523839, -0.137377, 0.772958] }, { "keytime": 4207.663086, "rotation": [-0.330624, 0.523814, -0.137428, 0.772930] }, { "keytime": 4274.330078, "rotation": [-0.330790, 0.523764, -0.137527, 0.772875] }, { "keytime": 4307.663574, "rotation": [-0.330868, 0.523741, -0.137572, 0.772849] }, { "keytime": 4374.330566, "rotation": [-0.331015, 0.523697, -0.137660, 0.772800] }, { "keytime": 4407.664062, "rotation": [-0.331082, 0.523677, -0.137699, 0.772778] }, { "keytime": 4474.331055, "rotation": [-0.331208, 0.523639, -0.137774, 0.772736] }, { "keytime": 4507.664551, "rotation": [-0.331266, 0.523622, -0.137808, 0.772717] }, { "keytime": 4540.998047, "rotation": [-0.331319, 0.523606, -0.137839, 0.772699] }, { "keytime": 4574.331543, "rotation": [-0.331370, 0.523591, -0.137869, 0.772683] }, { "keytime": 4607.665039, "rotation": [-0.331416, 0.523577, -0.137896, 0.772668] }, { "keytime": 4640.998535, "rotation": [-0.331458, 0.523565, -0.137921, 0.772653] }, { "keytime": 4674.332031, "rotation": [-0.331498, 0.523553, -0.137945, 0.772640] }, { "keytime": 4707.665527, "rotation": [-0.331533, 0.523542, -0.137966, 0.772629] }, { "keytime": 4740.999023, "rotation": [-0.331563, 0.523533, -0.137984, 0.772619] }, { "keytime": 4774.332520, "rotation": [-0.331591, 0.523525, -0.138000, 0.772609] }, { "keytime": 4807.666016, "rotation": [-0.331614, 0.523518, -0.138014, 0.772602] }, { "keytime": 4840.999512, "rotation": [-0.331634, 0.523512, -0.138026, 0.772595] }, { "keytime": 4874.333008, "rotation": [-0.331651, 0.523507, -0.138036, 0.772589] }, { "keytime": 4907.666504, "rotation": [-0.331663, 0.523503, -0.138043, 0.772586] }, { "keytime": 4941.000000, "rotation": [-0.331671, 0.523501, -0.138048, 0.772583] }, { "keytime": 4974.333496, "rotation": [-0.331676, 0.523499, -0.138050, 0.772581] }, { "keytime": 5007.666992, "rotation": [-0.331677, 0.523499, -0.138051, 0.772581] }, { "keytime": 5041.000488, "rotation": [-0.331676, 0.523499, -0.138050, 0.772582] }, { "keytime": 5074.333984, "rotation": [-0.331672, 0.523498, -0.138047, 0.772584] }, { "keytime": 5107.667480, "rotation": [-0.331666, 0.523497, -0.138043, 0.772588] }, { "keytime": 5174.334473, "rotation": [-0.331647, 0.523495, -0.138029, 0.772600] }, { "keytime": 5207.667969, "rotation": [-0.331635, 0.523493, -0.138020, 0.772608] }, { "keytime": 5274.334961, "rotation": [-0.331603, 0.523489, -0.137997, 0.772629] }, { "keytime": 5307.668457, "rotation": [-0.331584, 0.523487, -0.137983, 0.772641] }, { "keytime": 5374.335449, "rotation": [-0.331540, 0.523481, -0.137950, 0.772670] }, { "keytime": 5407.668945, "rotation": [-0.331515, 0.523478, -0.137932, 0.772686] }, { "keytime": 5474.335938, "rotation": [-0.331458, 0.523470, -0.137890, 0.772723] }, { "keytime": 5507.669434, "rotation": [-0.331428, 0.523467, -0.137868, 0.772742] }, { "keytime": 5574.336426, "rotation": [-0.331361, 0.523458, -0.137819, 0.772786] }, { "keytime": 5607.669922, "rotation": [-0.331326, 0.523453, -0.137793, 0.772808] }, { "keytime": 5707.670410, "rotation": [-0.331214, 0.523439, -0.137710, 0.772881] }, { "keytime": 5974.338379, "rotation": [-0.330896, 0.523397, -0.137478, 0.773087] }, { "keytime": 6041.005371, "rotation": [-0.330820, 0.523387, -0.137422, 0.773136] }, { "keytime": 6141.005859, "rotation": [-0.330716, 0.523374, -0.137345, 0.773203] }, { "keytime": 6207.672852, "rotation": [-0.330654, 0.523366, -0.137300, 0.773242] }, { "keytime": 6241.006348, "rotation": [-0.330626, 0.523363, -0.137279, 0.773261] }, { "keytime": 6307.673340, "rotation": [-0.330576, 0.523356, -0.137243, 0.773293] }, { "keytime": 6341.006836, "rotation": [-0.330553, 0.523353, -0.137226, 0.773308] }, { "keytime": 6374.340332, "rotation": [-0.330533, 0.523350, -0.137211, 0.773321] }, { "keytime": 6441.007324, "rotation": [-0.330499, 0.523346, -0.137186, 0.773343] }, { "keytime": 6474.340820, "rotation": [-0.330486, 0.523344, -0.137176, 0.773352] }, { "keytime": 6541.007812, "rotation": [-0.330464, 0.523342, -0.137161, 0.773365] }, { "keytime": 6607.674805, "rotation": [-0.330453, 0.523340, -0.137152, 0.773373] } ] }, { "boneId": "Bone_016", "keyframes": [ { "keytime": 41.000000, "rotation": [ 0.011480, 0.074558, 0.092250, 0.992874] }, { "keytime": 74.333328, "rotation": [ 0.011481, 0.074559, 0.092252, 0.992874] }, { "keytime": 107.666664, "rotation": [ 0.011484, 0.074560, 0.092257, 0.992873] }, { "keytime": 141.000000, "rotation": [ 0.011489, 0.074561, 0.092265, 0.992872] }, { "keytime": 174.333328, "rotation": [ 0.011496, 0.074563, 0.092277, 0.992871] }, { "keytime": 207.666656, "rotation": [ 0.011504, 0.074564, 0.092291, 0.992870] }, { "keytime": 240.999985, "rotation": [ 0.011515, 0.074566, 0.092310, 0.992868] }, { "keytime": 274.333313, "rotation": [ 0.011528, 0.074568, 0.092332, 0.992865] }, { "keytime": 307.666656, "rotation": [ 0.011543, 0.074571, 0.092357, 0.992863] }, { "keytime": 341.000000, "rotation": [ 0.011560, 0.074574, 0.092386, 0.992859] }, { "keytime": 374.333344, "rotation": [ 0.011578, 0.074577, 0.092418, 0.992856] }, { "keytime": 407.666687, "rotation": [ 0.011598, 0.074580, 0.092453, 0.992852] }, { "keytime": 474.333374, "rotation": [ 0.011646, 0.074587, 0.092534, 0.992844] }, { "keytime": 507.666718, "rotation": [ 0.011672, 0.074591, 0.092579, 0.992839] }, { "keytime": 541.000061, "rotation": [ 0.011700, 0.074595, 0.092628, 0.992834] }, { "keytime": 574.333374, "rotation": [ 0.011730, 0.074600, 0.092679, 0.992828] }, { "keytime": 607.666687, "rotation": [ 0.011762, 0.074604, 0.092733, 0.992822] }, { "keytime": 674.333313, "rotation": [ 0.011831, 0.074614, 0.092851, 0.992810] }, { "keytime": 707.666626, "rotation": [ 0.011867, 0.074619, 0.092913, 0.992803] }, { "keytime": 740.999939, "rotation": [ 0.011905, 0.074625, 0.092979, 0.992796] }, { "keytime": 807.666565, "rotation": [ 0.011986, 0.074636, 0.093118, 0.992781] }, { "keytime": 840.999878, "rotation": [ 0.012028, 0.074642, 0.093189, 0.992774] }, { "keytime": 940.999817, "rotation": [ 0.012162, 0.074661, 0.093419, 0.992749] }, { "keytime": 1040.999756, "rotation": [ 0.012302, 0.074681, 0.093661, 0.992723] }, { "keytime": 1140.999878, "rotation": [ 0.012448, 0.074703, 0.093910, 0.992696] }, { "keytime": 1174.333252, "rotation": [ 0.012498, 0.074712, 0.093996, 0.992687] }, { "keytime": 1207.666626, "rotation": [ 0.012545, 0.074720, 0.094078, 0.992678] }, { "keytime": 1241.000000, "rotation": [ 0.012595, 0.074729, 0.094164, 0.992668] }, { "keytime": 1307.666748, "rotation": [ 0.012690, 0.074746, 0.094327, 0.992650] }, { "keytime": 1341.000122, "rotation": [ 0.012738, 0.074754, 0.094410, 0.992641] }, { "keytime": 1374.333496, "rotation": [ 0.012785, 0.074763, 0.094490, 0.992632] }, { "keytime": 1441.000244, "rotation": [ 0.012876, 0.074779, 0.094646, 0.992615] }, { "keytime": 1541.000366, "rotation": [ 0.013004, 0.074803, 0.094868, 0.992590] }, { "keytime": 1574.333740, "rotation": [ 0.013044, 0.074810, 0.094936, 0.992583] }, { "keytime": 1641.000488, "rotation": [ 0.013120, 0.074825, 0.095068, 0.992568] }, { "keytime": 1674.333862, "rotation": [ 0.013156, 0.074832, 0.095129, 0.992561] }, { "keytime": 1741.000610, "rotation": [ 0.013223, 0.074846, 0.095244, 0.992548] }, { "keytime": 1774.333984, "rotation": [ 0.013253, 0.074854, 0.095297, 0.992542] }, { "keytime": 1841.000732, "rotation": [ 0.013309, 0.074869, 0.095394, 0.992531] }, { "keytime": 1874.334106, "rotation": [ 0.013334, 0.074876, 0.095438, 0.992526] }, { "keytime": 1941.000854, "rotation": [ 0.013379, 0.074889, 0.095515, 0.992517] }, { "keytime": 1974.334229, "rotation": [ 0.013398, 0.074895, 0.095549, 0.992513] }, { "keytime": 2007.667603, "rotation": [ 0.013415, 0.074901, 0.095579, 0.992509] }, { "keytime": 2041.000977, "rotation": [ 0.013431, 0.074907, 0.095607, 0.992506] }, { "keytime": 2074.334473, "rotation": [ 0.013444, 0.074913, 0.095630, 0.992503] }, { "keytime": 2107.667725, "rotation": [ 0.013456, 0.074918, 0.095650, 0.992501] }, { "keytime": 2141.000977, "rotation": [ 0.013465, 0.074923, 0.095667, 0.992498] }, { "keytime": 2174.334229, "rotation": [ 0.013473, 0.074927, 0.095681, 0.992497] }, { "keytime": 2207.667480, "rotation": [ 0.013479, 0.074932, 0.095691, 0.992495] }, { "keytime": 2241.000732, "rotation": [ 0.013482, 0.074936, 0.095698, 0.992494] }, { "keytime": 2274.333984, "rotation": [ 0.013483, 0.074940, 0.095701, 0.992494] }, { "keytime": 2307.667236, "rotation": [ 0.013483, 0.074943, 0.095701, 0.992493] }, { "keytime": 2341.000488, "rotation": [ 0.013481, 0.074947, 0.095698, 0.992493] }, { "keytime": 2374.333740, "rotation": [ 0.013478, 0.074952, 0.095693, 0.992494] }, { "keytime": 2407.666992, "rotation": [ 0.013472, 0.074956, 0.095684, 0.992494] }, { "keytime": 2441.000244, "rotation": [ 0.013464, 0.074961, 0.095672, 0.992495] }, { "keytime": 2474.333496, "rotation": [ 0.013455, 0.074964, 0.095657, 0.992496] }, { "keytime": 2507.666748, "rotation": [ 0.013444, 0.074968, 0.095640, 0.992498] }, { "keytime": 2541.000000, "rotation": [ 0.013432, 0.074972, 0.095619, 0.992500] }, { "keytime": 2574.333252, "rotation": [ 0.013417, 0.074976, 0.095595, 0.992502] }, { "keytime": 2607.666504, "rotation": [ 0.013401, 0.074981, 0.095568, 0.992504] }, { "keytime": 2640.999756, "rotation": [ 0.013383, 0.074985, 0.095539, 0.992507] }, { "keytime": 2707.666260, "rotation": [ 0.013342, 0.074993, 0.095471, 0.992514] }, { "keytime": 2740.999512, "rotation": [ 0.013318, 0.074996, 0.095432, 0.992517] }, { "keytime": 2807.666016, "rotation": [ 0.013266, 0.075005, 0.095346, 0.992526] }, { "keytime": 2840.999268, "rotation": [ 0.013238, 0.075009, 0.095299, 0.992530] }, { "keytime": 2907.665771, "rotation": [ 0.013176, 0.075018, 0.095196, 0.992540] }, { "keytime": 2940.999023, "rotation": [ 0.013142, 0.075021, 0.095140, 0.992546] }, { "keytime": 3007.665527, "rotation": [ 0.013071, 0.075028, 0.095021, 0.992558] }, { "keytime": 3040.998779, "rotation": [ 0.013033, 0.075031, 0.094959, 0.992564] }, { "keytime": 3107.665283, "rotation": [ 0.012952, 0.075040, 0.094824, 0.992577] }, { "keytime": 3140.998535, "rotation": [ 0.012911, 0.075044, 0.094754, 0.992584] }, { "keytime": 3207.665039, "rotation": [ 0.012822, 0.075051, 0.094606, 0.992599] }, { "keytime": 3240.998291, "rotation": [ 0.012777, 0.075055, 0.094530, 0.992606] }, { "keytime": 3340.998047, "rotation": [ 0.012633, 0.075064, 0.094290, 0.992630] }, { "keytime": 3440.997803, "rotation": [ 0.012482, 0.075073, 0.094037, 0.992656] }, { "keytime": 3540.997559, "rotation": [ 0.012325, 0.075082, 0.093776, 0.992682] }, { "keytime": 3574.330811, "rotation": [ 0.012271, 0.075085, 0.093685, 0.992691] }, { "keytime": 3640.997314, "rotation": [ 0.012166, 0.075090, 0.093509, 0.992708] }, { "keytime": 3674.330566, "rotation": [ 0.012112, 0.075093, 0.093419, 0.992717] }, { "keytime": 3740.997070, "rotation": [ 0.012007, 0.075098, 0.093243, 0.992734] }, { "keytime": 3774.330322, "rotation": [ 0.011954, 0.075101, 0.093153, 0.992743] }, { "keytime": 3840.996826, "rotation": [ 0.011851, 0.075105, 0.092980, 0.992761] }, { "keytime": 3874.330078, "rotation": [ 0.011798, 0.075107, 0.092892, 0.992769] }, { "keytime": 3974.329834, "rotation": [ 0.011650, 0.075113, 0.092642, 0.992794] }, { "keytime": 4074.329590, "rotation": [ 0.011508, 0.075120, 0.092405, 0.992817] }, { "keytime": 4174.329590, "rotation": [ 0.011377, 0.075124, 0.092186, 0.992839] }, { "keytime": 4207.663086, "rotation": [ 0.011336, 0.075125, 0.092117, 0.992845] }, { "keytime": 4274.330078, "rotation": [ 0.011258, 0.075129, 0.091986, 0.992858] }, { "keytime": 4307.663574, "rotation": [ 0.011222, 0.075130, 0.091925, 0.992864] }, { "keytime": 4374.330566, "rotation": [ 0.011153, 0.075132, 0.091809, 0.992876] }, { "keytime": 4407.664062, "rotation": [ 0.011121, 0.075133, 0.091756, 0.992881] }, { "keytime": 4474.331055, "rotation": [ 0.011062, 0.075135, 0.091657, 0.992890] }, { "keytime": 4507.664551, "rotation": [ 0.011035, 0.075137, 0.091612, 0.992895] }, { "keytime": 4540.998047, "rotation": [ 0.011010, 0.075137, 0.091569, 0.992899] }, { "keytime": 4574.331543, "rotation": [ 0.010986, 0.075137, 0.091529, 0.992903] }, { "keytime": 4607.665039, "rotation": [ 0.010965, 0.075138, 0.091493, 0.992906] }, { "keytime": 4674.332031, "rotation": [ 0.010926, 0.075140, 0.091429, 0.992913] }, { "keytime": 4707.665527, "rotation": [ 0.010910, 0.075140, 0.091401, 0.992915] }, { "keytime": 4740.999023, "rotation": [ 0.010895, 0.075140, 0.091377, 0.992918] }, { "keytime": 4774.332520, "rotation": [ 0.010882, 0.075140, 0.091355, 0.992920] }, { "keytime": 4807.666016, "rotation": [ 0.010871, 0.075140, 0.091337, 0.992922] }, { "keytime": 4840.999512, "rotation": [ 0.010862, 0.075141, 0.091321, 0.992923] }, { "keytime": 4874.333008, "rotation": [ 0.010854, 0.075142, 0.091308, 0.992924] }, { "keytime": 4907.666504, "rotation": [ 0.010849, 0.075142, 0.091298, 0.992925] }, { "keytime": 4941.000000, "rotation": [ 0.010845, 0.075141, 0.091292, 0.992926] }, { "keytime": 4974.333496, "rotation": [ 0.010843, 0.075141, 0.091288, 0.992926] }, { "keytime": 5007.666992, "rotation": [ 0.010842, 0.075141, 0.091287, 0.992926] }, { "keytime": 5041.000488, "rotation": [ 0.010842, 0.075142, 0.091288, 0.992926] }, { "keytime": 5107.667480, "rotation": [ 0.010848, 0.075137, 0.091296, 0.992926] }, { "keytime": 5174.334473, "rotation": [ 0.010857, 0.075128, 0.091310, 0.992925] }, { "keytime": 5207.667969, "rotation": [ 0.010864, 0.075122, 0.091320, 0.992925] }, { "keytime": 5274.334961, "rotation": [ 0.010880, 0.075107, 0.091345, 0.992923] }, { "keytime": 5307.668457, "rotation": [ 0.010890, 0.075098, 0.091360, 0.992922] }, { "keytime": 5374.335449, "rotation": [ 0.010914, 0.075076, 0.091395, 0.992921] }, { "keytime": 5407.668945, "rotation": [ 0.010927, 0.075065, 0.091415, 0.992920] }, { "keytime": 5474.335938, "rotation": [ 0.010956, 0.075037, 0.091459, 0.992917] }, { "keytime": 5507.669434, "rotation": [ 0.010972, 0.075023, 0.091483, 0.992916] }, { "keytime": 5607.669922, "rotation": [ 0.011025, 0.074975, 0.091562, 0.992912] }, { "keytime": 5707.670410, "rotation": [ 0.011083, 0.074921, 0.091651, 0.992907] }, { "keytime": 5974.338379, "rotation": [ 0.011247, 0.074770, 0.091899, 0.992893] }, { "keytime": 6041.005371, "rotation": [ 0.011288, 0.074735, 0.091959, 0.992890] }, { "keytime": 6141.005859, "rotation": [ 0.011341, 0.074685, 0.092041, 0.992886] }, { "keytime": 6207.672852, "rotation": [ 0.011373, 0.074657, 0.092089, 0.992883] }, { "keytime": 6241.006348, "rotation": [ 0.011388, 0.074642, 0.092111, 0.992882] }, { "keytime": 6307.673340, "rotation": [ 0.011414, 0.074619, 0.092150, 0.992880] }, { "keytime": 6341.006836, "rotation": [ 0.011425, 0.074608, 0.092168, 0.992879] }, { "keytime": 6374.340332, "rotation": [ 0.011437, 0.074598, 0.092184, 0.992878] }, { "keytime": 6441.007324, "rotation": [ 0.011454, 0.074582, 0.092210, 0.992876] }, { "keytime": 6507.674316, "rotation": [ 0.011467, 0.074570, 0.092230, 0.992875] }, { "keytime": 6541.007812, "rotation": [ 0.011472, 0.074565, 0.092238, 0.992875] }, { "keytime": 6607.674805, "rotation": [ 0.011478, 0.074560, 0.092247, 0.992874] } ] }, { "boneId": "Bone_017", "keyframes": [ { "keytime": 41.000000, "rotation": [-0.035056, 0.213184, -0.054648, 0.974852] }, { "keytime": 74.333328, "rotation": [-0.035055, 0.213185, -0.054646, 0.974852] }, { "keytime": 107.666664, "rotation": [-0.035053, 0.213185, -0.054642, 0.974853] }, { "keytime": 141.000000, "rotation": [-0.035050, 0.213185, -0.054636, 0.974853] }, { "keytime": 174.333328, "rotation": [-0.035046, 0.213185, -0.054628, 0.974854] }, { "keytime": 207.666656, "rotation": [-0.035041, 0.213185, -0.054617, 0.974854] }, { "keytime": 240.999985, "rotation": [-0.035035, 0.213186, -0.054603, 0.974855] }, { "keytime": 307.666656, "rotation": [-0.035018, 0.213188, -0.054567, 0.974858] }, { "keytime": 374.333344, "rotation": [-0.034996, 0.213188, -0.054522, 0.974861] }, { "keytime": 407.666687, "rotation": [-0.034983, 0.213190, -0.054495, 0.974862] }, { "keytime": 474.333374, "rotation": [-0.034954, 0.213192, -0.054434, 0.974866] }, { "keytime": 507.666718, "rotation": [-0.034939, 0.213193, -0.054401, 0.974868] }, { "keytime": 574.333374, "rotation": [-0.034903, 0.213196, -0.054326, 0.974873] }, { "keytime": 607.666687, "rotation": [-0.034883, 0.213198, -0.054285, 0.974876] }, { "keytime": 674.333313, "rotation": [-0.034841, 0.213201, -0.054197, 0.974882] }, { "keytime": 707.666626, "rotation": [-0.034819, 0.213202, -0.054150, 0.974885] }, { "keytime": 740.999939, "rotation": [-0.034796, 0.213204, -0.054101, 0.974888] }, { "keytime": 807.666565, "rotation": [-0.034746, 0.213209, -0.053997, 0.974894] }, { "keytime": 840.999878, "rotation": [-0.034721, 0.213211, -0.053943, 0.974898] }, { "keytime": 940.999817, "rotation": [-0.034639, 0.213218, -0.053772, 0.974909] }, { "keytime": 1040.999756, "rotation": [-0.034552, 0.213227, -0.053590, 0.974920] }, { "keytime": 1274.333374, "rotation": [-0.034344, 0.213247, -0.053152, 0.974947] }, { "keytime": 1341.000122, "rotation": [-0.034285, 0.213253, -0.053029, 0.974954] }, { "keytime": 1374.333496, "rotation": [-0.034257, 0.213256, -0.052969, 0.974958] }, { "keytime": 1441.000244, "rotation": [-0.034201, 0.213262, -0.052851, 0.974965] }, { "keytime": 1541.000366, "rotation": [-0.034121, 0.213272, -0.052686, 0.974974] }, { "keytime": 1641.000488, "rotation": [-0.034050, 0.213281, -0.052536, 0.974983] }, { "keytime": 1707.667236, "rotation": [-0.034007, 0.213288, -0.052446, 0.974988] }, { "keytime": 1741.000610, "rotation": [-0.033986, 0.213292, -0.052404, 0.974990] }, { "keytime": 1774.333984, "rotation": [-0.033967, 0.213296, -0.052365, 0.974992] }, { "keytime": 1841.000732, "rotation": [-0.033932, 0.213304, -0.052292, 0.974995] }, { "keytime": 1874.334106, "rotation": [-0.033917, 0.213306, -0.052259, 0.974997] }, { "keytime": 1941.000854, "rotation": [-0.033889, 0.213313, -0.052201, 0.975000] }, { "keytime": 1974.334229, "rotation": [-0.033877, 0.213316, -0.052176, 0.975001] }, { "keytime": 2041.000977, "rotation": [-0.033856, 0.213323, -0.052133, 0.975002] }, { "keytime": 2074.334473, "rotation": [-0.033847, 0.213327, -0.052116, 0.975002] }, { "keytime": 2107.667725, "rotation": [-0.033840, 0.213330, -0.052101, 0.975003] }, { "keytime": 2141.000977, "rotation": [-0.033834, 0.213333, -0.052088, 0.975003] }, { "keytime": 2174.334229, "rotation": [-0.033829, 0.213336, -0.052078, 0.975003] }, { "keytime": 2207.667480, "rotation": [-0.033825, 0.213340, -0.052070, 0.975003] }, { "keytime": 2241.000732, "rotation": [-0.033822, 0.213343, -0.052066, 0.975003] }, { "keytime": 2274.333984, "rotation": [-0.033821, 0.213347, -0.052063, 0.975002] }, { "keytime": 2307.667236, "rotation": [-0.033821, 0.213350, -0.052063, 0.975001] }, { "keytime": 2374.333740, "rotation": [-0.033824, 0.213355, -0.052070, 0.975000] }, { "keytime": 2407.666992, "rotation": [-0.033827, 0.213358, -0.052077, 0.974998] }, { "keytime": 2474.333496, "rotation": [-0.033836, 0.213365, -0.052097, 0.974996] }, { "keytime": 2507.666748, "rotation": [-0.033843, 0.213368, -0.052110, 0.974994] }, { "keytime": 2541.000000, "rotation": [-0.033850, 0.213372, -0.052126, 0.974992] }, { "keytime": 2574.333252, "rotation": [-0.033859, 0.213376, -0.052144, 0.974990] }, { "keytime": 2607.666504, "rotation": [-0.033869, 0.213380, -0.052164, 0.974988] }, { "keytime": 2640.999756, "rotation": [-0.033879, 0.213384, -0.052186, 0.974985] }, { "keytime": 2707.666260, "rotation": [-0.033904, 0.213393, -0.052237, 0.974980] }, { "keytime": 2740.999512, "rotation": [-0.033918, 0.213397, -0.052266, 0.974977] }, { "keytime": 2807.666016, "rotation": [-0.033950, 0.213407, -0.052330, 0.974970] }, { "keytime": 2840.999268, "rotation": [-0.033967, 0.213413, -0.052365, 0.974966] }, { "keytime": 2907.665771, "rotation": [-0.034005, 0.213422, -0.052442, 0.974959] }, { "keytime": 2940.999023, "rotation": [-0.034025, 0.213426, -0.052484, 0.974955] }, { "keytime": 3007.665527, "rotation": [-0.034069, 0.213436, -0.052573, 0.974946] }, { "keytime": 3040.998779, "rotation": [-0.034092, 0.213440, -0.052619, 0.974942] }, { "keytime": 3107.665283, "rotation": [-0.034141, 0.213450, -0.052720, 0.974933] }, { "keytime": 3140.998535, "rotation": [-0.034167, 0.213455, -0.052772, 0.974928] }, { "keytime": 3207.665039, "rotation": [-0.034222, 0.213466, -0.052882, 0.974918] }, { "keytime": 3240.998291, "rotation": [-0.034249, 0.213472, -0.052939, 0.974912] }, { "keytime": 3340.998047, "rotation": [-0.034337, 0.213489, -0.053118, 0.974896] }, { "keytime": 3440.997803, "rotation": [-0.034430, 0.213506, -0.053307, 0.974878] }, { "keytime": 3540.997559, "rotation": [-0.034527, 0.213521, -0.053503, 0.974861] }, { "keytime": 3707.663818, "rotation": [-0.034691, 0.213546, -0.053834, 0.974832] }, { "keytime": 3874.330078, "rotation": [-0.034852, 0.213571, -0.054160, 0.974802] }, { "keytime": 3974.329834, "rotation": [-0.034944, 0.213585, -0.054347, 0.974786] }, { "keytime": 4074.329590, "rotation": [-0.035030, 0.213598, -0.054524, 0.974770] }, { "keytime": 4174.329590, "rotation": [-0.035112, 0.213610, -0.054687, 0.974755] }, { "keytime": 4207.663086, "rotation": [-0.035137, 0.213614, -0.054738, 0.974750] }, { "keytime": 4274.330078, "rotation": [-0.035185, 0.213621, -0.054835, 0.974742] }, { "keytime": 4374.330566, "rotation": [-0.035250, 0.213631, -0.054968, 0.974730] }, { "keytime": 4440.997559, "rotation": [-0.035288, 0.213637, -0.055044, 0.974723] }, { "keytime": 4474.331055, "rotation": [-0.035306, 0.213639, -0.055081, 0.974719] }, { "keytime": 4507.664551, "rotation": [-0.035323, 0.213642, -0.055114, 0.974716] }, { "keytime": 4574.331543, "rotation": [-0.035353, 0.213646, -0.055176, 0.974711] }, { "keytime": 4607.665039, "rotation": [-0.035366, 0.213648, -0.055203, 0.974708] }, { "keytime": 4674.332031, "rotation": [-0.035390, 0.213651, -0.055251, 0.974704] }, { "keytime": 4707.665527, "rotation": [-0.035401, 0.213652, -0.055271, 0.974702] }, { "keytime": 4774.332520, "rotation": [-0.035417, 0.213654, -0.055306, 0.974699] }, { "keytime": 4807.666016, "rotation": [-0.035424, 0.213655, -0.055319, 0.974698] }, { "keytime": 4874.333008, "rotation": [-0.035435, 0.213656, -0.055341, 0.974696] }, { "keytime": 4941.000000, "rotation": [-0.035441, 0.213656, -0.055353, 0.974696] }, { "keytime": 5007.666992, "rotation": [-0.035443, 0.213655, -0.055356, 0.974695] }, { "keytime": 5074.333984, "rotation": [-0.035441, 0.213654, -0.055353, 0.974696] }, { "keytime": 5141.000977, "rotation": [-0.035436, 0.213648, -0.055345, 0.974698] }, { "keytime": 5207.667969, "rotation": [-0.035429, 0.213639, -0.055332, 0.974701] }, { "keytime": 5274.334961, "rotation": [-0.035419, 0.213627, -0.055314, 0.974705] }, { "keytime": 5341.001953, "rotation": [-0.035406, 0.213612, -0.055290, 0.974710] }, { "keytime": 5407.668945, "rotation": [-0.035391, 0.213593, -0.055263, 0.974716] }, { "keytime": 5507.669434, "rotation": [-0.035364, 0.213560, -0.055212, 0.974727] }, { "keytime": 5607.669922, "rotation": [-0.035332, 0.213521, -0.055154, 0.974740] }, { "keytime": 5707.670410, "rotation": [-0.035296, 0.213477, -0.055089, 0.974755] }, { "keytime": 5974.338379, "rotation": [-0.035198, 0.213357, -0.054905, 0.974795] }, { "keytime": 6041.005371, "rotation": [-0.035173, 0.213326, -0.054861, 0.974805] }, { "keytime": 6141.005859, "rotation": [-0.035140, 0.213287, -0.054802, 0.974818] }, { "keytime": 6241.006348, "rotation": [-0.035112, 0.213252, -0.054750, 0.974830] }, { "keytime": 6341.006836, "rotation": [-0.035089, 0.213224, -0.054708, 0.974839] }, { "keytime": 6374.340332, "rotation": [-0.035082, 0.213217, -0.054696, 0.974842] }, { "keytime": 6441.007324, "rotation": [-0.035072, 0.213204, -0.054677, 0.974846] }, { "keytime": 6507.674316, "rotation": [-0.035064, 0.213194, -0.054662, 0.974849] }, { "keytime": 6574.341309, "rotation": [-0.035059, 0.213188, -0.054653, 0.974851] }, { "keytime": 6607.674805, "rotation": [-0.035058, 0.213186, -0.054650, 0.974852] } ] }, { "boneId": "Bone_027", "keyframes": [ { "keytime": 41.000000, "rotation": [-0.498921, 0.029187, 0.124588, 0.857149] }, { "keytime": 174.333328, "rotation": [-0.498919, 0.029185, 0.124596, 0.857149] }, { "keytime": 240.999985, "rotation": [-0.498919, 0.029181, 0.124604, 0.857148] }, { "keytime": 341.000000, "rotation": [-0.498916, 0.029173, 0.124623, 0.857147] }, { "keytime": 407.666687, "rotation": [-0.498913, 0.029165, 0.124639, 0.857147] }, { "keytime": 507.666718, "rotation": [-0.498909, 0.029150, 0.124669, 0.857145] }, { "keytime": 607.666687, "rotation": [-0.498905, 0.029130, 0.124706, 0.857143] }, { "keytime": 740.999939, "rotation": [-0.498896, 0.029100, 0.124764, 0.857141] }, { "keytime": 840.999878, "rotation": [-0.498888, 0.029074, 0.124814, 0.857139] }, { "keytime": 1040.999756, "rotation": [-0.498874, 0.029014, 0.124926, 0.857133] }, { "keytime": 1374.333496, "rotation": [-0.498850, 0.028910, 0.125122, 0.857121] }, { "keytime": 1541.000366, "rotation": [-0.498838, 0.028862, 0.125211, 0.857117] }, { "keytime": 1674.333862, "rotation": [-0.498828, 0.028830, 0.125273, 0.857115] }, { "keytime": 1774.333984, "rotation": [-0.498822, 0.028809, 0.125313, 0.857114] }, { "keytime": 1841.000732, "rotation": [-0.498819, 0.028797, 0.125336, 0.857112] }, { "keytime": 1941.000854, "rotation": [-0.498816, 0.028783, 0.125365, 0.857110] }, { "keytime": 2007.667603, "rotation": [-0.498813, 0.028775, 0.125380, 0.857110] }, { "keytime": 2074.334473, "rotation": [-0.498810, 0.028769, 0.125393, 0.857110] }, { "keytime": 2174.334229, "rotation": [-0.498810, 0.028764, 0.125405, 0.857108] }, { "keytime": 2274.333984, "rotation": [-0.498809, 0.028763, 0.125411, 0.857108] }, { "keytime": 2341.000488, "rotation": [-0.498809, 0.028764, 0.125411, 0.857108] }, { "keytime": 2474.333496, "rotation": [-0.498811, 0.028771, 0.125402, 0.857108] }, { "keytime": 2574.333252, "rotation": [-0.498814, 0.028782, 0.125389, 0.857108] }, { "keytime": 2674.333008, "rotation": [-0.498816, 0.028797, 0.125371, 0.857109] }, { "keytime": 2840.999268, "rotation": [-0.498823, 0.028830, 0.125325, 0.857110] }, { "keytime": 2940.999023, "rotation": [-0.498829, 0.028855, 0.125291, 0.857111] }, { "keytime": 3074.332031, "rotation": [-0.498837, 0.028896, 0.125238, 0.857113] }, { "keytime": 3240.998291, "rotation": [-0.498850, 0.028955, 0.125160, 0.857115] }, { "keytime": 3440.997803, "rotation": [-0.498867, 0.029033, 0.125053, 0.857117] }, { "keytime": 3874.330078, "rotation": [-0.498905, 0.029212, 0.124802, 0.857126] }, { "keytime": 4040.996338, "rotation": [-0.498917, 0.029277, 0.124713, 0.857130] }, { "keytime": 4174.329590, "rotation": [-0.498926, 0.029326, 0.124648, 0.857132] }, { "keytime": 4274.330078, "rotation": [-0.498933, 0.029359, 0.124605, 0.857133] }, { "keytime": 4407.664062, "rotation": [-0.498943, 0.029393, 0.124553, 0.857134] }, { "keytime": 4507.664551, "rotation": [-0.498948, 0.029415, 0.124520, 0.857135] }, { "keytime": 4607.665039, "rotation": [-0.498951, 0.029434, 0.124493, 0.857136] }, { "keytime": 4674.332031, "rotation": [-0.498953, 0.029444, 0.124479, 0.857137] }, { "keytime": 4740.999023, "rotation": [-0.498956, 0.029453, 0.124467, 0.857137] }, { "keytime": 4840.999512, "rotation": [-0.498959, 0.029460, 0.124452, 0.857137] }, { "keytime": 4941.000000, "rotation": [-0.498958, 0.029463, 0.124444, 0.857138] }, { "keytime": 5074.333984, "rotation": [-0.498958, 0.029462, 0.124442, 0.857139] }, { "keytime": 5207.667969, "rotation": [-0.498958, 0.029453, 0.124444, 0.857139] }, { "keytime": 5341.001953, "rotation": [-0.498955, 0.029436, 0.124452, 0.857140] }, { "keytime": 5507.669434, "rotation": [-0.498950, 0.029405, 0.124467, 0.857142] }, { "keytime": 6174.339355, "rotation": [-0.498930, 0.029240, 0.124559, 0.857146] }, { "keytime": 6274.339844, "rotation": [-0.498928, 0.029220, 0.124569, 0.857146] }, { "keytime": 6407.673828, "rotation": [-0.498926, 0.029202, 0.124580, 0.857146] }, { "keytime": 6541.007812, "rotation": [-0.498923, 0.029191, 0.124587, 0.857147] }, { "keytime": 6607.674805, "rotation": [-0.498922, 0.029189, 0.124588, 0.857148] } ] }, { "boneId": "Bone_019", "keyframes": [ { "keytime": 41.000000, "rotation": [ 0.444681, 0.540613, 0.151456, 0.697895] }, { "keytime": 74.333328, "rotation": [ 0.444686, 0.540602, 0.151456, 0.697900] }, { "keytime": 107.666664, "rotation": [ 0.444699, 0.540577, 0.151456, 0.697911] }, { "keytime": 141.000000, "rotation": [ 0.444721, 0.540534, 0.151455, 0.697931] }, { "keytime": 174.333328, "rotation": [ 0.444750, 0.540477, 0.151454, 0.697956] }, { "keytime": 207.666656, "rotation": [ 0.444788, 0.540404, 0.151453, 0.697989] }, { "keytime": 240.999985, "rotation": [ 0.444836, 0.540311, 0.151451, 0.698032] }, { "keytime": 274.333313, "rotation": [ 0.444893, 0.540198, 0.151449, 0.698082] }, { "keytime": 307.666656, "rotation": [ 0.444957, 0.540073, 0.151447, 0.698139] }, { "keytime": 341.000000, "rotation": [ 0.445032, 0.539927, 0.151444, 0.698205] }, { "keytime": 374.333344, "rotation": [ 0.445112, 0.539770, 0.151442, 0.698275] }, { "keytime": 407.666687, "rotation": [ 0.445203, 0.539593, 0.151438, 0.698355] }, { "keytime": 441.000031, "rotation": [ 0.445305, 0.539394, 0.151435, 0.698445] }, { "keytime": 474.333374, "rotation": [ 0.445411, 0.539185, 0.151431, 0.698539] }, { "keytime": 507.666718, "rotation": [ 0.445526, 0.538962, 0.151427, 0.698639] }, { "keytime": 541.000061, "rotation": [ 0.445651, 0.538716, 0.151422, 0.698750] }, { "keytime": 574.333374, "rotation": [ 0.445783, 0.538459, 0.151418, 0.698865] }, { "keytime": 607.666687, "rotation": [ 0.445922, 0.538187, 0.151413, 0.698987] }, { "keytime": 641.000000, "rotation": [ 0.446072, 0.537893, 0.151407, 0.699119] }, { "keytime": 674.333313, "rotation": [ 0.446224, 0.537595, 0.151402, 0.699252] }, { "keytime": 707.666626, "rotation": [ 0.446383, 0.537283, 0.151396, 0.699392] }, { "keytime": 740.999939, "rotation": [ 0.446550, 0.536955, 0.151389, 0.699538] }, { "keytime": 807.666565, "rotation": [ 0.446906, 0.536256, 0.151376, 0.699850] }, { "keytime": 840.999878, "rotation": [ 0.447090, 0.535896, 0.151369, 0.700010] }, { "keytime": 907.666504, "rotation": [ 0.447478, 0.535133, 0.151354, 0.700349] }, { "keytime": 940.999817, "rotation": [ 0.447676, 0.534744, 0.151346, 0.700521] }, { "keytime": 974.333130, "rotation": [ 0.447883, 0.534336, 0.151338, 0.700702] }, { "keytime": 1007.666443, "rotation": [ 0.448087, 0.533934, 0.151329, 0.700879] }, { "keytime": 1040.999756, "rotation": [ 0.448294, 0.533527, 0.151321, 0.701059] }, { "keytime": 1074.333130, "rotation": [ 0.448510, 0.533102, 0.151312, 0.701246] }, { "keytime": 1140.999878, "rotation": [ 0.448932, 0.532269, 0.151294, 0.701612] }, { "keytime": 1174.333252, "rotation": [ 0.449151, 0.531838, 0.151285, 0.701801] }, { "keytime": 1207.666626, "rotation": [ 0.449362, 0.531420, 0.151275, 0.701985] }, { "keytime": 1241.000000, "rotation": [ 0.449580, 0.530990, 0.151266, 0.702172] }, { "keytime": 1274.333374, "rotation": [ 0.449790, 0.530576, 0.151257, 0.702353] }, { "keytime": 1307.666748, "rotation": [ 0.449998, 0.530165, 0.151247, 0.702532] }, { "keytime": 1341.000122, "rotation": [ 0.450210, 0.529746, 0.151238, 0.702714] }, { "keytime": 1374.333496, "rotation": [ 0.450413, 0.529344, 0.151228, 0.702889] }, { "keytime": 1407.666870, "rotation": [ 0.450612, 0.528951, 0.151219, 0.703059] }, { "keytime": 1441.000244, "rotation": [ 0.450814, 0.528553, 0.151209, 0.703231] }, { "keytime": 1474.333618, "rotation": [ 0.451005, 0.528176, 0.151200, 0.703395] }, { "keytime": 1541.000366, "rotation": [ 0.451379, 0.527436, 0.151181, 0.703713] }, { "keytime": 1574.333740, "rotation": [ 0.451554, 0.527091, 0.151172, 0.703861] }, { "keytime": 1607.667114, "rotation": [ 0.451723, 0.526757, 0.151163, 0.704005] }, { "keytime": 1641.000488, "rotation": [ 0.451892, 0.526425, 0.151154, 0.704147] }, { "keytime": 1674.333862, "rotation": [ 0.452049, 0.526116, 0.151146, 0.704279] }, { "keytime": 1707.667236, "rotation": [ 0.452199, 0.525819, 0.151137, 0.704406] }, { "keytime": 1741.000610, "rotation": [ 0.452346, 0.525532, 0.151129, 0.704528] }, { "keytime": 1774.333984, "rotation": [ 0.452481, 0.525267, 0.151121, 0.704640] }, { "keytime": 1807.667358, "rotation": [ 0.452608, 0.525017, 0.151113, 0.704746] }, { "keytime": 1841.000732, "rotation": [ 0.452733, 0.524774, 0.151106, 0.704849] }, { "keytime": 1874.334106, "rotation": [ 0.452846, 0.524554, 0.151098, 0.704942] }, { "keytime": 1907.667480, "rotation": [ 0.452949, 0.524354, 0.151091, 0.705026] }, { "keytime": 1941.000854, "rotation": [ 0.453047, 0.524164, 0.151084, 0.705106] }, { "keytime": 1974.334229, "rotation": [ 0.453135, 0.523995, 0.151078, 0.705176] }, { "keytime": 2007.667603, "rotation": [ 0.453215, 0.523842, 0.151072, 0.705240] }, { "keytime": 2041.000977, "rotation": [ 0.453290, 0.523700, 0.151065, 0.705298] }, { "keytime": 2074.334473, "rotation": [ 0.453351, 0.523585, 0.151060, 0.705346] }, { "keytime": 2107.667725, "rotation": [ 0.453405, 0.523485, 0.151055, 0.705386] }, { "keytime": 2141.000977, "rotation": [ 0.453453, 0.523398, 0.151049, 0.705421] }, { "keytime": 2174.334229, "rotation": [ 0.453491, 0.523331, 0.151045, 0.705448] }, { "keytime": 2207.667480, "rotation": [ 0.453521, 0.523279, 0.151040, 0.705468] }, { "keytime": 2241.000732, "rotation": [ 0.453542, 0.523247, 0.151036, 0.705479] }, { "keytime": 2274.333984, "rotation": [ 0.453554, 0.523232, 0.151032, 0.705483] }, { "keytime": 2307.667236, "rotation": [ 0.453559, 0.523233, 0.151029, 0.705480] }, { "keytime": 2341.000488, "rotation": [ 0.453557, 0.523249, 0.151027, 0.705469] }, { "keytime": 2374.333740, "rotation": [ 0.453548, 0.523281, 0.151026, 0.705452] }, { "keytime": 2407.666992, "rotation": [ 0.453530, 0.523333, 0.151026, 0.705425] }, { "keytime": 2441.000244, "rotation": [ 0.453505, 0.523402, 0.151028, 0.705389] }, { "keytime": 2474.333496, "rotation": [ 0.453473, 0.523485, 0.151031, 0.705347] }, { "keytime": 2507.666748, "rotation": [ 0.453435, 0.523583, 0.151036, 0.705298] }, { "keytime": 2541.000000, "rotation": [ 0.453388, 0.523701, 0.151042, 0.705240] }, { "keytime": 2574.333252, "rotation": [ 0.453333, 0.523836, 0.151050, 0.705173] }, { "keytime": 2607.666504, "rotation": [ 0.453272, 0.523986, 0.151058, 0.705099] }, { "keytime": 2640.999756, "rotation": [ 0.453204, 0.524151, 0.151068, 0.705018] }, { "keytime": 2674.333008, "rotation": [ 0.453126, 0.524338, 0.151080, 0.704926] }, { "keytime": 2707.666260, "rotation": [ 0.453044, 0.524535, 0.151093, 0.704830] }, { "keytime": 2740.999512, "rotation": [ 0.452953, 0.524751, 0.151107, 0.704724] }, { "keytime": 2774.332764, "rotation": [ 0.452852, 0.524990, 0.151123, 0.704608] }, { "keytime": 2807.666016, "rotation": [ 0.452748, 0.525237, 0.151140, 0.704488] }, { "keytime": 2840.999268, "rotation": [ 0.452636, 0.525498, 0.151158, 0.704360] }, { "keytime": 2874.332520, "rotation": [ 0.452515, 0.525783, 0.151178, 0.704222] }, { "keytime": 2907.665771, "rotation": [ 0.452389, 0.526078, 0.151199, 0.704078] }, { "keytime": 2940.999023, "rotation": [ 0.452256, 0.526387, 0.151221, 0.703928] }, { "keytime": 2974.332275, "rotation": [ 0.452113, 0.526719, 0.151245, 0.703766] }, { "keytime": 3007.665527, "rotation": [ 0.451968, 0.527055, 0.151269, 0.703602] }, { "keytime": 3040.998779, "rotation": [ 0.451817, 0.527404, 0.151294, 0.703432] }, { "keytime": 3107.665283, "rotation": [ 0.451490, 0.528159, 0.151349, 0.703064] }, { "keytime": 3140.998535, "rotation": [ 0.451320, 0.528548, 0.151378, 0.702874] }, { "keytime": 3207.665039, "rotation": [ 0.450961, 0.529371, 0.151439, 0.702472] }, { "keytime": 3240.998291, "rotation": [ 0.450775, 0.529795, 0.151470, 0.702264] }, { "keytime": 3274.331543, "rotation": [ 0.450580, 0.530242, 0.151503, 0.702046] }, { "keytime": 3307.664795, "rotation": [ 0.450385, 0.530683, 0.151537, 0.701830] }, { "keytime": 3340.998047, "rotation": [ 0.450188, 0.531133, 0.151570, 0.701609] }, { "keytime": 3374.331299, "rotation": [ 0.449980, 0.531604, 0.151605, 0.701378] }, { "keytime": 3407.664551, "rotation": [ 0.449774, 0.532070, 0.151640, 0.701149] }, { "keytime": 3440.997803, "rotation": [ 0.449566, 0.532542, 0.151676, 0.700917] }, { "keytime": 3474.331055, "rotation": [ 0.449348, 0.533032, 0.151713, 0.700675] }, { "keytime": 3507.664307, "rotation": [ 0.449135, 0.533513, 0.151749, 0.700438] }, { "keytime": 3540.997559, "rotation": [ 0.448920, 0.533997, 0.151786, 0.700200] }, { "keytime": 3574.330811, "rotation": [ 0.448696, 0.534499, 0.151823, 0.699952] }, { "keytime": 3640.997314, "rotation": [ 0.448260, 0.535477, 0.151898, 0.699467] }, { "keytime": 3674.330566, "rotation": [ 0.448035, 0.535981, 0.151936, 0.699217] }, { "keytime": 3707.663818, "rotation": [ 0.447815, 0.536469, 0.151973, 0.698975] }, { "keytime": 3740.997070, "rotation": [ 0.447598, 0.536956, 0.152010, 0.698733] }, { "keytime": 3774.330322, "rotation": [ 0.447374, 0.537454, 0.152048, 0.698485] }, { "keytime": 3807.663574, "rotation": [ 0.447158, 0.537934, 0.152084, 0.698246] }, { "keytime": 3840.996826, "rotation": [ 0.446944, 0.538410, 0.152120, 0.698008] }, { "keytime": 3874.330078, "rotation": [ 0.446725, 0.538895, 0.152157, 0.697766] }, { "keytime": 3907.663330, "rotation": [ 0.446516, 0.539358, 0.152192, 0.697534] }, { "keytime": 3940.996582, "rotation": [ 0.446309, 0.539815, 0.152227, 0.697305] }, { "keytime": 3974.329834, "rotation": [ 0.446100, 0.540278, 0.152262, 0.697073] }, { "keytime": 4007.663086, "rotation": [ 0.445900, 0.540719, 0.152295, 0.696852] }, { "keytime": 4074.329590, "rotation": [ 0.445507, 0.541585, 0.152361, 0.696416] }, { "keytime": 4107.663086, "rotation": [ 0.445320, 0.541995, 0.152392, 0.696210] }, { "keytime": 4174.329590, "rotation": [ 0.444955, 0.542795, 0.152453, 0.695806] }, { "keytime": 4207.663086, "rotation": [ 0.444783, 0.543172, 0.152482, 0.695616] }, { "keytime": 4274.330078, "rotation": [ 0.444454, 0.543893, 0.152537, 0.695251] }, { "keytime": 4307.663574, "rotation": [ 0.444300, 0.544229, 0.152562, 0.695081] }, { "keytime": 4340.997070, "rotation": [ 0.444152, 0.544552, 0.152587, 0.694917] }, { "keytime": 4374.330566, "rotation": [ 0.444006, 0.544870, 0.152611, 0.694756] }, { "keytime": 4407.664062, "rotation": [ 0.443873, 0.545160, 0.152633, 0.694608] }, { "keytime": 4440.997559, "rotation": [ 0.443746, 0.545437, 0.152654, 0.694467] }, { "keytime": 4474.331055, "rotation": [ 0.443622, 0.545707, 0.152674, 0.694330] }, { "keytime": 4507.664551, "rotation": [ 0.443508, 0.545955, 0.152693, 0.694204] }, { "keytime": 4540.998047, "rotation": [ 0.443401, 0.546187, 0.152711, 0.694086] }, { "keytime": 4574.331543, "rotation": [ 0.443300, 0.546407, 0.152727, 0.693974] }, { "keytime": 4607.665039, "rotation": [ 0.443208, 0.546605, 0.152742, 0.693873] }, { "keytime": 4640.998535, "rotation": [ 0.443124, 0.546788, 0.152756, 0.693779] }, { "keytime": 4674.332031, "rotation": [ 0.443044, 0.546960, 0.152769, 0.693691] }, { "keytime": 4707.665527, "rotation": [ 0.442974, 0.547112, 0.152781, 0.693614] }, { "keytime": 4740.999023, "rotation": [ 0.442913, 0.547244, 0.152791, 0.693546] }, { "keytime": 4774.332520, "rotation": [ 0.442858, 0.547365, 0.152800, 0.693485] }, { "keytime": 4807.666016, "rotation": [ 0.442811, 0.547466, 0.152808, 0.693433] }, { "keytime": 4840.999512, "rotation": [ 0.442771, 0.547552, 0.152814, 0.693389] }, { "keytime": 4874.333008, "rotation": [ 0.442738, 0.547625, 0.152820, 0.693352] }, { "keytime": 4907.666504, "rotation": [ 0.442714, 0.547675, 0.152824, 0.693326] }, { "keytime": 4941.000000, "rotation": [ 0.442697, 0.547711, 0.152827, 0.693307] }, { "keytime": 4974.333496, "rotation": [ 0.442688, 0.547731, 0.152828, 0.693297] }, { "keytime": 5007.666992, "rotation": [ 0.442685, 0.547737, 0.152828, 0.693294] }, { "keytime": 5041.000488, "rotation": [ 0.442687, 0.547729, 0.152827, 0.693300] }, { "keytime": 5074.333984, "rotation": [ 0.442694, 0.547706, 0.152822, 0.693315] }, { "keytime": 5107.667480, "rotation": [ 0.442704, 0.547671, 0.152816, 0.693338] }, { "keytime": 5141.000977, "rotation": [ 0.442717, 0.547623, 0.152806, 0.693369] }, { "keytime": 5174.334473, "rotation": [ 0.442734, 0.547564, 0.152795, 0.693407] }, { "keytime": 5207.667969, "rotation": [ 0.442754, 0.547494, 0.152782, 0.693453] }, { "keytime": 5241.001465, "rotation": [ 0.442779, 0.547405, 0.152764, 0.693511] }, { "keytime": 5274.334961, "rotation": [ 0.442807, 0.547307, 0.152746, 0.693574] }, { "keytime": 5307.668457, "rotation": [ 0.442838, 0.547198, 0.152725, 0.693645] }, { "keytime": 5341.001953, "rotation": [ 0.442873, 0.547074, 0.152701, 0.693726] }, { "keytime": 5374.335449, "rotation": [ 0.442910, 0.546942, 0.152675, 0.693812] }, { "keytime": 5407.668945, "rotation": [ 0.442952, 0.546796, 0.152647, 0.693907] }, { "keytime": 5441.002441, "rotation": [ 0.442997, 0.546635, 0.152616, 0.694012] }, { "keytime": 5474.335938, "rotation": [ 0.443044, 0.546469, 0.152584, 0.694120] }, { "keytime": 5507.669434, "rotation": [ 0.443094, 0.546293, 0.152551, 0.694234] }, { "keytime": 5541.002930, "rotation": [ 0.443147, 0.546102, 0.152514, 0.694357] }, { "keytime": 5574.336426, "rotation": [ 0.443202, 0.545907, 0.152476, 0.694484] }, { "keytime": 5607.669922, "rotation": [ 0.443260, 0.545704, 0.152437, 0.694616] }, { "keytime": 5674.336914, "rotation": [ 0.443381, 0.545273, 0.152354, 0.694895] }, { "keytime": 5707.670410, "rotation": [ 0.443443, 0.545052, 0.152312, 0.695038] }, { "keytime": 5741.003906, "rotation": [ 0.443508, 0.544820, 0.152267, 0.695188] }, { "keytime": 5807.670898, "rotation": [ 0.443637, 0.544361, 0.152179, 0.695485] }, { "keytime": 5841.004395, "rotation": [ 0.443704, 0.544123, 0.152133, 0.695639] }, { "keytime": 5907.671387, "rotation": [ 0.443832, 0.543662, 0.152044, 0.695936] }, { "keytime": 5941.004883, "rotation": [ 0.443898, 0.543428, 0.151999, 0.696087] }, { "keytime": 5974.338379, "rotation": [ 0.443960, 0.543205, 0.151956, 0.696231] }, { "keytime": 6041.005371, "rotation": [ 0.444083, 0.542765, 0.151871, 0.696514] }, { "keytime": 6074.338867, "rotation": [ 0.444140, 0.542559, 0.151832, 0.696647] }, { "keytime": 6107.672363, "rotation": [ 0.444196, 0.542360, 0.151793, 0.696774] }, { "keytime": 6141.005859, "rotation": [ 0.444251, 0.542163, 0.151755, 0.696901] }, { "keytime": 6174.339355, "rotation": [ 0.444301, 0.541981, 0.151720, 0.697018] }, { "keytime": 6207.672852, "rotation": [ 0.444350, 0.541807, 0.151687, 0.697130] }, { "keytime": 6241.006348, "rotation": [ 0.444396, 0.541641, 0.151655, 0.697236] }, { "keytime": 6274.339844, "rotation": [ 0.444437, 0.541491, 0.151626, 0.697333] }, { "keytime": 6307.673340, "rotation": [ 0.444476, 0.541351, 0.151599, 0.697422] }, { "keytime": 6341.006836, "rotation": [ 0.444513, 0.541218, 0.151573, 0.697507] }, { "keytime": 6374.340332, "rotation": [ 0.444546, 0.541101, 0.151550, 0.697583] }, { "keytime": 6407.673828, "rotation": [ 0.444574, 0.540998, 0.151531, 0.697648] }, { "keytime": 6441.007324, "rotation": [ 0.444600, 0.540905, 0.151513, 0.697708] }, { "keytime": 6474.340820, "rotation": [ 0.444622, 0.540826, 0.151497, 0.697759] }, { "keytime": 6507.674316, "rotation": [ 0.444641, 0.540758, 0.151485, 0.697802] }, { "keytime": 6541.007812, "rotation": [ 0.444656, 0.540702, 0.151474, 0.697838] }, { "keytime": 6574.341309, "rotation": [ 0.444667, 0.540662, 0.151466, 0.697863] }, { "keytime": 6607.674805, "rotation": [ 0.444675, 0.540635, 0.151461, 0.697881] } ] }, { "boneId": "Bone_020", "keyframes": [ { "keytime": 41.000000, "rotation": [-0.407102, 0.106994, -0.021456, 0.906841] }, { "keytime": 74.333328, "rotation": [-0.407102, 0.106984, -0.021455, 0.906842] }, { "keytime": 107.666664, "rotation": [-0.407102, 0.106959, -0.021452, 0.906845] }, { "keytime": 141.000000, "rotation": [-0.407103, 0.106917, -0.021446, 0.906850] }, { "keytime": 174.333328, "rotation": [-0.407104, 0.106862, -0.021439, 0.906856] }, { "keytime": 207.666656, "rotation": [-0.407105, 0.106791, -0.021429, 0.906864] }, { "keytime": 240.999985, "rotation": [-0.407107, 0.106700, -0.021417, 0.906874] }, { "keytime": 274.333313, "rotation": [-0.407108, 0.106590, -0.021402, 0.906887] }, { "keytime": 307.666656, "rotation": [-0.407110, 0.106468, -0.021386, 0.906900] }, { "keytime": 341.000000, "rotation": [-0.407113, 0.106326, -0.021367, 0.906916] }, { "keytime": 374.333344, "rotation": [-0.407115, 0.106173, -0.021346, 0.906934] }, { "keytime": 407.666687, "rotation": [-0.407118, 0.106000, -0.021323, 0.906953] }, { "keytime": 441.000031, "rotation": [-0.407121, 0.105806, -0.021297, 0.906975] }, { "keytime": 474.333374, "rotation": [-0.407125, 0.105603, -0.021270, 0.906998] }, { "keytime": 507.666718, "rotation": [-0.407128, 0.105385, -0.021241, 0.907022] }, { "keytime": 541.000061, "rotation": [-0.407132, 0.105146, -0.021209, 0.907049] }, { "keytime": 574.333374, "rotation": [-0.407136, 0.104895, -0.021175, 0.907077] }, { "keytime": 607.666687, "rotation": [-0.407141, 0.104631, -0.021139, 0.907106] }, { "keytime": 641.000000, "rotation": [-0.407145, 0.104345, -0.021101, 0.907138] }, { "keytime": 674.333313, "rotation": [-0.407150, 0.104054, -0.021062, 0.907170] }, { "keytime": 707.666626, "rotation": [-0.407154, 0.103751, -0.021021, 0.907204] }, { "keytime": 740.999939, "rotation": [-0.407159, 0.103432, -0.020979, 0.907239] }, { "keytime": 807.666565, "rotation": [-0.407170, 0.102752, -0.020887, 0.907314] }, { "keytime": 840.999878, "rotation": [-0.407175, 0.102402, -0.020841, 0.907352] }, { "keytime": 907.666504, "rotation": [-0.407186, 0.101661, -0.020741, 0.907433] }, { "keytime": 940.999817, "rotation": [-0.407192, 0.101283, -0.020690, 0.907474] }, { "keytime": 974.333130, "rotation": [-0.407197, 0.100886, -0.020637, 0.907517] }, { "keytime": 1007.666443, "rotation": [-0.407203, 0.100496, -0.020585, 0.907559] }, { "keytime": 1040.999756, "rotation": [-0.407208, 0.100100, -0.020532, 0.907601] }, { "keytime": 1074.333130, "rotation": [-0.407214, 0.099688, -0.020477, 0.907645] }, { "keytime": 1140.999878, "rotation": [-0.407226, 0.098880, -0.020368, 0.907731] }, { "keytime": 1174.333252, "rotation": [-0.407232, 0.098462, -0.020312, 0.907775] }, { "keytime": 1207.666626, "rotation": [-0.407237, 0.098057, -0.020258, 0.907817] }, { "keytime": 1241.000000, "rotation": [-0.407242, 0.097640, -0.020202, 0.907861] }, { "keytime": 1274.333374, "rotation": [-0.407248, 0.097238, -0.020148, 0.907903] }, { "keytime": 1307.666748, "rotation": [-0.407253, 0.096840, -0.020094, 0.907945] }, { "keytime": 1341.000122, "rotation": [-0.407258, 0.096434, -0.020040, 0.907987] }, { "keytime": 1374.333496, "rotation": [-0.407263, 0.096045, -0.019988, 0.908027] }, { "keytime": 1407.666870, "rotation": [-0.407267, 0.095664, -0.019937, 0.908066] }, { "keytime": 1441.000244, "rotation": [-0.407272, 0.095279, -0.019885, 0.908106] }, { "keytime": 1474.333618, "rotation": [-0.407276, 0.094914, -0.019836, 0.908143] }, { "keytime": 1541.000366, "rotation": [-0.407285, 0.094198, -0.019740, 0.908216] }, { "keytime": 1574.333740, "rotation": [-0.407288, 0.093864, -0.019695, 0.908250] }, { "keytime": 1607.667114, "rotation": [-0.407292, 0.093541, -0.019652, 0.908282] }, { "keytime": 1641.000488, "rotation": [-0.407296, 0.093220, -0.019609, 0.908315] }, { "keytime": 1674.333862, "rotation": [-0.407299, 0.092920, -0.019568, 0.908345] }, { "keytime": 1707.667236, "rotation": [-0.407302, 0.092633, -0.019530, 0.908374] }, { "keytime": 1741.000610, "rotation": [-0.407305, 0.092355, -0.019493, 0.908401] }, { "keytime": 1774.333984, "rotation": [-0.407308, 0.092100, -0.019458, 0.908427] }, { "keytime": 1807.667358, "rotation": [-0.407311, 0.091857, -0.019426, 0.908451] }, { "keytime": 1841.000732, "rotation": [-0.407313, 0.091623, -0.019394, 0.908474] }, { "keytime": 1874.334106, "rotation": [-0.407315, 0.091409, -0.019366, 0.908495] }, { "keytime": 1907.667480, "rotation": [-0.407317, 0.091216, -0.019340, 0.908514] }, { "keytime": 1941.000854, "rotation": [-0.407319, 0.091031, -0.019315, 0.908532] }, { "keytime": 1974.334229, "rotation": [-0.407321, 0.090868, -0.019293, 0.908549] }, { "keytime": 2007.667603, "rotation": [-0.407323, 0.090719, -0.019273, 0.908563] }, { "keytime": 2041.000977, "rotation": [-0.407324, 0.090582, -0.019255, 0.908577] }, { "keytime": 2074.334473, "rotation": [-0.407325, 0.090470, -0.019240, 0.908588] }, { "keytime": 2107.667725, "rotation": [-0.407326, 0.090373, -0.019227, 0.908597] }, { "keytime": 2141.000977, "rotation": [-0.407327, 0.090289, -0.019215, 0.908605] }, { "keytime": 2174.334229, "rotation": [-0.407328, 0.090222, -0.019206, 0.908612] }, { "keytime": 2207.667480, "rotation": [-0.407328, 0.090172, -0.019200, 0.908617] }, { "keytime": 2241.000732, "rotation": [-0.407328, 0.090140, -0.019195, 0.908620] }, { "keytime": 2274.333984, "rotation": [-0.407328, 0.090125, -0.019193, 0.908621] }, { "keytime": 2307.667236, "rotation": [-0.407328, 0.090125, -0.019193, 0.908621] }, { "keytime": 2341.000488, "rotation": [-0.407327, 0.090142, -0.019194, 0.908620] }, { "keytime": 2374.333740, "rotation": [-0.407326, 0.090175, -0.019196, 0.908617] }, { "keytime": 2407.666992, "rotation": [-0.407323, 0.090229, -0.019200, 0.908613] }, { "keytime": 2441.000244, "rotation": [-0.407319, 0.090303, -0.019205, 0.908607] }, { "keytime": 2474.333496, "rotation": [-0.407315, 0.090391, -0.019211, 0.908601] }, { "keytime": 2507.666748, "rotation": [-0.407310, 0.090496, -0.019218, 0.908592] }, { "keytime": 2541.000000, "rotation": [-0.407303, 0.090622, -0.019227, 0.908583] }, { "keytime": 2574.333252, "rotation": [-0.407296, 0.090766, -0.019237, 0.908571] }, { "keytime": 2607.666504, "rotation": [-0.407288, 0.090927, -0.019248, 0.908558] }, { "keytime": 2640.999756, "rotation": [-0.407279, 0.091104, -0.019260, 0.908545] }, { "keytime": 2674.333008, "rotation": [-0.407269, 0.091304, -0.019274, 0.908529] }, { "keytime": 2707.666260, "rotation": [-0.407258, 0.091515, -0.019288, 0.908512] }, { "keytime": 2740.999512, "rotation": [-0.407246, 0.091747, -0.019304, 0.908493] }, { "keytime": 2774.332764, "rotation": [-0.407233, 0.092004, -0.019322, 0.908473] }, { "keytime": 2807.666016, "rotation": [-0.407220, 0.092269, -0.019340, 0.908452] }, { "keytime": 2840.999268, "rotation": [-0.407205, 0.092549, -0.019359, 0.908429] }, { "keytime": 2874.332520, "rotation": [-0.407190, 0.092855, -0.019380, 0.908405] }, { "keytime": 2907.665771, "rotation": [-0.407173, 0.093173, -0.019402, 0.908379] }, { "keytime": 2940.999023, "rotation": [-0.407156, 0.093505, -0.019425, 0.908352] }, { "keytime": 2974.332275, "rotation": [-0.407138, 0.093863, -0.019449, 0.908323] }, { "keytime": 3007.665527, "rotation": [-0.407119, 0.094225, -0.019474, 0.908293] }, { "keytime": 3040.998779, "rotation": [-0.407100, 0.094601, -0.019500, 0.908262] }, { "keytime": 3107.665283, "rotation": [-0.407058, 0.095414, -0.019555, 0.908195] }, { "keytime": 3140.998535, "rotation": [-0.407036, 0.095833, -0.019584, 0.908160] }, { "keytime": 3207.665039, "rotation": [-0.406991, 0.096722, -0.019645, 0.908085] }, { "keytime": 3240.998291, "rotation": [-0.406966, 0.097179, -0.019676, 0.908046] }, { "keytime": 3274.331543, "rotation": [-0.406941, 0.097661, -0.019709, 0.908005] }, { "keytime": 3307.664795, "rotation": [-0.406916, 0.098139, -0.019742, 0.907964] }, { "keytime": 3340.998047, "rotation": [-0.406890, 0.098624, -0.019775, 0.907922] }, { "keytime": 3374.331299, "rotation": [-0.406864, 0.099134, -0.019810, 0.907878] }, { "keytime": 3407.664551, "rotation": [-0.406837, 0.099638, -0.019844, 0.907834] }, { "keytime": 3440.997803, "rotation": [-0.406810, 0.100147, -0.019879, 0.907789] }, { "keytime": 3474.331055, "rotation": [-0.406782, 0.100678, -0.019915, 0.907742] }, { "keytime": 3507.664307, "rotation": [-0.406754, 0.101198, -0.019951, 0.907696] }, { "keytime": 3540.997559, "rotation": [-0.406726, 0.101723, -0.019986, 0.907649] }, { "keytime": 3574.330811, "rotation": [-0.406697, 0.102266, -0.020023, 0.907600] }, { "keytime": 3640.997314, "rotation": [-0.406641, 0.103326, -0.020095, 0.907504] }, { "keytime": 3674.330566, "rotation": [-0.406611, 0.103873, -0.020132, 0.907454] }, { "keytime": 3707.663818, "rotation": [-0.406582, 0.104403, -0.020168, 0.907405] }, { "keytime": 3740.997070, "rotation": [-0.406553, 0.104931, -0.020205, 0.907356] }, { "keytime": 3774.330322, "rotation": [-0.406524, 0.105472, -0.020242, 0.907306] }, { "keytime": 3807.663574, "rotation": [-0.406495, 0.105993, -0.020277, 0.907257] }, { "keytime": 3840.996826, "rotation": [-0.406467, 0.106510, -0.020313, 0.907209] }, { "keytime": 3874.330078, "rotation": [-0.406438, 0.107038, -0.020349, 0.907159] }, { "keytime": 3907.663330, "rotation": [-0.406410, 0.107541, -0.020383, 0.907111] }, { "keytime": 3940.996582, "rotation": [-0.406384, 0.108038, -0.020416, 0.907063] }, { "keytime": 3974.329834, "rotation": [-0.406357, 0.108541, -0.020450, 0.907014] }, { "keytime": 4007.663086, "rotation": [-0.406332, 0.109021, -0.020483, 0.906967] }, { "keytime": 4074.329590, "rotation": [-0.406281, 0.109964, -0.020547, 0.906875] }, { "keytime": 4107.663086, "rotation": [-0.406256, 0.110411, -0.020577, 0.906831] }, { "keytime": 4174.329590, "rotation": [-0.406210, 0.111283, -0.020636, 0.906744] }, { "keytime": 4207.663086, "rotation": [-0.406187, 0.111694, -0.020664, 0.906703] }, { "keytime": 4274.330078, "rotation": [-0.406146, 0.112480, -0.020717, 0.906623] }, { "keytime": 4307.663574, "rotation": [-0.406127, 0.112847, -0.020742, 0.906585] }, { "keytime": 4340.997070, "rotation": [-0.406108, 0.113199, -0.020765, 0.906549] }, { "keytime": 4374.330566, "rotation": [-0.406090, 0.113546, -0.020789, 0.906513] }, { "keytime": 4407.664062, "rotation": [-0.406074, 0.113864, -0.020810, 0.906480] }, { "keytime": 4440.997559, "rotation": [-0.406058, 0.114166, -0.020831, 0.906448] }, { "keytime": 4474.331055, "rotation": [-0.406044, 0.114461, -0.020850, 0.906417] }, { "keytime": 4507.664551, "rotation": [-0.406030, 0.114731, -0.020868, 0.906389] }, { "keytime": 4540.998047, "rotation": [-0.406018, 0.114985, -0.020885, 0.906362] }, { "keytime": 4574.331543, "rotation": [-0.406007, 0.115226, -0.020901, 0.906336] }, { "keytime": 4607.665039, "rotation": [-0.405997, 0.115442, -0.020916, 0.906313] }, { "keytime": 4640.998535, "rotation": [-0.405988, 0.115642, -0.020929, 0.906291] }, { "keytime": 4674.332031, "rotation": [-0.405980, 0.115831, -0.020941, 0.906270] }, { "keytime": 4707.665527, "rotation": [-0.405973, 0.115997, -0.020952, 0.906252] }, { "keytime": 4740.999023, "rotation": [-0.405967, 0.116141, -0.020962, 0.906235] }, { "keytime": 4774.332520, "rotation": [-0.405963, 0.116273, -0.020970, 0.906220] }, { "keytime": 4807.666016, "rotation": [-0.405960, 0.116384, -0.020978, 0.906207] }, { "keytime": 4840.999512, "rotation": [-0.405958, 0.116478, -0.020984, 0.906196] }, { "keytime": 4874.333008, "rotation": [-0.405957, 0.116558, -0.020988, 0.906186] }, { "keytime": 4907.666504, "rotation": [-0.405957, 0.116613, -0.020992, 0.906179] }, { "keytime": 4941.000000, "rotation": [-0.405958, 0.116653, -0.020994, 0.906173] }, { "keytime": 4974.333496, "rotation": [-0.405961, 0.116675, -0.020995, 0.906169] }, { "keytime": 5007.666992, "rotation": [-0.405965, 0.116681, -0.020995, 0.906166] }, { "keytime": 5041.000488, "rotation": [-0.405970, 0.116670, -0.020995, 0.906165] }, { "keytime": 5074.333984, "rotation": [-0.405977, 0.116638, -0.020997, 0.906166] }, { "keytime": 5107.667480, "rotation": [-0.405986, 0.116591, -0.020998, 0.906168] }, { "keytime": 5141.000977, "rotation": [-0.405997, 0.116525, -0.021001, 0.906172] }, { "keytime": 5174.334473, "rotation": [-0.406009, 0.116446, -0.021005, 0.906176] }, { "keytime": 5207.667969, "rotation": [-0.406024, 0.116350, -0.021009, 0.906182] }, { "keytime": 5241.001465, "rotation": [-0.406040, 0.116229, -0.021014, 0.906190] }, { "keytime": 5274.334961, "rotation": [-0.406059, 0.116096, -0.021020, 0.906199] }, { "keytime": 5307.668457, "rotation": [-0.406078, 0.115947, -0.021027, 0.906209] }, { "keytime": 5341.001953, "rotation": [-0.406100, 0.115778, -0.021035, 0.906221] }, { "keytime": 5374.335449, "rotation": [-0.406123, 0.115598, -0.021044, 0.906233] }, { "keytime": 5407.668945, "rotation": [-0.406148, 0.115399, -0.021053, 0.906247] }, { "keytime": 5441.002441, "rotation": [-0.406175, 0.115180, -0.021063, 0.906263] }, { "keytime": 5474.335938, "rotation": [-0.406203, 0.114953, -0.021074, 0.906279] }, { "keytime": 5507.669434, "rotation": [-0.406232, 0.114714, -0.021085, 0.906296] }, { "keytime": 5541.002930, "rotation": [-0.406263, 0.114455, -0.021098, 0.906314] }, { "keytime": 5574.336426, "rotation": [-0.406294, 0.114188, -0.021110, 0.906334] }, { "keytime": 5607.669922, "rotation": [-0.406327, 0.113912, -0.021123, 0.906353] }, { "keytime": 5674.336914, "rotation": [-0.406395, 0.113325, -0.021152, 0.906396] }, { "keytime": 5707.670410, "rotation": [-0.406430, 0.113025, -0.021166, 0.906417] }, { "keytime": 5741.003906, "rotation": [-0.406466, 0.112709, -0.021181, 0.906440] }, { "keytime": 5774.337402, "rotation": [-0.406502, 0.112398, -0.021196, 0.906462] }, { "keytime": 5807.670898, "rotation": [-0.406538, 0.112085, -0.021211, 0.906484] }, { "keytime": 5841.004395, "rotation": [-0.406575, 0.111761, -0.021227, 0.906507] }, { "keytime": 5907.671387, "rotation": [-0.406646, 0.111135, -0.021257, 0.906552] }, { "keytime": 5941.004883, "rotation": [-0.406682, 0.110817, -0.021272, 0.906574] }, { "keytime": 5974.338379, "rotation": [-0.406717, 0.110513, -0.021286, 0.906595] }, { "keytime": 6041.005371, "rotation": [-0.406783, 0.109915, -0.021315, 0.906638] }, { "keytime": 6074.338867, "rotation": [-0.406814, 0.109636, -0.021329, 0.906657] }, { "keytime": 6107.672363, "rotation": [-0.406843, 0.109365, -0.021342, 0.906676] }, { "keytime": 6141.005859, "rotation": [-0.406873, 0.109098, -0.021355, 0.906695] }, { "keytime": 6174.339355, "rotation": [-0.406900, 0.108850, -0.021367, 0.906712] }, { "keytime": 6207.672852, "rotation": [-0.406927, 0.108615, -0.021378, 0.906729] }, { "keytime": 6241.006348, "rotation": [-0.406951, 0.108390, -0.021389, 0.906744] }, { "keytime": 6274.339844, "rotation": [-0.406973, 0.108186, -0.021399, 0.906759] }, { "keytime": 6307.673340, "rotation": [-0.406993, 0.107996, -0.021408, 0.906772] }, { "keytime": 6341.006836, "rotation": [-0.407013, 0.107815, -0.021417, 0.906784] }, { "keytime": 6374.340332, "rotation": [-0.407031, 0.107656, -0.021424, 0.906795] }, { "keytime": 6407.673828, "rotation": [-0.407045, 0.107517, -0.021431, 0.906805] }, { "keytime": 6441.007324, "rotation": [-0.407059, 0.107390, -0.021437, 0.906814] }, { "keytime": 6474.340820, "rotation": [-0.407071, 0.107283, -0.021442, 0.906821] }, { "keytime": 6507.674316, "rotation": [-0.407081, 0.107191, -0.021447, 0.906827] }, { "keytime": 6541.007812, "rotation": [-0.407089, 0.107114, -0.021451, 0.906833] }, { "keytime": 6574.341309, "rotation": [-0.407095, 0.107061, -0.021453, 0.906836] }, { "keytime": 6607.674805, "rotation": [-0.407099, 0.107024, -0.021455, 0.906838] } ] }, { "boneId": "Bone_021", "keyframes": [ { "keytime": 41.000000, "rotation": [-0.465709, 0.182314, 0.121209, 0.857429] }, { "keytime": 74.333328, "rotation": [-0.465709, 0.182309, 0.121204, 0.857431] }, { "keytime": 107.666664, "rotation": [-0.465710, 0.182296, 0.121191, 0.857435] }, { "keytime": 141.000000, "rotation": [-0.465710, 0.182275, 0.121170, 0.857442] }, { "keytime": 174.333328, "rotation": [-0.465711, 0.182247, 0.121142, 0.857452] }, { "keytime": 207.666656, "rotation": [-0.465711, 0.182211, 0.121105, 0.857465] }, { "keytime": 240.999985, "rotation": [-0.465712, 0.182164, 0.121059, 0.857481] }, { "keytime": 274.333313, "rotation": [-0.465714, 0.182108, 0.121003, 0.857500] }, { "keytime": 307.666656, "rotation": [-0.465716, 0.182046, 0.120942, 0.857521] }, { "keytime": 341.000000, "rotation": [-0.465718, 0.181973, 0.120870, 0.857545] }, { "keytime": 374.333344, "rotation": [-0.465720, 0.181895, 0.120792, 0.857571] }, { "keytime": 407.666687, "rotation": [-0.465723, 0.181807, 0.120704, 0.857601] }, { "keytime": 441.000031, "rotation": [-0.465726, 0.181708, 0.120606, 0.857634] }, { "keytime": 474.333374, "rotation": [-0.465729, 0.181604, 0.120503, 0.857669] }, { "keytime": 507.666718, "rotation": [-0.465732, 0.181493, 0.120393, 0.857706] }, { "keytime": 541.000061, "rotation": [-0.465735, 0.181371, 0.120271, 0.857747] }, { "keytime": 574.333374, "rotation": [-0.465738, 0.181243, 0.120144, 0.857791] }, { "keytime": 607.666687, "rotation": [-0.465741, 0.181108, 0.120010, 0.857836] }, { "keytime": 641.000000, "rotation": [-0.465745, 0.180962, 0.119865, 0.857885] }, { "keytime": 674.333313, "rotation": [-0.465750, 0.180814, 0.119717, 0.857934] }, { "keytime": 707.666626, "rotation": [-0.465754, 0.180659, 0.119563, 0.857986] }, { "keytime": 740.999939, "rotation": [-0.465759, 0.180496, 0.119402, 0.858040] }, { "keytime": 807.666565, "rotation": [-0.465768, 0.180149, 0.119057, 0.858156] }, { "keytime": 840.999878, "rotation": [-0.465773, 0.179970, 0.118879, 0.858216] }, { "keytime": 907.666504, "rotation": [-0.465782, 0.179592, 0.118503, 0.858342] }, { "keytime": 940.999817, "rotation": [-0.465786, 0.179399, 0.118311, 0.858407] }, { "keytime": 974.333130, "rotation": [-0.465791, 0.179197, 0.118110, 0.858474] }, { "keytime": 1007.666443, "rotation": [-0.465796, 0.178997, 0.117911, 0.858540] }, { "keytime": 1040.999756, "rotation": [-0.465801, 0.178795, 0.117711, 0.858607] }, { "keytime": 1074.333130, "rotation": [-0.465807, 0.178585, 0.117501, 0.858676] }, { "keytime": 1140.999878, "rotation": [-0.465817, 0.178171, 0.117091, 0.858812] }, { "keytime": 1174.333252, "rotation": [-0.465823, 0.177958, 0.116880, 0.858882] }, { "keytime": 1207.666626, "rotation": [-0.465828, 0.177751, 0.116675, 0.858950] }, { "keytime": 1241.000000, "rotation": [-0.465834, 0.177538, 0.116463, 0.859020] }, { "keytime": 1307.666748, "rotation": [-0.465844, 0.177129, 0.116058, 0.859154] }, { "keytime": 1341.000122, "rotation": [-0.465850, 0.176922, 0.115852, 0.859221] }, { "keytime": 1374.333496, "rotation": [-0.465855, 0.176723, 0.115654, 0.859286] }, { "keytime": 1407.666870, "rotation": [-0.465859, 0.176528, 0.115461, 0.859349] }, { "keytime": 1441.000244, "rotation": [-0.465864, 0.176332, 0.115266, 0.859413] }, { "keytime": 1474.333618, "rotation": [-0.465869, 0.176145, 0.115080, 0.859474] }, { "keytime": 1541.000366, "rotation": [-0.465877, 0.175779, 0.114717, 0.859593] }, { "keytime": 1574.333740, "rotation": [-0.465881, 0.175609, 0.114548, 0.859648] }, { "keytime": 1641.000488, "rotation": [-0.465888, 0.175279, 0.114221, 0.859755] }, { "keytime": 1674.333862, "rotation": [-0.465891, 0.175126, 0.114069, 0.859805] }, { "keytime": 1707.667236, "rotation": [-0.465894, 0.174980, 0.113923, 0.859852] }, { "keytime": 1741.000610, "rotation": [-0.465897, 0.174838, 0.113782, 0.859899] }, { "keytime": 1774.333984, "rotation": [-0.465899, 0.174707, 0.113652, 0.859941] }, { "keytime": 1807.667358, "rotation": [-0.465901, 0.174583, 0.113529, 0.859982] }, { "keytime": 1841.000732, "rotation": [-0.465903, 0.174463, 0.113410, 0.860021] }, { "keytime": 1874.334106, "rotation": [-0.465905, 0.174354, 0.113302, 0.860056] }, { "keytime": 1907.667480, "rotation": [-0.465908, 0.174255, 0.113203, 0.860087] }, { "keytime": 1941.000854, "rotation": [-0.465910, 0.174161, 0.113110, 0.860117] }, { "keytime": 1974.334229, "rotation": [-0.465912, 0.174077, 0.113027, 0.860144] }, { "keytime": 2007.667603, "rotation": [-0.465913, 0.174001, 0.112951, 0.860169] }, { "keytime": 2041.000977, "rotation": [-0.465914, 0.173932, 0.112882, 0.860192] }, { "keytime": 2074.334473, "rotation": [-0.465915, 0.173874, 0.112825, 0.860210] }, { "keytime": 2107.667725, "rotation": [-0.465916, 0.173824, 0.112775, 0.860226] }, { "keytime": 2141.000977, "rotation": [-0.465917, 0.173781, 0.112733, 0.860240] }, { "keytime": 2174.334229, "rotation": [-0.465918, 0.173748, 0.112699, 0.860251] }, { "keytime": 2207.667480, "rotation": [-0.465919, 0.173722, 0.112674, 0.860259] }, { "keytime": 2241.000732, "rotation": [-0.465919, 0.173705, 0.112657, 0.860264] }, { "keytime": 2274.333984, "rotation": [-0.465918, 0.173698, 0.112650, 0.860267] }, { "keytime": 2307.667236, "rotation": [-0.465918, 0.173698, 0.112650, 0.860267] }, { "keytime": 2341.000488, "rotation": [-0.465917, 0.173707, 0.112660, 0.860264] }, { "keytime": 2374.333740, "rotation": [-0.465916, 0.173724, 0.112680, 0.860259] }, { "keytime": 2407.666992, "rotation": [-0.465914, 0.173753, 0.112713, 0.860250] }, { "keytime": 2441.000244, "rotation": [-0.465911, 0.173792, 0.112757, 0.860238] }, { "keytime": 2474.333496, "rotation": [-0.465909, 0.173838, 0.112810, 0.860223] }, { "keytime": 2507.666748, "rotation": [-0.465906, 0.173894, 0.112873, 0.860205] }, { "keytime": 2541.000000, "rotation": [-0.465901, 0.173960, 0.112949, 0.860184] }, { "keytime": 2574.333252, "rotation": [-0.465896, 0.174036, 0.113035, 0.860160] }, { "keytime": 2607.666504, "rotation": [-0.465891, 0.174120, 0.113132, 0.860133] }, { "keytime": 2640.999756, "rotation": [-0.465885, 0.174214, 0.113239, 0.860103] }, { "keytime": 2674.333008, "rotation": [-0.465878, 0.174319, 0.113359, 0.860070] }, { "keytime": 2707.666260, "rotation": [-0.465871, 0.174430, 0.113486, 0.860034] }, { "keytime": 2740.999512, "rotation": [-0.465864, 0.174553, 0.113625, 0.859995] }, { "keytime": 2774.332764, "rotation": [-0.465855, 0.174688, 0.113779, 0.859952] }, { "keytime": 2807.666016, "rotation": [-0.465846, 0.174828, 0.113939, 0.859907] }, { "keytime": 2840.999268, "rotation": [-0.465837, 0.174975, 0.114107, 0.859860] }, { "keytime": 2874.332520, "rotation": [-0.465827, 0.175137, 0.114291, 0.859808] }, { "keytime": 2907.665771, "rotation": [-0.465816, 0.175304, 0.114482, 0.859754] }, { "keytime": 2940.999023, "rotation": [-0.465805, 0.175479, 0.114682, 0.859698] }, { "keytime": 2974.332275, "rotation": [-0.465793, 0.175667, 0.114897, 0.859637] }, { "keytime": 3007.665527, "rotation": [-0.465781, 0.175858, 0.115114, 0.859576] }, { "keytime": 3040.998779, "rotation": [-0.465768, 0.176056, 0.115340, 0.859512] }, { "keytime": 3107.665283, "rotation": [-0.465740, 0.176484, 0.115829, 0.859374] }, { "keytime": 3140.998535, "rotation": [-0.465726, 0.176705, 0.116081, 0.859302] }, { "keytime": 3207.665039, "rotation": [-0.465694, 0.177173, 0.116615, 0.859150] }, { "keytime": 3240.998291, "rotation": [-0.465679, 0.177414, 0.116890, 0.859072] }, { "keytime": 3274.331543, "rotation": [-0.465662, 0.177668, 0.117180, 0.858989] }, { "keytime": 3307.664795, "rotation": [-0.465645, 0.177919, 0.117467, 0.858907] }, { "keytime": 3340.998047, "rotation": [-0.465628, 0.178175, 0.117759, 0.858823] }, { "keytime": 3374.331299, "rotation": [-0.465610, 0.178443, 0.118065, 0.858735] }, { "keytime": 3407.664551, "rotation": [-0.465591, 0.178708, 0.118367, 0.858648] }, { "keytime": 3440.997803, "rotation": [-0.465573, 0.178976, 0.118674, 0.858560] }, { "keytime": 3474.331055, "rotation": [-0.465554, 0.179256, 0.118993, 0.858468] }, { "keytime": 3507.664307, "rotation": [-0.465535, 0.179529, 0.119305, 0.858378] }, { "keytime": 3540.997559, "rotation": [-0.465517, 0.179805, 0.119621, 0.858286] }, { "keytime": 3574.330811, "rotation": [-0.465497, 0.180091, 0.119947, 0.858192] }, { "keytime": 3640.997314, "rotation": [-0.465457, 0.180649, 0.120584, 0.858006] }, { "keytime": 3674.330566, "rotation": [-0.465437, 0.180937, 0.120912, 0.857911] }, { "keytime": 3740.997070, "rotation": [-0.465398, 0.181494, 0.121548, 0.857724] }, { "keytime": 3774.330322, "rotation": [-0.465378, 0.181778, 0.121873, 0.857629] }, { "keytime": 3807.663574, "rotation": [-0.465359, 0.182052, 0.122186, 0.857536] }, { "keytime": 3840.996826, "rotation": [-0.465340, 0.182324, 0.122497, 0.857445] }, { "keytime": 3874.330078, "rotation": [-0.465320, 0.182601, 0.122814, 0.857351] }, { "keytime": 3907.663330, "rotation": [-0.465301, 0.182866, 0.123116, 0.857262] }, { "keytime": 3940.996582, "rotation": [-0.465282, 0.183127, 0.123415, 0.857173] }, { "keytime": 3974.329834, "rotation": [-0.465262, 0.183391, 0.123717, 0.857084] }, { "keytime": 4007.663086, "rotation": [-0.465244, 0.183644, 0.124006, 0.856998] }, { "keytime": 4074.329590, "rotation": [-0.465206, 0.184139, 0.124572, 0.856830] }, { "keytime": 4107.663086, "rotation": [-0.465189, 0.184374, 0.124840, 0.856750] }, { "keytime": 4174.329590, "rotation": [-0.465155, 0.184833, 0.125364, 0.856593] }, { "keytime": 4207.663086, "rotation": [-0.465139, 0.185049, 0.125611, 0.856519] }, { "keytime": 4274.330078, "rotation": [-0.465107, 0.185462, 0.126083, 0.856377] }, { "keytime": 4307.663574, "rotation": [-0.465093, 0.185654, 0.126303, 0.856311] }, { "keytime": 4340.997070, "rotation": [-0.465079, 0.185839, 0.126515, 0.856247] }, { "keytime": 4374.330566, "rotation": [-0.465064, 0.186022, 0.126723, 0.856185] }, { "keytime": 4407.664062, "rotation": [-0.465052, 0.186189, 0.126914, 0.856127] }, { "keytime": 4440.997559, "rotation": [-0.465040, 0.186347, 0.127095, 0.856072] }, { "keytime": 4474.331055, "rotation": [-0.465028, 0.186502, 0.127272, 0.856019] }, { "keytime": 4507.664551, "rotation": [-0.465016, 0.186644, 0.127435, 0.855970] }, { "keytime": 4540.998047, "rotation": [-0.465007, 0.186778, 0.127587, 0.855923] }, { "keytime": 4574.331543, "rotation": [-0.464996, 0.186904, 0.127732, 0.855880] }, { "keytime": 4607.665039, "rotation": [-0.464988, 0.187018, 0.127861, 0.855840] }, { "keytime": 4640.998535, "rotation": [-0.464980, 0.187123, 0.127982, 0.855804] }, { "keytime": 4674.332031, "rotation": [-0.464972, 0.187222, 0.128095, 0.855769] }, { "keytime": 4707.665527, "rotation": [-0.464965, 0.187309, 0.128195, 0.855739] }, { "keytime": 4740.999023, "rotation": [-0.464959, 0.187385, 0.128281, 0.855712] }, { "keytime": 4774.332520, "rotation": [-0.464954, 0.187454, 0.128361, 0.855688] }, { "keytime": 4807.666016, "rotation": [-0.464949, 0.187512, 0.128427, 0.855668] }, { "keytime": 4840.999512, "rotation": [-0.464945, 0.187562, 0.128484, 0.855651] }, { "keytime": 4874.333008, "rotation": [-0.464942, 0.187603, 0.128531, 0.855636] }, { "keytime": 4907.666504, "rotation": [-0.464940, 0.187632, 0.128564, 0.855626] }, { "keytime": 4941.000000, "rotation": [-0.464938, 0.187653, 0.128588, 0.855619] }, { "keytime": 4974.333496, "rotation": [-0.464937, 0.187665, 0.128602, 0.855615] }, { "keytime": 5007.666992, "rotation": [-0.464937, 0.187668, 0.128605, 0.855614] }, { "keytime": 5041.000488, "rotation": [-0.464938, 0.187662, 0.128596, 0.855616] }, { "keytime": 5074.333984, "rotation": [-0.464940, 0.187644, 0.128572, 0.855622] }, { "keytime": 5107.667480, "rotation": [-0.464944, 0.187618, 0.128536, 0.855631] }, { "keytime": 5141.000977, "rotation": [-0.464950, 0.187582, 0.128486, 0.855644] }, { "keytime": 5174.334473, "rotation": [-0.464956, 0.187538, 0.128425, 0.855659] }, { "keytime": 5207.667969, "rotation": [-0.464964, 0.187485, 0.128351, 0.855677] }, { "keytime": 5241.001465, "rotation": [-0.464974, 0.187418, 0.128259, 0.855700] }, { "keytime": 5274.334961, "rotation": [-0.464985, 0.187344, 0.128158, 0.855726] }, { "keytime": 5307.668457, "rotation": [-0.464997, 0.187262, 0.128044, 0.855754] }, { "keytime": 5341.001953, "rotation": [-0.465011, 0.187169, 0.127915, 0.855787] }, { "keytime": 5374.335449, "rotation": [-0.465025, 0.187070, 0.127778, 0.855821] }, { "keytime": 5407.668945, "rotation": [-0.465042, 0.186960, 0.127626, 0.855859] }, { "keytime": 5441.002441, "rotation": [-0.465059, 0.186838, 0.127458, 0.855900] }, { "keytime": 5474.335938, "rotation": [-0.465078, 0.186713, 0.127285, 0.855943] }, { "keytime": 5507.669434, "rotation": [-0.465097, 0.186581, 0.127103, 0.855989] }, { "keytime": 5541.002930, "rotation": [-0.465118, 0.186438, 0.126905, 0.856038] }, { "keytime": 5574.336426, "rotation": [-0.465140, 0.186291, 0.126701, 0.856088] }, { "keytime": 5607.669922, "rotation": [-0.465162, 0.186138, 0.126490, 0.856141] }, { "keytime": 5674.336914, "rotation": [-0.465210, 0.185814, 0.126043, 0.856251] }, { "keytime": 5707.670410, "rotation": [-0.465233, 0.185648, 0.125813, 0.856308] }, { "keytime": 5741.003906, "rotation": [-0.465259, 0.185473, 0.125572, 0.856368] }, { "keytime": 5807.670898, "rotation": [-0.465309, 0.185129, 0.125095, 0.856485] }, { "keytime": 5841.004395, "rotation": [-0.465335, 0.184950, 0.124849, 0.856545] }, { "keytime": 5907.671387, "rotation": [-0.465384, 0.184604, 0.124370, 0.856663] }, { "keytime": 5941.004883, "rotation": [-0.465409, 0.184428, 0.124127, 0.856722] }, { "keytime": 5974.338379, "rotation": [-0.465433, 0.184260, 0.123896, 0.856779] }, { "keytime": 6041.005371, "rotation": [-0.465480, 0.183930, 0.123439, 0.856890] }, { "keytime": 6074.338867, "rotation": [-0.465503, 0.183775, 0.123226, 0.856942] }, { "keytime": 6107.672363, "rotation": [-0.465524, 0.183626, 0.123019, 0.856992] }, { "keytime": 6141.005859, "rotation": [-0.465545, 0.183478, 0.122815, 0.857041] }, { "keytime": 6174.339355, "rotation": [-0.465565, 0.183341, 0.122626, 0.857087] }, { "keytime": 6207.672852, "rotation": [-0.465583, 0.183211, 0.122446, 0.857131] }, { "keytime": 6241.006348, "rotation": [-0.465601, 0.183086, 0.122274, 0.857172] }, { "keytime": 6274.339844, "rotation": [-0.465617, 0.182973, 0.122119, 0.857210] }, { "keytime": 6307.673340, "rotation": [-0.465631, 0.182868, 0.121974, 0.857245] }, { "keytime": 6341.006836, "rotation": [-0.465645, 0.182769, 0.121836, 0.857278] }, { "keytime": 6374.340332, "rotation": [-0.465658, 0.182680, 0.121714, 0.857308] }, { "keytime": 6407.673828, "rotation": [-0.465669, 0.182603, 0.121608, 0.857333] }, { "keytime": 6441.007324, "rotation": [-0.465679, 0.182533, 0.121511, 0.857356] }, { "keytime": 6474.340820, "rotation": [-0.465687, 0.182474, 0.121429, 0.857376] }, { "keytime": 6507.674316, "rotation": [-0.465694, 0.182424, 0.121360, 0.857393] }, { "keytime": 6541.007812, "rotation": [-0.465700, 0.182381, 0.121301, 0.857407] }, { "keytime": 6574.341309, "rotation": [-0.465704, 0.182352, 0.121260, 0.857417] }, { "keytime": 6607.674805, "rotation": [-0.465707, 0.182331, 0.121232, 0.857424] } ] }, { "boneId": "Bone_022", "keyframes": [ { "keytime": 41.000000, "rotation": [ 0.152469, 0.031184, 0.122420, 0.980201] }, { "keytime": 74.333328, "rotation": [ 0.152470, 0.031182, 0.122415, 0.980201] }, { "keytime": 107.666664, "rotation": [ 0.152472, 0.031177, 0.122405, 0.980203] }, { "keytime": 141.000000, "rotation": [ 0.152476, 0.031168, 0.122389, 0.980204] }, { "keytime": 174.333328, "rotation": [ 0.152482, 0.031156, 0.122366, 0.980207] }, { "keytime": 207.666656, "rotation": [ 0.152488, 0.031141, 0.122337, 0.980210] }, { "keytime": 240.999985, "rotation": [ 0.152497, 0.031122, 0.122300, 0.980214] }, { "keytime": 274.333313, "rotation": [ 0.152507, 0.031099, 0.122256, 0.980218] }, { "keytime": 307.666656, "rotation": [ 0.152518, 0.031073, 0.122206, 0.980224] }, { "keytime": 341.000000, "rotation": [ 0.152532, 0.031043, 0.122148, 0.980230] }, { "keytime": 374.333344, "rotation": [ 0.152545, 0.031011, 0.122086, 0.980236] }, { "keytime": 407.666687, "rotation": [ 0.152562, 0.030975, 0.122016, 0.980244] }, { "keytime": 441.000031, "rotation": [ 0.152580, 0.030934, 0.121937, 0.980252] }, { "keytime": 474.333374, "rotation": [ 0.152599, 0.030891, 0.121855, 0.980260] }, { "keytime": 507.666718, "rotation": [ 0.152619, 0.030845, 0.121767, 0.980270] }, { "keytime": 541.000061, "rotation": [ 0.152641, 0.030795, 0.121670, 0.980280] }, { "keytime": 574.333374, "rotation": [ 0.152665, 0.030742, 0.121568, 0.980291] }, { "keytime": 607.666687, "rotation": [ 0.152689, 0.030686, 0.121461, 0.980302] }, { "keytime": 674.333313, "rotation": [ 0.152743, 0.030565, 0.121227, 0.980326] }, { "keytime": 707.666626, "rotation": [ 0.152771, 0.030501, 0.121104, 0.980339] }, { "keytime": 740.999939, "rotation": [ 0.152801, 0.030434, 0.120974, 0.980352] }, { "keytime": 807.666565, "rotation": [ 0.152864, 0.030291, 0.120698, 0.980381] }, { "keytime": 840.999878, "rotation": [ 0.152897, 0.030217, 0.120556, 0.980396] }, { "keytime": 907.666504, "rotation": [ 0.152966, 0.030061, 0.120255, 0.980427] }, { "keytime": 940.999817, "rotation": [ 0.153002, 0.029981, 0.120102, 0.980442] }, { "keytime": 974.333130, "rotation": [ 0.153038, 0.029897, 0.119941, 0.980459] }, { "keytime": 1007.666443, "rotation": [ 0.153074, 0.029815, 0.119783, 0.980475] }, { "keytime": 1040.999756, "rotation": [ 0.153111, 0.029732, 0.119623, 0.980491] }, { "keytime": 1074.333130, "rotation": [ 0.153150, 0.029645, 0.119455, 0.980508] }, { "keytime": 1140.999878, "rotation": [ 0.153224, 0.029475, 0.119127, 0.980542] }, { "keytime": 1174.333252, "rotation": [ 0.153263, 0.029388, 0.118958, 0.980559] }, { "keytime": 1207.666626, "rotation": [ 0.153300, 0.029303, 0.118794, 0.980576] }, { "keytime": 1241.000000, "rotation": [ 0.153338, 0.029215, 0.118624, 0.980593] }, { "keytime": 1307.666748, "rotation": [ 0.153413, 0.029046, 0.118300, 0.980625] }, { "keytime": 1341.000122, "rotation": [ 0.153451, 0.028960, 0.118135, 0.980642] }, { "keytime": 1374.333496, "rotation": [ 0.153487, 0.028879, 0.117977, 0.980657] }, { "keytime": 1441.000244, "rotation": [ 0.153558, 0.028717, 0.117667, 0.980688] }, { "keytime": 1474.333618, "rotation": [ 0.153592, 0.028640, 0.117519, 0.980703] }, { "keytime": 1541.000366, "rotation": [ 0.153658, 0.028489, 0.117228, 0.980732] }, { "keytime": 1574.333740, "rotation": [ 0.153690, 0.028419, 0.117093, 0.980745] }, { "keytime": 1641.000488, "rotation": [ 0.153749, 0.028283, 0.116832, 0.980771] }, { "keytime": 1674.333862, "rotation": [ 0.153777, 0.028220, 0.116710, 0.980783] }, { "keytime": 1707.667236, "rotation": [ 0.153803, 0.028160, 0.116594, 0.980794] }, { "keytime": 1741.000610, "rotation": [ 0.153829, 0.028101, 0.116481, 0.980805] }, { "keytime": 1774.333984, "rotation": [ 0.153853, 0.028047, 0.116377, 0.980815] }, { "keytime": 1807.667358, "rotation": [ 0.153875, 0.027996, 0.116279, 0.980825] }, { "keytime": 1841.000732, "rotation": [ 0.153897, 0.027947, 0.116184, 0.980834] }, { "keytime": 1874.334106, "rotation": [ 0.153916, 0.027902, 0.116097, 0.980843] }, { "keytime": 1907.667480, "rotation": [ 0.153935, 0.027861, 0.116019, 0.980850] }, { "keytime": 1941.000854, "rotation": [ 0.153952, 0.027823, 0.115944, 0.980858] }, { "keytime": 1974.334229, "rotation": [ 0.153967, 0.027788, 0.115878, 0.980864] }, { "keytime": 2007.667603, "rotation": [ 0.153981, 0.027757, 0.115817, 0.980870] }, { "keytime": 2041.000977, "rotation": [ 0.153993, 0.027728, 0.115762, 0.980875] }, { "keytime": 2074.334473, "rotation": [ 0.154004, 0.027704, 0.115716, 0.980880] }, { "keytime": 2107.667725, "rotation": [ 0.154013, 0.027684, 0.115677, 0.980884] }, { "keytime": 2141.000977, "rotation": [ 0.154020, 0.027666, 0.115643, 0.980887] }, { "keytime": 2174.334229, "rotation": [ 0.154027, 0.027652, 0.115616, 0.980889] }, { "keytime": 2207.667480, "rotation": [ 0.154031, 0.027642, 0.115595, 0.980892] }, { "keytime": 2241.000732, "rotation": [ 0.154034, 0.027635, 0.115582, 0.980893] }, { "keytime": 2274.333984, "rotation": [ 0.154036, 0.027632, 0.115576, 0.980893] }, { "keytime": 2307.667236, "rotation": [ 0.154035, 0.027632, 0.115577, 0.980893] }, { "keytime": 2341.000488, "rotation": [ 0.154034, 0.027635, 0.115585, 0.980892] }, { "keytime": 2374.333740, "rotation": [ 0.154031, 0.027642, 0.115602, 0.980891] }, { "keytime": 2407.666992, "rotation": [ 0.154026, 0.027652, 0.115629, 0.980888] }, { "keytime": 2441.000244, "rotation": [ 0.154019, 0.027667, 0.115666, 0.980884] }, { "keytime": 2474.333496, "rotation": [ 0.154010, 0.027684, 0.115711, 0.980880] }, { "keytime": 2507.666748, "rotation": [ 0.154000, 0.027705, 0.115764, 0.980875] }, { "keytime": 2541.000000, "rotation": [ 0.153988, 0.027730, 0.115827, 0.980868] }, { "keytime": 2574.333252, "rotation": [ 0.153974, 0.027758, 0.115899, 0.980861] }, { "keytime": 2607.666504, "rotation": [ 0.153959, 0.027790, 0.115980, 0.980853] }, { "keytime": 2640.999756, "rotation": [ 0.153942, 0.027825, 0.116069, 0.980844] }, { "keytime": 2674.333008, "rotation": [ 0.153923, 0.027864, 0.116170, 0.980834] }, { "keytime": 2707.666260, "rotation": [ 0.153903, 0.027906, 0.116276, 0.980824] }, { "keytime": 2740.999512, "rotation": [ 0.153880, 0.027952, 0.116393, 0.980812] }, { "keytime": 2774.332764, "rotation": [ 0.153856, 0.028002, 0.116522, 0.980799] }, { "keytime": 2807.666016, "rotation": [ 0.153830, 0.028054, 0.116655, 0.980786] }, { "keytime": 2840.999268, "rotation": [ 0.153802, 0.028110, 0.116797, 0.980772] }, { "keytime": 2874.332520, "rotation": [ 0.153774, 0.028170, 0.116951, 0.980756] }, { "keytime": 2907.665771, "rotation": [ 0.153743, 0.028233, 0.117111, 0.980740] }, { "keytime": 2940.999023, "rotation": [ 0.153711, 0.028298, 0.117278, 0.980723] }, { "keytime": 3007.665527, "rotation": [ 0.153642, 0.028440, 0.117640, 0.980687] }, { "keytime": 3040.998779, "rotation": [ 0.153605, 0.028514, 0.117829, 0.980667] }, { "keytime": 3107.665283, "rotation": [ 0.153527, 0.028674, 0.118238, 0.980626] }, { "keytime": 3140.998535, "rotation": [ 0.153487, 0.028757, 0.118449, 0.980604] }, { "keytime": 3207.665039, "rotation": [ 0.153401, 0.028932, 0.118896, 0.980558] }, { "keytime": 3240.998291, "rotation": [ 0.153357, 0.029022, 0.119127, 0.980535] }, { "keytime": 3274.331543, "rotation": [ 0.153311, 0.029117, 0.119369, 0.980510] }, { "keytime": 3307.664795, "rotation": [ 0.153265, 0.029211, 0.119609, 0.980485] }, { "keytime": 3340.998047, "rotation": [ 0.153218, 0.029307, 0.119854, 0.980459] }, { "keytime": 3374.331299, "rotation": [ 0.153168, 0.029408, 0.120110, 0.980433] }, { "keytime": 3407.664551, "rotation": [ 0.153120, 0.029507, 0.120364, 0.980406] }, { "keytime": 3440.997803, "rotation": [ 0.153071, 0.029608, 0.120620, 0.980379] }, { "keytime": 3474.331055, "rotation": [ 0.153020, 0.029712, 0.120887, 0.980351] }, { "keytime": 3540.997559, "rotation": [ 0.152918, 0.029918, 0.121413, 0.980296] }, { "keytime": 3574.330811, "rotation": [ 0.152866, 0.030026, 0.121686, 0.980267] }, { "keytime": 3640.997314, "rotation": [ 0.152764, 0.030234, 0.122220, 0.980210] }, { "keytime": 3674.330566, "rotation": [ 0.152711, 0.030341, 0.122495, 0.980180] }, { "keytime": 3740.997070, "rotation": [ 0.152609, 0.030549, 0.123028, 0.980123] }, { "keytime": 3774.330322, "rotation": [ 0.152557, 0.030656, 0.123300, 0.980094] }, { "keytime": 3807.663574, "rotation": [ 0.152507, 0.030760, 0.123562, 0.980065] }, { "keytime": 3840.996826, "rotation": [ 0.152457, 0.030862, 0.123822, 0.980037] }, { "keytime": 3874.330078, "rotation": [ 0.152406, 0.030966, 0.124088, 0.980008] }, { "keytime": 3907.663330, "rotation": [ 0.152356, 0.031065, 0.124341, 0.979981] }, { "keytime": 3940.996582, "rotation": [ 0.152308, 0.031163, 0.124591, 0.979953] }, { "keytime": 3974.329834, "rotation": [ 0.152259, 0.031262, 0.124845, 0.979925] }, { "keytime": 4007.663086, "rotation": [ 0.152213, 0.031357, 0.125086, 0.979899] }, { "keytime": 4074.329590, "rotation": [ 0.152121, 0.031543, 0.125561, 0.979846] }, { "keytime": 4107.663086, "rotation": [ 0.152078, 0.031631, 0.125786, 0.979821] }, { "keytime": 4174.329590, "rotation": [ 0.151993, 0.031803, 0.126225, 0.979772] }, { "keytime": 4207.663086, "rotation": [ 0.151954, 0.031885, 0.126431, 0.979749] }, { "keytime": 4274.330078, "rotation": [ 0.151877, 0.032040, 0.126827, 0.979705] }, { "keytime": 4307.663574, "rotation": [ 0.151841, 0.032112, 0.127012, 0.979684] }, { "keytime": 4340.997070, "rotation": [ 0.151807, 0.032181, 0.127189, 0.979664] }, { "keytime": 4374.330566, "rotation": [ 0.151774, 0.032250, 0.127364, 0.979644] }, { "keytime": 4407.664062, "rotation": [ 0.151742, 0.032313, 0.127524, 0.979626] }, { "keytime": 4440.997559, "rotation": [ 0.151713, 0.032372, 0.127676, 0.979609] }, { "keytime": 4474.331055, "rotation": [ 0.151684, 0.032430, 0.127824, 0.979592] }, { "keytime": 4507.664551, "rotation": [ 0.151658, 0.032484, 0.127960, 0.979577] }, { "keytime": 4540.998047, "rotation": [ 0.151633, 0.032534, 0.128088, 0.979562] }, { "keytime": 4574.331543, "rotation": [ 0.151609, 0.032581, 0.128209, 0.979549] }, { "keytime": 4607.665039, "rotation": [ 0.151589, 0.032624, 0.128318, 0.979536] }, { "keytime": 4640.998535, "rotation": [ 0.151569, 0.032663, 0.128419, 0.979525] }, { "keytime": 4674.332031, "rotation": [ 0.151550, 0.032701, 0.128514, 0.979514] }, { "keytime": 4707.665527, "rotation": [ 0.151534, 0.032733, 0.128597, 0.979504] }, { "keytime": 4740.999023, "rotation": [ 0.151520, 0.032762, 0.128670, 0.979496] }, { "keytime": 4774.332520, "rotation": [ 0.151507, 0.032788, 0.128736, 0.979488] }, { "keytime": 4807.666016, "rotation": [ 0.151497, 0.032810, 0.128792, 0.979482] }, { "keytime": 4840.999512, "rotation": [ 0.151487, 0.032828, 0.128840, 0.979477] }, { "keytime": 4874.333008, "rotation": [ 0.151480, 0.032844, 0.128880, 0.979472] }, { "keytime": 4907.666504, "rotation": [ 0.151474, 0.032855, 0.128907, 0.979469] }, { "keytime": 4941.000000, "rotation": [ 0.151470, 0.032863, 0.128927, 0.979466] }, { "keytime": 4974.333496, "rotation": [ 0.151468, 0.032867, 0.128938, 0.979465] }, { "keytime": 5007.666992, "rotation": [ 0.151468, 0.032868, 0.128941, 0.979465] }, { "keytime": 5041.000488, "rotation": [ 0.151469, 0.032866, 0.128934, 0.979466] }, { "keytime": 5074.333984, "rotation": [ 0.151472, 0.032861, 0.128912, 0.979468] }, { "keytime": 5107.667480, "rotation": [ 0.151477, 0.032853, 0.128880, 0.979472] }, { "keytime": 5141.000977, "rotation": [ 0.151484, 0.032841, 0.128836, 0.979477] }, { "keytime": 5174.334473, "rotation": [ 0.151492, 0.032827, 0.128782, 0.979483] }, { "keytime": 5207.667969, "rotation": [ 0.151502, 0.032811, 0.128718, 0.979491] }, { "keytime": 5241.001465, "rotation": [ 0.151515, 0.032790, 0.128637, 0.979500] }, { "keytime": 5274.334961, "rotation": [ 0.151528, 0.032767, 0.128547, 0.979511] }, { "keytime": 5307.668457, "rotation": [ 0.151544, 0.032741, 0.128447, 0.979522] }, { "keytime": 5341.001953, "rotation": [ 0.151561, 0.032711, 0.128333, 0.979536] }, { "keytime": 5374.335449, "rotation": [ 0.151580, 0.032680, 0.128212, 0.979550] }, { "keytime": 5407.668945, "rotation": [ 0.151601, 0.032645, 0.128078, 0.979565] }, { "keytime": 5441.002441, "rotation": [ 0.151624, 0.032607, 0.127930, 0.979582] }, { "keytime": 5474.335938, "rotation": [ 0.151647, 0.032567, 0.127777, 0.979600] }, { "keytime": 5507.669434, "rotation": [ 0.151672, 0.032526, 0.127616, 0.979618] }, { "keytime": 5541.002930, "rotation": [ 0.151699, 0.032480, 0.127442, 0.979638] }, { "keytime": 5574.336426, "rotation": [ 0.151726, 0.032435, 0.127262, 0.979659] }, { "keytime": 5607.669922, "rotation": [ 0.151755, 0.032386, 0.127076, 0.979680] }, { "keytime": 5674.336914, "rotation": [ 0.151816, 0.032285, 0.126681, 0.979725] }, { "keytime": 5707.670410, "rotation": [ 0.151847, 0.032232, 0.126479, 0.979748] }, { "keytime": 5741.003906, "rotation": [ 0.151880, 0.032177, 0.126266, 0.979772] }, { "keytime": 5807.670898, "rotation": [ 0.151944, 0.032069, 0.125847, 0.979820] }, { "keytime": 5841.004395, "rotation": [ 0.151977, 0.032013, 0.125628, 0.979845] }, { "keytime": 5907.671387, "rotation": [ 0.152040, 0.031905, 0.125207, 0.979892] }, { "keytime": 5941.004883, "rotation": [ 0.152073, 0.031849, 0.124993, 0.979916] }, { "keytime": 5974.338379, "rotation": [ 0.152104, 0.031796, 0.124788, 0.979939] }, { "keytime": 6041.005371, "rotation": [ 0.152168, 0.031693, 0.124386, 0.979984] }, { "keytime": 6074.338867, "rotation": [ 0.152196, 0.031643, 0.124198, 0.980005] }, { "keytime": 6141.005859, "rotation": [ 0.152252, 0.031550, 0.123836, 0.980045] }, { "keytime": 6174.339355, "rotation": [ 0.152277, 0.031507, 0.123669, 0.980064] }, { "keytime": 6207.672852, "rotation": [ 0.152302, 0.031467, 0.123510, 0.980081] }, { "keytime": 6241.006348, "rotation": [ 0.152324, 0.031427, 0.123359, 0.980098] }, { "keytime": 6274.339844, "rotation": [ 0.152346, 0.031391, 0.123222, 0.980113] }, { "keytime": 6307.673340, "rotation": [ 0.152366, 0.031358, 0.123094, 0.980127] }, { "keytime": 6341.006836, "rotation": [ 0.152384, 0.031327, 0.122972, 0.980141] }, { "keytime": 6374.340332, "rotation": [ 0.152401, 0.031299, 0.122865, 0.980152] }, { "keytime": 6407.673828, "rotation": [ 0.152415, 0.031275, 0.122771, 0.980163] }, { "keytime": 6441.007324, "rotation": [ 0.152428, 0.031253, 0.122686, 0.980172] }, { "keytime": 6474.340820, "rotation": [ 0.152439, 0.031234, 0.122614, 0.980180] }, { "keytime": 6507.674316, "rotation": [ 0.152449, 0.031218, 0.122552, 0.980187] }, { "keytime": 6541.007812, "rotation": [ 0.152456, 0.031205, 0.122501, 0.980192] }, { "keytime": 6574.341309, "rotation": [ 0.152462, 0.031196, 0.122465, 0.980196] }, { "keytime": 6607.674805, "rotation": [ 0.152466, 0.031189, 0.122440, 0.980199] } ] }, { "boneId": "Bone_023", "keyframes": [ { "keytime": 41.000000, "rotation": [ 0.455379, 0.027257, 0.166778, 0.874112] }, { "keytime": 74.333328, "rotation": [ 0.455379, 0.027255, 0.166777, 0.874112] }, { "keytime": 107.666664, "rotation": [ 0.455380, 0.027249, 0.166774, 0.874112] }, { "keytime": 141.000000, "rotation": [ 0.455382, 0.027240, 0.166770, 0.874113] }, { "keytime": 174.333328, "rotation": [ 0.455385, 0.027227, 0.166763, 0.874113] }, { "keytime": 207.666656, "rotation": [ 0.455388, 0.027211, 0.166755, 0.874113] }, { "keytime": 240.999985, "rotation": [ 0.455392, 0.027191, 0.166745, 0.874114] }, { "keytime": 274.333313, "rotation": [ 0.455396, 0.027166, 0.166733, 0.874115] }, { "keytime": 307.666656, "rotation": [ 0.455401, 0.027138, 0.166720, 0.874115] }, { "keytime": 341.000000, "rotation": [ 0.455408, 0.027106, 0.166704, 0.874116] }, { "keytime": 374.333344, "rotation": [ 0.455415, 0.027071, 0.166687, 0.874117] }, { "keytime": 407.666687, "rotation": [ 0.455422, 0.027032, 0.166668, 0.874118] }, { "keytime": 441.000031, "rotation": [ 0.455430, 0.026988, 0.166647, 0.874119] }, { "keytime": 474.333374, "rotation": [ 0.455439, 0.026942, 0.166624, 0.874120] }, { "keytime": 507.666718, "rotation": [ 0.455448, 0.026893, 0.166600, 0.874121] }, { "keytime": 541.000061, "rotation": [ 0.455459, 0.026839, 0.166574, 0.874123] }, { "keytime": 574.333374, "rotation": [ 0.455469, 0.026782, 0.166547, 0.874124] }, { "keytime": 607.666687, "rotation": [ 0.455480, 0.026722, 0.166518, 0.874126] }, { "keytime": 674.333313, "rotation": [ 0.455505, 0.026591, 0.166454, 0.874129] }, { "keytime": 707.666626, "rotation": [ 0.455519, 0.026522, 0.166421, 0.874130] }, { "keytime": 740.999939, "rotation": [ 0.455532, 0.026450, 0.166386, 0.874132] }, { "keytime": 807.666565, "rotation": [ 0.455561, 0.026295, 0.166312, 0.874136] }, { "keytime": 840.999878, "rotation": [ 0.455575, 0.026215, 0.166274, 0.874138] }, { "keytime": 907.666504, "rotation": [ 0.455608, 0.026047, 0.166194, 0.874141] }, { "keytime": 940.999817, "rotation": [ 0.455624, 0.025961, 0.166153, 0.874143] }, { "keytime": 1040.999756, "rotation": [ 0.455675, 0.025691, 0.166026, 0.874149] }, { "keytime": 1140.999878, "rotation": [ 0.455726, 0.025413, 0.165895, 0.874155] }, { "keytime": 1174.333252, "rotation": [ 0.455744, 0.025318, 0.165850, 0.874157] }, { "keytime": 1207.666626, "rotation": [ 0.455761, 0.025225, 0.165807, 0.874159] }, { "keytime": 1241.000000, "rotation": [ 0.455778, 0.025130, 0.165763, 0.874161] }, { "keytime": 1307.666748, "rotation": [ 0.455812, 0.024947, 0.165679, 0.874165] }, { "keytime": 1341.000122, "rotation": [ 0.455829, 0.024854, 0.165636, 0.874166] }, { "keytime": 1374.333496, "rotation": [ 0.455846, 0.024764, 0.165596, 0.874168] }, { "keytime": 1441.000244, "rotation": [ 0.455879, 0.024588, 0.165516, 0.874171] }, { "keytime": 1474.333618, "rotation": [ 0.455895, 0.024504, 0.165479, 0.874172] }, { "keytime": 1541.000366, "rotation": [ 0.455925, 0.024339, 0.165406, 0.874174] }, { "keytime": 1574.333740, "rotation": [ 0.455939, 0.024262, 0.165372, 0.874176] }, { "keytime": 1641.000488, "rotation": [ 0.455966, 0.024112, 0.165308, 0.874178] }, { "keytime": 1674.333862, "rotation": [ 0.455980, 0.024043, 0.165279, 0.874178] }, { "keytime": 1741.000610, "rotation": [ 0.456004, 0.023911, 0.165224, 0.874179] }, { "keytime": 1774.333984, "rotation": [ 0.456015, 0.023851, 0.165200, 0.874180] }, { "keytime": 1841.000732, "rotation": [ 0.456035, 0.023738, 0.165156, 0.874181] }, { "keytime": 1874.334106, "rotation": [ 0.456045, 0.023688, 0.165137, 0.874181] }, { "keytime": 1907.667480, "rotation": [ 0.456053, 0.023642, 0.165120, 0.874181] }, { "keytime": 1941.000854, "rotation": [ 0.456061, 0.023597, 0.165104, 0.874181] }, { "keytime": 1974.334229, "rotation": [ 0.456068, 0.023558, 0.165091, 0.874181] }, { "keytime": 2007.667603, "rotation": [ 0.456075, 0.023522, 0.165080, 0.874180] }, { "keytime": 2041.000977, "rotation": [ 0.456080, 0.023488, 0.165070, 0.874180] }, { "keytime": 2074.334473, "rotation": [ 0.456085, 0.023460, 0.165062, 0.874180] }, { "keytime": 2107.667725, "rotation": [ 0.456090, 0.023435, 0.165057, 0.874179] }, { "keytime": 2141.000977, "rotation": [ 0.456093, 0.023413, 0.165053, 0.874178] }, { "keytime": 2174.334229, "rotation": [ 0.456096, 0.023396, 0.165051, 0.874178] }, { "keytime": 2207.667480, "rotation": [ 0.456098, 0.023381, 0.165051, 0.874177] }, { "keytime": 2241.000732, "rotation": [ 0.456100, 0.023371, 0.165054, 0.874176] }, { "keytime": 2274.333984, "rotation": [ 0.456101, 0.023365, 0.165058, 0.874175] }, { "keytime": 2307.667236, "rotation": [ 0.456101, 0.023362, 0.165064, 0.874174] }, { "keytime": 2341.000488, "rotation": [ 0.456100, 0.023363, 0.165073, 0.874173] }, { "keytime": 2374.333740, "rotation": [ 0.456099, 0.023369, 0.165084, 0.874171] }, { "keytime": 2407.666992, "rotation": [ 0.456096, 0.023380, 0.165098, 0.874170] }, { "keytime": 2441.000244, "rotation": [ 0.456092, 0.023396, 0.165116, 0.874168] }, { "keytime": 2474.333496, "rotation": [ 0.456088, 0.023417, 0.165136, 0.874166] }, { "keytime": 2507.666748, "rotation": [ 0.456083, 0.023442, 0.165158, 0.874163] }, { "keytime": 2541.000000, "rotation": [ 0.456077, 0.023472, 0.165184, 0.874161] }, { "keytime": 2574.333252, "rotation": [ 0.456069, 0.023507, 0.165212, 0.874159] }, { "keytime": 2607.666504, "rotation": [ 0.456062, 0.023547, 0.165243, 0.874156] }, { "keytime": 2640.999756, "rotation": [ 0.456053, 0.023591, 0.165277, 0.874153] }, { "keytime": 2674.333008, "rotation": [ 0.456042, 0.023641, 0.165314, 0.874150] }, { "keytime": 2707.666260, "rotation": [ 0.456032, 0.023694, 0.165353, 0.874147] }, { "keytime": 2740.999512, "rotation": [ 0.456021, 0.023753, 0.165395, 0.874143] }, { "keytime": 2774.332764, "rotation": [ 0.456007, 0.023818, 0.165441, 0.874139] }, { "keytime": 2807.666016, "rotation": [ 0.455994, 0.023886, 0.165488, 0.874135] }, { "keytime": 2840.999268, "rotation": [ 0.455980, 0.023957, 0.165538, 0.874132] }, { "keytime": 2874.332520, "rotation": [ 0.455965, 0.024036, 0.165592, 0.874127] }, { "keytime": 2907.665771, "rotation": [ 0.455948, 0.024117, 0.165647, 0.874123] }, { "keytime": 2940.999023, "rotation": [ 0.455931, 0.024203, 0.165705, 0.874118] }, { "keytime": 3007.665527, "rotation": [ 0.455895, 0.024388, 0.165829, 0.874109] }, { "keytime": 3040.998779, "rotation": [ 0.455875, 0.024486, 0.165893, 0.874104] }, { "keytime": 3107.665283, "rotation": [ 0.455833, 0.024696, 0.166031, 0.874094] }, { "keytime": 3140.998535, "rotation": [ 0.455812, 0.024805, 0.166102, 0.874088] }, { "keytime": 3207.665039, "rotation": [ 0.455767, 0.025036, 0.166252, 0.874077] }, { "keytime": 3240.998291, "rotation": [ 0.455743, 0.025155, 0.166329, 0.874071] }, { "keytime": 3307.664795, "rotation": [ 0.455695, 0.025405, 0.166489, 0.874059] }, { "keytime": 3340.998047, "rotation": [ 0.455670, 0.025532, 0.166570, 0.874052] }, { "keytime": 3440.997803, "rotation": [ 0.455591, 0.025929, 0.166823, 0.874033] }, { "keytime": 3474.331055, "rotation": [ 0.455564, 0.026068, 0.166911, 0.874027] }, { "keytime": 3540.997559, "rotation": [ 0.455510, 0.026341, 0.167083, 0.874013] }, { "keytime": 3574.330811, "rotation": [ 0.455483, 0.026484, 0.167173, 0.874007] }, { "keytime": 3640.997314, "rotation": [ 0.455428, 0.026762, 0.167348, 0.873993] }, { "keytime": 3674.330566, "rotation": [ 0.455400, 0.026905, 0.167437, 0.873986] }, { "keytime": 3740.997070, "rotation": [ 0.455346, 0.027181, 0.167611, 0.873972] }, { "keytime": 3774.330322, "rotation": [ 0.455318, 0.027324, 0.167699, 0.873965] }, { "keytime": 3840.996826, "rotation": [ 0.455264, 0.027598, 0.167869, 0.873953] }, { "keytime": 3874.330078, "rotation": [ 0.455236, 0.027736, 0.167955, 0.873946] }, { "keytime": 3907.663330, "rotation": [ 0.455211, 0.027869, 0.168037, 0.873939] }, { "keytime": 3974.329834, "rotation": [ 0.455159, 0.028132, 0.168200, 0.873926] }, { "keytime": 4007.663086, "rotation": [ 0.455135, 0.028258, 0.168278, 0.873920] }, { "keytime": 4074.329590, "rotation": [ 0.455085, 0.028506, 0.168431, 0.873909] }, { "keytime": 4107.663086, "rotation": [ 0.455062, 0.028624, 0.168504, 0.873903] }, { "keytime": 4174.329590, "rotation": [ 0.455017, 0.028854, 0.168645, 0.873891] }, { "keytime": 4207.663086, "rotation": [ 0.454995, 0.028962, 0.168712, 0.873886] }, { "keytime": 4274.330078, "rotation": [ 0.454954, 0.029169, 0.168839, 0.873876] }, { "keytime": 4307.663574, "rotation": [ 0.454935, 0.029266, 0.168898, 0.873871] }, { "keytime": 4374.330566, "rotation": [ 0.454898, 0.029450, 0.169011, 0.873863] }, { "keytime": 4407.664062, "rotation": [ 0.454882, 0.029534, 0.169063, 0.873858] }, { "keytime": 4474.331055, "rotation": [ 0.454850, 0.029692, 0.169159, 0.873850] }, { "keytime": 4507.664551, "rotation": [ 0.454836, 0.029763, 0.169203, 0.873847] }, { "keytime": 4540.998047, "rotation": [ 0.454823, 0.029830, 0.169244, 0.873843] }, { "keytime": 4574.331543, "rotation": [ 0.454811, 0.029894, 0.169283, 0.873840] }, { "keytime": 4607.665039, "rotation": [ 0.454799, 0.029951, 0.169317, 0.873838] }, { "keytime": 4640.998535, "rotation": [ 0.454789, 0.030004, 0.169350, 0.873835] }, { "keytime": 4674.332031, "rotation": [ 0.454779, 0.030054, 0.169380, 0.873832] }, { "keytime": 4707.665527, "rotation": [ 0.454770, 0.030098, 0.169407, 0.873830] }, { "keytime": 4740.999023, "rotation": [ 0.454762, 0.030136, 0.169430, 0.873829] }, { "keytime": 4774.332520, "rotation": [ 0.454756, 0.030170, 0.169451, 0.873827] }, { "keytime": 4807.666016, "rotation": [ 0.454750, 0.030200, 0.169469, 0.873825] }, { "keytime": 4840.999512, "rotation": [ 0.454745, 0.030225, 0.169484, 0.873824] }, { "keytime": 4874.333008, "rotation": [ 0.454740, 0.030246, 0.169497, 0.873823] }, { "keytime": 4907.666504, "rotation": [ 0.454738, 0.030260, 0.169506, 0.873822] }, { "keytime": 4941.000000, "rotation": [ 0.454736, 0.030271, 0.169512, 0.873822] }, { "keytime": 4974.333496, "rotation": [ 0.454735, 0.030277, 0.169516, 0.873821] }, { "keytime": 5007.666992, "rotation": [ 0.454734, 0.030278, 0.169517, 0.873822] }, { "keytime": 5041.000488, "rotation": [ 0.454735, 0.030275, 0.169513, 0.873822] }, { "keytime": 5074.333984, "rotation": [ 0.454737, 0.030265, 0.169504, 0.873823] }, { "keytime": 5107.667480, "rotation": [ 0.454740, 0.030250, 0.169491, 0.873824] }, { "keytime": 5141.000977, "rotation": [ 0.454745, 0.030229, 0.169473, 0.873826] }, { "keytime": 5174.334473, "rotation": [ 0.454750, 0.030204, 0.169450, 0.873829] }, { "keytime": 5207.667969, "rotation": [ 0.454757, 0.030175, 0.169423, 0.873832] }, { "keytime": 5241.001465, "rotation": [ 0.454764, 0.030137, 0.169389, 0.873836] }, { "keytime": 5274.334961, "rotation": [ 0.454774, 0.030095, 0.169351, 0.873840] }, { "keytime": 5307.668457, "rotation": [ 0.454783, 0.030049, 0.169309, 0.873844] }, { "keytime": 5341.001953, "rotation": [ 0.454795, 0.029996, 0.169261, 0.873849] }, { "keytime": 5374.335449, "rotation": [ 0.454807, 0.029940, 0.169210, 0.873855] }, { "keytime": 5407.668945, "rotation": [ 0.454820, 0.029878, 0.169154, 0.873861] }, { "keytime": 5441.002441, "rotation": [ 0.454835, 0.029809, 0.169092, 0.873868] }, { "keytime": 5474.335938, "rotation": [ 0.454850, 0.029739, 0.169028, 0.873875] }, { "keytime": 5507.669434, "rotation": [ 0.454866, 0.029664, 0.168960, 0.873882] }, { "keytime": 5541.002930, "rotation": [ 0.454884, 0.029583, 0.168887, 0.873890] }, { "keytime": 5574.336426, "rotation": [ 0.454901, 0.029500, 0.168812, 0.873898] }, { "keytime": 5607.669922, "rotation": [ 0.454919, 0.029414, 0.168734, 0.873906] }, { "keytime": 5674.336914, "rotation": [ 0.454959, 0.029231, 0.168568, 0.873924] }, { "keytime": 5707.670410, "rotation": [ 0.454979, 0.029138, 0.168483, 0.873933] }, { "keytime": 5741.003906, "rotation": [ 0.455000, 0.029038, 0.168394, 0.873942] }, { "keytime": 5807.670898, "rotation": [ 0.455041, 0.028844, 0.168217, 0.873961] }, { "keytime": 5841.004395, "rotation": [ 0.455063, 0.028743, 0.168126, 0.873971] }, { "keytime": 5907.671387, "rotation": [ 0.455104, 0.028549, 0.167948, 0.873990] }, { "keytime": 5941.004883, "rotation": [ 0.455125, 0.028449, 0.167859, 0.874000] }, { "keytime": 5974.338379, "rotation": [ 0.455145, 0.028354, 0.167773, 0.874009] }, { "keytime": 6041.005371, "rotation": [ 0.455185, 0.028168, 0.167604, 0.874026] }, { "keytime": 6074.338867, "rotation": [ 0.455203, 0.028080, 0.167525, 0.874035] }, { "keytime": 6141.005859, "rotation": [ 0.455239, 0.027913, 0.167373, 0.874051] }, { "keytime": 6174.339355, "rotation": [ 0.455256, 0.027836, 0.167303, 0.874058] }, { "keytime": 6207.672852, "rotation": [ 0.455271, 0.027762, 0.167236, 0.874065] }, { "keytime": 6241.006348, "rotation": [ 0.455286, 0.027692, 0.167173, 0.874071] }, { "keytime": 6274.339844, "rotation": [ 0.455300, 0.027628, 0.167115, 0.874078] }, { "keytime": 6307.673340, "rotation": [ 0.455312, 0.027569, 0.167061, 0.874083] }, { "keytime": 6341.006836, "rotation": [ 0.455324, 0.027513, 0.167010, 0.874088] }, { "keytime": 6374.340332, "rotation": [ 0.455334, 0.027463, 0.166965, 0.874093] }, { "keytime": 6407.673828, "rotation": [ 0.455344, 0.027420, 0.166926, 0.874097] }, { "keytime": 6441.007324, "rotation": [ 0.455352, 0.027380, 0.166890, 0.874101] }, { "keytime": 6474.340820, "rotation": [ 0.455359, 0.027347, 0.166860, 0.874104] }, { "keytime": 6507.674316, "rotation": [ 0.455366, 0.027319, 0.166834, 0.874107] }, { "keytime": 6541.007812, "rotation": [ 0.455370, 0.027294, 0.166812, 0.874109] }, { "keytime": 6574.341309, "rotation": [ 0.455374, 0.027278, 0.166797, 0.874110] }, { "keytime": 6607.674805, "rotation": [ 0.455376, 0.027266, 0.166786, 0.874112] } ] } ] } ] }
{ "version": [ 0, 1], "id": "", "meshes": [ { "attributes": ["POSITION", "NORMAL", "TEXCOORD0", "BLENDWEIGHT0", "BLENDWEIGHT1"], "vertices": [ 7.042967, -36.586010, 56.320400, -0.129595, -0.657217, 0.742476, 0.579044, 0.066946, 0.000000, 1.000000, 0.000000, 0.000000, 4.793809, -32.404839, 59.628853, -0.129595, -0.657217, 0.742476, 0.498386, 0.168897, 0.000000, 1.000000, 0.000000, 0.000000, 5.473663, -36.707016, 55.939365, -0.129595, -0.657217, 0.742476, 0.501778, 0.071602, 0.000000, 1.000000, 0.000000, 0.000000, 4.793809, -32.404839, 59.628853, 0.814209, 0.559791, -0.153938, 0.498386, 0.168897, 0.000000, 1.000000, 0.000000, 0.000000, 7.042967, -36.586010, 56.320400, 0.814209, 0.559791, -0.153938, 0.579044, 0.066946, 0.000000, 1.000000, 0.000000, 0.000000, 6.518176, -36.050308, 55.492733, 0.814209, 0.559791, -0.153938, 0.557019, 0.085591, 0.000000, 1.000000, 0.000000, 0.000000, 7.042967, -36.586010, 56.320400, -0.086233, -0.790602, 0.606228, 0.579044, 0.066946, 0.000000, 1.000000, 0.000000, 0.000000, 5.473663, -36.707016, 55.939365, -0.086233, -0.790602, 0.606228, 0.501778, 0.071602, 0.000000, 1.000000, 0.000000, 0.000000, 6.061909, -39.588398, 52.265339, -0.086233, -0.790602, 0.606228, 0.510432, 0.019490, 0.000000, 1.000000, 0.000000, 0.000000, 3.830421, -37.308361, 55.869492, -0.883148, -0.178814, -0.433676, 0.417860, 0.063412, 0.000000, 1.000000, 0.000000, 0.000000, 3.921711, -36.536129, 55.365177, -0.883148, -0.178814, -0.433676, 0.429026, 0.083997, 0.000000, 1.000000, 0.000000, 0.000000, 6.061909, -39.588398, 52.265339, -0.883148, -0.178814, -0.433676, 0.510432, 0.019490, 0.000000, 1.000000, 0.000000, 0.000000, 3.921711, -36.536129, 55.365177, -0.986854, 0.152183, 0.054394, 0.429026, 0.083997, 0.000000, 1.000000, 0.000000, 0.000000, 3.830421, -37.308361, 55.869492, -0.986854, 0.152183, 0.054394, 0.417860, 0.063412, 0.000000, 1.000000, 0.000000, 0.000000, 4.793809, -32.404839, 59.628853, -0.986854, 0.152183, 0.054394, 0.498386, 0.168897, 0.000000, 1.000000, 0.000000, 0.000000, 6.518176, -36.050308, 55.492733, 0.882712, 0.249440, -0.398244, 0.557019, 0.085591, 0.000000, 1.000000, 0.000000, 0.000000, 7.042967, -36.586010, 56.320400, 0.882712, 0.249440, -0.398244, 0.579044, 0.066946, 0.000000, 1.000000, 0.000000, 0.000000, 6.061909, -39.588398, 52.265339, 0.882712, 0.249440, -0.398244, 0.510432, 0.019490, 0.000000, 1.000000, 0.000000, 0.000000, 5.473663, -36.707016, 55.939365, 0.245551, -0.743304, 0.622257, 0.501778, 0.071602, 0.000000, 1.000000, 0.000000, 0.000000, 3.830421, -37.308361, 55.869492, 0.245551, -0.743304, 0.622257, 0.417860, 0.063412, 0.000000, 1.000000, 0.000000, 0.000000, 6.061909, -39.588398, 52.265339, 0.245551, -0.743304, 0.622257, 0.510432, 0.019490, 0.000000, 1.000000, 0.000000, 0.000000, 6.061909, -39.588398, 52.265339, -0.260563, 0.668770, -0.696314, 0.510432, 0.019490, 0.000000, 1.000000, 0.000000, 0.000000, 5.490365, -36.436222, 55.506695, -0.260563, 0.668770, -0.696314, 0.504823, 0.080015, 0.000000, 1.000000, 0.000000, 0.000000, 6.518176, -36.050308, 55.492733, -0.260563, 0.668770, -0.696314, 0.557019, 0.085591, 0.000000, 1.000000, 0.000000, 0.000000, 6.518176, -36.050308, 55.492733, -0.260267, 0.667945, -0.697216, 0.557019, 0.085591, 0.000000, 1.000000, 0.000000, 0.000000, 5.490365, -36.436222, 55.506695, -0.260267, 0.667945, -0.697216, 0.504823, 0.080015, 0.000000, 1.000000, 0.000000, 0.000000, 4.793809, -32.404839, 59.628853, -0.260267, 0.667945, -0.697216, 0.498386, 0.168897, 0.000000, 1.000000, 0.000000, 0.000000, 5.490365, -36.436222, 55.506695, 0.017312, 0.716289, -0.697589, 0.504823, 0.080015, 0.000000, 1.000000, 0.000000, 0.000000, 3.921711, -36.536129, 55.365177, 0.017312, 0.716289, -0.697589, 0.429026, 0.083997, 0.000000, 1.000000, 0.000000, 0.000000, 4.793809, -32.404839, 59.628853, 0.017312, 0.716289, -0.697589, 0.498386, 0.168897, 0.000000, 1.000000, 0.000000, 0.000000, 3.921711, -36.536129, 55.365177, 0.017000, 0.718293, -0.695533, 0.429026, 0.083997, 0.000000, 1.000000, 0.000000, 0.000000, 5.490365, -36.436222, 55.506695, 0.017000, 0.718293, -0.695533, 0.504823, 0.080015, 0.000000, 1.000000, 0.000000, 0.000000, 6.061909, -39.588398, 52.265339, 0.017000, 0.718293, -0.695533, 0.510432, 0.019490, 0.000000, 1.000000, 0.000000, 0.000000, 5.473663, -36.707016, 55.939365, 0.194807, -0.620593, 0.759549, 0.501778, 0.071602, 0.000000, 1.000000, 0.000000, 0.000000, 4.793809, -32.404839, 59.628853, 0.194807, -0.620593, 0.759549, 0.498386, 0.168897, 0.000000, 1.000000, 0.000000, 0.000000, 3.830421, -37.308361, 55.869492, 0.194807, -0.620593, 0.759549, 0.417860, 0.063412, 0.000000, 1.000000, 0.000000, 0.000000, 2.444320, -10.823428, 61.759724, -0.181229, -0.902019, 0.391814, 0.494582, 0.743080, 1.000000, 1.000000, 0.000000, 0.000000, 8.693048, -10.796963, 64.710930, -0.181229, -0.902019, 0.391814, 0.854982, 0.746930, 1.000000, 1.000000, 0.000000, 0.000000, 2.020907, -9.926061, 63.814583, -0.181229, -0.902019, 0.391814, 0.479226, 0.790524, 1.000000, 1.000000, 0.000000, 0.000000, 9.699430, -11.824640, 62.995361, -0.181229, -0.902019, 0.391814, 0.887994, 0.697448, 1.000000, 1.000000, 0.000000, 0.000000, 2.020907, -9.926061, 63.814583, 0.483448, -0.726518, 0.488314, 0.479226, 0.790524, 1.000000, 1.000000, 0.000000, 0.000000, -3.224520, -13.540356, 63.329803, 0.483448, -0.726518, 0.488314, 0.156162, 0.707543, 1.000000, 1.000000, 0.000000, 0.000000, -2.549087, -14.540578, 61.473511, 0.483448, -0.726518, 0.488314, 0.196687, 0.661900, 1.000000, 1.000000, 0.000000, 0.000000, 2.444320, -10.823428, 61.759724, 0.483448, -0.726518, 0.488314, 0.494582, 0.743080, 1.000000, 1.000000, 0.000000, 0.000000, 9.699430, -11.824640, 62.995361, 0.133397, -0.224648, -0.965266, 0.887994, 0.697448, 1.000000, 1.000000, 0.000000, 0.000000, 2.444320, -10.823428, 61.759724, 0.133397, -0.224648, -0.965266, 0.494582, 0.743080, 1.000000, 1.000000, 0.000000, 0.000000, 0.100616, 0.113533, 58.890453, 0.133397, -0.224648, -0.965266, 0.505777, 0.985384, 1.000000, 1.000000, 0.000000, 0.000000, 9.699430, -11.824640, 62.995361, 0.766269, 0.639049, 0.066698, 0.887994, 0.697448, 1.000000, 1.000000, 0.000000, 0.000000, 0.100616, 0.113533, 58.890453, 0.766269, 0.639049, 0.066698, 0.505777, 0.985384, 1.000000, 1.000000, 0.000000, 0.000000, 8.693048, -10.796963, 64.710930, 0.766269, 0.639049, 0.066698, 0.854982, 0.746930, 1.000000, 1.000000, 0.000000, 0.000000, 8.693048, -10.796963, 64.710930, -0.064967, 0.429382, 0.900783, 0.854982, 0.746930, 1.000000, 1.000000, 0.000000, 0.000000, 0.100616, 0.113533, 58.890453, -0.064967, 0.429382, 0.900783, 0.505777, 0.985384, 1.000000, 1.000000, 0.000000, 0.000000, 2.020907, -9.926061, 63.814583, -0.064967, 0.429382, 0.900783, 0.479226, 0.790524, 1.000000, 1.000000, 0.000000, 0.000000, 2.020907, -9.926061, 63.814583, -0.331083, 0.363719, 0.870685, 0.479226, 0.790524, 1.000000, 1.000000, 0.000000, 0.000000, 0.100616, 0.113533, 58.890453, -0.331083, 0.363719, 0.870685, 0.505777, 0.985384, 1.000000, 1.000000, 0.000000, 0.000000, -3.224520, -13.540356, 63.329803, -0.331083, 0.363719, 0.870685, 0.156162, 0.707543, 1.000000, 1.000000, 0.000000, 0.000000, -3.224520, -13.540356, 63.329803, -0.917150, 0.097730, -0.386374, 0.156162, 0.707543, 1.000000, 1.000000, 0.000000, 0.000000, 0.100616, 0.113533, 58.890453, -0.917150, 0.097730, -0.386374, 0.505777, 0.985384, 1.000000, 1.000000, 0.000000, 0.000000, -2.549087, -14.540578, 61.473511, -0.917150, 0.097730, -0.386374, 0.196687, 0.661900, 1.000000, 1.000000, 0.000000, 0.000000, -2.549087, -14.540578, 61.473511, 0.208291, -0.206190, -0.956086, 0.196687, 0.661900, 1.000000, 1.000000, 0.000000, 0.000000, 0.100616, 0.113533, 58.890453, 0.208291, -0.206190, -0.956086, 0.505777, 0.985384, 1.000000, 1.000000, 0.000000, 0.000000, 2.444320, -10.823428, 61.759724, 0.208291, -0.206190, -0.956086, 0.494582, 0.743080, 1.000000, 1.000000, 0.000000, 0.000000, 3.990225, -20.884020, 62.521610, -0.047496, -0.978538, 0.200518, 0.503059, 0.471121, 2.000000, 1.000000, 0.000000, 0.000000, 10.922590, -20.502230, 66.026833, -0.047496, -0.978538, 0.200518, 0.913422, 0.464291, 2.000000, 1.000000, 0.000000, 0.000000, 3.841774, -20.415180, 65.003853, -0.047496, -0.978538, 0.200518, 0.491895, 0.494150, 2.000000, 1.000000, 0.000000, 0.000000, 11.597116, -21.173470, 63.140358, -0.047496, -0.978538, 0.200518, 0.917641, 0.431873, 2.000000, 1.000000, 0.000000, 0.000000, 3.841774, -20.415180, 65.003853, 0.386796, -0.885289, 0.258172, 0.491895, 0.494150, 2.000000, 1.000000, 0.000000, 0.000000, -2.370672, -22.782269, 65.542358, 0.386796, -0.885289, 0.258172, 0.104770, 0.455052, 2.000000, 1.000000, 0.000000, 0.000000, -1.890430, -23.635546, 62.549057, 0.386796, -0.885289, 0.258172, 0.148340, 0.419076, 2.000000, 1.000000, 0.000000, 0.000000, 3.990225, -20.884020, 62.521610, 0.386796, -0.885289, 0.258172, 0.503059, 0.471121, 2.000000, 1.000000, 0.000000, 0.000000, 11.597116, -21.173470, 63.140358, 0.081191, 0.003116, -0.996694, 0.917641, 0.431873, 2.000000, 1.000000, 0.000000, 0.000000, 3.990225, -20.884020, 62.521610, 0.081191, 0.003116, -0.996694, 0.503059, 0.471121, 2.000000, 1.000000, 0.000000, 0.000000, 2.184502, -8.152877, 62.414322, 0.081191, 0.003116, -0.996694, 0.502877, 0.822643, 2.000000, 1.000000, 0.000000, 0.000000, 11.597116, -21.173470, 63.140358, 0.807922, 0.586964, 0.052302, 0.917641, 0.431873, 2.000000, 1.000000, 0.000000, 0.000000, 2.184502, -8.152877, 62.414322, 0.807922, 0.586964, 0.052302, 0.502877, 0.822643, 2.000000, 1.000000, 0.000000, 0.000000, 10.922590, -20.502230, 66.026833, 0.807922, 0.586964, 0.052302, 0.913422, 0.464291, 2.000000, 1.000000, 0.000000, 0.000000, 10.922590, -20.502230, 66.026833, -0.138226, 0.186719, 0.972641, 0.913422, 0.464291, 2.000000, 1.000000, 0.000000, 0.000000, 2.184502, -8.152877, 62.414322, -0.138226, 0.186719, 0.972641, 0.502877, 0.822643, 2.000000, 1.000000, 0.000000, 0.000000, 3.841774, -20.415180, 65.003853, -0.138226, 0.186719, 0.972641, 0.491895, 0.494150, 2.000000, 1.000000, 0.000000, 0.000000, 3.841774, -20.415180, 65.003853, 0.005784, 0.207366, 0.978246, 0.491895, 0.494150, 2.000000, 1.000000, 0.000000, 0.000000, 2.184502, -8.152877, 62.414322, 0.005784, 0.207366, 0.978246, 0.502877, 0.822643, 2.000000, 1.000000, 0.000000, 0.000000, -2.370672, -22.782269, 65.542358, 0.005784, 0.207366, 0.978246, 0.104770, 0.455052, 2.000000, 1.000000, 0.000000, 0.000000, -2.370672, -22.782269, 65.542358, -0.943493, 0.246393, -0.221611, 0.104770, 0.455052, 2.000000, 1.000000, 0.000000, 0.000000, 2.184502, -8.152877, 62.414322, -0.943493, 0.246393, -0.221611, 0.502877, 0.822643, 2.000000, 1.000000, 0.000000, 0.000000, -1.890430, -23.635546, 62.549057, -0.943493, 0.246393, -0.221611, 0.148340, 0.419076, 2.000000, 1.000000, 0.000000, 0.000000, -1.890430, -23.635546, 62.549057, -0.000680, -0.008523, -0.999963, 0.148340, 0.419076, 2.000000, 1.000000, 0.000000, 0.000000, 2.184502, -8.152877, 62.414322, -0.000680, -0.008523, -0.999963, 0.502877, 0.822643, 2.000000, 1.000000, 0.000000, 0.000000, 3.990225, -20.884020, 62.521610, -0.000680, -0.008523, -0.999963, 0.503059, 0.471121, 2.000000, 1.000000, 0.000000, 0.000000, 11.145486, -29.642670, 62.373020, -0.155804, -0.973674, -0.166383, 0.815995, 0.198619, 3.000000, 1.000000, 0.000000, 0.000000, 4.451746, -28.288771, 60.718124, -0.155804, -0.973674, -0.166383, 0.500140, 0.263978, 3.000000, 1.000000, 0.000000, 0.000000, 11.221374, -29.341869, 60.195744, -0.155804, -0.973674, -0.166383, 0.806967, 0.210609, 3.000000, 1.000000, 0.000000, 0.000000, 4.595603, -28.680717, 62.531151, -0.155804, -0.973674, -0.166383, 0.501453, 0.251368, 3.000000, 1.000000, 0.000000, 0.000000, 0.598054, -30.243622, 62.949726, 0.366304, -0.915022, -0.168985, 0.226585, 0.225689, 3.000000, 1.000000, 0.000000, 0.000000, 4.451746, -28.288771, 60.718124, 0.366304, -0.915022, -0.168985, 0.500140, 0.263978, 3.000000, 1.000000, 0.000000, 0.000000, 4.595603, -28.680717, 62.531151, 0.366304, -0.915022, -0.168985, 0.501453, 0.251368, 3.000000, 1.000000, 0.000000, 0.000000, 0.458724, -29.986164, 60.632492, 0.366304, -0.915022, -0.168985, 0.233625, 0.236460, 3.000000, 1.000000, 0.000000, 0.000000, 11.221374, -29.341869, 60.195744, -0.011286, 0.385179, -0.922773, 0.806967, 0.210609, 3.000000, 1.000000, 0.000000, 0.000000, 4.451746, -28.288771, 60.718124, -0.011286, 0.385179, -0.922773, 0.500140, 0.263978, 3.000000, 1.000000, 0.000000, 0.000000, 4.290168, -19.488644, 64.393402, -0.011286, 0.385179, -0.922773, 0.505028, 0.505626, 3.000000, 1.000000, 0.000000, 0.000000, 11.221374, -29.341869, 60.195744, 0.833775, 0.542226, 0.103972, 0.806967, 0.210609, 3.000000, 1.000000, 0.000000, 0.000000, 4.290168, -19.488644, 64.393402, 0.833775, 0.542226, 0.103972, 0.505028, 0.505626, 3.000000, 1.000000, 0.000000, 0.000000, 11.145486, -29.642670, 62.373020, 0.833775, 0.542226, 0.103972, 0.815995, 0.198619, 3.000000, 1.000000, 0.000000, 0.000000, 11.145486, -29.642670, 62.373020, -0.005525, -0.198733, 0.980038, 0.815995, 0.198619, 3.000000, 1.000000, 0.000000, 0.000000, 4.290168, -19.488644, 64.393402, -0.005525, -0.198733, 0.980038, 0.505028, 0.505626, 3.000000, 1.000000, 0.000000, 0.000000, 4.595603, -28.680717, 62.531151, -0.005525, -0.198733, 0.980038, 0.501453, 0.251368, 3.000000, 1.000000, 0.000000, 0.000000, 4.595603, -28.680717, 62.531151, 0.175385, -0.189880, 0.966015, 0.501453, 0.251368, 3.000000, 1.000000, 0.000000, 0.000000, 4.290168, -19.488644, 64.393402, 0.175385, -0.189880, 0.966015, 0.505028, 0.505626, 3.000000, 1.000000, 0.000000, 0.000000, 0.598054, -30.243622, 62.949726, 0.175385, -0.189880, 0.966015, 0.226585, 0.225689, 3.000000, 1.000000, 0.000000, 0.000000, 0.598054, -30.243622, 62.949726, -0.945557, 0.312314, 0.091554, 0.226585, 0.225689, 3.000000, 1.000000, 0.000000, 0.000000, 4.290168, -19.488644, 64.393402, -0.945557, 0.312314, 0.091554, 0.505028, 0.505626, 3.000000, 1.000000, 0.000000, 0.000000, 0.458724, -29.986164, 60.632492, -0.945557, 0.312314, 0.091554, 0.233625, 0.236460, 3.000000, 1.000000, 0.000000, 0.000000, 0.458724, -29.986164, 60.632492, -0.141620, 0.379281, -0.914379, 0.233625, 0.236460, 3.000000, 1.000000, 0.000000, 0.000000, 4.290168, -19.488644, 64.393402, -0.141620, 0.379281, -0.914379, 0.505028, 0.505626, 3.000000, 1.000000, 0.000000, 0.000000, 4.451746, -28.288771, 60.718124, -0.141620, 0.379281, -0.914379, 0.500140, 0.263978, 3.000000, 1.000000, 0.000000, 0.000000, 8.299394, -34.213310, 58.075569, -0.185828, -0.901545, -0.390749, 0.608615, 0.102303, 4.000000, 1.000000, 0.000000, 0.000000, 4.515775, -33.253788, 57.661114, -0.185828, -0.901545, -0.390749, 0.512572, 0.142518, 4.000000, 1.000000, 0.000000, 0.000000, 8.096044, -33.570045, 56.826633, -0.185828, -0.901545, -0.390749, 0.600214, 0.123668, 4.000000, 1.000000, 0.000000, 0.000000, 4.906841, -33.870853, 59.037354, -0.185828, -0.901545, -0.390749, 0.508413, 0.109250, 4.000000, 1.000000, 0.000000, 0.000000, 2.683352, -34.820454, 59.268032, 0.394566, -0.841058, -0.370052, 0.316640, 0.104134, 4.000000, 1.000000, 0.000000, 0.000000, 4.515775, -33.253788, 57.661114, 0.394566, -0.841058, -0.370052, 0.512572, 0.142518, 4.000000, 1.000000, 0.000000, 0.000000, 4.906841, -33.870853, 59.037354, 0.394566, -0.841058, -0.370052, 0.508413, 0.109250, 4.000000, 1.000000, 0.000000, 0.000000, 2.620972, -34.252995, 57.468582, 0.394566, -0.841058, -0.370052, 0.323666, 0.125364, 4.000000, 1.000000, 0.000000, 0.000000, 8.096044, -33.570045, 56.826633, -0.139207, 0.566736, -0.812054, 0.600214, 0.123668, 4.000000, 1.000000, 0.000000, 0.000000, 4.515775, -33.253788, 57.661114, -0.139207, 0.566736, -0.812054, 0.512572, 0.142518, 4.000000, 1.000000, 0.000000, 0.000000, 4.808340, -26.739180, 62.157539, -0.139207, 0.566736, -0.812054, 0.491084, 0.305296, 4.000000, 1.000000, 0.000000, 0.000000, 8.096044, -33.570045, 56.826633, 0.915933, 0.397464, 0.055583, 0.600214, 0.123668, 4.000000, 1.000000, 0.000000, 0.000000, 4.808340, -26.739180, 62.157539, 0.915933, 0.397464, 0.055583, 0.491084, 0.305296, 4.000000, 1.000000, 0.000000, 0.000000, 8.299394, -34.213310, 58.075569, 0.915933, 0.397464, 0.055583, 0.608615, 0.102303, 4.000000, 1.000000, 0.000000, 0.000000, 8.299394, -34.213310, 58.075569, 0.214714, -0.388988, 0.895872, 0.608615, 0.102303, 4.000000, 1.000000, 0.000000, 0.000000, 4.808340, -26.739180, 62.157539, 0.214714, -0.388988, 0.895872, 0.491084, 0.305296, 4.000000, 1.000000, 0.000000, 0.000000, 4.906841, -33.870853, 59.037354, 0.214714, -0.388988, 0.895872, 0.508413, 0.109250, 4.000000, 1.000000, 0.000000, 0.000000, 4.906841, -33.870853, 59.037354, 0.256209, -0.384476, 0.886868, 0.508413, 0.109250, 4.000000, 1.000000, 0.000000, 0.000000, 4.808340, -26.739180, 62.157539, 0.256209, -0.384476, 0.886868, 0.491084, 0.305296, 4.000000, 1.000000, 0.000000, 0.000000, 2.683352, -34.820454, 59.268032, 0.256209, -0.384476, 0.886868, 0.316640, 0.104134, 4.000000, 1.000000, 0.000000, 0.000000, 2.683352, -34.820454, 59.268032, -0.970431, 0.218510, 0.102548, 0.316640, 0.104134, 4.000000, 1.000000, 0.000000, 0.000000, 4.808340, -26.739180, 62.157539, -0.970431, 0.218510, 0.102548, 0.491084, 0.305296, 4.000000, 1.000000, 0.000000, 0.000000, 2.620972, -34.252995, 57.468582, -0.970431, 0.218510, 0.102548, 0.323666, 0.125364, 4.000000, 1.000000, 0.000000, 0.000000, 2.620972, -34.252995, 57.468582, -0.214782, 0.561299, -0.799257, 0.323666, 0.125364, 4.000000, 1.000000, 0.000000, 0.000000, 4.808340, -26.739180, 62.157539, -0.214782, 0.561299, -0.799257, 0.491084, 0.305296, 4.000000, 1.000000, 0.000000, 0.000000, 4.515775, -33.253788, 57.661114, -0.214782, 0.561299, -0.799257, 0.512572, 0.142518, 4.000000, 1.000000, 0.000000, 0.000000, -27.366894, 24.545547, 56.426487, -0.313198, 0.657828, 0.684959, 0.639659, 0.156025, 5.000000, 1.000000, 0.000000, 0.000000, -22.771854, 22.898987, 60.108894, -0.313198, 0.657828, 0.684959, 0.506997, 0.273308, 5.000000, 1.000000, 0.000000, 0.000000, -26.069820, 25.638115, 55.970280, -0.313198, 0.657828, 0.684959, 0.506091, 0.130285, 5.000000, 1.000000, 0.000000, 0.000000, -22.771854, 22.898987, 60.108894, -0.263665, -0.959418, -0.099986, 0.506997, 0.273308, 5.000000, 1.000000, 0.000000, 0.000000, -27.366894, 24.545547, 56.426487, -0.263665, -0.959418, -0.099986, 0.639659, 0.156025, 5.000000, 1.000000, 0.000000, 0.000000, -26.624046, 24.428255, 55.593094, -0.263665, -0.959418, -0.099986, 0.570629, 0.148880, 5.000000, 1.000000, 0.000000, 0.000000, -27.366894, 24.545547, 56.426487, -0.388831, 0.707847, 0.589714, 0.639659, 0.156025, 5.000000, 1.000000, 0.000000, 0.000000, -26.069820, 25.638115, 55.970280, -0.388831, 0.707847, 0.589714, 0.506091, 0.130285, 5.000000, 1.000000, 0.000000, 0.000000, -28.191605, 27.600843, 52.215359, -0.388831, 0.707847, 0.589714, 0.517448, 0.032564, 5.000000, 1.000000, 0.000000, 0.000000, -25.058994, 27.126598, 55.869499, 0.605073, 0.668834, -0.431911, 0.416794, 0.111254, 5.000000, 1.000000, 0.000000, 0.000000, -24.672882, 26.451622, 55.365185, 0.605073, 0.668834, -0.431911, 0.429196, 0.133201, 5.000000, 1.000000, 0.000000, 0.000000, -28.191605, 27.600843, 52.215359, 0.605073, 0.668834, -0.431911, 0.517448, 0.032564, 5.000000, 1.000000, 0.000000, 0.000000, -24.672882, 26.451622, 55.365185, 0.872853, 0.487738, 0.015480, 0.429196, 0.133201, 5.000000, 1.000000, 0.000000, 0.000000, -25.058994, 27.126598, 55.869499, 0.872853, 0.487738, 0.015480, 0.416794, 0.111254, 5.000000, 1.000000, 0.000000, 0.000000, -22.771854, 22.898987, 60.108894, 0.872853, 0.487738, 0.015480, 0.506997, 0.273308, 5.000000, 1.000000, 0.000000, 0.000000, -26.624046, 24.428255, 55.593094, -0.569252, -0.714434, -0.406861, 0.570629, 0.148880, 5.000000, 1.000000, 0.000000, 0.000000, -27.366894, 24.545547, 56.426487, -0.569252, -0.714434, -0.406861, 0.639659, 0.156025, 5.000000, 1.000000, 0.000000, 0.000000, -28.191605, 27.600843, 52.215359, -0.569252, -0.714434, -0.406861, 0.517448, 0.032564, 5.000000, 1.000000, 0.000000, 0.000000, -26.069820, 25.638115, 55.970280, -0.637218, 0.473883, 0.607773, 0.506091, 0.130285, 5.000000, 1.000000, 0.000000, 0.000000, -25.058994, 27.126598, 55.869499, -0.637218, 0.473883, 0.607773, 0.416794, 0.111254, 5.000000, 1.000000, 0.000000, 0.000000, -28.191605, 27.600843, 52.215359, -0.637218, 0.473883, 0.607773, 0.517448, 0.032564, 5.000000, 1.000000, 0.000000, 0.000000, -28.191605, 27.600843, 52.215359, 0.574988, -0.446098, -0.685847, 0.517448, 0.032564, 5.000000, 1.000000, 0.000000, 0.000000, -25.927059, 25.407770, 55.540314, 0.574988, -0.446098, -0.685847, 0.511429, 0.137157, 5.000000, 1.000000, 0.000000, 0.000000, -26.624046, 24.428255, 55.593094, 0.574988, -0.446098, -0.685847, 0.570629, 0.148880, 5.000000, 1.000000, 0.000000, 0.000000, -26.624046, 24.428255, 55.593094, 0.593686, -0.458095, -0.661578, 0.570629, 0.148880, 5.000000, 1.000000, 0.000000, 0.000000, -25.927059, 25.407770, 55.540314, 0.593686, -0.458095, -0.661578, 0.511429, 0.137157, 5.000000, 1.000000, 0.000000, 0.000000, -22.771854, 22.898987, 60.108894, 0.593686, -0.458095, -0.661578, 0.506997, 0.273308, 5.000000, 1.000000, 0.000000, 0.000000, -25.927059, 25.407770, 55.540314, 0.433635, -0.629222, -0.645012, 0.511429, 0.137157, 5.000000, 1.000000, 0.000000, 0.000000, -24.672882, 26.451622, 55.365185, 0.433635, -0.629222, -0.645012, 0.429196, 0.133201, 5.000000, 1.000000, 0.000000, 0.000000, -22.771854, 22.898987, 60.108894, 0.433635, -0.629222, -0.645012, 0.506997, 0.273308, 5.000000, 1.000000, 0.000000, 0.000000, -24.672882, 26.451622, 55.365185, 0.410504, -0.607334, -0.680171, 0.429196, 0.133201, 5.000000, 1.000000, 0.000000, 0.000000, -25.927059, 25.407770, 55.540314, 0.410504, -0.607334, -0.680171, 0.511429, 0.137157, 5.000000, 1.000000, 0.000000, 0.000000, -28.191605, 27.600843, 52.215359, 0.410504, -0.607334, -0.680171, 0.517448, 0.032564, 5.000000, 1.000000, 0.000000, 0.000000, -26.069820, 25.638115, 55.970280, -0.551190, 0.423010, 0.719202, 0.506091, 0.130285, 5.000000, 1.000000, 0.000000, 0.000000, -22.771854, 22.898987, 60.108894, -0.551190, 0.423010, 0.719202, 0.506997, 0.273308, 5.000000, 1.000000, 0.000000, 0.000000, -25.058994, 27.126598, 55.869499, -0.551190, 0.423010, 0.719202, 0.416794, 0.111254, 5.000000, 1.000000, 0.000000, 0.000000, -8.788172, 5.686281, 62.159115, -0.411463, 0.821353, 0.395066, 0.521960, 0.811375, 6.000000, 1.000000, 0.000000, 0.000000, -14.109292, 1.583968, 65.145966, -0.411463, 0.821353, 0.395066, 0.873549, 0.717437, 6.000000, 1.000000, 0.000000, 0.000000, -8.117209, 4.908809, 64.313950, -0.411463, 0.821353, 0.395066, 0.505907, 0.854870, 6.000000, 1.000000, 0.000000, 0.000000, -15.586782, 1.823941, 62.947880, -0.411463, 0.821353, 0.395066, 0.868911, 0.687675, 6.000000, 1.000000, 0.000000, 0.000000, -3.930405, 13.493818, 63.386971, -0.776683, 0.407739, 0.480118, 0.116568, 0.751269, 6.000000, 1.000000, 0.000000, 0.000000, -8.788172, 5.686281, 62.159115, -0.776683, 0.407739, 0.480118, 0.521960, 0.811375, 6.000000, 1.000000, 0.000000, 0.000000, -8.117209, 4.908809, 64.313950, -0.776683, 0.407739, 0.480118, 0.505907, 0.854870, 6.000000, 1.000000, 0.000000, 0.000000, -5.380909, 14.018780, 61.003830, -0.776683, 0.407739, 0.480118, 0.175160, 0.701588, 6.000000, 1.000000, 0.000000, 0.000000, -15.586782, 1.823941, 62.947880, -0.216357, 0.185071, -0.958613, 0.868911, 0.687675, 6.000000, 1.000000, 0.000000, 0.000000, -8.788172, 5.686281, 62.159115, -0.216357, 0.185071, -0.958613, 0.521960, 0.811375, 6.000000, 1.000000, 0.000000, 0.000000, 0.205101, -0.730863, 58.890453, -0.216357, 0.185071, -0.958613, 0.499260, 0.959610, 6.000000, 1.000000, 0.000000, 0.000000, -15.586782, 1.823941, 62.947880, -0.159794, -0.987150, -0.000362, 0.868911, 0.687675, 6.000000, 1.000000, 0.000000, 0.000000, 0.205101, -0.730863, 58.890453, -0.159794, -0.987150, -0.000362, 0.499260, 0.959610, 6.000000, 1.000000, 0.000000, 0.000000, -14.109292, 1.583968, 65.145966, -0.159794, -0.987150, -0.000362, 0.873549, 0.717437, 6.000000, 1.000000, 0.000000, 0.000000, -14.109292, 1.583968, 65.145966, 0.323051, -0.363555, 0.873765, 0.873549, 0.717437, 6.000000, 1.000000, 0.000000, 0.000000, 0.205101, -0.730863, 58.890453, 0.323051, -0.363555, 0.873765, 0.499260, 0.959610, 6.000000, 1.000000, 0.000000, 0.000000, -8.117209, 4.908809, 64.313950, 0.323051, -0.363555, 0.873765, 0.505907, 0.854870, 6.000000, 1.000000, 0.000000, 0.000000, -8.117209, 4.908809, 64.313950, 0.473888, -0.137188, 0.869833, 0.505907, 0.854870, 6.000000, 1.000000, 0.000000, 0.000000, 0.205101, -0.730863, 58.890453, 0.473888, -0.137188, 0.869833, 0.499260, 0.959610, 6.000000, 1.000000, 0.000000, 0.000000, -3.930405, 13.493818, 63.386971, 0.473888, -0.137188, 0.869833, 0.116568, 0.751269, 6.000000, 1.000000, 0.000000, 0.000000, -3.930405, 13.493818, 63.386971, 0.826686, 0.373394, -0.420913, 0.116568, 0.751269, 6.000000, 1.000000, 0.000000, 0.000000, 0.205101, -0.730863, 58.890453, 0.826686, 0.373394, -0.420913, 0.499260, 0.959610, 6.000000, 1.000000, 0.000000, 0.000000, -5.380909, 14.018780, 61.003830, 0.826686, 0.373394, -0.420913, 0.175160, 0.701588, 6.000000, 1.000000, 0.000000, 0.000000, -5.380909, 14.018780, 61.003830, -0.336999, 0.007269, -0.941477, 0.175160, 0.701588, 6.000000, 1.000000, 0.000000, 0.000000, 0.205101, -0.730863, 58.890453, -0.336999, 0.007269, -0.941477, 0.499260, 0.959610, 6.000000, 1.000000, 0.000000, 0.000000, -8.788172, 5.686281, 62.159115, -0.336999, 0.007269, -0.941477, 0.521960, 0.811375, 6.000000, 1.000000, 0.000000, 0.000000, -15.414235, 13.825259, 62.535156, -0.540228, 0.813783, 0.214268, 0.505085, 0.594773, 7.000000, 1.000000, 0.000000, 0.000000, -20.710102, 9.416151, 65.928452, -0.540228, 0.813783, 0.214268, 0.739306, 0.594416, 7.000000, 1.000000, 0.000000, 0.000000, -15.140126, 13.386511, 65.063087, -0.540228, 0.813783, 0.214268, 0.487323, 0.630770, 7.000000, 1.000000, 0.000000, 0.000000, -21.700836, 9.537443, 63.140362, -0.540228, 0.813783, 0.214268, 0.813782, 0.543827, 7.000000, 1.000000, 0.000000, 0.000000, -11.431144, 19.144070, 65.546349, -0.837617, 0.485321, 0.250723, 0.146940, 0.571688, 7.000000, 1.000000, 0.000000, 0.000000, -15.414235, 13.825259, 62.535156, -0.837617, 0.485321, 0.250723, 0.505085, 0.594773, 7.000000, 1.000000, 0.000000, 0.000000, -15.140126, 13.386511, 65.063087, -0.837617, 0.485321, 0.250723, 0.487323, 0.630770, 7.000000, 1.000000, 0.000000, 0.000000, -12.325212, 19.546551, 62.543259, -0.837617, 0.485321, 0.250723, 0.204929, 0.524528, 7.000000, 1.000000, 0.000000, 0.000000, -21.700836, 9.537443, 63.140362, -0.048039, -0.070204, -0.996375, 0.813782, 0.543827, 7.000000, 1.000000, 0.000000, 0.000000, -15.414235, 13.825259, 62.535156, -0.048039, -0.070204, -0.996375, 0.505085, 0.594773, 7.000000, 1.000000, 0.000000, 0.000000, -7.089207, 3.523776, 62.859634, -0.048039, -0.070204, -0.996375, 0.522170, 0.870154, 7.000000, 1.000000, 0.000000, 0.000000, -21.700836, 9.537443, 63.140362, -0.377362, -0.921281, 0.094015, 0.813782, 0.543827, 7.000000, 1.000000, 0.000000, 0.000000, -7.089207, 3.523776, 62.859634, -0.377362, -0.921281, 0.094015, 0.522170, 0.870154, 7.000000, 1.000000, 0.000000, 0.000000, -20.710102, 9.416151, 65.928452, -0.377362, -0.921281, 0.094015, 0.739306, 0.594416, 7.000000, 1.000000, 0.000000, 0.000000, -20.710102, 9.416151, 65.928452, 0.194717, -0.059781, 0.979036, 0.739306, 0.594416, 7.000000, 1.000000, 0.000000, 0.000000, -7.089207, 3.523776, 62.859634, 0.194717, -0.059781, 0.979036, 0.522170, 0.870154, 7.000000, 1.000000, 0.000000, 0.000000, -15.140126, 13.386511, 65.063087, 0.194717, -0.059781, 0.979036, 0.487323, 0.630770, 7.000000, 1.000000, 0.000000, 0.000000, -15.140126, 13.386511, 65.063087, 0.094087, -0.143302, 0.985196, 0.487323, 0.630770, 7.000000, 1.000000, 0.000000, 0.000000, -7.089207, 3.523776, 62.859634, 0.094087, -0.143302, 0.985196, 0.522170, 0.870154, 7.000000, 1.000000, 0.000000, 0.000000, -11.431144, 19.144070, 65.546349, 0.094087, -0.143302, 0.985196, 0.146940, 0.571688, 7.000000, 1.000000, 0.000000, 0.000000, -11.431144, 19.144070, 65.546349, 0.925154, 0.297677, -0.235539, 0.146940, 0.571688, 7.000000, 1.000000, 0.000000, 0.000000, -7.089207, 3.523776, 62.859634, 0.925154, 0.297677, -0.235539, 0.522170, 0.870154, 7.000000, 1.000000, 0.000000, 0.000000, -12.325212, 19.546551, 62.543259, 0.925154, 0.297677, -0.235539, 0.204929, 0.524528, 7.000000, 1.000000, 0.000000, 0.000000, -12.325212, 19.546551, 62.543259, 0.024408, -0.011762, -0.999633, 0.204929, 0.524528, 7.000000, 1.000000, 0.000000, 0.000000, -7.089207, 3.523776, 62.859634, 0.024408, -0.011762, -0.999633, 0.522170, 0.870154, 7.000000, 1.000000, 0.000000, 0.000000, -15.414235, 13.825259, 62.535156, 0.024408, -0.011762, -0.999633, 0.505085, 0.594773, 7.000000, 1.000000, 0.000000, 0.000000, -20.651783, 19.679636, 62.625507, -0.456460, 0.876020, -0.155669, 0.510694, 0.397485, 8.000000, 1.000000, 0.000000, 0.000000, -26.259113, 16.326107, 60.195736, -0.456460, 0.876020, -0.155669, 0.861241, 0.367928, 8.000000, 1.000000, 0.000000, 0.000000, -26.377106, 16.613026, 62.373020, -0.456460, 0.876020, -0.155669, 0.849030, 0.373511, 8.000000, 1.000000, 0.000000, 0.000000, -20.132137, 19.588873, 60.807652, -0.456460, 0.876020, -0.155669, 0.509600, 0.395399, 8.000000, 0.872583, 7.000000, 0.127417, -20.651783, 19.679636, 62.625507, -0.838112, 0.510643, -0.191865, 0.510694, 0.397485, 8.000000, 1.000000, 0.000000, 0.000000, -18.235428, 23.574339, 63.129578, -0.838112, 0.510643, -0.191865, 0.271249, 0.350476, 8.000000, 1.000000, 0.000000, 0.000000, -17.955482, 23.392401, 60.728851, -0.838112, 0.510643, -0.191865, 0.297107, 0.344537, 8.000000, 1.000000, 0.000000, 0.000000, -20.132137, 19.588873, 60.807652, -0.838112, 0.510643, -0.191865, 0.509600, 0.395399, 8.000000, 0.872583, 7.000000, 0.127417, -26.259113, 16.326107, 60.195736, 0.248928, -0.294403, -0.922693, 0.861241, 0.367928, 8.000000, 1.000000, 0.000000, 0.000000, -20.132137, 19.588873, 60.807652, 0.248928, -0.294403, -0.922693, 0.509600, 0.395399, 8.000000, 0.872583, 7.000000, 0.127417, -14.894647, 12.404064, 64.513092, 0.248928, -0.294403, -0.922693, 0.514623, 0.647521, 8.000000, 1.000000, 0.000000, 0.000000, -26.259113, 16.326107, 60.195736, -0.359168, -0.927597, 0.102773, 0.861241, 0.367928, 8.000000, 1.000000, 0.000000, 0.000000, -14.894647, 12.404064, 64.513092, -0.359168, -0.927597, 0.102773, 0.514623, 0.647521, 8.000000, 1.000000, 0.000000, 0.000000, -26.377106, 16.613026, 62.373020, -0.359168, -0.927597, 0.102773, 0.849030, 0.373511, 8.000000, 1.000000, 0.000000, 0.000000, -26.377106, 16.613026, 62.373020, -0.125989, 0.154538, 0.979921, 0.849030, 0.373511, 8.000000, 1.000000, 0.000000, 0.000000, -14.894647, 12.404064, 64.513092, -0.125989, 0.154538, 0.979921, 0.514623, 0.647521, 8.000000, 1.000000, 0.000000, 0.000000, -20.651783, 19.679636, 62.625507, -0.125989, 0.154538, 0.979921, 0.510694, 0.397485, 8.000000, 1.000000, 0.000000, 0.000000, -20.651783, 19.679636, 62.625507, -0.265355, 0.039953, 0.963323, 0.510694, 0.397485, 8.000000, 1.000000, 0.000000, 0.000000, -14.894647, 12.404064, 64.513092, -0.265355, 0.039953, 0.963323, 0.514623, 0.647521, 8.000000, 1.000000, 0.000000, 0.000000, -18.235428, 23.574339, 63.129578, -0.265355, 0.039953, 0.963323, 0.271249, 0.350476, 8.000000, 1.000000, 0.000000, 0.000000, -18.235428, 23.574339, 63.129578, 0.951244, 0.295461, 0.088532, 0.271249, 0.350476, 8.000000, 1.000000, 0.000000, 0.000000, -14.894647, 12.404064, 64.513092, 0.951244, 0.295461, 0.088532, 0.514623, 0.647521, 8.000000, 1.000000, 0.000000, 0.000000, -17.955482, 23.392401, 60.728851, 0.951244, 0.295461, 0.088532, 0.297107, 0.344537, 8.000000, 1.000000, 0.000000, 0.000000, -17.955482, 23.392401, 60.728851, 0.347050, -0.217505, -0.912276, 0.297107, 0.344537, 8.000000, 1.000000, 0.000000, 0.000000, -14.894647, 12.404064, 64.513092, 0.347050, -0.217505, -0.912276, 0.514623, 0.647521, 8.000000, 1.000000, 0.000000, 0.000000, -20.132137, 19.588873, 60.807652, 0.347050, -0.217505, -0.912276, 0.509600, 0.395399, 8.000000, 0.872583, 7.000000, 0.127417, -23.847012, 23.897877, 59.352955, -0.437284, 0.826682, -0.354090, 0.522303, 0.227461, 9.000000, 1.000000, 0.000000, 0.000000, -26.194130, 21.632441, 56.962494, -0.437284, 0.826682, -0.354090, 0.708696, 0.231213, 9.000000, 1.000000, 0.000000, 0.000000, -26.577820, 22.116970, 58.689842, -0.437284, 0.826682, -0.354090, 0.698236, 0.220504, 9.000000, 1.000000, 0.000000, 0.000000, -23.158104, 23.577215, 57.875854, -0.437284, 0.826682, -0.354090, 0.518999, 0.240360, 9.000000, 1.000000, 0.000000, 0.000000, -23.847012, 23.897877, 59.352955, -0.831736, 0.401604, -0.383314, 0.522303, 0.227461, 9.000000, 1.000000, 0.000000, 0.000000, -22.796879, 25.804718, 59.425835, -0.831736, 0.401604, -0.383314, 0.412657, 0.199495, 9.000000, 1.000000, 0.000000, 0.000000, -22.273533, 25.403990, 57.516708, -0.831736, 0.401604, -0.383314, 0.426133, 0.210707, 9.000000, 1.000000, 0.000000, 0.000000, -23.158104, 23.577215, 57.875854, -0.831736, 0.401604, -0.383314, 0.518999, 0.240360, 9.000000, 1.000000, 0.000000, 0.000000, -26.194130, 21.632441, 56.962494, 0.462961, -0.337882, -0.819453, 0.708696, 0.231213, 9.000000, 1.000000, 0.000000, 0.000000, -23.158104, 23.577215, 57.875854, 0.462961, -0.337882, -0.819453, 0.518999, 0.240360, 9.000000, 1.000000, 0.000000, 0.000000, -19.536709, 18.096531, 62.181637, 0.462961, -0.337882, -0.819453, 0.511577, 0.441394, 9.000000, 1.000000, 0.000000, 0.000000, -26.194130, 21.632441, 56.962494, -0.535212, -0.836739, 0.115826, 0.708696, 0.231213, 9.000000, 1.000000, 0.000000, 0.000000, -19.536709, 18.096531, 62.181637, -0.535212, -0.836739, 0.115826, 0.511577, 0.441394, 9.000000, 1.000000, 0.000000, 0.000000, -26.577820, 22.116970, 58.689842, -0.535212, -0.836739, 0.115826, 0.698236, 0.220504, 9.000000, 1.000000, 0.000000, 0.000000, -26.577820, 22.116970, 58.689842, -0.346953, 0.190037, 0.918428, 0.698236, 0.220504, 9.000000, 1.000000, 0.000000, 0.000000, -19.536709, 18.096531, 62.181637, -0.346953, 0.190037, 0.918428, 0.511577, 0.441394, 9.000000, 1.000000, 0.000000, 0.000000, -23.847012, 23.897877, 59.352955, -0.346953, 0.190037, 0.918428, 0.522303, 0.227461, 9.000000, 1.000000, 0.000000, 0.000000, -23.847012, 23.897877, 59.352955, -0.371078, 0.169466, 0.913007, 0.522303, 0.227461, 9.000000, 1.000000, 0.000000, 0.000000, -19.536709, 18.096531, 62.181637, -0.371078, 0.169466, 0.913007, 0.511577, 0.441394, 9.000000, 1.000000, 0.000000, 0.000000, -22.796879, 25.804718, 59.425835, -0.371078, 0.169466, 0.913007, 0.412657, 0.199495, 9.000000, 1.000000, 0.000000, 0.000000, -22.796879, 25.804718, 59.425835, 0.889265, 0.430930, 0.153321, 0.412657, 0.199495, 9.000000, 1.000000, 0.000000, 0.000000, -19.536709, 18.096531, 62.181637, 0.889265, 0.430930, 0.153321, 0.511577, 0.441394, 9.000000, 1.000000, 0.000000, 0.000000, -22.273533, 25.403990, 57.516708, 0.889265, 0.430930, 0.153321, 0.426133, 0.210707, 9.000000, 1.000000, 0.000000, 0.000000, -22.273533, 25.403990, 57.516708, 0.425272, -0.368453, -0.826672, 0.426133, 0.210707, 9.000000, 1.000000, 0.000000, 0.000000, -19.536709, 18.096531, 62.181637, 0.425272, -0.368453, -0.826672, 0.511577, 0.441394, 9.000000, 1.000000, 0.000000, 0.000000, -23.158104, 23.577215, 57.875854, 0.425272, -0.368453, -0.826672, 0.518999, 0.240360, 9.000000, 1.000000, 0.000000, 0.000000, 29.120960, -6.832658, 43.104843, 0.847180, -0.388427, 0.362506, 0.583210, 0.045239, 0.000000, 1.000000, 0.000000, 0.000000, 26.729801, -7.491686, 47.986855, 0.847180, -0.388427, 0.362506, 0.493750, 0.111556, 0.000000, 1.000000, 0.000000, 0.000000, 28.494316, -8.289588, 43.008217, 0.847180, -0.388427, 0.362506, 0.499295, 0.050753, 0.000000, 1.000000, 0.000000, 0.000000, 26.729801, -7.491686, 47.986855, -0.299845, 0.953816, -0.018104, 0.493750, 0.111556, 0.000000, 1.000000, 0.000000, 0.000000, 29.120960, -6.832658, 43.104843, -0.299845, 0.953816, -0.018104, 0.583210, 0.045239, 0.000000, 1.000000, 0.000000, 0.000000, 28.216080, -7.124796, 42.700397, -0.299845, 0.953816, -0.018104, 0.558452, 0.066630, 0.000000, 1.000000, 0.000000, 0.000000, 29.120960, -6.832658, 43.104843, 0.856099, -0.390659, 0.338349, 0.583210, 0.045239, 0.000000, 1.000000, 0.000000, 0.000000, 28.494316, -8.289588, 43.008217, 0.856099, -0.390659, 0.338349, 0.499295, 0.050753, 0.000000, 1.000000, 0.000000, 0.000000, 29.594318, -9.306597, 39.050716, 0.856099, -0.390659, 0.338349, 0.487703, 0.010874, 0.000000, 1.000000, 0.000000, 0.000000, 28.507885, -10.025791, 43.156292, -0.327723, -0.912052, -0.246492, 0.407066, 0.037220, 0.000000, 1.000000, 0.000000, 0.000000, 27.746517, -9.707351, 42.990303, -0.327723, -0.912052, -0.246492, 0.415686, 0.059874, 0.000000, 1.000000, 0.000000, 0.000000, 29.594318, -9.306597, 39.050716, -0.327723, -0.912052, -0.246492, 0.487703, 0.010874, 0.000000, 1.000000, 0.000000, 0.000000, 27.746517, -9.707351, 42.990303, -0.422658, -0.857234, 0.294125, 0.415686, 0.059874, 0.000000, 1.000000, 0.000000, 0.000000, 28.507885, -10.025791, 43.156292, -0.422658, -0.857234, 0.294125, 0.407066, 0.037220, 0.000000, 1.000000, 0.000000, 0.000000, 26.729801, -7.491686, 47.986855, -0.422658, -0.857234, 0.294125, 0.493750, 0.111556, 0.000000, 1.000000, 0.000000, 0.000000, 28.216080, -7.124796, 42.700397, -0.040511, 0.850807, -0.523915, 0.558452, 0.066630, 0.000000, 1.000000, 0.000000, 0.000000, 29.120960, -6.832658, 43.104843, -0.040511, 0.850807, -0.523915, 0.583210, 0.045239, 0.000000, 1.000000, 0.000000, 0.000000, 29.594318, -9.306597, 39.050716, -0.040511, 0.850807, -0.523915, 0.487703, 0.010874, 0.000000, 1.000000, 0.000000, 0.000000, 28.494316, -8.289588, 43.008217, 0.964995, 0.029763, 0.260575, 0.499295, 0.050753, 0.000000, 1.000000, 0.000000, 0.000000, 28.507885, -10.025791, 43.156292, 0.964995, 0.029763, 0.260575, 0.407066, 0.037220, 0.000000, 1.000000, 0.000000, 0.000000, 29.594318, -9.306597, 39.050716, 0.964995, 0.029763, 0.260575, 0.487703, 0.010874, 0.000000, 1.000000, 0.000000, 0.000000, 29.594318, -9.306597, 39.050716, -0.921769, 0.058820, -0.383252, 0.487703, 0.010874, 0.000000, 1.000000, 0.000000, 0.000000, 28.128296, -8.204348, 42.745846, -0.921769, 0.058820, -0.383252, 0.500857, 0.060829, 0.000000, 1.000000, 0.000000, 0.000000, 28.216080, -7.124796, 42.700397, -0.921769, 0.058820, -0.383252, 0.558452, 0.066630, 0.000000, 1.000000, 0.000000, 0.000000, 28.216080, -7.124796, 42.700397, -0.961715, 0.067014, -0.265733, 0.558452, 0.066630, 0.000000, 1.000000, 0.000000, 0.000000, 28.128296, -8.204348, 42.745846, -0.961715, 0.067014, -0.265733, 0.500857, 0.060829, 0.000000, 1.000000, 0.000000, 0.000000, 26.729801, -7.491686, 47.986855, -0.961715, 0.067014, -0.265733, 0.493750, 0.111556, 0.000000, 1.000000, 0.000000, 0.000000, 28.128296, -8.204348, 42.745846, -0.940971, 0.193893, -0.277450, 0.500857, 0.060829, 0.000000, 1.000000, 0.000000, 0.000000, 27.746517, -9.707351, 42.990303, -0.940971, 0.193893, -0.277450, 0.415686, 0.059874, 0.000000, 1.000000, 0.000000, 0.000000, 26.729801, -7.491686, 47.986855, -0.940971, 0.193893, -0.277450, 0.493750, 0.111556, 0.000000, 1.000000, 0.000000, 0.000000, 27.746517, -9.707351, 42.990303, -0.899571, 0.162565, -0.405394, 0.415686, 0.059874, 0.000000, 1.000000, 0.000000, 0.000000, 28.128296, -8.204348, 42.745846, -0.899571, 0.162565, -0.405394, 0.500857, 0.060829, 0.000000, 1.000000, 0.000000, 0.000000, 29.594318, -9.306597, 39.050716, -0.899571, 0.162565, -0.405394, 0.487703, 0.010874, 0.000000, 1.000000, 0.000000, 0.000000, 28.494316, -8.289588, 43.008217, 0.943735, 0.035420, 0.328800, 0.499295, 0.050753, 0.000000, 1.000000, 0.000000, 0.000000, 26.729801, -7.491686, 47.986855, 0.943735, 0.035420, 0.328800, 0.493750, 0.111556, 0.000000, 1.000000, 0.000000, 0.000000, 28.507885, -10.025791, 43.156292, 0.943735, 0.035420, 0.328800, 0.407066, 0.037220, 0.000000, 1.000000, 0.000000, 0.000000, 13.488275, 4.507693, 58.836990, 0.905083, -0.424307, 0.028085, 0.935766, 0.661609, 1.000000, 1.000000, 0.000000, 0.000000, 10.317828, -2.328283, 57.732304, 0.905083, -0.424307, 0.028085, 0.506003, 0.677257, 1.000000, 1.000000, 0.000000, 0.000000, 13.729058, 4.830844, 56.702797, 0.905083, -0.424307, 0.028085, 0.959874, 0.632882, 1.000000, 1.000000, 0.000000, 0.000000, 10.323464, -2.225809, 59.842152, 0.905083, -0.424307, 0.028085, 0.507246, 0.714483, 1.000000, 1.000000, 0.000000, 0.000000, 11.171061, -8.219138, 59.405148, 0.985867, 0.158337, 0.054736, 0.103771, 0.630308, 1.000000, 1.000000, 0.000000, 0.000000, 10.317828, -2.328283, 57.732304, 0.985867, 0.158337, 0.054736, 0.506003, 0.677257, 1.000000, 1.000000, 0.000000, 0.000000, 10.323464, -2.225809, 59.842152, 0.985867, 0.158337, 0.054736, 0.507246, 0.714483, 1.000000, 1.000000, 0.000000, 0.000000, 11.398424, -7.921073, 56.955620, 0.985867, 0.158337, 0.054736, 0.160358, 0.599030, 1.000000, 1.000000, 0.000000, 0.000000, 13.729058, 4.830844, 56.702797, -0.176669, -0.057122, -0.982611, 0.959874, 0.632882, 1.000000, 1.000000, 0.000000, 0.000000, 10.317828, -2.328283, 57.732304, -0.176669, -0.057122, -0.982611, 0.506003, 0.677257, 1.000000, 1.000000, 0.000000, 0.000000, 0.176573, 0.055454, 59.417080, -0.176669, -0.057122, -0.982611, 0.500952, 0.980648, 1.000000, 1.000000, 0.000000, 0.000000, 13.729058, 4.830844, 56.702797, -0.311109, 0.944232, 0.107872, 0.959874, 0.632882, 1.000000, 1.000000, 0.000000, 0.000000, 0.176573, 0.055454, 59.417080, -0.311109, 0.944232, 0.107872, 0.500952, 0.980648, 1.000000, 1.000000, 0.000000, 0.000000, 13.488275, 4.507693, 58.836990, -0.311109, 0.944232, 0.107872, 0.935766, 0.661609, 1.000000, 1.000000, 0.000000, 0.000000, 13.488275, 4.507693, 58.836990, -0.007447, 0.151061, 0.988496, 0.935766, 0.661609, 1.000000, 1.000000, 0.000000, 0.000000, 0.176573, 0.055454, 59.417080, -0.007447, 0.151061, 0.988496, 0.500952, 0.980648, 1.000000, 1.000000, 0.000000, 0.000000, 10.323464, -2.225809, 59.842152, -0.007447, 0.151061, 0.988496, 0.507246, 0.714483, 1.000000, 1.000000, 0.000000, 0.000000, 10.323464, -2.225809, 59.842152, -0.059892, -0.081014, 0.994912, 0.507246, 0.714483, 1.000000, 1.000000, 0.000000, 0.000000, 0.176573, 0.055454, 59.417080, -0.059892, -0.081014, 0.994912, 0.500952, 0.980648, 1.000000, 1.000000, 0.000000, 0.000000, 11.171061, -8.219138, 59.405148, -0.059892, -0.081014, 0.994912, 0.103771, 0.630308, 1.000000, 1.000000, 0.000000, 0.000000, 11.171061, -8.219138, 59.405148, -0.594519, -0.789723, -0.151278, 0.103771, 0.630308, 1.000000, 1.000000, 0.000000, 0.000000, 0.176573, 0.055454, 59.417080, -0.594519, -0.789723, -0.151278, 0.500952, 0.980648, 1.000000, 1.000000, 0.000000, 0.000000, 11.398424, -7.921073, 56.955620, -0.594519, -0.789723, -0.151278, 0.160358, 0.599030, 1.000000, 1.000000, 0.000000, 0.000000, 11.398424, -7.921073, 56.955620, -0.137648, 0.110102, -0.984343, 0.160358, 0.599030, 1.000000, 1.000000, 0.000000, 0.000000, 0.176573, 0.055454, 59.417080, -0.137648, 0.110102, -0.984343, 0.500952, 0.980648, 1.000000, 1.000000, 0.000000, 0.000000, 10.317828, -2.328283, 57.732304, -0.137648, 0.110102, -0.984343, 0.506003, 0.677257, 1.000000, 1.000000, 0.000000, 0.000000, 21.965195, 2.273409, 55.897770, 0.887051, -0.438932, -0.143107, 0.947465, 0.368700, 2.000000, 1.000000, 0.000000, 0.000000, 18.804234, -3.594640, 54.302731, 0.887051, -0.438932, -0.143107, 0.511730, 0.393072, 2.000000, 1.000000, 0.000000, 0.000000, 21.589821, 2.405398, 53.273041, 0.887051, -0.438932, -0.143107, 0.949663, 0.363207, 2.000000, 1.000000, 0.000000, 0.000000, 19.354874, -3.150747, 56.461254, 0.887051, -0.438932, -0.143107, 0.503939, 0.399140, 2.000000, 1.000000, 0.000000, 0.000000, 19.611259, -9.735069, 57.566856, 0.982113, 0.030289, -0.185839, 0.148302, 0.347262, 2.000000, 1.000000, 0.000000, 0.000000, 18.804234, -3.594640, 54.302731, 0.982113, 0.030289, -0.185839, 0.511730, 0.393072, 2.000000, 1.000000, 0.000000, 0.000000, 19.354874, -3.150747, 56.461254, 0.982113, 0.030289, -0.185839, 0.503939, 0.399140, 2.000000, 1.000000, 0.000000, 0.000000, 19.230759, -9.825526, 54.717438, 0.982113, 0.030289, -0.185839, 0.177215, 0.339442, 2.000000, 1.000000, 0.000000, 0.000000, 21.589821, 2.405398, 53.273041, -0.412528, 0.035308, -0.910260, 0.949663, 0.363207, 2.000000, 1.000000, 0.000000, 0.000000, 18.804234, -3.594640, 54.302731, -0.412528, 0.035308, -0.910260, 0.511730, 0.393072, 2.000000, 1.000000, 0.000000, 0.000000, 8.482611, -1.070565, 59.078381, -0.412528, 0.035308, -0.910260, 0.503388, 0.669188, 2.000000, 1.000000, 0.000000, 0.000000, 21.589821, 2.405398, 53.273041, -0.221988, 0.971711, 0.080612, 0.949663, 0.363207, 2.000000, 1.000000, 0.000000, 0.000000, 8.482611, -1.070565, 59.078381, -0.221988, 0.971711, 0.080612, 0.503388, 0.669188, 2.000000, 1.000000, 0.000000, 0.000000, 21.965195, 2.273409, 55.897770, -0.221988, 0.971711, 0.080612, 0.947465, 0.368700, 2.000000, 1.000000, 0.000000, 0.000000, 21.965195, 2.273409, 55.897770, 0.232091, -0.010650, 0.972636, 0.947465, 0.368700, 2.000000, 1.000000, 0.000000, 0.000000, 8.482611, -1.070565, 59.078381, 0.232091, -0.010650, 0.972636, 0.503388, 0.669188, 2.000000, 1.000000, 0.000000, 0.000000, 19.354874, -3.150747, 56.461254, 0.232091, -0.010650, 0.972636, 0.503939, 0.399140, 2.000000, 1.000000, 0.000000, 0.000000, 19.354874, -3.150747, 56.461254, 0.261213, 0.169731, 0.950242, 0.503939, 0.399140, 2.000000, 1.000000, 0.000000, 0.000000, 8.482611, -1.070565, 59.078381, 0.261213, 0.169731, 0.950242, 0.503388, 0.669188, 2.000000, 1.000000, 0.000000, 0.000000, 19.611259, -9.735069, 57.566856, 0.261213, 0.169731, 0.950242, 0.148302, 0.347262, 2.000000, 1.000000, 0.000000, 0.000000, 19.611259, -9.735069, 57.566856, -0.601943, -0.791538, 0.105509, 0.148302, 0.347262, 2.000000, 1.000000, 0.000000, 0.000000, 8.482611, -1.070565, 59.078381, -0.601943, -0.791538, 0.105509, 0.503388, 0.669188, 2.000000, 1.000000, 0.000000, 0.000000, 19.230759, -9.825526, 54.717438, -0.601943, -0.791538, 0.105509, 0.177215, 0.339442, 2.000000, 1.000000, 0.000000, 0.000000, 19.230759, -9.825526, 54.717438, -0.436166, -0.089452, -0.895409, 0.177215, 0.339442, 2.000000, 1.000000, 0.000000, 0.000000, 8.482611, -1.070565, 59.078381, -0.436166, -0.089452, -0.895409, 0.503388, 0.669188, 2.000000, 1.000000, 0.000000, 0.000000, 18.804234, -3.594640, 54.302731, -0.436166, -0.089452, -0.895409, 0.511730, 0.393072, 2.000000, 1.000000, 0.000000, 0.000000, 27.621899, -1.162090, 49.955933, 0.701907, -0.550484, -0.451988, 0.845115, 0.145421, 3.000000, 1.000000, 0.000000, 0.000000, 23.939461, -6.023878, 50.158607, 0.701907, -0.550484, -0.451988, 0.504248, 0.207955, 2.000000, 0.500000, 3.000000, 0.500000, 26.566208, -1.070157, 48.213615, 0.701907, -0.550484, -0.451988, 0.837385, 0.170929, 3.000000, 1.000000, 0.000000, 0.000000, 25.039463, -5.639076, 51.407246, 0.701907, -0.550484, -0.451988, 0.505157, 0.186659, 3.000000, 1.000000, 0.000000, 0.000000, 25.193619, -10.060054, 52.287796, 0.806948, -0.059254, -0.587643, 0.272798, 0.148793, 3.000000, 1.000000, 0.000000, 0.000000, 23.939461, -6.023878, 50.158607, 0.806948, -0.059254, -0.587643, 0.504248, 0.207955, 2.000000, 0.500000, 3.000000, 0.500000, 25.039463, -5.639076, 51.407246, 0.806948, -0.059254, -0.587643, 0.505157, 0.186659, 3.000000, 1.000000, 0.000000, 0.000000, 24.040104, -10.235310, 50.498386, 0.806948, -0.059254, -0.587643, 0.267601, 0.175627, 3.000000, 1.000000, 0.000000, 0.000000, 26.566208, -1.070157, 48.213615, -0.712675, 0.105611, -0.693499, 0.837385, 0.170929, 3.000000, 1.000000, 0.000000, 0.000000, 23.939461, -6.023878, 50.158607, -0.712675, 0.105611, -0.693499, 0.504248, 0.207955, 2.000000, 0.500000, 3.000000, 0.500000, 18.538929, -2.637486, 56.224178, -0.712675, 0.105611, -0.693499, 0.511602, 0.410374, 2.000000, 0.500000, 3.000000, 0.500000, 26.566208, -1.070157, 48.213615, -0.088020, 0.990506, 0.105596, 0.837385, 0.170929, 3.000000, 1.000000, 0.000000, 0.000000, 18.538929, -2.637486, 56.224178, -0.088020, 0.990506, 0.105596, 0.511602, 0.410374, 2.000000, 0.500000, 3.000000, 0.500000, 27.621899, -1.162090, 49.955933, -0.088020, 0.990506, 0.105596, 0.845115, 0.145421, 3.000000, 1.000000, 0.000000, 0.000000, 27.621899, -1.162090, 49.955933, 0.574027, -0.066547, 0.816127, 0.845115, 0.145421, 3.000000, 1.000000, 0.000000, 0.000000, 18.538929, -2.637486, 56.224178, 0.574027, -0.066547, 0.816127, 0.511602, 0.410374, 2.000000, 0.500000, 3.000000, 0.500000, 25.039463, -5.639076, 51.407246, 0.574027, -0.066547, 0.816127, 0.505157, 0.186659, 3.000000, 1.000000, 0.000000, 0.000000, 25.039463, -5.639076, 51.407246, 0.636521, 0.171945, 0.751849, 0.505157, 0.186659, 3.000000, 1.000000, 0.000000, 0.000000, 18.538929, -2.637486, 56.224178, 0.636521, 0.171945, 0.751849, 0.511602, 0.410374, 2.000000, 0.500000, 3.000000, 0.500000, 25.193619, -10.060054, 52.287796, 0.636521, 0.171945, 0.751849, 0.272798, 0.148793, 3.000000, 1.000000, 0.000000, 0.000000, 25.193619, -10.060054, 52.287796, -0.550217, -0.718726, 0.425081, 0.272798, 0.148793, 3.000000, 1.000000, 0.000000, 0.000000, 18.538929, -2.637486, 56.224178, -0.550217, -0.718726, 0.425081, 0.511602, 0.410374, 2.000000, 0.500000, 3.000000, 0.500000, 24.040104, -10.235310, 50.498386, -0.550217, -0.718726, 0.425081, 0.267601, 0.175627, 3.000000, 1.000000, 0.000000, 0.000000, 24.040104, -10.235310, 50.498386, -0.764121, -0.069999, -0.641263, 0.267601, 0.175627, 3.000000, 1.000000, 0.000000, 0.000000, 18.538929, -2.637486, 56.224178, -0.764121, -0.069999, -0.641263, 0.511602, 0.410374, 2.000000, 0.500000, 3.000000, 0.500000, 23.939461, -6.023878, 50.158607, -0.764121, -0.069999, -0.641263, 0.504248, 0.207955, 2.000000, 0.500000, 3.000000, 0.500000, 26.534973, -8.122880, 46.082848, 0.582606, -0.506657, -0.635507, 0.488699, 0.106466, 4.000000, 1.000000, 0.000000, 0.000000, 27.463444, -5.278156, 44.623589, 0.582606, -0.506657, -0.635507, 0.634988, 0.104146, 4.000000, 1.000000, 0.000000, 0.000000, 27.676327, -7.915838, 46.921638, 0.582606, -0.506657, -0.635507, 0.490940, 0.080567, 4.000000, 1.000000, 0.000000, 0.000000, 28.639332, -5.393721, 45.836220, 0.582606, -0.506657, -0.635507, 0.638995, 0.073291, 4.000000, 1.000000, 0.000000, 0.000000, 27.967442, -10.027791, 47.258568, 0.655856, 0.027590, -0.754382, 0.364022, 0.057027, 4.000000, 1.000000, 0.000000, 0.000000, 26.534973, -8.122880, 46.082848, 0.655856, 0.027590, -0.754382, 0.488699, 0.106466, 4.000000, 1.000000, 0.000000, 0.000000, 27.676327, -7.915838, 46.921638, 0.655856, 0.027590, -0.754382, 0.490940, 0.080567, 4.000000, 1.000000, 0.000000, 0.000000, 26.703583, -10.093825, 45.996281, 0.655856, 0.027590, -0.754382, 0.355915, 0.089939, 4.000000, 1.000000, 0.000000, 0.000000, 27.463444, -5.278156, 44.623589, -0.867268, 0.028092, -0.497048, 0.634988, 0.104146, 4.000000, 1.000000, 0.000000, 0.000000, 26.534973, -8.122880, 46.082848, -0.867268, 0.028092, -0.497048, 0.488699, 0.106466, 4.000000, 1.000000, 0.000000, 0.000000, 23.419350, -4.789264, 51.707508, -0.867268, 0.028092, -0.497048, 0.508693, 0.235572, 4.000000, 1.000000, 0.000000, 0.000000, 27.463444, -5.278156, 44.623589, 0.106053, 0.994328, -0.008079, 0.634988, 0.104146, 4.000000, 1.000000, 0.000000, 0.000000, 23.419350, -4.789264, 51.707508, 0.106053, 0.994328, -0.008079, 0.508693, 0.235572, 4.000000, 1.000000, 0.000000, 0.000000, 28.639332, -5.393721, 45.836220, 0.106053, 0.994328, -0.008079, 0.638995, 0.073291, 4.000000, 1.000000, 0.000000, 0.000000, 28.639332, -5.393721, 45.836220, 0.747372, 0.000570, 0.664406, 0.638995, 0.073291, 4.000000, 1.000000, 0.000000, 0.000000, 23.419350, -4.789264, 51.707508, 0.747372, 0.000570, 0.664406, 0.508693, 0.235572, 4.000000, 1.000000, 0.000000, 0.000000, 27.676327, -7.915838, 46.921638, 0.747372, 0.000570, 0.664406, 0.490940, 0.080567, 4.000000, 1.000000, 0.000000, 0.000000, 27.676327, -7.915838, 46.921638, 0.793469, 0.201017, 0.574456, 0.490940, 0.080567, 4.000000, 1.000000, 0.000000, 0.000000, 23.419350, -4.789264, 51.707508, 0.793469, 0.201017, 0.574456, 0.508693, 0.235572, 4.000000, 1.000000, 0.000000, 0.000000, 27.967442, -10.027791, 47.258568, 0.793469, 0.201017, 0.574456, 0.364022, 0.057027, 4.000000, 1.000000, 0.000000, 0.000000, 27.967442, -10.027791, 47.258568, -0.428982, -0.771489, 0.469872, 0.364022, 0.057027, 4.000000, 1.000000, 0.000000, 0.000000, 23.419350, -4.789264, 51.707508, -0.428982, -0.771489, 0.469872, 0.508693, 0.235572, 4.000000, 1.000000, 0.000000, 0.000000, 26.703583, -10.093825, 45.996281, -0.428982, -0.771489, 0.469872, 0.355915, 0.089939, 4.000000, 1.000000, 0.000000, 0.000000, 26.703583, -10.093825, 45.996281, -0.887042, -0.055754, -0.458310, 0.355915, 0.089939, 4.000000, 1.000000, 0.000000, 0.000000, 23.419350, -4.789264, 51.707508, -0.887042, -0.055754, -0.458310, 0.508693, 0.235572, 4.000000, 1.000000, 0.000000, 0.000000, 26.534973, -8.122880, 46.082848, -0.887042, -0.055754, -0.458310, 0.488699, 0.106466, 4.000000, 1.000000, 0.000000, 0.000000, 17.460365, 32.927814, 62.917564, 0.577971, 0.227961, 0.783571, 0.588486, 0.118697, 5.000000, 1.000000, 0.000000, 0.000000, 16.841507, 27.497791, 64.953773, 0.577971, 0.227961, 0.783571, 0.513632, 0.225386, 5.000000, 1.000000, 0.000000, 0.000000, 18.810143, 32.094006, 62.164539, 0.577971, 0.227961, 0.783571, 0.502922, 0.115809, 5.000000, 1.000000, 0.000000, 0.000000, 16.841507, 27.497791, 64.953773, -0.993858, 0.088210, -0.066827, 0.513632, 0.225386, 5.000000, 1.000000, 0.000000, 0.000000, 17.460365, 32.927814, 62.917564, -0.993858, 0.088210, -0.066827, 0.588486, 0.118697, 5.000000, 1.000000, 0.000000, 0.000000, 17.478725, 32.388824, 61.933060, -0.993858, 0.088210, -0.066827, 0.573063, 0.130913, 5.000000, 1.000000, 0.000000, 0.000000, 17.460365, 32.927814, 62.917564, 0.624910, 0.413661, 0.662096, 0.588486, 0.118697, 5.000000, 1.000000, 0.000000, 0.000000, 18.810143, 32.094006, 62.164539, 0.624910, 0.413661, 0.662096, 0.502922, 0.115809, 5.000000, 1.000000, 0.000000, 0.000000, 19.937237, 35.443581, 59.008015, 0.624910, 0.413661, 0.662096, 0.506183, 0.012337, 5.000000, 1.000000, 0.000000, 0.000000, 20.493969, 31.550346, 61.822903, 0.769413, -0.298336, -0.564800, 0.409360, 0.100134, 5.000000, 1.000000, 0.000000, 0.000000, 19.905617, 31.128330, 61.244320, 0.769413, -0.298336, -0.564800, 0.427318, 0.120501, 5.000000, 1.000000, 0.000000, 0.000000, 19.937237, 35.443581, 59.008015, 0.769413, -0.298336, -0.564800, 0.506183, 0.012337, 5.000000, 1.000000, 0.000000, 0.000000, 19.905617, 31.128330, 61.244320, 0.671622, -0.724621, -0.154426, 0.427318, 0.120501, 5.000000, 1.000000, 0.000000, 0.000000, 20.493969, 31.550346, 61.822903, 0.671622, -0.724621, -0.154426, 0.409360, 0.100134, 5.000000, 1.000000, 0.000000, 0.000000, 16.841507, 27.497791, 64.953773, 0.671622, -0.724621, -0.154426, 0.513632, 0.225386, 5.000000, 1.000000, 0.000000, 0.000000, 17.478725, 32.388824, 61.933060, -0.858329, 0.443153, -0.258623, 0.573063, 0.130913, 5.000000, 1.000000, 0.000000, 0.000000, 17.460365, 32.927814, 62.917564, -0.858329, 0.443153, -0.258623, 0.588486, 0.118697, 5.000000, 1.000000, 0.000000, 0.000000, 19.937237, 35.443581, 59.008015, -0.858329, 0.443153, -0.258623, 0.506183, 0.012337, 5.000000, 1.000000, 0.000000, 0.000000, 18.810143, 32.094006, 62.164539, 0.338079, 0.582686, 0.739039, 0.502922, 0.115809, 5.000000, 1.000000, 0.000000, 0.000000, 20.493969, 31.550346, 61.822903, 0.338079, 0.582686, 0.739039, 0.409360, 0.100134, 5.000000, 1.000000, 0.000000, 0.000000, 19.937237, 35.443581, 59.008015, 0.338079, 0.582686, 0.739039, 0.506183, 0.012337, 5.000000, 1.000000, 0.000000, 0.000000, 19.937237, 35.443581, 59.008015, -0.331750, -0.499373, -0.800355, 0.506183, 0.012337, 5.000000, 1.000000, 0.000000, 0.000000, 18.595573, 31.998127, 61.713898, -0.331750, -0.499373, -0.800355, 0.510843, 0.121408, 5.000000, 1.000000, 0.000000, 0.000000, 17.478725, 32.388824, 61.933060, -0.331750, -0.499373, -0.800355, 0.573063, 0.130913, 5.000000, 1.000000, 0.000000, 0.000000, 17.478725, 32.388824, 61.933060, -0.324554, -0.466053, -0.823079, 0.573063, 0.130913, 5.000000, 1.000000, 0.000000, 0.000000, 18.595573, 31.998127, 61.713898, -0.324554, -0.466053, -0.823079, 0.510843, 0.121408, 5.000000, 1.000000, 0.000000, 0.000000, 16.841507, 27.497791, 64.953773, -0.324554, -0.466053, -0.823079, 0.513632, 0.225386, 5.000000, 1.000000, 0.000000, 0.000000, 18.595573, 31.998127, 61.713898, -0.516671, -0.358401, -0.777560, 0.510843, 0.121408, 5.000000, 1.000000, 0.000000, 0.000000, 19.905617, 31.128330, 61.244320, -0.516671, -0.358401, -0.777560, 0.427318, 0.120501, 5.000000, 1.000000, 0.000000, 0.000000, 16.841507, 27.497791, 64.953773, -0.516671, -0.358401, -0.777560, 0.513632, 0.225386, 5.000000, 1.000000, 0.000000, 0.000000, 19.905617, 31.128330, 61.244320, -0.528175, -0.387648, -0.755487, 0.427318, 0.120501, 5.000000, 1.000000, 0.000000, 0.000000, 18.595573, 31.998127, 61.713898, -0.528175, -0.387648, -0.755487, 0.510843, 0.121408, 5.000000, 1.000000, 0.000000, 0.000000, 19.937237, 35.443581, 59.008015, -0.528175, -0.387648, -0.755487, 0.506183, 0.012337, 5.000000, 1.000000, 0.000000, 0.000000, 18.810143, 32.094006, 62.164539, 0.303651, 0.395871, 0.866650, 0.502922, 0.115809, 5.000000, 1.000000, 0.000000, 0.000000, 16.841507, 27.497791, 64.953773, 0.303651, 0.395871, 0.866650, 0.513632, 0.225386, 5.000000, 1.000000, 0.000000, 0.000000, 20.493969, 31.550346, 61.822903, 0.303651, 0.395871, 0.866650, 0.409360, 0.100134, 5.000000, 1.000000, 0.000000, 0.000000, 5.232845, 9.172714, 63.650463, 0.718265, 0.531102, 0.449473, 0.522043, 0.810146, 6.000000, 1.000000, 0.000000, 0.000000, 0.584243, 12.190988, 67.512604, 0.718265, 0.531102, 0.449473, 0.779570, 0.843901, 6.000000, 1.000000, 0.000000, 0.000000, 5.077756, 7.774758, 65.468918, 0.718265, 0.531102, 0.449473, 0.495160, 0.856527, 6.000000, 1.000000, 0.000000, 0.000000, 0.297916, 13.671979, 66.138985, 0.718265, 0.531102, 0.449473, 0.824215, 0.807817, 6.000000, 1.000000, 0.000000, 0.000000, 11.194009, 7.573499, 64.500954, 0.105528, 0.744156, 0.659618, 0.258109, 0.840392, 6.000000, 1.000000, 0.000000, 0.000000, 5.232845, 9.172714, 63.650463, 0.105528, 0.744156, 0.659618, 0.522043, 0.810146, 6.000000, 1.000000, 0.000000, 0.000000, 5.077756, 7.774758, 65.468918, 0.105528, 0.744156, 0.659618, 0.495160, 0.856527, 6.000000, 1.000000, 0.000000, 0.000000, 11.263618, 9.057257, 63.032425, 0.105528, 0.744156, 0.659618, 0.262379, 0.788264, 6.000000, 1.000000, 0.000000, 0.000000, 0.297916, 13.671979, 66.138985, -0.019866, 0.467126, -0.883968, 0.824215, 0.807817, 6.000000, 1.000000, 0.000000, 0.000000, 5.232845, 9.172714, 63.650463, -0.019866, 0.467126, -0.883968, 0.522043, 0.810146, 6.000000, 1.000000, 0.000000, 0.000000, 0.311420, -0.117161, 58.851913, -0.019866, 0.467126, -0.883968, 0.500831, 0.984723, 6.000000, 1.000000, 0.000000, 0.000000, 0.297916, 13.671979, 66.138985, -0.988952, -0.070016, 0.130656, 0.824215, 0.807817, 6.000000, 1.000000, 0.000000, 0.000000, 0.311420, -0.117161, 58.851913, -0.988952, -0.070016, 0.130656, 0.500831, 0.984723, 6.000000, 1.000000, 0.000000, 0.000000, 0.584243, 12.190988, 67.512604, -0.988952, -0.070016, 0.130656, 0.779570, 0.843901, 6.000000, 1.000000, 0.000000, 0.000000, 0.584243, 12.190988, 67.512604, -0.186609, -0.562588, 0.805401, 0.779570, 0.843901, 6.000000, 1.000000, 0.000000, 0.000000, 0.311420, -0.117161, 58.851913, -0.186609, -0.562588, 0.805401, 0.500831, 0.984723, 6.000000, 1.000000, 0.000000, 0.000000, 5.077756, 7.774758, 65.468918, -0.186609, -0.562588, 0.805401, 0.495160, 0.856527, 6.000000, 1.000000, 0.000000, 0.000000, 5.077756, 7.774758, 65.468918, 0.094067, -0.672396, 0.734190, 0.495160, 0.856527, 6.000000, 1.000000, 0.000000, 0.000000, 0.311420, -0.117161, 58.851913, 0.094067, -0.672396, 0.734190, 0.500831, 0.984723, 6.000000, 1.000000, 0.000000, 0.000000, 11.194009, 7.573499, 64.500954, 0.094067, -0.672396, 0.734190, 0.258109, 0.840392, 6.000000, 1.000000, 0.000000, 0.000000, 11.194009, 7.573499, 64.500954, 0.656227, -0.546126, -0.520684, 0.258109, 0.840392, 6.000000, 1.000000, 0.000000, 0.000000, 0.311420, -0.117161, 58.851913, 0.656227, -0.546126, -0.520684, 0.500831, 0.984723, 6.000000, 1.000000, 0.000000, 0.000000, 11.263618, 9.057257, 63.032425, 0.656227, -0.546126, -0.520684, 0.262379, 0.788264, 6.000000, 1.000000, 0.000000, 0.000000, 11.263618, 9.057257, 63.032425, -0.079551, 0.490417, -0.867850, 0.262379, 0.788264, 6.000000, 1.000000, 0.000000, 0.000000, 0.311420, -0.117161, 58.851913, -0.079551, 0.490417, -0.867850, 0.500831, 0.984723, 6.000000, 1.000000, 0.000000, 0.000000, 5.232845, 9.172714, 63.650463, -0.079551, 0.490417, -0.867850, 0.522043, 0.810146, 6.000000, 1.000000, 0.000000, 0.000000, 9.922668, 16.811310, 68.362305, 0.684373, 0.659538, 0.310875, 0.506373, 0.639568, 7.000000, 1.000000, 0.000000, 0.000000, 9.858316, 17.897455, 65.973808, 0.684373, 0.659538, 0.310875, 0.514969, 0.590841, 7.000000, 1.000000, 0.000000, 0.000000, 4.799379, 22.221598, 68.162720, 0.684373, 0.659538, 0.310875, 0.869732, 0.592088, 7.000000, 1.000000, 0.000000, 0.000000, 5.108080, 20.627426, 70.639404, 0.684373, 0.659538, 0.310875, 0.855442, 0.631617, 7.000000, 1.000000, 0.000000, 0.000000, 16.797058, 14.500792, 68.045860, 0.282339, 0.849103, 0.446439, 0.201203, 0.630440, 7.000000, 1.000000, 0.000000, 0.000000, 9.858316, 17.897455, 65.973808, 0.282339, 0.849103, 0.446439, 0.514969, 0.590841, 7.000000, 1.000000, 0.000000, 0.000000, 9.922668, 16.811310, 68.362305, 0.282339, 0.849103, 0.446439, 0.506373, 0.639568, 7.000000, 1.000000, 0.000000, 0.000000, 16.770622, 16.125168, 65.336517, 0.282339, 0.849103, 0.446439, 0.218388, 0.576381, 7.000000, 1.000000, 0.000000, 0.000000, 4.799379, 22.221598, 68.162720, -0.175759, 0.273137, -0.945783, 0.869732, 0.592088, 7.000000, 1.000000, 0.000000, 0.000000, 9.858316, 17.897455, 65.973808, -0.175759, 0.273137, -0.945783, 0.514969, 0.590841, 7.000000, 1.000000, 0.000000, 0.000000, 3.869637, 6.750414, 63.867508, -0.175759, 0.273137, -0.945783, 0.507511, 0.828211, 7.000000, 1.000000, 0.000000, 0.000000, 4.799379, 22.221598, 68.162720, -0.990309, 0.021417, 0.137220, 0.869732, 0.592088, 7.000000, 1.000000, 0.000000, 0.000000, 3.869637, 6.750414, 63.867508, -0.990309, 0.021417, 0.137220, 0.507511, 0.828211, 7.000000, 1.000000, 0.000000, 0.000000, 5.108080, 20.627426, 70.639404, -0.990309, 0.021417, 0.137220, 0.855442, 0.631617, 7.000000, 1.000000, 0.000000, 0.000000, 5.108080, 20.627426, 70.639404, 0.071931, -0.442602, 0.893828, 0.855442, 0.631617, 7.000000, 1.000000, 0.000000, 0.000000, 3.869637, 6.750414, 63.867508, 0.071931, -0.442602, 0.893828, 0.507511, 0.828211, 7.000000, 1.000000, 0.000000, 0.000000, 9.922668, 16.811310, 68.362305, 0.071931, -0.442602, 0.893828, 0.506373, 0.639568, 7.000000, 1.000000, 0.000000, 0.000000, 9.922668, 16.811310, 68.362305, -0.080304, -0.365911, 0.927179, 0.506373, 0.639568, 7.000000, 1.000000, 0.000000, 0.000000, 3.869637, 6.750414, 63.867508, -0.080304, -0.365911, 0.927179, 0.507511, 0.828211, 7.000000, 1.000000, 0.000000, 0.000000, 16.797058, 14.500792, 68.045860, -0.080304, -0.365911, 0.927179, 0.201203, 0.630440, 7.000000, 1.000000, 0.000000, 0.000000, 16.797058, 14.500792, 68.045860, 0.562426, -0.706726, -0.429203, 0.201203, 0.630440, 7.000000, 1.000000, 0.000000, 0.000000, 3.869637, 6.750414, 63.867508, 0.562426, -0.706726, -0.429203, 0.507511, 0.828211, 7.000000, 1.000000, 0.000000, 0.000000, 16.770622, 16.125168, 65.336517, 0.562426, -0.706726, -0.429203, 0.218388, 0.576381, 7.000000, 1.000000, 0.000000, 0.000000, 16.770622, 16.125168, 65.336517, -0.037607, 0.205011, -0.978037, 0.218388, 0.576381, 7.000000, 1.000000, 0.000000, 0.000000, 3.869637, 6.750414, 63.867508, -0.037607, 0.205011, -0.978037, 0.507511, 0.828211, 7.000000, 1.000000, 0.000000, 0.000000, 9.858316, 17.897455, 65.973808, -0.037607, 0.205011, -0.978037, 0.514969, 0.590841, 7.000000, 1.000000, 0.000000, 0.000000, 14.346985, 24.418354, 67.162056, 0.725117, 0.687371, -0.041537, 0.502873, 0.395151, 8.000000, 1.000000, 0.000000, 0.000000, 10.035475, 28.917551, 66.350174, 0.725117, 0.687371, -0.041537, 0.821535, 0.351606, 8.000000, 1.000000, 0.000000, 0.000000, 10.422920, 28.608490, 68.492867, 0.725117, 0.687371, -0.041537, 0.801005, 0.361745, 8.000000, 1.000000, 0.000000, 0.000000, 14.284961, 24.338720, 65.254967, 0.725117, 0.687371, -0.041537, 0.505469, 0.389493, 8.000000, 1.000000, 0.000000, 0.000000, 18.892815, 22.762550, 67.017738, 0.316296, 0.948423, 0.021234, 0.243749, 0.362352, 8.000000, 1.000000, 0.000000, 0.000000, 14.284961, 24.338720, 65.254967, 0.316296, 0.948423, 0.021234, 0.505469, 0.389493, 8.000000, 1.000000, 0.000000, 0.000000, 14.346985, 24.418354, 67.162056, 0.316296, 0.948423, 0.021234, 0.502873, 0.395151, 8.000000, 1.000000, 0.000000, 0.000000, 18.670532, 23.032116, 64.676369, 0.316296, 0.948423, 0.021234, 0.270286, 0.349805, 8.000000, 1.000000, 0.000000, 0.000000, 10.035475, 28.917551, 66.350174, -0.317984, -0.068937, -0.945586, 0.821535, 0.351606, 8.000000, 1.000000, 0.000000, 0.000000, 14.284961, 24.338720, 65.254967, -0.317984, -0.068937, -0.945586, 0.505469, 0.389493, 8.000000, 1.000000, 0.000000, 0.000000, 8.857051, 16.547382, 67.648293, -0.317984, -0.068937, -0.945586, 0.516205, 0.622516, 8.000000, 1.000000, 0.000000, 0.000000, 10.035475, 28.917551, 66.350174, -0.974749, 0.113066, 0.192565, 0.821535, 0.351606, 8.000000, 1.000000, 0.000000, 0.000000, 8.857051, 16.547382, 67.648293, -0.974749, 0.113066, 0.192565, 0.516205, 0.622516, 8.000000, 1.000000, 0.000000, 0.000000, 10.422920, 28.608490, 68.492867, -0.974749, 0.113066, 0.192565, 0.801005, 0.361745, 8.000000, 1.000000, 0.000000, 0.000000, 10.422920, 28.608490, 68.492867, 0.225096, -0.097111, 0.969485, 0.801005, 0.361745, 8.000000, 1.000000, 0.000000, 0.000000, 8.857051, 16.547382, 67.648293, 0.225096, -0.097111, 0.969485, 0.516205, 0.622516, 8.000000, 1.000000, 0.000000, 0.000000, 14.346985, 24.418354, 67.162056, 0.225096, -0.097111, 0.969485, 0.502873, 0.395151, 8.000000, 1.000000, 0.000000, 0.000000, 14.346985, 24.418354, 67.162056, 0.043196, 0.031558, 0.998568, 0.502873, 0.395151, 8.000000, 1.000000, 0.000000, 0.000000, 8.857051, 16.547382, 67.648293, 0.043196, 0.031558, 0.998568, 0.516205, 0.622516, 8.000000, 1.000000, 0.000000, 0.000000, 18.892815, 22.762550, 67.017738, 0.043196, 0.031558, 0.998568, 0.243749, 0.362352, 8.000000, 1.000000, 0.000000, 0.000000, 18.892815, 22.762550, 67.017738, 0.514208, -0.845127, -0.146118, 0.243749, 0.362352, 8.000000, 1.000000, 0.000000, 0.000000, 8.857051, 16.547382, 67.648293, 0.514208, -0.845127, -0.146118, 0.516205, 0.622516, 8.000000, 1.000000, 0.000000, 0.000000, 18.670532, 23.032116, 64.676369, 0.514208, -0.845127, -0.146118, 0.270286, 0.349805, 8.000000, 1.000000, 0.000000, 0.000000, 18.670532, 23.032116, 64.676369, -0.179223, -0.172657, -0.968539, 0.270286, 0.349805, 8.000000, 1.000000, 0.000000, 0.000000, 8.857051, 16.547382, 67.648293, -0.179223, -0.172657, -0.968539, 0.516205, 0.622516, 8.000000, 1.000000, 0.000000, 0.000000, 14.284961, 24.338720, 65.254967, -0.179223, -0.172657, -0.968539, 0.505469, 0.389493, 8.000000, 1.000000, 0.000000, 0.000000, 17.528423, 28.453564, 63.137985, 0.670779, 0.701865, -0.239667, 0.501453, 0.226205, 9.000000, 1.000000, 0.000000, 0.000000, 15.450564, 31.051624, 64.930939, 0.670779, 0.701865, -0.239667, 0.631485, 0.205288, 9.000000, 1.000000, 0.000000, 0.000000, 17.688663, 28.862041, 64.646049, 0.670779, 0.701865, -0.239667, 0.499987, 0.219735, 9.000000, 1.000000, 0.000000, 0.000000, 14.971291, 30.955544, 63.171528, 0.670779, 0.701865, -0.239667, 0.649807, 0.211634, 9.000000, 1.000000, 0.000000, 0.000000, 17.688663, 28.862041, 64.646049, 0.176118, 0.965466, -0.191986, 0.499987, 0.219735, 9.000000, 1.000000, 0.000000, 0.000000, 19.939102, 28.313244, 64.643768, 0.176118, 0.965466, -0.191986, 0.344156, 0.197990, 9.000000, 1.000000, 0.000000, 0.000000, 19.605209, 28.132072, 62.733280, 0.176118, 0.965466, -0.191986, 0.360801, 0.203899, 9.000000, 1.000000, 0.000000, 0.000000, 17.528423, 28.453564, 63.137985, 0.176118, 0.965466, -0.191986, 0.501453, 0.226205, 9.000000, 1.000000, 0.000000, 0.000000, 14.971291, 30.955544, 63.171528, -0.313008, -0.307860, -0.898470, 0.649807, 0.211634, 9.000000, 1.000000, 0.000000, 0.000000, 17.528423, 28.453564, 63.137985, -0.313008, -0.307860, -0.898470, 0.501453, 0.226205, 9.000000, 1.000000, 0.000000, 0.000000, 12.997569, 23.156515, 66.531456, -0.313008, -0.307860, -0.898470, 0.501631, 0.427338, 9.000000, 1.000000, 0.000000, 0.000000, 14.971291, 30.955544, 63.171528, -0.914852, 0.331097, 0.231130, 0.649807, 0.211634, 9.000000, 1.000000, 0.000000, 0.000000, 12.997569, 23.156515, 66.531456, -0.914852, 0.331097, 0.231130, 0.501631, 0.427338, 9.000000, 1.000000, 0.000000, 0.000000, 15.450564, 31.051624, 64.930939, -0.914852, 0.331097, 0.231130, 0.631485, 0.205288, 9.000000, 1.000000, 0.000000, 0.000000, 15.450564, 31.051624, 64.930939, 0.240510, 0.120524, 0.963135, 0.631485, 0.205288, 9.000000, 1.000000, 0.000000, 0.000000, 12.997569, 23.156515, 66.531456, 0.240510, 0.120524, 0.963135, 0.501631, 0.427338, 9.000000, 1.000000, 0.000000, 0.000000, 17.688663, 28.862041, 64.646049, 0.240510, 0.120524, 0.963135, 0.499987, 0.219735, 9.000000, 1.000000, 0.000000, 0.000000, 17.688663, 28.862041, 64.646049, 0.065405, 0.264202, 0.962247, 0.499987, 0.219735, 9.000000, 1.000000, 0.000000, 0.000000, 12.997569, 23.156515, 66.531456, 0.065405, 0.264202, 0.962247, 0.501631, 0.427338, 9.000000, 1.000000, 0.000000, 0.000000, 19.939102, 28.313244, 64.643768, 0.065405, 0.264202, 0.962247, 0.344156, 0.197990, 9.000000, 1.000000, 0.000000, 0.000000, 19.939102, 28.313244, 64.643768, 0.591390, -0.805936, -0.026930, 0.344156, 0.197990, 9.000000, 1.000000, 0.000000, 0.000000, 12.997569, 23.156515, 66.531456, 0.591390, -0.805936, -0.026930, 0.501631, 0.427338, 9.000000, 1.000000, 0.000000, 0.000000, 19.605209, 28.132072, 62.733280, 0.591390, -0.805936, -0.026930, 0.360801, 0.203899, 9.000000, 1.000000, 0.000000, 0.000000, 19.605209, 28.132072, 62.733280, -0.232937, -0.375461, -0.897089, 0.360801, 0.203899, 9.000000, 1.000000, 0.000000, 0.000000, 12.997569, 23.156515, 66.531456, -0.232937, -0.375461, -0.897089, 0.501631, 0.427338, 9.000000, 1.000000, 0.000000, 0.000000, 17.528423, 28.453564, 63.137985, -0.232937, -0.375461, -0.897089, 0.501453, 0.226205, 9.000000, 1.000000, 0.000000, 0.000000, -27.035938, -17.570440, 65.253693, -0.404665, -0.087656, 0.910254, 0.587383, 0.047594, 0.000000, 1.000000, 0.000000, 0.000000, -23.583351, -14.198200, 67.113350, -0.404665, -0.087656, 0.910254, 0.502489, 0.148724, 1.000000, 0.905086, 0.000000, 0.094914, -27.759468, -16.215469, 65.062515, -0.404665, -0.087656, 0.910254, 0.500805, 0.052577, 0.000000, 1.000000, 0.000000, 0.000000, -23.583351, -14.198200, 67.113350, 0.742339, -0.545431, -0.389150, 0.502489, 0.148724, 1.000000, 0.905086, 0.000000, 0.094914, -27.035938, -17.570440, 65.253693, 0.742339, -0.545431, -0.389150, 0.587383, 0.047594, 0.000000, 1.000000, 0.000000, 0.000000, -27.001362, -16.965387, 64.471611, 0.742339, -0.545431, -0.389150, 0.563687, 0.069338, 0.000000, 1.000000, 0.000000, 0.000000, -27.035938, -17.570440, 65.253693, -0.568362, -0.190563, 0.800406, 0.587383, 0.047594, 0.000000, 1.000000, 0.000000, 0.000000, -27.759468, -16.215469, 65.062515, -0.568362, -0.190563, 0.800406, 0.500805, 0.052577, 0.000000, 1.000000, 0.000000, 0.000000, -30.821674, -17.569145, 62.565781, -0.568362, -0.190563, 0.800406, 0.501485, 0.006321, 0.000000, 1.000000, 0.000000, 0.000000, -28.771408, -15.012947, 65.292236, -0.595916, 0.758694, -0.263186, 0.410117, 0.041820, 0.000000, 1.000000, 0.000000, 0.000000, -28.274815, -14.839731, 64.667160, -0.595916, 0.758694, -0.263186, 0.421681, 0.065901, 0.000000, 1.000000, 0.000000, 0.000000, -30.821674, -17.569145, 62.565781, -0.595916, 0.758694, -0.263186, 0.501485, 0.006321, 0.000000, 1.000000, 0.000000, 0.000000, -28.274815, -14.839731, 64.667160, -0.193720, 0.974169, 0.116052, 0.421681, 0.065901, 0.000000, 1.000000, 0.000000, 0.000000, -28.771408, -15.012947, 65.292236, -0.193720, 0.974169, 0.116052, 0.410117, 0.041820, 0.000000, 1.000000, 0.000000, 0.000000, -23.583351, -14.198200, 67.113350, -0.193720, 0.974169, 0.116052, 0.502489, 0.148724, 1.000000, 0.905086, 0.000000, 0.094914, -27.001362, -16.965387, 64.471611, 0.391744, -0.736017, -0.552100, 0.563687, 0.069338, 0.000000, 1.000000, 0.000000, 0.000000, -27.035938, -17.570440, 65.253693, 0.391744, -0.736017, -0.552100, 0.587383, 0.047594, 0.000000, 1.000000, 0.000000, 0.000000, -30.821674, -17.569145, 62.565781, 0.391744, -0.736017, -0.552100, 0.501485, 0.006321, 0.000000, 1.000000, 0.000000, 0.000000, -27.759468, -16.215469, 65.062515, -0.409478, -0.491422, 0.768656, 0.500805, 0.052577, 0.000000, 1.000000, 0.000000, 0.000000, -28.771408, -15.012947, 65.292236, -0.409478, -0.491422, 0.768656, 0.410117, 0.041820, 0.000000, 1.000000, 0.000000, 0.000000, -30.821674, -17.569145, 62.565781, -0.409478, -0.491422, 0.768656, 0.501485, 0.006321, 0.000000, 1.000000, 0.000000, 0.000000, -30.821674, -17.569145, 62.565781, 0.344716, 0.438603, -0.829939, 0.501485, 0.006321, 0.000000, 1.000000, 0.000000, 0.000000, -27.656689, -16.146996, 64.631920, 0.344716, 0.438603, -0.829939, 0.503820, 0.062860, 0.000000, 1.000000, 0.000000, 0.000000, -27.001362, -16.965387, 64.471611, 0.344716, 0.438603, -0.829939, 0.563687, 0.069338, 0.000000, 1.000000, 0.000000, 0.000000, -27.001362, -16.965387, 64.471611, 0.316886, 0.420295, -0.850256, 0.563687, 0.069338, 0.000000, 1.000000, 0.000000, 0.000000, -27.656689, -16.146996, 64.631920, 0.316886, 0.420295, -0.850256, 0.503820, 0.062860, 0.000000, 1.000000, 0.000000, 0.000000, -23.583351, -14.198200, 67.113350, 0.316886, 0.420295, -0.850256, 0.502489, 0.148724, 1.000000, 0.905086, 0.000000, 0.094914, -27.656689, -16.146996, 64.631920, 0.426098, 0.225096, -0.876226, 0.503820, 0.062860, 0.000000, 1.000000, 0.000000, 0.000000, -28.274815, -14.839731, 64.667160, 0.426098, 0.225096, -0.876226, 0.421681, 0.065901, 0.000000, 1.000000, 0.000000, 0.000000, -23.583351, -14.198200, 67.113350, 0.426098, 0.225096, -0.876226, 0.502489, 0.148724, 1.000000, 0.905086, 0.000000, 0.094914, -28.274815, -14.839731, 64.667160, 0.453811, 0.237730, -0.858802, 0.421681, 0.065901, 0.000000, 1.000000, 0.000000, 0.000000, -27.656689, -16.146996, 64.631920, 0.453811, 0.237730, -0.858802, 0.503820, 0.062860, 0.000000, 1.000000, 0.000000, 0.000000, -30.821674, -17.569145, 62.565781, 0.453811, 0.237730, -0.858802, 0.501485, 0.006321, 0.000000, 1.000000, 0.000000, 0.000000, -27.759468, -16.215469, 65.062515, -0.252109, -0.382001, 0.889110, 0.500805, 0.052577, 0.000000, 1.000000, 0.000000, 0.000000, -23.583351, -14.198200, 67.113350, -0.252109, -0.382001, 0.889110, 0.502489, 0.148724, 1.000000, 0.905086, 0.000000, 0.094914, -28.771408, -15.012947, 65.292236, -0.252109, -0.382001, 0.889110, 0.410117, 0.041820, 0.000000, 1.000000, 0.000000, 0.000000, -6.908089, -5.366500, 63.764595, -0.727406, -0.234813, 0.644781, 0.504412, 0.719658, 2.000000, 1.000000, 0.000000, 0.000000, -3.181688, -11.573628, 65.708031, -0.727406, -0.234813, 0.644781, 0.958199, 0.720202, 2.000000, 1.000000, 0.000000, 0.000000, -5.732576, -4.803636, 65.302483, -0.727406, -0.234813, 0.644781, 0.514511, 0.750456, 2.000000, 1.000000, 0.000000, 0.000000, -4.289087, -12.775501, 64.027794, -0.727406, -0.234813, 0.644781, 0.982457, 0.679474, 2.000000, 1.000000, 0.000000, 0.000000, -11.078429, -0.170952, 66.590996, -0.390747, -0.661733, 0.639864, 0.099720, 0.687030, 2.000000, 1.000000, 0.000000, 0.000000, -6.908089, -5.366500, 63.764595, -0.390747, -0.661733, 0.639864, 0.504412, 0.719658, 2.000000, 1.000000, 0.000000, 0.000000, -5.732576, -4.803636, 65.302483, -0.390747, -0.661733, 0.639864, 0.514511, 0.750456, 2.000000, 1.000000, 0.000000, 0.000000, -12.452875, -1.293007, 64.829178, -0.390747, -0.661733, 0.639864, 0.147101, 0.641727, 2.000000, 1.000000, 0.000000, 0.000000, -4.289087, -12.775501, 64.027794, -0.456027, -0.192071, -0.868993, 0.982457, 0.679474, 2.000000, 1.000000, 0.000000, 0.000000, -6.908089, -5.366500, 63.764595, -0.456027, -0.192071, -0.868993, 0.504412, 0.719658, 2.000000, 1.000000, 0.000000, 0.000000, 0.155936, 0.072871, 58.855320, -0.456027, -0.192071, -0.868993, 0.497189, 0.976739, 2.000000, 1.000000, 0.000000, 0.000000, -4.289087, -12.775501, 64.027794, 0.867961, -0.411949, -0.277384, 0.982457, 0.679474, 2.000000, 1.000000, 0.000000, 0.000000, 0.155936, 0.072871, 58.855320, 0.867961, -0.411949, -0.277384, 0.497189, 0.976739, 2.000000, 1.000000, 0.000000, 0.000000, -3.181688, -11.573628, 65.708031, 0.867961, -0.411949, -0.277384, 0.958199, 0.720202, 2.000000, 1.000000, 0.000000, 0.000000, -3.181688, -11.573628, 65.708031, 0.599773, 0.271089, 0.752850, 0.958199, 0.720202, 2.000000, 1.000000, 0.000000, 0.000000, 0.155936, 0.072871, 58.855320, 0.599773, 0.271089, 0.752850, 0.497189, 0.976739, 2.000000, 1.000000, 0.000000, 0.000000, -5.732576, -4.803636, 65.302483, 0.599773, 0.271089, 0.752850, 0.514511, 0.750456, 2.000000, 1.000000, 0.000000, 0.000000, -5.732576, -4.803636, 65.302483, 0.517745, 0.384940, 0.764043, 0.514511, 0.750456, 2.000000, 1.000000, 0.000000, 0.000000, 0.155936, 0.072871, 58.855320, 0.517745, 0.384940, 0.764043, 0.497189, 0.976739, 2.000000, 1.000000, 0.000000, 0.000000, -11.078429, -0.170952, 66.590996, 0.517745, 0.384940, 0.764043, 0.099720, 0.687030, 2.000000, 1.000000, 0.000000, 0.000000, -11.078429, -0.170952, 66.590996, -0.267550, 0.893608, -0.360392, 0.099720, 0.687030, 2.000000, 1.000000, 0.000000, 0.000000, 0.155936, 0.072871, 58.855320, -0.267550, 0.893608, -0.360392, 0.497189, 0.976739, 2.000000, 1.000000, 0.000000, 0.000000, -12.452875, -1.293007, 64.829178, -0.267550, 0.893608, -0.360392, 0.147101, 0.641727, 2.000000, 1.000000, 0.000000, 0.000000, -12.452875, -1.293007, 64.829178, -0.383304, -0.292817, -0.875977, 0.147101, 0.641727, 2.000000, 1.000000, 0.000000, 0.000000, 0.155936, 0.072871, 58.855320, -0.383304, -0.292817, -0.875977, 0.497189, 0.976739, 2.000000, 1.000000, 0.000000, 0.000000, -6.908089, -5.366500, 63.764595, -0.383304, -0.292817, -0.875977, 0.504412, 0.719658, 2.000000, 1.000000, 0.000000, 0.000000, -14.096881, -9.868227, 66.763664, -0.817790, -0.309723, 0.485067, 0.512161, 0.450689, 3.000000, 1.000000, 0.000000, 0.000000, -10.767291, -15.387712, 68.852852, -0.817790, -0.309723, 0.485067, 0.925066, 0.439433, 3.000000, 1.000000, 0.000000, 0.000000, -13.023705, -9.733191, 68.730705, -0.817790, -0.309723, 0.485067, 0.510912, 0.472544, 3.000000, 1.000000, 0.000000, 0.000000, -11.829906, -16.202747, 66.612457, -0.817790, -0.309723, 0.485067, 0.932014, 0.420468, 3.000000, 1.000000, 0.000000, 0.000000, -16.720821, -5.254642, 70.399338, -0.578336, -0.681864, 0.447873, 0.145138, 0.425384, 3.000000, 1.000000, 0.000000, 0.000000, -14.096881, -9.868227, 66.763664, -0.578336, -0.681864, 0.447873, 0.512161, 0.450689, 3.000000, 1.000000, 0.000000, 0.000000, -13.023705, -9.733191, 68.730705, -0.578336, -0.681864, 0.447873, 0.510912, 0.472544, 3.000000, 1.000000, 0.000000, 0.000000, -18.047771, -5.922734, 68.044395, -0.578336, -0.681864, 0.447873, 0.179148, 0.403020, 3.000000, 1.000000, 0.000000, 0.000000, -11.829906, -16.202747, 66.612457, -0.272067, -0.074465, -0.959393, 0.932014, 0.420468, 3.000000, 1.000000, 0.000000, 0.000000, -14.096881, -9.868227, 66.763664, -0.272067, -0.074465, -0.959393, 0.512161, 0.450689, 3.000000, 1.000000, 0.000000, 0.000000, -4.725222, -4.293661, 63.673347, -0.272067, -0.074465, -0.959393, 0.511799, 0.788389, 3.000000, 1.000000, 0.000000, 0.000000, -11.829906, -16.202747, 66.612457, 0.820736, -0.537449, -0.193754, 0.932014, 0.420468, 3.000000, 1.000000, 0.000000, 0.000000, -4.725222, -4.293661, 63.673347, 0.820736, -0.537449, -0.193754, 0.511799, 0.788389, 3.000000, 1.000000, 0.000000, 0.000000, -10.767291, -15.387712, 68.852852, 0.820736, -0.537449, -0.193754, 0.925066, 0.439433, 3.000000, 1.000000, 0.000000, 0.000000, -10.767291, -15.387712, 68.852852, 0.419246, 0.186491, 0.888512, 0.925066, 0.439433, 3.000000, 1.000000, 0.000000, 0.000000, -4.725222, -4.293661, 63.673347, 0.419246, 0.186491, 0.888512, 0.511799, 0.788389, 3.000000, 1.000000, 0.000000, 0.000000, -13.023705, -9.733191, 68.730705, 0.419246, 0.186491, 0.888512, 0.510912, 0.472544, 3.000000, 1.000000, 0.000000, 0.000000, -13.023705, -9.733191, 68.730705, 0.483225, 0.073879, 0.872373, 0.510912, 0.472544, 3.000000, 1.000000, 0.000000, 0.000000, -4.725222, -4.293661, 63.673347, 0.483225, 0.073879, 0.872373, 0.511799, 0.788389, 3.000000, 1.000000, 0.000000, 0.000000, -16.720821, -5.254642, 70.399338, 0.483225, 0.073879, 0.872373, 0.145138, 0.425384, 3.000000, 1.000000, 0.000000, 0.000000, -16.720821, -5.254642, 70.399338, -0.176049, 0.968594, -0.175589, 0.145138, 0.425384, 3.000000, 1.000000, 0.000000, 0.000000, -4.725222, -4.293661, 63.673347, -0.176049, 0.968594, -0.175589, 0.511799, 0.788389, 3.000000, 1.000000, 0.000000, 0.000000, -18.047771, -5.922734, 68.044395, -0.176049, 0.968594, -0.175589, 0.179148, 0.403020, 3.000000, 1.000000, 0.000000, 0.000000, -18.047771, -5.922734, 68.044395, -0.311374, -0.003333, -0.950282, 0.179148, 0.403020, 3.000000, 1.000000, 0.000000, 0.000000, -4.725222, -4.293661, 63.673347, -0.311374, -0.003333, -0.950282, 0.511799, 0.788389, 3.000000, 1.000000, 0.000000, 0.000000, -14.096881, -9.868227, 66.763664, -0.311374, -0.003333, -0.950282, 0.512161, 0.450689, 3.000000, 1.000000, 0.000000, 0.000000, -19.888485, -13.120079, 68.613960, -0.967088, -0.204684, 0.151145, 0.509246, 0.237055, 4.000000, 1.000000, 0.000000, 0.000000, -19.120735, -18.519083, 66.214920, -0.967088, -0.204684, 0.151145, 0.828157, 0.209081, 4.000000, 1.000000, 0.000000, 0.000000, -18.795708, -18.553457, 68.125580, -0.967088, -0.204684, 0.151145, 0.838437, 0.189518, 4.000000, 1.000000, 0.000000, 0.000000, -20.211788, -12.661311, 67.044144, -0.967088, -0.204684, 0.151145, 0.505370, 0.260684, 4.000000, 1.000000, 0.000000, 0.000000, -19.888485, -13.120079, 68.613960, -0.746776, -0.663698, 0.042782, 0.509246, 0.237055, 4.000000, 1.000000, 0.000000, 0.000000, -22.339767, -10.089949, 69.790207, -0.746776, -0.663698, 0.042782, 0.251676, 0.202876, 4.000000, 1.000000, 0.000000, 0.000000, -22.808884, -9.887461, 67.786476, -0.746776, -0.663698, 0.042782, 0.253564, 0.222811, 4.000000, 1.000000, 0.000000, 0.000000, -20.211788, -12.661311, 67.044144, -0.746776, -0.663698, 0.042782, 0.505370, 0.260684, 4.000000, 1.000000, 0.000000, 0.000000, -19.120735, -18.519083, 66.214920, 0.057884, 0.150488, -0.986916, 0.828157, 0.209081, 4.000000, 1.000000, 0.000000, 0.000000, -20.211788, -12.661311, 67.044144, 0.057884, 0.150488, -0.986916, 0.505370, 0.260684, 4.000000, 1.000000, 0.000000, 0.000000, -12.376906, -9.722403, 67.951790, 0.057884, 0.150488, -0.986916, 0.508279, 0.487738, 4.000000, 1.000000, 0.000000, 0.000000, -19.120735, -18.519083, 66.214920, 0.798813, -0.583497, -0.146386, 0.828157, 0.209081, 4.000000, 1.000000, 0.000000, 0.000000, -12.376906, -9.722403, 67.951790, 0.798813, -0.583497, -0.146386, 0.508279, 0.487738, 4.000000, 1.000000, 0.000000, 0.000000, -18.795708, -18.553457, 68.125580, 0.798813, -0.583497, -0.146386, 0.838437, 0.189518, 4.000000, 1.000000, 0.000000, 0.000000, -18.795708, -18.553457, 68.125580, 0.117002, -0.065541, 0.990967, 0.838437, 0.189518, 4.000000, 1.000000, 0.000000, 0.000000, -12.376906, -9.722403, 67.951790, 0.117002, -0.065541, 0.990967, 0.508279, 0.487738, 4.000000, 1.000000, 0.000000, 0.000000, -19.888485, -13.120079, 68.613960, 0.117002, -0.065541, 0.990967, 0.509246, 0.237055, 4.000000, 1.000000, 0.000000, 0.000000, -19.888485, -13.120079, 68.613960, 0.184850, -0.222088, 0.957344, 0.509246, 0.237055, 4.000000, 1.000000, 0.000000, 0.000000, -12.376906, -9.722403, 67.951790, 0.184850, -0.222088, 0.957344, 0.508279, 0.487738, 4.000000, 1.000000, 0.000000, 0.000000, -22.339767, -10.089949, 69.790207, 0.184850, -0.222088, 0.957344, 0.251676, 0.202876, 4.000000, 1.000000, 0.000000, 0.000000, -22.339767, -10.089949, 69.790207, -0.017390, 0.994367, 0.104558, 0.251676, 0.202876, 4.000000, 1.000000, 0.000000, 0.000000, -12.376906, -9.722403, 67.951790, -0.017390, 0.994367, 0.104558, 0.508279, 0.487738, 4.000000, 1.000000, 0.000000, 0.000000, -22.808884, -9.887461, 67.786476, -0.017390, 0.994367, 0.104558, 0.253564, 0.222811, 4.000000, 1.000000, 0.000000, 0.000000, -22.808884, -9.887461, 67.786476, 0.011023, 0.268123, -0.963322, 0.253564, 0.222811, 4.000000, 1.000000, 0.000000, 0.000000, -12.376906, -9.722403, 67.951790, 0.011023, 0.268123, -0.963322, 0.508279, 0.487738, 4.000000, 1.000000, 0.000000, 0.000000, -20.211788, -12.661311, 67.044144, 0.011023, 0.268123, -0.963322, 0.505370, 0.260684, 4.000000, 1.000000, 0.000000, 0.000000, -24.900028, -14.809280, 66.993881, -0.977493, -0.203818, -0.054453, 0.500160, 0.108011, 1.000000, 1.000000, 0.000000, 0.000000, -24.274021, -17.243259, 64.866737, -0.977493, -0.203818, -0.054453, 0.616367, 0.123356, 1.000000, 1.000000, 0.000000, 0.000000, -24.288033, -17.460386, 66.461426, -0.977493, -0.203818, -0.054453, 0.618613, 0.095268, 1.000000, 1.000000, 0.000000, 0.000000, -24.911274, -14.272742, 65.717949, -0.977493, -0.203818, -0.054453, 0.502869, 0.134458, 1.000000, 1.000000, 0.000000, 0.000000, -26.321823, -13.052693, 65.993462, -0.708431, -0.680346, -0.187763, 0.337536, 0.116506, 1.000000, 1.000000, 0.000000, 0.000000, -24.900028, -14.809280, 66.993881, -0.708431, -0.680346, -0.187763, 0.500160, 0.108011, 1.000000, 1.000000, 0.000000, 0.000000, -26.240833, -13.426279, 67.667290, -0.708431, -0.680346, -0.187763, 0.340621, 0.086227, 1.000000, 1.000000, 0.000000, 0.000000, -24.911274, -14.272742, 65.717949, -0.708431, -0.680346, -0.187763, 0.502869, 0.134458, 1.000000, 1.000000, 0.000000, 0.000000, -24.274021, -17.243259, 64.866737, 0.216747, 0.311606, -0.925161, 0.616367, 0.123356, 1.000000, 1.000000, 0.000000, 0.000000, -24.911274, -14.272742, 65.717949, 0.216747, 0.311606, -0.925161, 0.502869, 0.134458, 1.000000, 1.000000, 0.000000, 0.000000, -18.493877, -12.479353, 67.825447, 0.216747, 0.311606, -0.925161, 0.506132, 0.280374, 1.000000, 1.000000, 0.000000, 0.000000, -24.274021, -17.243259, 64.866737, 0.661737, -0.743637, -0.095437, 0.616367, 0.123356, 1.000000, 1.000000, 0.000000, 0.000000, -18.493877, -12.479353, 67.825447, 0.661737, -0.743637, -0.095437, 0.506132, 0.280374, 1.000000, 1.000000, 0.000000, 0.000000, -24.288033, -17.460386, 66.461426, 0.661737, -0.743637, -0.095437, 0.618613, 0.095268, 1.000000, 1.000000, 0.000000, 0.000000, -24.288033, -17.460386, 66.461426, -0.051146, -0.207989, 0.976793, 0.618613, 0.095268, 1.000000, 1.000000, 0.000000, 0.000000, -18.493877, -12.479353, 67.825447, -0.051146, -0.207989, 0.976793, 0.506132, 0.280374, 1.000000, 1.000000, 0.000000, 0.000000, -24.900028, -14.809280, 66.993881, -0.051146, -0.207989, 0.976793, 0.500160, 0.108011, 1.000000, 1.000000, 0.000000, 0.000000, -24.900028, -14.809280, 66.993881, 0.031826, -0.412447, 0.910426, 0.500160, 0.108011, 1.000000, 1.000000, 0.000000, 0.000000, -18.493877, -12.479353, 67.825447, 0.031826, -0.412447, 0.910426, 0.506132, 0.280374, 1.000000, 1.000000, 0.000000, 0.000000, -26.240833, -13.426279, 67.667290, 0.031826, -0.412447, 0.910426, 0.340621, 0.086227, 1.000000, 1.000000, 0.000000, 0.000000, -26.240833, -13.426279, 67.667290, -0.122767, 0.967324, 0.221839, 0.340621, 0.086227, 1.000000, 1.000000, 0.000000, 0.000000, -18.493877, -12.479353, 67.825447, -0.122767, 0.967324, 0.221839, 0.506132, 0.280374, 1.000000, 1.000000, 0.000000, 0.000000, -26.321823, -13.052693, 65.993462, -0.122767, 0.967324, 0.221839, 0.337536, 0.116506, 1.000000, 1.000000, 0.000000, 0.000000, -26.321823, -13.052693, 65.993462, 0.179370, 0.409387, -0.894555, 0.337536, 0.116506, 1.000000, 1.000000, 0.000000, 0.000000, -18.493877, -12.479353, 67.825447, 0.179370, 0.409387, -0.894555, 0.506132, 0.280374, 1.000000, 1.000000, 0.000000, 0.000000, -24.911274, -14.272742, 65.717949, 0.179370, 0.409387, -0.894555, 0.502869, 0.134458, 1.000000, 1.000000, 0.000000, 0.000000, 6.490732, 2.086516, 12.560350, 0.597922, 0.779337, 0.187412, -0.042226, -1.038696, 0.000000, 1.000000, 0.000000, 0.000000, 0.114397, 10.035635, -0.152218, 0.597922, 0.779337, 0.187412, 0.383360, -2.269913, 0.000000, 1.000000, 0.000000, 0.000000, 0.066509, 7.296290, 12.651642, 0.597922, 0.779337, 0.187412, 0.382669, -1.029855, 0.000000, 1.000000, 0.000000, 0.000000, 9.510592, 3.090170, 0.011892, 0.597922, 0.779337, 0.187412, -0.026992, -2.254019, 0.000000, 1.000000, 0.000000, 0.000000, 4.454815, -6.041144, 12.675422, 0.944484, -0.276231, 0.177893, -0.400884, -1.027552, 0.000000, 1.000000, 0.000000, 0.000000, 9.510592, 3.090170, 0.011892, 0.944484, -0.276231, 0.177893, -0.026992, -2.254019, 0.000000, 1.000000, 0.000000, 0.000000, 6.490732, 2.086516, 12.560350, 0.944484, -0.276231, 0.177893, -0.042226, -1.038696, 0.000000, 1.000000, 0.000000, 0.000000, 5.877870, -8.090168, 0.011892, 0.944484, -0.276231, 0.177893, -0.398618, -2.254019, 0.000000, 1.000000, 0.000000, 0.000000, -4.103505, -5.737158, 12.614674, -0.015249, -0.985009, 0.171829, 1.192693, -1.033435, 0.000000, 1.000000, 0.000000, 0.000000, 5.877870, -8.090168, 0.011892, -0.015249, -0.985009, 0.171829, 1.538389, -2.254019, 0.000000, 1.000000, 0.000000, 0.000000, 4.454815, -6.041144, 12.675422, -0.015249, -0.985009, 0.171829, 1.506567, -1.027552, 0.000000, 1.000000, 0.000000, 0.000000, -5.877954, -8.090287, 0.011740, -0.015249, -0.985009, 0.171829, 1.183656, -2.254033, 0.000000, 1.000000, 0.000000, 0.000000, -4.103505, -5.737158, 12.614674, -0.936550, -0.270012, 0.223535, 1.192693, -1.033435, 0.000000, 1.000000, 0.000000, 0.000000, -5.786043, 1.871028, 12.429279, -0.936550, -0.270012, 0.223535, 0.826362, -1.051391, 0.000000, 1.000000, 0.000000, 0.000000, -9.692420, 3.148932, -0.067627, -0.936550, -0.270012, 0.223535, 0.805880, -2.261720, 0.000000, 1.000000, 0.000000, 0.000000, -5.877954, -8.090287, 0.011740, -0.936550, -0.270012, 0.223535, 1.183656, -2.254033, 0.000000, 1.000000, 0.000000, 0.000000, 0.066509, 7.296290, 12.651642, -0.604915, 0.766986, 0.214034, 0.382669, -1.029855, 0.000000, 1.000000, 0.000000, 0.000000, 0.114397, 10.035635, -0.152218, -0.604915, 0.766986, 0.214034, 0.383360, -2.269913, 0.000000, 1.000000, 0.000000, 0.000000, -5.786043, 1.871028, 12.429279, -0.604915, 0.766986, 0.214034, 0.826362, -1.051391, 0.000000, 1.000000, 0.000000, 0.000000, -9.692420, 3.148932, -0.067627, -0.604915, 0.766986, 0.214034, 0.805880, -2.261720, 0.000000, 1.000000, 0.000000, 0.000000, 2.913323, 1.318645, 26.504801, 0.616681, 0.760955, 0.201625, -0.058563, 0.311828, 1.000000, 0.505965, 0.000000, 0.494035, 0.066509, 7.296290, 12.651642, 0.616681, 0.760955, 0.201625, 0.382669, -1.029855, 0.000000, 1.000000, 0.000000, 0.000000, -0.353391, 3.918231, 26.580362, 0.616681, 0.760955, 0.201625, 0.417741, 0.319147, 1.000000, 0.513745, 0.000000, 0.486255, 6.490732, 2.086516, 12.560350, 0.616681, 0.760955, 0.201625, -0.042226, -1.038696, 0.000000, 1.000000, 0.000000, 0.000000, 1.913219, -3.071691, 26.587095, 0.947490, -0.226234, 0.226010, -0.436329, 0.319799, 1.000000, 0.507857, 0.000000, 0.492143, 6.490732, 2.086516, 12.560350, 0.947490, -0.226234, 0.226010, -0.042226, -1.038696, 0.000000, 1.000000, 0.000000, 0.000000, 2.913323, 1.318645, 26.504801, 0.947490, -0.226234, 0.226010, -0.058563, 0.311828, 1.000000, 0.505965, 0.000000, 0.494035, 4.454815, -6.041144, 12.675422, 0.947490, -0.226234, 0.226010, -0.400884, -1.027552, 0.000000, 1.000000, 0.000000, 0.000000, -3.120065, -4.125015, 26.793989, 0.056061, -0.984908, 0.163747, 1.193557, 0.339836, 0.000000, 0.913997, 1.000000, 0.086003, -4.103505, -5.737158, 12.614674, 0.056061, -0.984908, 0.163747, 1.192693, -1.033435, 0.000000, 1.000000, 0.000000, 0.000000, 1.913219, -3.071691, 26.587095, 0.056061, -0.984908, 0.163747, 1.500678, 0.319799, 1.000000, 0.507857, 0.000000, 0.492143, 4.454815, -6.041144, 12.675422, 0.056061, -0.984908, 0.163747, 1.506567, -1.027552, 0.000000, 1.000000, 0.000000, 0.000000, -4.491728, 1.445731, 26.711491, -0.970875, -0.223230, 0.087007, 0.841582, 0.331847, 0.000000, 0.546324, 1.000000, 0.453676, -5.786043, 1.871028, 12.429279, -0.970875, -0.223230, 0.087007, 0.826362, -1.051391, 0.000000, 1.000000, 0.000000, 0.000000, -3.120065, -4.125015, 26.793989, -0.970875, -0.223230, 0.087007, 1.193557, 0.339836, 0.000000, 0.913997, 1.000000, 0.086003, -4.103505, -5.737158, 12.614674, -0.970875, -0.223230, 0.087007, 1.192693, -1.033435, 0.000000, 1.000000, 0.000000, 0.000000, -0.353391, 3.918231, 26.580362, -0.616051, 0.777890, 0.123969, 0.417741, 0.319147, 1.000000, 0.513745, 0.000000, 0.486255, 0.066509, 7.296290, 12.651642, -0.616051, 0.777890, 0.123969, 0.382669, -1.029855, 0.000000, 1.000000, 0.000000, 0.000000, -4.491728, 1.445731, 26.711491, -0.616051, 0.777890, 0.123969, 0.841582, 0.331847, 0.000000, 0.546324, 1.000000, 0.453676, -5.786043, 1.871028, 12.429279, -0.616051, 0.777890, 0.123969, 0.826362, -1.051391, 0.000000, 1.000000, 0.000000, 0.000000, 4.072278, 0.781711, 41.494450, 0.575303, 0.817939, 0.001300, -0.108040, 1.763581, 1.000000, 0.500000, 2.000000, 0.500000, 2.913323, 1.318645, 26.504801, 0.575303, 0.817939, 0.001300, -0.058563, 0.311828, 1.000000, 0.505965, 0.000000, 0.494035, 1.721127, 2.133498, 41.411987, 0.575303, 0.817939, 0.001300, 0.081736, 1.755594, 1.000000, 0.500000, 2.000000, 0.500000, -0.353391, 3.918231, 26.580362, 0.575303, 0.817939, 0.001300, 0.417741, 0.319147, 1.000000, 0.513745, 0.000000, 0.486255, 3.457617, -1.253197, 41.624363, 0.966397, -0.245398, -0.076532, -0.266619, 1.776163, 1.000000, 0.500000, 2.000000, 0.500000, 2.913323, 1.318645, 26.504801, 0.966397, -0.245398, -0.076532, -0.058563, 0.311828, 1.000000, 0.505965, 0.000000, 0.494035, 4.072278, 0.781711, 41.494450, 0.966397, -0.245398, -0.076532, -0.108040, 1.763581, 1.000000, 0.500000, 2.000000, 0.500000, 1.913219, -3.071691, 26.587095, 0.966397, -0.245398, -0.076532, -0.436329, 0.319799, 1.000000, 0.507857, 0.000000, 0.492143, 0.096389, -1.781361, 41.168335, 0.180909, -0.977437, 0.109037, 1.379780, 1.731996, 2.000000, 0.505928, 1.000000, 0.494072, 1.913219, -3.071691, 26.587095, 0.180909, -0.977437, 0.109037, 1.500678, 0.319799, 1.000000, 0.507857, 0.000000, 0.492143, 3.457617, -1.253197, 41.624363, 0.180909, -0.977437, 0.109037, 1.670388, 1.776163, 1.000000, 0.500000, 2.000000, 0.500000, -3.120065, -4.125015, 26.793989, 0.180909, -0.977437, 0.109037, 1.193557, 0.339836, 0.000000, 0.913997, 1.000000, 0.086003, -1.579241, 0.722903, 41.196098, -0.914499, -0.343660, 0.213519, 0.925853, 1.734685, 2.000000, 0.504437, 1.000000, 0.495563, -4.491728, 1.445731, 26.711491, -0.914499, -0.343660, 0.213519, 0.841582, 0.331847, 0.000000, 0.546324, 1.000000, 0.453676, 0.096389, -1.781361, 41.168335, -0.914499, -0.343660, 0.213519, 1.379780, 1.731996, 2.000000, 0.505928, 1.000000, 0.494072, -3.120065, -4.125015, 26.793989, -0.914499, -0.343660, 0.213519, 1.193557, 0.339836, 0.000000, 0.913997, 1.000000, 0.086003, 1.721127, 2.133498, 41.411987, -0.458684, 0.875346, 0.152900, 0.081736, 1.755594, 1.000000, 0.500000, 2.000000, 0.500000, -0.353391, 3.918231, 26.580362, -0.458684, 0.875346, 0.152900, 0.417741, 0.319147, 1.000000, 0.513745, 0.000000, 0.486255, -1.579241, 0.722903, 41.196098, -0.458684, 0.875346, 0.152900, 0.925853, 1.734685, 2.000000, 0.504437, 1.000000, 0.495563, -4.491728, 1.445731, 26.711491, -0.458684, 0.875346, 0.152900, 0.841582, 0.331847, 0.000000, 0.546324, 1.000000, 0.453676, 1.017352, 1.032964, 59.225449, 0.457705, 0.886116, 0.072828, -0.077155, 3.480834, 2.000000, 1.000000, 0.000000, 0.000000, 4.072278, 0.781711, 41.494450, 0.457705, 0.886116, 0.072828, -0.108040, 1.763581, 1.000000, 0.500000, 2.000000, 0.500000, 0.041473, 1.427037, 58.975128, 0.457705, 0.886116, 0.072828, 0.302937, 3.456590, 2.000000, 1.000000, 0.000000, 0.000000, 1.721127, 2.133498, 41.411987, 0.457705, 0.886116, 0.072828, 0.081736, 1.755594, 1.000000, 0.500000, 2.000000, 0.500000, 0.738488, -0.540174, 59.076302, 0.957388, -0.237967, 0.163644, -0.423560, 3.466389, 2.000000, 1.000000, 0.000000, 0.000000, 4.072278, 0.781711, 41.494450, 0.957388, -0.237967, 0.163644, -0.108040, 1.763581, 1.000000, 0.500000, 2.000000, 0.500000, 1.017352, 1.032964, 59.225449, 0.957388, -0.237967, 0.163644, -0.077155, 3.480834, 2.000000, 1.000000, 0.000000, 0.000000, 3.457617, -1.253197, 41.624363, 0.957388, -0.237967, 0.163644, -0.266619, 1.776163, 1.000000, 0.500000, 2.000000, 0.500000, -0.456246, -0.453670, 58.716446, 0.084585, -0.994236, 0.065877, 1.281547, 3.431537, 2.000000, 1.000000, 0.000000, 0.000000, 3.457617, -1.253197, 41.624363, 0.084585, -0.994236, 0.065877, 1.670388, 1.776163, 1.000000, 0.500000, 2.000000, 0.500000, 0.738488, -0.540174, 59.076302, 0.084585, -0.994236, 0.065877, 1.513447, 3.466389, 2.000000, 1.000000, 0.000000, 0.000000, 0.096389, -1.781361, 41.168335, 0.084585, -0.994236, 0.065877, 1.379780, 1.731996, 2.000000, 0.505928, 1.000000, 0.494072, -1.527978, 0.347723, 58.566208, -0.769163, -0.639021, 0.006387, 1.001056, 3.416986, 2.000000, 1.000000, 0.000000, 0.000000, 0.096389, -1.781361, 41.168335, -0.769163, -0.639021, 0.006387, 1.379780, 1.731996, 2.000000, 0.505928, 1.000000, 0.494072, -0.456246, -0.453670, 58.716446, -0.769163, -0.639021, 0.006387, 1.281547, 3.431537, 2.000000, 1.000000, 0.000000, 0.000000, -1.579241, 0.722903, 41.196098, -0.769163, -0.639021, 0.006387, 0.925853, 1.734685, 2.000000, 0.504437, 1.000000, 0.495563, 0.041473, 1.427037, 58.975128, -0.455872, 0.890023, 0.006308, 0.302937, 3.456590, 2.000000, 1.000000, 0.000000, 0.000000, 1.721127, 2.133498, 41.411987, -0.455872, 0.890023, 0.006308, 0.081736, 1.755594, 1.000000, 0.500000, 2.000000, 0.500000, -1.527978, 0.347723, 58.566208, -0.455872, 0.890023, 0.006308, 1.001056, 3.416986, 2.000000, 1.000000, 0.000000, 0.000000, -1.579241, 0.722903, 41.196098, -0.455872, 0.890023, 0.006308, 0.925853, 1.734685, 2.000000, 0.504437, 1.000000, 0.495563, -0.456246, -0.453670, 58.716446, -0.249823, -0.062114, 0.966297, 1.281547, 3.431537, 2.000000, 1.000000, 0.000000, 0.000000, 0.041473, 1.427037, 58.975128, -0.249823, -0.062114, 0.966297, 0.438854, 3.687499, 2.000000, 1.000000, 0.000000, 0.000000, -1.527978, 0.347723, 58.566208, -0.249823, -0.062114, 0.966297, 1.001056, 3.416986, 2.000000, 1.000000, 0.000000, 0.000000, 1.017352, 1.032964, 59.225449, -0.249823, -0.062114, 0.966297, 1.074761, 3.665561, 2.000000, 1.000000, 0.000000, 0.000000, 0.738488, -0.540174, 59.076302, -0.249823, -0.062114, 0.966297, 1.513447, 3.466389, 2.000000, 1.000000, 0.000000, 0.000000, 0.114397, 10.035635, -0.152218, 0.001545, -0.014482, -0.999894, 0.383360, -2.269913, 0.000000, 1.000000, 0.000000, 0.000000, -0.514693, -0.541217, 0.000001, 0.001545, -0.014482, -0.999894, 0.941538, -2.506981, 0.000000, 1.000000, 0.000000, 0.000000, -9.692420, 3.148932, -0.067627, 0.001545, -0.014482, -0.999894, 0.805880, -2.261720, 0.000000, 1.000000, 0.000000, 0.000000, -9.692420, 3.148932, -0.067627, 0.005245, -0.005281, -0.999972, 0.805880, -2.261720, 0.000000, 1.000000, 0.000000, 0.000000, -0.514693, -0.541217, 0.000001, 0.005245, -0.005281, -0.999972, 0.941538, -2.506981, 0.000000, 1.000000, 0.000000, 0.000000, -5.877954, -8.090287, 0.011740, 0.005245, -0.005281, -0.999972, 1.183656, -2.254033, 0.000000, 1.000000, 0.000000, 0.000000, -5.877954, -8.090287, 0.011740, 0.000013, -0.001564, -0.999999, 1.183656, -2.254033, 0.000000, 1.000000, 0.000000, 0.000000, -0.514693, -0.541217, 0.000001, 0.000013, -0.001564, -0.999999, 0.941538, -2.506981, 0.000000, 1.000000, 0.000000, 0.000000, 5.877870, -8.090168, 0.011892, 0.000013, -0.001564, -0.999999, 1.538389, -2.254019, 0.000000, 1.000000, 0.000000, 0.000000, 5.877870, -8.090168, 0.011892, 0.001344, -0.000437, -0.999999, 1.538389, -2.254019, 0.000000, 1.000000, 0.000000, 0.000000, -0.514693, -0.541217, 0.000001, 0.001344, -0.000437, -0.999999, 0.941538, -2.506981, 0.000000, 1.000000, 0.000000, 0.000000, 9.510592, 3.090170, 0.011892, 0.001344, -0.000437, -0.999999, 0.964756, -2.912601, 0.000000, 1.000000, 0.000000, 0.000000, 9.510592, 3.090170, 0.011892, 0.006539, -0.014779, -0.999869, 0.964756, -2.912601, 0.000000, 1.000000, 0.000000, 0.000000, -0.514693, -0.541217, 0.000001, 0.006539, -0.014779, -0.999869, 0.941538, -2.506981, 0.000000, 1.000000, 0.000000, 0.000000, 0.114397, 10.035635, -0.152218, 0.006539, -0.014779, -0.999869, 0.383360, -2.269913, 0.000000, 1.000000, 0.000000, 0.000000 ], "parts": [ { "id": "shape1_part1", "type": "TRIANGLES", "indices": [ 700, 701, 702, 701, 700, 703, 704, 705, 706, 705, 704, 707, 708, 709, 710, 709, 708, 711, 712, 713, 714, 714, 715, 712, 716, 717, 718, 717, 719, 718, 720, 721, 722, 721, 720, 723, 724, 725, 726, 725, 724, 727, 728, 729, 730, 729, 731, 730, 732, 733, 734, 733, 735, 734, 736, 737, 738, 737, 739, 738, 740, 741, 742, 741, 743, 742, 744, 745, 746, 745, 744, 747, 748, 749, 750, 749, 748, 751, 752, 753, 754, 753, 755, 754, 756, 757, 758, 757, 759, 758, 760, 761, 762, 762, 761, 763, 764, 765, 766, 765, 764, 767, 768, 769, 770, 769, 768, 771, 772, 773, 774, 773, 772, 775, 776, 777, 778, 778, 777, 779, 780, 781, 782, 781, 780, 783, 783, 780, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799 ] }, { "id": "shape1_part2", "type": "TRIANGLES", "indices": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 37, 36, 39, 40, 41, 42, 40, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 63, 62, 65, 66, 67, 68, 66, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 89, 88, 91, 92, 93, 94, 93, 92, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 115, 114, 117, 118, 119, 120, 119, 118, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 177, 176, 179, 180, 181, 182, 181, 180, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 203, 202, 205, 206, 207, 208, 207, 206, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 229, 228, 231, 232, 233, 234, 232, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 255, 254, 257, 258, 259, 260, 260, 261, 258, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279 ] }, { "id": "shape1_part3", "type": "TRIANGLES", "indices": [ 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 317, 316, 319, 320, 321, 322, 321, 320, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 343, 342, 345, 346, 347, 348, 347, 346, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 369, 368, 371, 372, 373, 374, 373, 372, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 395, 397, 396, 398, 399, 400, 399, 398, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 457, 456, 459, 460, 461, 462, 461, 460, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 482, 484, 485, 486, 487, 488, 487, 486, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 509, 508, 511, 512, 513, 514, 513, 512, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 535, 534, 537, 538, 539, 540, 538, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559 ] }, { "id": "shape1_part4", "type": "TRIANGLES", "indices": [ 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 597, 596, 599, 600, 601, 602, 601, 600, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 623, 622, 625, 626, 627, 628, 627, 626, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 649, 648, 651, 652, 653, 654, 652, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 675, 674, 677, 678, 679, 680, 679, 678, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699 ] } ] } ], "materials": [ { "id": "bark__bark_jpg", "ambient": [ 1.000000, 1.000000, 1.000000], "diffuse": [ 0.800000, 0.800000, 0.800000], "emissive": [ 0.800000, 0.800000, 0.800000], "textures": [ { "id": "bark_jpg", "filename": "bark.png", "type": "DIFFUSE" } ] }, { "id": "leaf__leaf_png", "ambient": [ 1.000000, 1.000000, 1.000000], "diffuse": [ 1.000000, 1.000000, 1.000000], "emissive": [ 1.000000, 1.000000, 1.000000], "textures": [ { "id": "leaf_png", "filename": "leaf.png", "type": "DIFFUSE" } ] } ], "nodes": [ { "id": "trunk", "rotation": [ 0.038322, 0.041444, 0.001591, 0.998404], "scale": [ 0.052866, 0.052866, 0.052866], "translation": [-0.046604, 0.043298, -0.022254], "parts": [ { "meshpartid": "shape1_part1", "materialid": "bark__bark_jpg", "bones": [ { "node": "Bone", "translation": [ 0.838526, -0.784323, 0.553893, 0.000000], "rotation": [ 0.466923, -0.504260, 0.530575, 0.496181], "scale": [ 18.915624, 18.915621, 18.915623, 0.000000] }, { "node": "Bone_001", "translation": [-1.027346, 0.665645, 26.515472, 0.000000], "rotation": [ 0.684531, -0.289140, 0.585711, 0.323664], "scale": [ 18.915625, 18.915621, 18.915625, 0.000000] }, { "node": "Bone_002", "translation": [ 1.193254, 0.412769, 41.488463, 0.000000], "rotation": [ 0.504640, -0.502504, 0.529769, 0.460622], "scale": [ 18.915626, 18.915629, 18.915626, 0.000000] } ], "uvMapping": [[ 0]] }, { "meshpartid": "shape1_part2", "materialid": "leaf__leaf_png", "bones": [ { "node": "Bone_025", "translation": [ 5.094653, -33.693921, 58.399157, 0.000000], "rotation": [ 0.687213, -0.617883, -0.224293, -0.309275], "scale": [ 18.915623, 18.915629, 18.915626, 0.000000] }, { "node": "Bone_011", "translation": [ 0.023526, 0.075589, 59.080889, 0.000000], "rotation": [ 0.689324, -0.609296, -0.130906, 0.369397], "scale": [ 18.915626, 18.915629, 18.915627, 0.000000] }, { "node": "Bone_012", "translation": [ 2.640229, -10.903910, 62.241767, 0.000000], "rotation": [ 0.009430, -0.131544, -0.632966, 0.762864], "scale": [ 18.915625, 18.915632, 18.915630, 0.000000] }, { "node": "Bone_013", "translation": [ 4.230119, -20.284474, 64.070591, 0.000000], "rotation": [ 0.721236, -0.680000, -0.067384, -0.113480], "scale": [ 18.915622, 18.915630, 18.915625, 0.000000] }, { "node": "Bone_014", "translation": [ 4.791018, -28.475910, 61.936757, 0.000000], "rotation": [-0.670935, 0.674614, 0.144367, 0.271847], "scale": [ 18.915622, 18.915628, 18.915625, 0.000000] }, { "node": "Bone_023", "translation": [-23.443768, 23.587707, 58.909280, 0.000000], "rotation": [-0.381975, 0.050467, 0.876991, 0.287115], "scale": [ 18.915631, 18.915630, 18.915627, 0.000000] }, { "node": "Bone_019", "translation": [ 0.023522, 0.075588, 59.080889, 0.000000], "rotation": [ 0.194508, 0.057470, 0.935756, 0.288485], "scale": [ 18.915629, 18.915627, 18.915627, 0.000000] }, { "node": "Bone_020", "translation": [-8.003475, 6.030660, 62.585183, 0.000000], "rotation": [-0.042408, -0.293792, 0.886600, 0.354723], "scale": [ 18.915625, 18.915627, 18.915627, 0.000000] }, { "node": "Bone_021", "translation": [-15.674405, 12.766019, 63.957478, 0.000000], "rotation": [-0.398810, -0.594992, 0.658639, 0.230499], "scale": [ 18.915625, 18.915624, 18.915628, 0.000000] }, { "node": "Bone_022", "translation": [-20.371124, 19.115513, 61.909107, 0.000000], "rotation": [-0.449148, -0.426780, 0.752097, 0.224666], "scale": [ 18.915628, 18.915626, 18.915626, 0.000000] } ], "uvMapping": [[ 0]] }, { "meshpartid": "shape1_part3", "materialid": "leaf__leaf_png", "bones": [ { "node": "Bone_026", "translation": [ 27.262427, -7.734200, 46.721832, 0.000000], "rotation": [ 0.656320, -0.439787, -0.403123, -0.461869], "scale": [ 18.915633, 18.915630, 18.915628, 0.000000] }, { "node": "Bone_003", "translation": [ 0.023523, 0.075590, 59.080886, 0.000000], "rotation": [-0.000094, 0.023361, -0.080952, 0.996444], "scale": [ 18.915627, 18.915628, 18.915627, 0.000000] }, { "node": "Bone_004", "translation": [ 10.529839, -1.643844, 58.584862, 0.000000], "rotation": [ 0.130240, 0.145062, -0.103104, 0.975379], "scale": [ 18.915630, 18.915627, 18.915624, 0.000000] }, { "node": "Bone_005", "translation": [ 19.211720, -3.157890, 55.712979, 0.000000], "rotation": [ 0.155730, 0.299504, -0.240990, 0.909928], "scale": [ 18.915628, 18.915627, 18.915626, 0.000000] }, { "node": "Bone_006", "translation": [ 24.188332, -5.597185, 51.332119, 0.000000], "rotation": [ 0.768884, -0.391725, -0.296219, -0.409419], "scale": [ 18.915633, 18.915629, 18.915625, 0.000000] }, { "node": "Bone_027", "translation": [ 17.336297, 29.132328, 64.079045, 0.000000], "rotation": [-0.581171, -0.085101, 0.577511, 0.566992], "scale": [ 18.915628, 18.915630, 18.915627, 0.000000] }, { "node": "Bone_015", "translation": [ 0.023526, 0.075588, 59.080884, 0.000000], "rotation": [ 0.029733, -0.253413, 0.444582, 0.858629], "scale": [ 18.915626, 18.915627, 18.915628, 0.000000] }, { "node": "Bone_016", "translation": [ 5.637949, 8.898145, 64.522682, 0.000000], "rotation": [-0.017146, -0.185228, 0.525749, 0.830051], "scale": [ 18.915627, 18.915628, 18.915628, 0.000000] }, { "node": "Bone_017", "translation": [ 9.378236, 17.584474, 67.382742, 0.000000], "rotation": [-0.147773, -0.022984, 0.457018, 0.876795], "scale": [ 18.915626, 18.915628, 18.915626, 0.000000] }, { "node": "Bone_018", "translation": [ 14.137878, 24.203086, 66.606698, 0.000000], "rotation": [-0.187807, 0.126232, 0.483793, 0.845422], "scale": [ 18.915625, 18.915628, 18.915628, 0.000000] } ], "uvMapping": [[ 0]] }, { "meshpartid": "shape1_part4", "materialid": "leaf__leaf_png", "bones": [ { "node": "Bone_024", "translation": [-24.865736, -14.465116, 66.397003, 0.000000], "rotation": [-0.233776, 0.000243, 0.947020, -0.220233], "scale": [ 18.915621, 18.915623, 18.915620, 0.000000] }, { "node": "Bone_010", "translation": [-19.669415, -12.812177, 67.787468, 0.000000], "rotation": [-0.129909, 0.026020, 0.980318, -0.146367], "scale": [ 18.915624, 18.915624, 18.915623, 0.000000] }, { "node": "Bone_007", "translation": [ 0.023522, 0.075592, 59.080884, 0.000000], "rotation": [ 0.221948, 0.231680, 0.879585, -0.351274], "scale": [ 18.915624, 18.915625, 18.915624, 0.000000] }, { "node": "Bone_008", "translation": [-6.619456, -5.151087, 64.694166, 0.000000], "rotation": [-0.278874, 0.922584, 0.132094, -0.231557], "scale": [ 18.915624, 18.915625, 18.915624, 0.000000] }, { "node": "Bone_009", "translation": [-13.068931, -10.187913, 67.787473, 0.000000], "rotation": [-0.014955, 0.078095, 0.979043, -0.187489], "scale": [ 18.915624, 18.915625, 18.915622, 0.000000] } ], "uvMapping": [[ 0]] } ] }, { "id": "Armature", "rotation": [ 0.998404, 0.001591, -0.041444, 0.038321], "scale": [ 1.457911, 1.457911, 1.457911], "translation": [ 1.000000, 1.000000, 0.000000], "children": [ { "id": "Bone", "rotation": [ 0.507984, -0.502482, 0.491841, 0.497550], "scale": [ 1.000000, 1.000000, 1.000000], "children": [ { "id": "Bone_001", "rotation": [ 0.330464, -0.069968, -0.091285, 0.936784], "scale": [ 1.000000, 1.000000, 1.000000], "translation": [ 1.378168, 0.000000, 0.000000], "children": [ { "id": "Bone_002", "rotation": [-0.293120, 0.037612, 0.099744, 0.950114], "scale": [ 1.000000, 1.000000, 1.000000], "translation": [ 0.800337, 0.000000, -0.000000], "children": [ { "id": "Bone_003", "rotation": [ 0.531192, -0.470676, 0.576916, -0.404311], "scale": [ 1.000000, 1.000000, 1.000000], "translation": [ 0.932270, 0.000000, -0.000000], "children": [ { "id": "Bone_004", "rotation": [ 0.120534, 0.132313, -0.020722, 0.983634], "scale": [ 1.000000, 1.000000, 1.000000], "translation": [ 0.563430, 0.000000, -0.000000], "children": [ { "id": "Bone_005", "rotation": [ 0.037465, 0.144803, -0.157657, 0.976101], "scale": [ 1.000000, 1.000000, 1.000000], "translation": [ 0.490020, 0.000000, 0.000000], "children": [ { "id": "Bone_006", "rotation": [ 0.946508, -0.094656, -0.076917, -0.298740], "scale": [ 1.000000, 1.000000, 1.000000], "translation": [ 0.373480, 0.000000, 0.000000], "children": [ { "id": "Bone_026", "rotation": [ 0.058774, -0.116409, 0.109280, 0.985420], "scale": [ 1.000000, 1.000000, 1.000000], "translation": [ 0.313973, -0.000000, -0.000000] } ] } ] } ] } ] }, { "id": "Bone_007", "rotation": [ 0.844233, 0.256493, 0.362806, 0.299756], "scale": [ 1.000000, 1.000000, 1.000000], "translation": [ 0.932270, 0.000000, -0.000000], "children": [ { "id": "Bone_008", "rotation": [ 0.930243, 0.004179, -0.112102, 0.349376], "scale": [ 1.000000, 1.000000, 1.000000], "translation": [ 0.536421, 0.000000, 0.000000], "children": [ { "id": "Bone_009", "rotation": [ 0.941757, 0.116163, 0.193957, -0.248960], "scale": [ 1.000000, 1.000000, 1.000000], "translation": [ 0.462494, -0.000000, 0.000000], "children": [ { "id": "Bone_010", "rotation": [-0.028916, 0.119078, -0.050256, 0.991191], "scale": [ 1.000000, 1.000000, 1.000000], "translation": [ 0.375512, 0.000000, -0.000000], "children": [ { "id": "Bone_024", "rotation": [-0.018797, 0.111843, 0.071235, 0.990991], "scale": [ 1.000000, 1.000000, 1.000000], "translation": [ 0.297499, 0.000000, 0.000000] } ] } ] } ] } ] }, { "id": "Bone_011", "rotation": [-0.257462, -0.526275, -0.294907, 0.754836], "scale": [ 1.000000, 1.000000, 1.000000], "translation": [ 0.932270, 0.000000, -0.000000], "children": [ { "id": "Bone_012", "rotation": [ 0.890821, 0.018866, 0.049021, -0.451308], "scale": [ 1.000000, 1.000000, 1.000000], "translation": [ 0.619660, 0.000000, -0.000000], "children": [ { "id": "Bone_013", "rotation": [ 0.972828, -0.077794, -0.211695, 0.052333], "scale": [ 1.000000, 1.000000, 1.000000], "translation": [ 0.512197, -0.000000, -0.000000], "children": [ { "id": "Bone_014", "rotation": [ 0.067216, -0.167213, 0.028384, 0.983217], "scale": [ 1.000000, 1.000000, 1.000000], "translation": [ 0.448485, 0.000000, 0.000000], "children": [ { "id": "Bone_025", "rotation": [-0.041422, -0.091947, -0.032720, 0.994364], "scale": [ 1.000000, 1.000000, 1.000000], "translation": [ 0.333663, -0.000000, 0.000000] } ] } ] } ] } ] }, { "id": "Bone_015", "rotation": [-0.330449, 0.523340, -0.137149, 0.773375], "scale": [ 1.000000, 1.000000, 1.000000], "translation": [ 0.932270, 0.000000, -0.000000], "children": [ { "id": "Bone_016", "rotation": [ 0.011480, 0.074558, 0.092250, 0.992874], "scale": [ 1.000000, 1.000000, 1.000000], "translation": [ 0.623223, 0.000000, 0.000000], "children": [ { "id": "Bone_017", "rotation": [-0.035056, 0.213184, -0.054648, 0.974852], "scale": [ 1.000000, 1.000000, 1.000000], "translation": [ 0.522340, 0.000000, 0.000000], "children": [ { "id": "Bone_018", "rotation": [ 0.029072, 0.144451, 0.060785, 0.987215], "scale": [ 1.000000, 1.000000, 1.000000], "translation": [ 0.432931, 0.000000, -0.000000], "children": [ { "id": "Bone_027", "rotation": [-0.498921, 0.029187, 0.124588, 0.857149], "scale": [ 1.000000, 1.000000, 1.000000], "translation": [ 0.338164, 0.000000, 0.000000] } ] } ] } ] } ] }, { "id": "Bone_019", "rotation": [ 0.444681, 0.540613, 0.151456, 0.697895], "scale": [ 1.000000, 1.000000, 1.000000], "translation": [ 0.932270, 0.000000, -0.000000], "children": [ { "id": "Bone_020", "rotation": [-0.407102, 0.106994, -0.021456, 0.906841], "scale": [ 1.000000, 1.000000, 1.000000], "translation": [ 0.559923, 0.000000, -0.000000], "children": [ { "id": "Bone_021", "rotation": [-0.465709, 0.182314, 0.121209, 0.857429], "scale": [ 1.000000, 1.000000, 1.000000], "translation": [ 0.544527, -0.000000, -0.000000], "children": [ { "id": "Bone_022", "rotation": [ 0.152469, 0.031184, 0.122420, 0.980201], "scale": [ 1.000000, 1.000000, 1.000000], "translation": [ 0.431342, -0.000000, -0.000000], "children": [ { "id": "Bone_023", "rotation": [ 0.455379, 0.027257, 0.166778, 0.874112], "scale": [ 1.000000, 1.000000, 1.000000], "translation": [ 0.327774, 0.000000, 0.000000] } ] } ] } ] } ] } ] } ] } ] } ] } ], "animations": [ { "id": "birth", "bones": [ { "boneId": "Bone", "keyframes": [ { "keytime": 41.000000, "scale": [ 0.064031, 0.030478, 0.030368] }, { "keytime": 74.333328, "scale": [ 0.064473, 0.030708, 0.030598] }, { "keytime": 107.666664, "scale": [ 0.065574, 0.031284, 0.031172] }, { "keytime": 141.000000, "scale": [ 0.067409, 0.032245, 0.032131] }, { "keytime": 174.333328, "scale": [ 0.069878, 0.033541, 0.033424] }, { "keytime": 207.666656, "scale": [ 0.073046, 0.035208, 0.035086] }, { "keytime": 240.999985, "scale": [ 0.077126, 0.037361, 0.037234] }, { "keytime": 274.333313, "scale": [ 0.082051, 0.039967, 0.039834] }, { "keytime": 307.666656, "scale": [ 0.087544, 0.042881, 0.042741] }, { "keytime": 341.000000, "scale": [ 0.093939, 0.046284, 0.046136] }, { "keytime": 374.333344, "scale": [ 0.100853, 0.049973, 0.049816] }, { "keytime": 407.666687, "scale": [ 0.108688, 0.054170, 0.054003] }, { "keytime": 441.000031, "scale": [ 0.117463, 0.058887, 0.058709] }, { "keytime": 474.333374, "scale": [ 0.126665, 0.063850, 0.063660] }, { "keytime": 507.666718, "scale": [ 0.136520, 0.069183, 0.068981] }, { "keytime": 541.000061, "scale": [ 0.147360, 0.075071, 0.074856] }, { "keytime": 574.333374, "scale": [ 0.158714, 0.081270, 0.081040] }, { "keytime": 607.666687, "scale": [ 0.170650, 0.087814, 0.087569] }, { "keytime": 641.000000, "scale": [ 0.183535, 0.094908, 0.094648] }, { "keytime": 674.333313, "scale": [ 0.196583, 0.102125, 0.101849] }, { "keytime": 707.666626, "scale": [ 0.210148, 0.109662, 0.109369] }, { "keytime": 740.999939, "scale": [ 0.224318, 0.117586, 0.117277] }, { "keytime": 774.333252, "scale": [ 0.239337, 0.126030, 0.125703] }, { "keytime": 807.666565, "scale": [ 0.254290, 0.134485, 0.134140] }, { "keytime": 840.999878, "scale": [ 0.269570, 0.143173, 0.142809] }, { "keytime": 874.333191, "scale": [ 0.285622, 0.152356, 0.151974] }, { "keytime": 907.666504, "scale": [ 0.301497, 0.161516, 0.161115] }, { "keytime": 940.999817, "scale": [ 0.317529, 0.170828, 0.170410] }, { "keytime": 974.333130, "scale": [ 0.334173, 0.180562, 0.180124] }, { "keytime": 1007.666443, "scale": [ 0.350400, 0.190134, 0.189679] }, { "keytime": 1040.999756, "scale": [ 0.366626, 0.199837, 0.199365] }, { "keytime": 1074.333130, "scale": [ 0.383237, 0.209834, 0.209345] }, { "keytime": 1107.666504, "scale": [ 0.399356, 0.219538, 0.219031] }, { "keytime": 1140.999878, "scale": [ 0.415339, 0.229241, 0.228718] }, { "keytime": 1174.333252, "scale": [ 0.431580, 0.239238, 0.238698] }, { "keytime": 1207.666626, "scale": [ 0.447119, 0.248941, 0.248384] }, { "keytime": 1241.000000, "scale": [ 0.462765, 0.258938, 0.258364] }, { "keytime": 1274.333374, "scale": [ 0.477628, 0.268437, 0.267848] }, { "keytime": 1307.666748, "scale": [ 0.492152, 0.277866, 0.277264] }, { "keytime": 1341.000122, "scale": [ 0.506729, 0.287518, 0.286902] }, { "keytime": 1374.333496, "scale": [ 0.520480, 0.296697, 0.296068] }, { "keytime": 1407.666870, "scale": [ 0.533667, 0.305677, 0.305037] }, { "keytime": 1441.000244, "scale": [ 0.546790, 0.314759, 0.314108] }, { "keytime": 1474.333618, "scale": [ 0.559053, 0.323395, 0.322734] }, { "keytime": 1507.666992, "scale": [ 0.570843, 0.331851, 0.331181] }, { "keytime": 1541.000366, "scale": [ 0.582471, 0.340360, 0.339681] }, { "keytime": 1574.333740, "scale": [ 0.593082, 0.348349, 0.347664] }, { "keytime": 1607.667114, "scale": [ 0.603185, 0.356133, 0.355441] }, { "keytime": 1641.000488, "scale": [ 0.613056, 0.363931, 0.363234] }, { "keytime": 1674.333862, "scale": [ 0.622110, 0.371282, 0.370581] }, { "keytime": 1707.667236, "scale": [ 0.630633, 0.378411, 0.377706] }, { "keytime": 1741.000610, "scale": [ 0.638702, 0.385448, 0.384740] }, { "keytime": 1774.333984, "scale": [ 0.646241, 0.392272, 0.391562] }, { "keytime": 1807.667358, "scale": [ 0.653626, 0.399095, 0.398384] }, { "keytime": 1841.000732, "scale": [ 0.661170, 0.406195, 0.405482] }, { "keytime": 1907.667480, "scale": [ 0.675814, 0.420387, 0.419673] }, { "keytime": 1941.000854, "scale": [ 0.683358, 0.427902, 0.427189] }, { "keytime": 1974.334229, "scale": [ 0.690584, 0.435269, 0.434556] }, { "keytime": 2007.667603, "scale": [ 0.697712, 0.442696, 0.441983] }, { "keytime": 2041.000977, "scale": [ 0.705055, 0.450555, 0.449844] }, { "keytime": 2074.334473, "scale": [ 0.712182, 0.458183, 0.457474] }, { "keytime": 2107.667725, "scale": [ 0.719166, 0.465997, 0.465290] }, { "keytime": 2141.000977, "scale": [ 0.726309, 0.474115, 0.473412] }, { "keytime": 2174.334229, "scale": [ 0.733242, 0.482053, 0.481352] }, { "keytime": 2207.667480, "scale": [ 0.740175, 0.490171, 0.489474] }, { "keytime": 2241.000732, "scale": [ 0.747094, 0.498535, 0.497842] }, { "keytime": 2274.333984, "scale": [ 0.753806, 0.506819, 0.506130] }, { "keytime": 2307.667236, "scale": [ 0.760517, 0.515159, 0.514475] }, { "keytime": 2341.000488, "scale": [ 0.767380, 0.523803, 0.523124] }, { "keytime": 2407.666992, "scale": [ 0.780392, 0.540888, 0.540221] }, { "keytime": 2441.000244, "scale": [ 0.786959, 0.549826, 0.549165] }, { "keytime": 2474.333496, "scale": [ 0.793285, 0.558548, 0.557894] }, { "keytime": 2507.666748, "scale": [ 0.799567, 0.567313, 0.566666] }, { "keytime": 2541.000000, "scale": [ 0.805887, 0.576490, 0.575851] }, { "keytime": 2574.333252, "scale": [ 0.812020, 0.585397, 0.584765] }, { "keytime": 2607.666504, "scale": [ 0.818002, 0.594303, 0.593680] }, { "keytime": 2640.999756, "scale": [ 0.823930, 0.603302, 0.602688] }, { "keytime": 2674.333008, "scale": [ 0.829985, 0.612677, 0.612075] }, { "keytime": 2740.999512, "scale": [ 0.841404, 0.630877, 0.630295] }, { "keytime": 2774.332764, "scale": [ 0.847114, 0.640252, 0.639682] }, { "keytime": 2807.666016, "scale": [ 0.852593, 0.649352, 0.648792] }, { "keytime": 2840.999268, "scale": [ 0.858018, 0.658452, 0.657902] }, { "keytime": 2874.332520, "scale": [ 0.863414, 0.667827, 0.667289] }, { "keytime": 2907.665771, "scale": [ 0.868650, 0.676927, 0.676399] }, { "keytime": 2940.999023, "scale": [ 0.873704, 0.686026, 0.685510] }, { "keytime": 2974.332275, "scale": [ 0.878839, 0.695402, 0.694896] }, { "keytime": 3007.665527, "scale": [ 0.883763, 0.704502, 0.704006] }, { "keytime": 3040.998779, "scale": [ 0.888486, 0.713601, 0.713117] }, { "keytime": 3074.332031, "scale": [ 0.893353, 0.722977, 0.722503] }, { "keytime": 3107.665283, "scale": [ 0.897878, 0.731914, 0.731453] }, { "keytime": 3140.998535, "scale": [ 0.902333, 0.740794, 0.740345] }, { "keytime": 3174.331787, "scale": [ 0.906856, 0.749943, 0.749507] }, { "keytime": 3207.665039, "scale": [ 0.911037, 0.758823, 0.758399] }, { "keytime": 3240.998291, "scale": [ 0.915217, 0.767477, 0.767066] }, { "keytime": 3274.331543, "scale": [ 0.919317, 0.776388, 0.775990] }, { "keytime": 3307.664795, "scale": [ 0.923220, 0.784922, 0.784537] }, { "keytime": 3340.998047, "scale": [ 0.927062, 0.793333, 0.792961] }, { "keytime": 3374.331299, "scale": [ 0.930796, 0.801998, 0.801640] }, { "keytime": 3407.664551, "scale": [ 0.934420, 0.810130, 0.809784] }, { "keytime": 3440.997803, "scale": [ 0.937842, 0.818258, 0.817926] }, { "keytime": 3474.331055, "scale": [ 0.941290, 0.826516, 0.826196] }, { "keytime": 3507.664307, "scale": [ 0.944572, 0.834366, 0.834060] }, { "keytime": 3540.997559, "scale": [ 0.947643, 0.842085, 0.841791] }, { "keytime": 3574.330811, "scale": [ 0.950806, 0.849856, 0.849576] }, { "keytime": 3607.664062, "scale": [ 0.953678, 0.857253, 0.856985] }, { "keytime": 3640.997314, "scale": [ 0.956478, 0.864506, 0.864250] }, { "keytime": 3674.330566, "scale": [ 0.959299, 0.871821, 0.871578] }, { "keytime": 3707.663818, "scale": [ 0.961835, 0.878763, 0.878532] }, { "keytime": 3740.997070, "scale": [ 0.964371, 0.885496, 0.885277] }, { "keytime": 3774.330322, "scale": [ 0.966793, 0.892264, 0.892057] }, { "keytime": 3807.663574, "scale": [ 0.969074, 0.898662, 0.898466] }, { "keytime": 3840.996826, "scale": [ 0.971299, 0.904892, 0.904707] }, { "keytime": 3874.330078, "scale": [ 0.973395, 0.911124, 0.910951] }, { "keytime": 3907.663330, "scale": [ 0.975430, 0.916939, 0.916776] }, { "keytime": 3940.996582, "scale": [ 0.977293, 0.922576, 0.922424] }, { "keytime": 3974.329834, "scale": [ 0.979146, 0.928194, 0.928053] }, { "keytime": 4007.663086, "scale": [ 0.980893, 0.933462, 0.933331] }, { "keytime": 4040.996338, "scale": [ 0.982468, 0.938540, 0.938418] }, { "keytime": 4074.329590, "scale": [ 0.984091, 0.943520, 0.943407] }, { "keytime": 4107.663086, "scale": [ 0.985509, 0.948160, 0.948056] }, { "keytime": 4140.996094, "scale": [ 0.986872, 0.952612, 0.952517] }, { "keytime": 4174.329590, "scale": [ 0.988229, 0.956999, 0.956913] }, { "keytime": 4207.663086, "scale": [ 0.989393, 0.961062, 0.960983] }, { "keytime": 4240.996582, "scale": [ 0.990556, 0.964873, 0.964802] }, { "keytime": 4274.330078, "scale": [ 0.991616, 0.968603, 0.968539] }, { "keytime": 4307.663574, "scale": [ 0.992593, 0.972028, 0.971971] }, { "keytime": 4340.997070, "scale": [ 0.993531, 0.975264, 0.975213] }, { "keytime": 4374.330566, "scale": [ 0.994358, 0.978392, 0.978348] }, { "keytime": 4407.664062, "scale": [ 0.995161, 0.981177, 0.981138] }, { "keytime": 4440.997559, "scale": [ 0.995846, 0.983774, 0.983740] }, { "keytime": 4474.331055, "scale": [ 0.996506, 0.986254, 0.986225] }, { "keytime": 4507.664551, "scale": [ 0.997104, 0.988471, 0.988447] }, { "keytime": 4540.998047, "scale": [ 0.997560, 0.990496, 0.990476] }, { "keytime": 4574.331543, "scale": [ 0.998029, 0.992334, 0.992318] }, { "keytime": 4607.665039, "scale": [ 0.998485, 0.993930, 0.993917] }, { "keytime": 4640.998535, "scale": [ 0.998846, 0.995345, 0.995335] }, { "keytime": 4674.332031, "scale": [ 0.999110, 0.996613, 0.996606] }, { "keytime": 4707.665527, "scale": [ 0.999367, 0.997659, 0.997654] }, { "keytime": 4740.999023, "scale": [ 0.999623, 0.998472, 0.998469] }, { "keytime": 4774.332520, "scale": [ 0.999755, 0.999130, 0.999128] }, { "keytime": 4807.666016, "scale": [ 0.999836, 0.999591, 0.999590] }, { "keytime": 4832.000000, "scale": [ 0.999897, 0.999850, 0.999850] } ] }, { "boneId": "Bone_026", "keyframes": [ { "keytime": 41.000000, "scale": [ 0.610000, 0.610000, 0.610000], "translation": [ 0.313970, -0.000000, 0.000001] }, { "keytime": 107.666664, "scale": [ 0.609734, 0.609733, 0.609733], "translation": [ 0.313973, -0.000003, -0.000002] }, { "keytime": 141.000000, "scale": [ 0.609464, 0.609464, 0.609464], "translation": [ 0.313975, -0.000004, -0.000003] }, { "keytime": 207.666656, "scale": [ 0.608674, 0.608674, 0.608674], "translation": [ 0.313979, -0.000006, -0.000006] }, { "keytime": 240.999985, "scale": [ 0.608029, 0.608029, 0.608029], "translation": [ 0.313980, -0.000008, -0.000008] }, { "keytime": 274.333313, "scale": [ 0.607360, 0.607360, 0.607360], "translation": [ 0.313982, -0.000009, -0.000009] }, { "keytime": 307.666656, "scale": [ 0.606590, 0.606590, 0.606590], "translation": [ 0.313984, -0.000010, -0.000011] }, { "keytime": 341.000000, "scale": [ 0.605665, 0.605665, 0.605665], "translation": [ 0.313986, -0.000011, -0.000012] }, { "keytime": 374.333344, "scale": [ 0.604768, 0.604768, 0.604768], "translation": [ 0.313987, -0.000012, -0.000014] }, { "keytime": 407.666687, "scale": [ 0.603632, 0.603631, 0.603632], "translation": [ 0.313989, -0.000014, -0.000015] }, { "keytime": 441.000031, "scale": [ 0.602459, 0.602459, 0.602459], "translation": [ 0.313991, -0.000015, -0.000017] }, { "keytime": 474.333374, "scale": [ 0.601205, 0.601204, 0.601205], "translation": [ 0.313993, -0.000016, -0.000018] }, { "keytime": 507.666718, "scale": [ 0.599832, 0.599832, 0.599832], "translation": [ 0.313995, -0.000017, -0.000020] }, { "keytime": 541.000061, "scale": [ 0.598419, 0.598419, 0.598419], "translation": [ 0.313996, -0.000018, -0.000022] }, { "keytime": 607.666687, "scale": [ 0.595221, 0.595220, 0.595220], "translation": [ 0.314000, -0.000021, -0.000025] }, { "keytime": 641.000000, "scale": [ 0.593462, 0.593462, 0.593462], "translation": [ 0.314002, -0.000022, -0.000026] }, { "keytime": 707.666626, "scale": [ 0.589824, 0.589824, 0.589824], "translation": [ 0.314005, -0.000024, -0.000029] }, { "keytime": 740.999939, "scale": [ 0.587797, 0.587797, 0.587797], "translation": [ 0.314007, -0.000025, -0.000031] }, { "keytime": 774.333252, "scale": [ 0.585704, 0.585704, 0.585704], "translation": [ 0.314009, -0.000027, -0.000032] }, { "keytime": 807.666565, "scale": [ 0.583573, 0.583573, 0.583573], "translation": [ 0.314011, -0.000028, -0.000034] }, { "keytime": 840.999878, "scale": [ 0.581335, 0.581335, 0.581335], "translation": [ 0.314013, -0.000029, -0.000035] }, { "keytime": 874.333191, "scale": [ 0.579030, 0.579030, 0.579030], "translation": [ 0.314014, -0.000030, -0.000037] }, { "keytime": 907.666504, "scale": [ 0.576597, 0.576597, 0.576597], "translation": [ 0.314016, -0.000031, -0.000038] }, { "keytime": 940.999817, "scale": [ 0.574161, 0.574161, 0.574161], "translation": [ 0.314018, -0.000033, -0.000040] }, { "keytime": 974.333130, "scale": [ 0.571557, 0.571557, 0.571557], "translation": [ 0.314020, -0.000034, -0.000041] }, { "keytime": 1040.999756, "scale": [ 0.566302, 0.566302, 0.566302], "translation": [ 0.314023, -0.000036, -0.000044] }, { "keytime": 1074.333130, "scale": [ 0.563412, 0.563412, 0.563412], "translation": [ 0.314025, -0.000037, -0.000046] }, { "keytime": 1107.666504, "scale": [ 0.560601, 0.560601, 0.560600], "translation": [ 0.314027, -0.000039, -0.000047] }, { "keytime": 1140.999878, "scale": [ 0.557705, 0.557706, 0.557705], "translation": [ 0.314029, -0.000040, -0.000049] }, { "keytime": 1174.333252, "scale": [ 0.554627, 0.554627, 0.554627], "translation": [ 0.314030, -0.000041, -0.000050] }, { "keytime": 1207.666626, "scale": [ 0.551639, 0.551639, 0.551639], "translation": [ 0.314032, -0.000042, -0.000052] }, { "keytime": 1241.000000, "scale": [ 0.548390, 0.548390, 0.548390], "translation": [ 0.314034, -0.000043, -0.000053] }, { "keytime": 1274.333374, "scale": [ 0.545233, 0.545233, 0.545233], "translation": [ 0.314036, -0.000044, -0.000055] }, { "keytime": 1307.666748, "scale": [ 0.541998, 0.541998, 0.541998], "translation": [ 0.314038, -0.000046, -0.000056] }, { "keytime": 1341.000122, "scale": [ 0.538579, 0.538579, 0.538579], "translation": [ 0.314039, -0.000047, -0.000058] }, { "keytime": 1374.333496, "scale": [ 0.535260, 0.535260, 0.535260], "translation": [ 0.314041, -0.000048, -0.000059] }, { "keytime": 1407.666870, "scale": [ 0.531753, 0.531753, 0.531753], "translation": [ 0.314043, -0.000049, -0.000061] }, { "keytime": 1441.000244, "scale": [ 0.528137, 0.528137, 0.528137], "translation": [ 0.314045, -0.000050, -0.000062] }, { "keytime": 1474.333618, "scale": [ 0.524628, 0.524627, 0.524628], "translation": [ 0.314047, -0.000052, -0.000064] }, { "keytime": 1507.666992, "scale": [ 0.521069, 0.521069, 0.521069], "translation": [ 0.314048, -0.000053, -0.000065] }, { "keytime": 1541.000366, "scale": [ 0.517233, 0.517233, 0.517233], "translation": [ 0.314050, -0.000054, -0.000067] }, { "keytime": 1607.667114, "scale": [ 0.509789, 0.509788, 0.509789], "translation": [ 0.314054, -0.000056, -0.000070] }, { "keytime": 1641.000488, "scale": [ 0.505855, 0.505855, 0.505855], "translation": [ 0.314056, -0.000058, -0.000072] }, { "keytime": 1707.667236, "scale": [ 0.498021, 0.498021, 0.498021], "translation": [ 0.314059, -0.000060, -0.000075] }, { "keytime": 1741.000610, "scale": [ 0.493985, 0.493985, 0.493985], "translation": [ 0.314061, -0.000061, -0.000076] }, { "keytime": 1774.333984, "scale": [ 0.489937, 0.489937, 0.489937], "translation": [ 0.314063, -0.000062, -0.000078] }, { "keytime": 1807.667358, "scale": [ 0.485844, 0.485844, 0.485844], "translation": [ 0.314064, -0.000063, -0.000079] }, { "keytime": 1841.000732, "scale": [ 0.481627, 0.481627, 0.481627], "translation": [ 0.314066, -0.000065, -0.000081] }, { "keytime": 1874.334106, "scale": [ 0.477535, 0.477535, 0.477535], "translation": [ 0.314068, -0.000066, -0.000082] }, { "keytime": 1907.667480, "scale": [ 0.473265, 0.473265, 0.473265], "translation": [ 0.314070, -0.000067, -0.000084] }, { "keytime": 1941.000854, "scale": [ 0.468864, 0.468864, 0.468864], "translation": [ 0.314072, -0.000068, -0.000085] }, { "keytime": 2007.667603, "scale": [ 0.460321, 0.460321, 0.460321], "translation": [ 0.314075, -0.000071, -0.000088] }, { "keytime": 2041.000977, "scale": [ 0.455920, 0.455920, 0.455920], "translation": [ 0.314077, -0.000072, -0.000090] }, { "keytime": 2074.334473, "scale": [ 0.451460, 0.451460, 0.451460], "translation": [ 0.314079, -0.000073, -0.000091] }, { "keytime": 2107.667725, "scale": [ 0.447001, 0.447001, 0.447001], "translation": [ 0.314045, -0.000074, -0.000093] }, { "keytime": 2141.000977, "scale": [ 0.442407, 0.442407, 0.442407], "translation": [ 0.313997, -0.000075, -0.000094] }, { "keytime": 2174.334229, "scale": [ 0.437948, 0.437948, 0.437948], "translation": [ 0.313951, -0.000050, -0.000064] }, { "keytime": 2207.667480, "scale": [ 0.433488, 0.433488, 0.433488], "translation": [ 0.313905, 0.000059, 0.000068] }, { "keytime": 2241.000732, "scale": [ 0.428894, 0.428894, 0.428894], "translation": [ 0.314133, 0.000003, 0.000070] }, { "keytime": 2274.333984, "scale": [ 0.424302, 0.424302, 0.424302], "translation": [ 0.314063, -0.000054, 0.000069] }, { "keytime": 2307.667236, "scale": [ 0.419665, 0.419665, 0.419665], "translation": [ 0.313963, -0.000047, 0.000068] }, { "keytime": 2341.000488, "scale": [ 0.414887, 0.414887, 0.414887], "translation": [ 0.313936, -0.000001, 0.000067] }, { "keytime": 2407.666992, "scale": [ 0.405613, 0.405613, 0.405613], "translation": [ 0.313883, -0.000101, 0.000065] }, { "keytime": 2441.000244, "scale": [ 0.400836, 0.400836, 0.400836], "translation": [ 0.313856, -0.000113, 0.000064] }, { "keytime": 2474.333496, "scale": [ 0.396199, 0.396198, 0.396199], "translation": [ 0.313869, -0.000112, 0.000064] }, { "keytime": 2507.666748, "scale": [ 0.391562, 0.391561, 0.391562], "translation": [ 0.313923, -0.000110, 0.000063] }, { "keytime": 2541.000000, "scale": [ 0.386784, 0.386784, 0.386784], "translation": [ 0.313978, -0.000109, 0.000062] }, { "keytime": 2574.333252, "scale": [ 0.382147, 0.382147, 0.382147], "translation": [ 0.314031, -0.000107, 0.000061] }, { "keytime": 2607.666504, "scale": [ 0.377510, 0.377510, 0.377510], "translation": [ 0.314013, -0.000106, 0.000060] }, { "keytime": 2640.999756, "scale": [ 0.372873, 0.372873, 0.372873], "translation": [ 0.313970, -0.000104, 0.000059] }, { "keytime": 2674.333008, "scale": [ 0.368095, 0.368095, 0.368095], "translation": [ 0.313925, -0.000102, 0.000058] }, { "keytime": 2707.666260, "scale": [ 0.363458, 0.363458, 0.363458], "translation": [ 0.313882, -0.000101, 0.000057] }, { "keytime": 2740.999512, "scale": [ 0.358821, 0.358821, 0.358821], "translation": [ 0.314023, -0.000099, 0.000056] }, { "keytime": 2774.332764, "scale": [ 0.354044, 0.354044, 0.354044], "translation": [ 0.313974, -0.000098, 0.000056] }, { "keytime": 2807.666016, "scale": [ 0.349407, 0.349407, 0.349407], "translation": [ 0.313925, -0.000096, 0.000055] }, { "keytime": 2840.999268, "scale": [ 0.344770, 0.344770, 0.344770], "translation": [ 0.313953, -0.000095, 0.000054] }, { "keytime": 2874.332520, "scale": [ 0.339992, 0.339992, 0.339992], "translation": [ 0.313982, -0.000093, 0.000053] }, { "keytime": 2907.665771, "scale": [ 0.335355, 0.335355, 0.335355], "translation": [ 0.314011, -0.000092, 0.000052] }, { "keytime": 2940.999023, "scale": [ 0.330718, 0.330718, 0.330718], "translation": [ 0.314018, -0.000090, 0.000051] }, { "keytime": 2974.332275, "scale": [ 0.325940, 0.325940, 0.325940], "translation": [ 0.314017, -0.000088, 0.000050] }, { "keytime": 3040.998779, "scale": [ 0.316666, 0.316666, 0.316666], "translation": [ 0.314015, -0.000085, 0.000049] }, { "keytime": 3074.332031, "scale": [ 0.311889, 0.311889, 0.311889], "translation": [ 0.314015, -0.000084, 0.000048] }, { "keytime": 3107.665283, "scale": [ 0.307252, 0.307252, 0.307252], "translation": [ 0.314014, -0.000082, 0.000047] }, { "keytime": 3140.998535, "scale": [ 0.302740, 0.302740, 0.302740], "translation": [ 0.314013, -0.000081, 0.000046] }, { "keytime": 3174.331787, "scale": [ 0.298234, 0.298234, 0.298234], "translation": [ 0.314012, -0.000079, 0.000045] }, { "keytime": 3240.998291, "scale": [ 0.289488, 0.289489, 0.289488], "translation": [ 0.314011, -0.000076, 0.000043] }, { "keytime": 3274.331543, "scale": [ 0.284983, 0.284983, 0.284983], "translation": [ 0.314010, -0.000074, 0.000042] }, { "keytime": 3307.664795, "scale": [ 0.280716, 0.280716, 0.280716], "translation": [ 0.314009, -0.000073, 0.000041] }, { "keytime": 3340.998047, "scale": [ 0.276563, 0.276563, 0.276563], "translation": [ 0.314009, -0.000071, 0.000041] }, { "keytime": 3374.331299, "scale": [ 0.272284, 0.272284, 0.272284], "translation": [ 0.314008, -0.000070, 0.000040] }, { "keytime": 3407.664551, "scale": [ 0.268130, 0.268130, 0.268130], "translation": [ 0.314007, -0.000068, 0.000039] }, { "keytime": 3440.997803, "scale": [ 0.264122, 0.264122, 0.264122], "translation": [ 0.314006, -0.000067, 0.000038] }, { "keytime": 3474.331055, "scale": [ 0.260049, 0.260049, 0.260049], "translation": [ 0.314005, -0.000065, 0.000037] }, { "keytime": 3507.664307, "scale": [ 0.256140, 0.256140, 0.256139], "translation": [ 0.314005, -0.000064, 0.000036] }, { "keytime": 3540.997559, "scale": [ 0.252376, 0.252376, 0.252376], "translation": [ 0.314004, -0.000062, 0.000035] }, { "keytime": 3574.330811, "scale": [ 0.248499, 0.248499, 0.248499], "translation": [ 0.314003, -0.000060, 0.000034] }, { "keytime": 3607.664062, "scale": [ 0.244896, 0.244896, 0.244896], "translation": [ 0.314002, -0.000059, 0.000034] }, { "keytime": 3640.997314, "scale": [ 0.241351, 0.241351, 0.241351], "translation": [ 0.314002, -0.000057, 0.000033] }, { "keytime": 3674.330566, "scale": [ 0.237760, 0.237760, 0.237760], "translation": [ 0.314001, -0.000056, 0.000032] }, { "keytime": 3740.997070, "scale": [ 0.231169, 0.231169, 0.231169], "translation": [ 0.313999, -0.000053, 0.000030] }, { "keytime": 3774.330322, "scale": [ 0.227986, 0.227987, 0.227986], "translation": [ 0.313999, -0.000051, 0.000029] }, { "keytime": 3807.663574, "scale": [ 0.224975, 0.224975, 0.224975], "translation": [ 0.313998, -0.000050, 0.000028] }, { "keytime": 3840.996826, "scale": [ 0.222017, 0.222017, 0.222017], "translation": [ 0.313997, -0.000048, 0.000027] }, { "keytime": 3874.330078, "scale": [ 0.219158, 0.219158, 0.219158], "translation": [ 0.313996, -0.000046, 0.000026] }, { "keytime": 3907.663330, "scale": [ 0.216553, 0.216553, 0.216553], "translation": [ 0.313995, -0.000045, 0.000026] }, { "keytime": 3940.996582, "scale": [ 0.214083, 0.214083, 0.214083], "translation": [ 0.313995, -0.000043, 0.000025] }, { "keytime": 3974.329834, "scale": [ 0.211684, 0.211684, 0.211684], "translation": [ 0.313994, -0.000042, 0.000024] }, { "keytime": 4007.663086, "scale": [ 0.209505, 0.209505, 0.209505], "translation": [ 0.313993, -0.000040, 0.000023] }, { "keytime": 4040.996338, "scale": [ 0.207483, 0.207483, 0.207483], "translation": [ 0.313992, -0.000039, 0.000022] }, { "keytime": 4074.329590, "scale": [ 0.205619, 0.205619, 0.205619], "translation": [ 0.313992, -0.000037, 0.000021] }, { "keytime": 4107.663086, "scale": [ 0.203988, 0.203988, 0.203988], "translation": [ 0.313991, -0.000036, 0.000020] }, { "keytime": 4140.996094, "scale": [ 0.202536, 0.202536, 0.202536], "translation": [ 0.313990, -0.000034, 0.000019] }, { "keytime": 4174.329590, "scale": [ 0.201237, 0.201237, 0.201237], "translation": [ 0.313989, -0.000032, 0.000019] }, { "keytime": 4207.663086, "scale": [ 0.200177, 0.200177, 0.200177], "translation": [ 0.313989, -0.000031, 0.000018] }, { "keytime": 4240.996582, "scale": [ 0.199392, 0.199392, 0.199392], "translation": [ 0.313988, -0.000029, 0.000017] }, { "keytime": 4274.330078, "scale": [ 0.198811, 0.198811, 0.198811], "translation": [ 0.313987, -0.000028, 0.000016] }, { "keytime": 4307.663574, "scale": [ 0.198482, 0.198482, 0.198482], "translation": [ 0.313986, -0.000026, 0.000015] }, { "keytime": 4340.997070, "scale": [ 0.200200, 0.200200, 0.200200], "translation": [ 0.313985, -0.000025, 0.000014] }, { "keytime": 4374.330566, "scale": [ 0.208762, 0.208762, 0.208762], "translation": [ 0.313985, -0.000023, 0.000013] }, { "keytime": 4407.664062, "scale": [ 0.233695, 0.233695, 0.233695], "translation": [ 0.313984, -0.000022, 0.000012] }, { "keytime": 4440.997559, "scale": [ 0.270767, 0.270767, 0.270767], "translation": [ 0.313983, -0.000020, 0.000011] }, { "keytime": 4474.331055, "scale": [ 0.321035, 0.321036, 0.321036], "translation": [ 0.313982, -0.000018, 0.000011] }, { "keytime": 4507.664551, "scale": [ 0.380502, 0.380502, 0.380502], "translation": [ 0.313982, -0.000017, 0.000010] }, { "keytime": 4540.998047, "scale": [ 0.449405, 0.449405, 0.449405], "translation": [ 0.313981, -0.000015, 0.000009] }, { "keytime": 4574.331543, "scale": [ 0.528521, 0.528521, 0.528521], "translation": [ 0.313980, -0.000014, 0.000008] }, { "keytime": 4607.665039, "scale": [ 0.607649, 0.607649, 0.607649], "translation": [ 0.313979, -0.000012, 0.000007] }, { "keytime": 4640.998535, "scale": [ 0.686172, 0.686172, 0.686172], "translation": [ 0.313979, -0.000011, 0.000006] }, { "keytime": 4674.332031, "scale": [ 0.763564, 0.763564, 0.763564], "translation": [ 0.313978, -0.000009, 0.000005] }, { "keytime": 4707.665527, "scale": [ 0.832468, 0.832468, 0.832468], "translation": [ 0.313977, -0.000008, 0.000004] }, { "keytime": 4740.999023, "scale": [ 0.889326, 0.889327, 0.889327], "translation": [ 0.313976, -0.000006, 0.000004] }, { "keytime": 4774.332520, "scale": [ 0.936403, 0.936403, 0.936403], "translation": [ 0.313976, -0.000005, 0.000003] }, { "keytime": 4807.666016, "scale": [ 0.969984, 0.969984, 0.969984], "translation": [ 0.313975, -0.000003, 0.000002] }, { "keytime": 4832.000000, "scale": [ 0.989001, 0.989001, 0.989001], "translation": [ 0.313974, -0.000002, 0.000001] } ] }, { "boneId": "Bone_007", "keyframes": [ { "keytime": 41.000000, "scale": [ 0.200000, 0.200000, 0.200000] }, { "keytime": 307.666656, "scale": [ 0.200220, 0.200220, 0.200220] }, { "keytime": 341.000000, "scale": [ 0.200287, 0.200287, 0.200287] }, { "keytime": 407.666687, "scale": [ 0.200646, 0.200646, 0.200646] }, { "keytime": 441.000031, "scale": [ 0.200832, 0.200832, 0.200832] }, { "keytime": 507.666718, "scale": [ 0.201191, 0.201191, 0.201191] }, { "keytime": 541.000061, "scale": [ 0.201376, 0.201376, 0.201376] }, { "keytime": 607.666687, "scale": [ 0.202166, 0.202166, 0.202166] }, { "keytime": 641.000000, "scale": [ 0.202572, 0.202572, 0.202572] }, { "keytime": 674.333313, "scale": [ 0.203013, 0.203013, 0.203013] }, { "keytime": 740.999939, "scale": [ 0.204180, 0.204180, 0.204180] }, { "keytime": 774.333252, "scale": [ 0.204917, 0.204917, 0.204917] }, { "keytime": 807.666565, "scale": [ 0.205682, 0.205682, 0.205682] }, { "keytime": 840.999878, "scale": [ 0.206492, 0.206492, 0.206492] }, { "keytime": 874.333191, "scale": [ 0.207490, 0.207490, 0.207490] }, { "keytime": 907.666504, "scale": [ 0.208458, 0.208458, 0.208458] }, { "keytime": 940.999817, "scale": [ 0.209588, 0.209588, 0.209588] }, { "keytime": 974.333130, "scale": [ 0.210814, 0.210814, 0.210814] }, { "keytime": 1007.666443, "scale": [ 0.212058, 0.212058, 0.212058] }, { "keytime": 1040.999756, "scale": [ 0.213482, 0.213482, 0.213482] }, { "keytime": 1074.333130, "scale": [ 0.214949, 0.214949, 0.214949] }, { "keytime": 1107.666504, "scale": [ 0.216549, 0.216549, 0.216549] }, { "keytime": 1140.999878, "scale": [ 0.218213, 0.218213, 0.218213] }, { "keytime": 1174.333252, "scale": [ 0.219985, 0.219985, 0.219985] }, { "keytime": 1207.666626, "scale": [ 0.221888, 0.221888, 0.221888] }, { "keytime": 1241.000000, "scale": [ 0.223848, 0.223848, 0.223848] }, { "keytime": 1274.333374, "scale": [ 0.225926, 0.225926, 0.225926] }, { "keytime": 1307.666748, "scale": [ 0.228063, 0.228063, 0.228063] }, { "keytime": 1341.000122, "scale": [ 0.230322, 0.230322, 0.230321] }, { "keytime": 1407.666870, "scale": [ 0.235044, 0.235044, 0.235044] }, { "keytime": 1441.000244, "scale": [ 0.237636, 0.237636, 0.237636] }, { "keytime": 1474.333618, "scale": [ 0.240208, 0.240208, 0.240208] }, { "keytime": 1507.666992, "scale": [ 0.242826, 0.242826, 0.242826] }, { "keytime": 1541.000366, "scale": [ 0.245678, 0.245678, 0.245678] }, { "keytime": 1574.333740, "scale": [ 0.248446, 0.248446, 0.248446] }, { "keytime": 1607.667114, "scale": [ 0.251347, 0.251347, 0.251347] }, { "keytime": 1641.000488, "scale": [ 0.254386, 0.254386, 0.254386] }, { "keytime": 1674.333862, "scale": [ 0.257374, 0.257374, 0.257374] }, { "keytime": 1707.667236, "scale": [ 0.260487, 0.260487, 0.260487] }, { "keytime": 1741.000610, "scale": [ 0.263695, 0.263695, 0.263695] }, { "keytime": 1774.333984, "scale": [ 0.266993, 0.266993, 0.266993] }, { "keytime": 1807.667358, "scale": [ 0.270519, 0.270519, 0.270519] }, { "keytime": 1841.000732, "scale": [ 0.274419, 0.274419, 0.274419] }, { "keytime": 1874.334106, "scale": [ 0.278462, 0.278462, 0.278462] }, { "keytime": 1907.667480, "scale": [ 0.282845, 0.282845, 0.282845] }, { "keytime": 1941.000854, "scale": [ 0.287624, 0.287624, 0.287624] }, { "keytime": 1974.334229, "scale": [ 0.292524, 0.292524, 0.292524] }, { "keytime": 2007.667603, "scale": [ 0.297676, 0.297676, 0.297676] }, { "keytime": 2041.000977, "scale": [ 0.303255, 0.303254, 0.303254] }, { "keytime": 2074.334473, "scale": [ 0.309011, 0.309011, 0.309011] }, { "keytime": 2107.667725, "scale": [ 0.315017, 0.315017, 0.315017] }, { "keytime": 2141.000977, "scale": [ 0.321468, 0.321468, 0.321468] }, { "keytime": 2174.334229, "scale": [ 0.327982, 0.327982, 0.327982] }, { "keytime": 2207.667480, "scale": [ 0.334749, 0.334749, 0.334749] }, { "keytime": 2241.000732, "scale": [ 0.342056, 0.342056, 0.342056] }, { "keytime": 2274.333984, "scale": [ 0.349398, 0.349398, 0.349398] }, { "keytime": 2307.667236, "scale": [ 0.356979, 0.356979, 0.356979] }, { "keytime": 2374.333740, "scale": [ 0.373102, 0.373102, 0.373102] }, { "keytime": 2407.666992, "scale": [ 0.381470, 0.381470, 0.381470] }, { "keytime": 2441.000244, "scale": [ 0.390323, 0.390323, 0.390323] }, { "keytime": 2474.333496, "scale": [ 0.399141, 0.399141, 0.399141] }, { "keytime": 2507.666748, "scale": [ 0.408173, 0.408173, 0.408173] }, { "keytime": 2541.000000, "scale": [ 0.417703, 0.417703, 0.417703] }, { "keytime": 2574.333252, "scale": [ 0.427227, 0.427227, 0.427227] }, { "keytime": 2607.666504, "scale": [ 0.436945, 0.436945, 0.436945] }, { "keytime": 2640.999756, "scale": [ 0.446850, 0.446850, 0.446850] }, { "keytime": 2674.333008, "scale": [ 0.457249, 0.457249, 0.457249] }, { "keytime": 2707.666260, "scale": [ 0.467524, 0.467524, 0.467524] }, { "keytime": 2740.999512, "scale": [ 0.478018, 0.478018, 0.478018] }, { "keytime": 2774.332764, "scale": [ 0.488991, 0.488991, 0.488991] }, { "keytime": 2807.666016, "scale": [ 0.499792, 0.499792, 0.499792] }, { "keytime": 2840.999268, "scale": [ 0.510732, 0.510732, 0.510732] }, { "keytime": 2874.332520, "scale": [ 0.522145, 0.522145, 0.522145] }, { "keytime": 2907.665771, "scale": [ 0.533449, 0.533449, 0.533449] }, { "keytime": 2940.999023, "scale": [ 0.544755, 0.544755, 0.544755] }, { "keytime": 2974.332275, "scale": [ 0.556523, 0.556524, 0.556523] }, { "keytime": 3040.998779, "scale": [ 0.579621, 0.579621, 0.579621] }, { "keytime": 3074.332031, "scale": [ 0.591712, 0.591712, 0.591712] }, { "keytime": 3140.998535, "scale": [ 0.615195, 0.615195, 0.615195] }, { "keytime": 3174.331787, "scale": [ 0.627292, 0.627292, 0.627292] }, { "keytime": 3240.998291, "scale": [ 0.650774, 0.650774, 0.650774] }, { "keytime": 3274.331543, "scale": [ 0.662871, 0.662871, 0.662871] }, { "keytime": 3340.998047, "scale": [ 0.686354, 0.686354, 0.686354] }, { "keytime": 3374.331299, "scale": [ 0.698451, 0.698451, 0.698451] }, { "keytime": 3407.664551, "scale": [ 0.709952, 0.709952, 0.709952] }, { "keytime": 3440.997803, "scale": [ 0.721451, 0.721451, 0.721451] }, { "keytime": 3474.331055, "scale": [ 0.733164, 0.733165, 0.733165] }, { "keytime": 3540.997559, "scale": [ 0.755621, 0.755621, 0.755621] }, { "keytime": 3574.330811, "scale": [ 0.766936, 0.766936, 0.766936] }, { "keytime": 3607.664062, "scale": [ 0.777765, 0.777765, 0.777765] }, { "keytime": 3640.997314, "scale": [ 0.788441, 0.788441, 0.788441] }, { "keytime": 3674.330566, "scale": [ 0.799268, 0.799268, 0.799268] }, { "keytime": 3707.663818, "scale": [ 0.809599, 0.809599, 0.809599] }, { "keytime": 3740.997070, "scale": [ 0.819685, 0.819685, 0.819685] }, { "keytime": 3774.330322, "scale": [ 0.829871, 0.829872, 0.829872] }, { "keytime": 3807.663574, "scale": [ 0.839549, 0.839549, 0.839549] }, { "keytime": 3840.996826, "scale": [ 0.849016, 0.849016, 0.849016] }, { "keytime": 3874.330078, "scale": [ 0.858532, 0.858532, 0.858532] }, { "keytime": 3907.663330, "scale": [ 0.867461, 0.867461, 0.867461] }, { "keytime": 3940.996582, "scale": [ 0.876154, 0.876154, 0.876154] }, { "keytime": 3974.329834, "scale": [ 0.884854, 0.884854, 0.884854] }, { "keytime": 4007.663086, "scale": [ 0.893045, 0.893045, 0.893045] }, { "keytime": 4040.996338, "scale": [ 0.900972, 0.900972, 0.900972] }, { "keytime": 4074.329590, "scale": [ 0.908787, 0.908786, 0.908786] }, { "keytime": 4107.663086, "scale": [ 0.916094, 0.916094, 0.916094] }, { "keytime": 4140.996094, "scale": [ 0.923131, 0.923131, 0.923131] }, { "keytime": 4174.329590, "scale": [ 0.930090, 0.930090, 0.930090] }, { "keytime": 4207.663086, "scale": [ 0.936558, 0.936558, 0.936558] }, { "keytime": 4240.996582, "scale": [ 0.942652, 0.942652, 0.942652] }, { "keytime": 4274.330078, "scale": [ 0.948634, 0.948634, 0.948634] }, { "keytime": 4307.663574, "scale": [ 0.954146, 0.954146, 0.954146] }, { "keytime": 4340.997070, "scale": [ 0.959369, 0.959369, 0.959369] }, { "keytime": 4374.330566, "scale": [ 0.964436, 0.964436, 0.964436] }, { "keytime": 4407.664062, "scale": [ 0.968962, 0.968962, 0.968962] }, { "keytime": 4440.997559, "scale": [ 0.973195, 0.973195, 0.973195] }, { "keytime": 4474.331055, "scale": [ 0.977249, 0.977249, 0.977249] }, { "keytime": 4507.664551, "scale": [ 0.980884, 0.980884, 0.980884] }, { "keytime": 4540.998047, "scale": [ 0.984213, 0.984213, 0.984213] }, { "keytime": 4574.331543, "scale": [ 0.987245, 0.987245, 0.987245] }, { "keytime": 4607.665039, "scale": [ 0.989883, 0.989883, 0.989883] }, { "keytime": 4640.998535, "scale": [ 0.992229, 0.992229, 0.992229] }, { "keytime": 4674.332031, "scale": [ 0.994335, 0.994335, 0.994335] }, { "keytime": 4707.665527, "scale": [ 0.996079, 0.996079, 0.996079] }, { "keytime": 4740.999023, "scale": [ 0.997438, 0.997438, 0.997438] }, { "keytime": 4774.332520, "scale": [ 0.998538, 0.998539, 0.998538] }, { "keytime": 4807.666016, "scale": [ 0.999312, 0.999312, 0.999312] }, { "keytime": 4832.000000, "scale": [ 0.999748, 0.999748, 0.999748] } ] }, { "boneId": "Bone_008", "keyframes": [ { "keytime": 41.000000, "scale": [ 1.000000, 1.000000, 1.000000], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 74.333328, "scale": [ 0.999539, 0.999539, 0.999539], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 107.666664, "scale": [ 0.998395, 0.998395, 0.998395], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 141.000000, "scale": [ 0.996495, 0.996495, 0.996495], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 174.333328, "scale": [ 0.993948, 0.993948, 0.993948], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 207.666656, "scale": [ 0.990690, 0.990690, 0.990690], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 240.999985, "scale": [ 0.986510, 0.986510, 0.986510], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 274.333313, "scale": [ 0.981479, 0.981479, 0.981478], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 307.666656, "scale": [ 0.975880, 0.975880, 0.975880], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 341.000000, "scale": [ 0.969374, 0.969374, 0.969375], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 374.333344, "scale": [ 0.962352, 0.962351, 0.962352], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 407.666687, "scale": [ 0.954404, 0.954404, 0.954404], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 441.000031, "scale": [ 0.945505, 0.945505, 0.945505], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 474.333374, "scale": [ 0.936170, 0.936170, 0.936170], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 507.666718, "scale": [ 0.926164, 0.926164, 0.926164], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 541.000061, "scale": [ 0.915142, 0.915142, 0.915142], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 574.333374, "scale": [ 0.903561, 0.903561, 0.903561], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 607.666687, "scale": [ 0.891344, 0.891344, 0.891344], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 641.000000, "scale": [ 0.878101, 0.878101, 0.878101], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 674.333313, "scale": [ 0.864624, 0.864624, 0.864624], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 707.666626, "scale": [ 0.850534, 0.850534, 0.850533], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 740.999939, "scale": [ 0.835682, 0.835682, 0.835682], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 774.333252, "scale": [ 0.819810, 0.819810, 0.819810], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 807.666565, "scale": [ 0.803862, 0.803862, 0.803862], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 840.999878, "scale": [ 0.787408, 0.787408, 0.787408], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 874.333191, "scale": [ 0.769929, 0.769929, 0.769929], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 907.666504, "scale": [ 0.752363, 0.752363, 0.752363], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 940.999817, "scale": [ 0.734387, 0.734387, 0.734386], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 974.333130, "scale": [ 0.715462, 0.715462, 0.715462], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 1007.666443, "scale": [ 0.696731, 0.696731, 0.696731], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 1040.999756, "scale": [ 0.677662, 0.677662, 0.677662], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 1074.333130, "scale": [ 0.657637, 0.657637, 0.657637], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 1107.666504, "scale": [ 0.637958, 0.637958, 0.637958], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 1140.999878, "scale": [ 0.618080, 0.618080, 0.618080], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 1174.333252, "scale": [ 0.597406, 0.597405, 0.597405], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 1207.666626, "scale": [ 0.577149, 0.577149, 0.577149], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 1241.000000, "scale": [ 0.556279, 0.556279, 0.556279], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 1307.666748, "scale": [ 0.515766, 0.515766, 0.515766], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 1341.000122, "scale": [ 0.494896, 0.494896, 0.494896], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 1374.333496, "scale": [ 0.474639, 0.474639, 0.474639], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 1407.666870, "scale": [ 0.454629, 0.454629, 0.454629], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 1441.000244, "scale": [ 0.434202, 0.434202, 0.434202], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 1474.333618, "scale": [ 0.414596, 0.414596, 0.414596], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 1507.666992, "scale": [ 0.395236, 0.395236, 0.395236], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 1541.000366, "scale": [ 0.375589, 0.375589, 0.375590], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 1574.333740, "scale": [ 0.356961, 0.356961, 0.356961], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 1607.667114, "scale": [ 0.338702, 0.338702, 0.338702], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 1641.000488, "scale": [ 0.320305, 0.320305, 0.320305], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 1674.333862, "scale": [ 0.302880, 0.302880, 0.302880], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 1707.667236, "scale": [ 0.285916, 0.285916, 0.285916], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 1741.000610, "scale": [ 0.269099, 0.269100, 0.269100], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 1774.333984, "scale": [ 0.253315, 0.253315, 0.253315], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 1807.667358, "scale": [ 0.238066, 0.238066, 0.238066], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 1841.000732, "scale": [ 0.222944, 0.222944, 0.222944], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 1874.334106, "scale": [ 0.208853, 0.208853, 0.208854], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 1907.667480, "scale": [ 0.195564, 0.195564, 0.195564], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 1941.000854, "scale": [ 0.182516, 0.182516, 0.182516], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 1974.334229, "scale": [ 0.170499, 0.170499, 0.170499], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 2007.667603, "scale": [ 0.159123, 0.159123, 0.159123], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 2041.000977, "scale": [ 0.148102, 0.148102, 0.148102], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 2074.334473, "scale": [ 0.138304, 0.138304, 0.138304], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 2107.667725, "scale": [ 0.129182, 0.129182, 0.129182], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 2141.000977, "scale": [ 0.120498, 0.120498, 0.120498], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 2174.334229, "scale": [ 0.112767, 0.112767, 0.112767], "translation": [ 0.536420, 0.000001, -0.000001] }, { "keytime": 2207.667480, "scale": [ 0.105744, 0.105744, 0.105744], "translation": [ 0.536420, 0.000000, -0.000001] }, { "keytime": 2241.000732, "scale": [ 0.099457, 0.099457, 0.099457], "translation": [ 0.536420, 0.000000, -0.000001] }, { "keytime": 2274.333984, "scale": [ 0.094078, 0.094078, 0.094078], "translation": [ 0.536420, 0.000000, -0.000001] }, { "keytime": 2307.667236, "scale": [ 0.089393, 0.089393, 0.089393], "translation": [ 0.536420, 0.000000, -0.000001] }, { "keytime": 2341.000488, "scale": [ 0.085304, 0.085304, 0.085304], "translation": [ 0.536420, 0.000000, -0.000001] }, { "keytime": 2374.333740, "scale": [ 0.082046, 0.082046, 0.082046], "translation": [ 0.536420, 0.000000, -0.000001] }, { "keytime": 2407.666992, "scale": [ 0.079717, 0.079717, 0.079717], "translation": [ 0.536420, 0.000000, -0.000001] }, { "keytime": 2441.000244, "scale": [ 0.078033, 0.078033, 0.078033], "translation": [ 0.536420, 0.000000, -0.000001] }, { "keytime": 2474.333496, "scale": [ 0.077104, 0.077104, 0.077104], "translation": [ 0.536420, 0.000000, -0.000001] }, { "keytime": 2507.666748, "scale": [ 0.076865, 0.076865, 0.076865], "translation": [ 0.536420, 0.000000, -0.000001] }, { "keytime": 2541.000000, "scale": [ 0.077374, 0.077374, 0.077374], "translation": [ 0.536420, 0.000000, -0.000001] }, { "keytime": 2574.333252, "scale": [ 0.078861, 0.078861, 0.078861], "translation": [ 0.536420, 0.000000, -0.000001] }, { "keytime": 2607.666504, "scale": [ 0.081084, 0.081084, 0.081084], "translation": [ 0.536420, 0.000000, -0.000001] }, { "keytime": 2640.999756, "scale": [ 0.084048, 0.084048, 0.084048], "translation": [ 0.536420, 0.000000, -0.000001] }, { "keytime": 2674.333008, "scale": [ 0.087890, 0.087890, 0.087890], "translation": [ 0.536420, 0.000000, -0.000001] }, { "keytime": 2707.666260, "scale": [ 0.092391, 0.092391, 0.092391], "translation": [ 0.536420, 0.000000, -0.000001] }, { "keytime": 2740.999512, "scale": [ 0.097881, 0.097881, 0.097881], "translation": [ 0.536420, 0.000000, -0.000001] }, { "keytime": 2774.332764, "scale": [ 0.104313, 0.104313, 0.104313], "translation": [ 0.536420, 0.000000, -0.000001] }, { "keytime": 2807.666016, "scale": [ 0.111319, 0.111319, 0.111319], "translation": [ 0.536420, 0.000000, -0.000001] }, { "keytime": 2840.999268, "scale": [ 0.119065, 0.119065, 0.119065], "translation": [ 0.536420, 0.000000, -0.000001] }, { "keytime": 2874.332520, "scale": [ 0.127846, 0.127846, 0.127846], "translation": [ 0.536420, 0.000000, -0.000001] }, { "keytime": 2907.665771, "scale": [ 0.137347, 0.137347, 0.137347], "translation": [ 0.536421, 0.000000, -0.000001] }, { "keytime": 2940.999023, "scale": [ 0.147567, 0.147567, 0.147567], "translation": [ 0.536421, 0.000000, -0.000001] }, { "keytime": 2974.332275, "scale": [ 0.158846, 0.158846, 0.158846], "translation": [ 0.536421, 0.000000, -0.000001] }, { "keytime": 3007.665527, "scale": [ 0.170508, 0.170508, 0.170508], "translation": [ 0.536421, 0.000000, -0.000001] }, { "keytime": 3040.998779, "scale": [ 0.182889, 0.182889, 0.182889], "translation": [ 0.536421, 0.000000, -0.000001] }, { "keytime": 3074.332031, "scale": [ 0.196558, 0.196558, 0.196558], "translation": [ 0.536421, 0.000000, -0.000001] }, { "keytime": 3107.665283, "scale": [ 0.210503, 0.210503, 0.210503], "translation": [ 0.536421, 0.000000, -0.000001] }, { "keytime": 3140.998535, "scale": [ 0.225084, 0.225084, 0.225084], "translation": [ 0.536421, 0.000000, -0.000001] }, { "keytime": 3174.331787, "scale": [ 0.240762, 0.240762, 0.240762], "translation": [ 0.536421, 0.000000, -0.000001] }, { "keytime": 3207.665039, "scale": [ 0.256600, 0.256600, 0.256600], "translation": [ 0.536421, 0.000000, -0.000001] }, { "keytime": 3240.998291, "scale": [ 0.273190, 0.273190, 0.273190], "translation": [ 0.536421, 0.000000, -0.000001] }, { "keytime": 3274.331543, "scale": [ 0.290839, 0.290839, 0.290838], "translation": [ 0.536421, 0.000000, -0.000001] }, { "keytime": 3307.664795, "scale": [ 0.308490, 0.308490, 0.308490], "translation": [ 0.536421, 0.000000, -0.000001] }, { "keytime": 3340.998047, "scale": [ 0.326622, 0.326622, 0.326622], "translation": [ 0.536421, 0.000000, -0.000001] }, { "keytime": 3374.331299, "scale": [ 0.345794, 0.345794, 0.345794], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 3407.664551, "scale": [ 0.364948, 0.364948, 0.364948], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 3440.997803, "scale": [ 0.384462, 0.384462, 0.384462], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 3474.331055, "scale": [ 0.404912, 0.404912, 0.404912], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 3507.664307, "scale": [ 0.425058, 0.425058, 0.425058], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 3540.997559, "scale": [ 0.445471, 0.445471, 0.445471], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 3574.330811, "scale": [ 0.466776, 0.466776, 0.466776], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 3607.664062, "scale": [ 0.487665, 0.487665, 0.487665], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 3640.997314, "scale": [ 0.508627, 0.508627, 0.508627], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 3674.330566, "scale": [ 0.530224, 0.530224, 0.530224], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 3740.997070, "scale": [ 0.572147, 0.572147, 0.572147], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 3774.330322, "scale": [ 0.593744, 0.593744, 0.593744], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 3807.663574, "scale": [ 0.614572, 0.614572, 0.614572], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 3840.996826, "scale": [ 0.635197, 0.635197, 0.635197], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 3874.330078, "scale": [ 0.656229, 0.656229, 0.656229], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 3907.663330, "scale": [ 0.676298, 0.676298, 0.676298], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 3940.996582, "scale": [ 0.696059, 0.696059, 0.696059], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 3974.329834, "scale": [ 0.716061, 0.716061, 0.716061], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 4007.663086, "scale": [ 0.735092, 0.735092, 0.735092], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 4040.996338, "scale": [ 0.753701, 0.753701, 0.753701], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 4074.329590, "scale": [ 0.772260, 0.772260, 0.772260], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 4107.663086, "scale": [ 0.789763, 0.789763, 0.789763], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 4140.996094, "scale": [ 0.806747, 0.806747, 0.806747], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 4174.329590, "scale": [ 0.823670, 0.823670, 0.823670], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 4207.663086, "scale": [ 0.839508, 0.839508, 0.839508], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 4240.996582, "scale": [ 0.854551, 0.854551, 0.854551], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 4274.330078, "scale": [ 0.869398, 0.869398, 0.869398], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 4307.663574, "scale": [ 0.883147, 0.883147, 0.883147], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 4340.997070, "scale": [ 0.896238, 0.896238, 0.896238], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 4374.330566, "scale": [ 0.908995, 0.908995, 0.908995], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 4407.664062, "scale": [ 0.920449, 0.920448, 0.920448], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 4440.997559, "scale": [ 0.931196, 0.931196, 0.931196], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 4474.331055, "scale": [ 0.941517, 0.941517, 0.941517], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 4507.664551, "scale": [ 0.950799, 0.950799, 0.950799], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 4540.998047, "scale": [ 0.959321, 0.959321, 0.959321], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 4574.331543, "scale": [ 0.967104, 0.967104, 0.967104], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 4607.665039, "scale": [ 0.973887, 0.973887, 0.973887], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 4640.998535, "scale": [ 0.979927, 0.979928, 0.979927], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 4674.332031, "scale": [ 0.985360, 0.985360, 0.985360], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 4707.665527, "scale": [ 0.989861, 0.989860, 0.989860], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 4740.999023, "scale": [ 0.993373, 0.993373, 0.993373], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 4774.332520, "scale": [ 0.996219, 0.996219, 0.996219], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 4807.666016, "scale": [ 0.998221, 0.998221, 0.998221], "translation": [ 0.536421, 0.000000, -0.000000] }, { "keytime": 4832.000000, "scale": [ 0.999347, 0.999346, 0.999347], "translation": [ 0.536421, 0.000000, -0.000000] } ] }, { "boneId": "Bone_009", "keyframes": [ { "keytime": 41.000000, "scale": [ 0.560000, 0.560000, 0.560000], "translation": [ 0.462493, 0.000000, 0.000001] }, { "keytime": 74.333328, "scale": [ 0.559886, 0.559886, 0.559886], "translation": [ 0.462493, 0.000000, 0.000001] }, { "keytime": 107.666664, "scale": [ 0.559605, 0.559605, 0.559605], "translation": [ 0.462493, 0.000000, 0.000001] }, { "keytime": 141.000000, "scale": [ 0.559137, 0.559137, 0.559137], "translation": [ 0.462493, 0.000000, 0.000001] }, { "keytime": 174.333328, "scale": [ 0.558511, 0.558511, 0.558511], "translation": [ 0.462493, 0.000000, 0.000001] }, { "keytime": 207.666656, "scale": [ 0.557710, 0.557710, 0.557710], "translation": [ 0.462493, 0.000000, 0.000001] }, { "keytime": 240.999985, "scale": [ 0.556682, 0.556682, 0.556682], "translation": [ 0.462493, 0.000000, 0.000001] }, { "keytime": 274.333313, "scale": [ 0.555445, 0.555445, 0.555445], "translation": [ 0.462493, 0.000000, 0.000001] }, { "keytime": 307.666656, "scale": [ 0.554069, 0.554069, 0.554069], "translation": [ 0.462493, 0.000000, 0.000001] }, { "keytime": 341.000000, "scale": [ 0.552468, 0.552468, 0.552468], "translation": [ 0.462493, 0.000000, 0.000001] }, { "keytime": 374.333344, "scale": [ 0.550739, 0.550739, 0.550739], "translation": [ 0.462493, 0.000000, 0.000001] }, { "keytime": 407.666687, "scale": [ 0.548781, 0.548781, 0.548781], "translation": [ 0.462493, 0.000000, 0.000001] }, { "keytime": 441.000031, "scale": [ 0.546585, 0.546585, 0.546585], "translation": [ 0.462493, 0.000000, 0.000001] }, { "keytime": 474.333374, "scale": [ 0.544279, 0.544279, 0.544279], "translation": [ 0.462493, 0.000000, 0.000001] }, { "keytime": 507.666718, "scale": [ 0.541802, 0.541803, 0.541802], "translation": [ 0.462493, 0.000000, 0.000001] }, { "keytime": 541.000061, "scale": [ 0.539070, 0.539070, 0.539070], "translation": [ 0.462493, 0.000000, 0.000001] }, { "keytime": 574.333374, "scale": [ 0.536191, 0.536191, 0.536191], "translation": [ 0.462493, 0.000000, 0.000001] }, { "keytime": 607.666687, "scale": [ 0.533145, 0.533145, 0.533145], "translation": [ 0.462493, 0.000000, 0.000001] }, { "keytime": 641.000000, "scale": [ 0.529834, 0.529834, 0.529834], "translation": [ 0.462493, 0.000000, 0.000001] }, { "keytime": 674.333313, "scale": [ 0.526454, 0.526454, 0.526454], "translation": [ 0.462493, 0.000000, 0.000001] }, { "keytime": 707.666626, "scale": [ 0.522908, 0.522907, 0.522907], "translation": [ 0.462493, 0.000000, 0.000001] }, { "keytime": 740.999939, "scale": [ 0.519150, 0.519150, 0.519150], "translation": [ 0.462493, 0.000000, 0.000001] }, { "keytime": 774.333252, "scale": [ 0.515116, 0.515116, 0.515116], "translation": [ 0.462493, 0.000000, 0.000001] }, { "keytime": 807.666565, "scale": [ 0.511042, 0.511042, 0.511042], "translation": [ 0.462493, 0.000000, 0.000001] }, { "keytime": 840.999878, "scale": [ 0.506817, 0.506817, 0.506817], "translation": [ 0.462493, 0.000000, 0.000001] }, { "keytime": 874.333191, "scale": [ 0.502303, 0.502303, 0.502303], "translation": [ 0.462493, 0.000000, 0.000001] }, { "keytime": 907.666504, "scale": [ 0.497728, 0.497728, 0.497728], "translation": [ 0.462493, 0.000000, 0.000001] }, { "keytime": 940.999817, "scale": [ 0.493014, 0.493014, 0.493014], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 974.333130, "scale": [ 0.488013, 0.488014, 0.488013], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 1007.666443, "scale": [ 0.483025, 0.483025, 0.483025], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 1040.999756, "scale": [ 0.477904, 0.477904, 0.477904], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 1074.333130, "scale": [ 0.472461, 0.472461, 0.472461], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 1107.666504, "scale": [ 0.467003, 0.467003, 0.467003], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 1140.999878, "scale": [ 0.461484, 0.461485, 0.461484], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 1174.333252, "scale": [ 0.455732, 0.455732, 0.455732], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 1207.666626, "scale": [ 0.449939, 0.449939, 0.449939], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 1241.000000, "scale": [ 0.443970, 0.443970, 0.443970], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 1274.333374, "scale": [ 0.438004, 0.438004, 0.438004], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 1307.666748, "scale": [ 0.431979, 0.431979, 0.431979], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 1341.000122, "scale": [ 0.425717, 0.425717, 0.425717], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 1407.666870, "scale": [ 0.413227, 0.413227, 0.413227], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 1441.000244, "scale": [ 0.406793, 0.406793, 0.406793], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 1474.333618, "scale": [ 0.400458, 0.400458, 0.400458], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 1507.666992, "scale": [ 0.394031, 0.394031, 0.394031], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 1541.000366, "scale": [ 0.387409, 0.387410, 0.387409], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 1607.667114, "scale": [ 0.374555, 0.374556, 0.374555], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 1641.000488, "scale": [ 0.367934, 0.367934, 0.367934], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 1707.667236, "scale": [ 0.355080, 0.355080, 0.355080], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 1741.000610, "scale": [ 0.348549, 0.348549, 0.348549], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 1807.667358, "scale": [ 0.335876, 0.335876, 0.335876], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 1841.000732, "scale": [ 0.329347, 0.329348, 0.329347], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 1874.334106, "scale": [ 0.323011, 0.323011, 0.323011], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 1907.667480, "scale": [ 0.316886, 0.316886, 0.316886], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 1941.000854, "scale": [ 0.310577, 0.310577, 0.310577], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 1974.334229, "scale": [ 0.304557, 0.304558, 0.304557], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 2007.667603, "scale": [ 0.298643, 0.298643, 0.298643], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 2041.000977, "scale": [ 0.292549, 0.292549, 0.292549], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 2107.667725, "scale": [ 0.281227, 0.281227, 0.281227], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 2141.000977, "scale": [ 0.275544, 0.275544, 0.275544], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 2207.667480, "scale": [ 0.264811, 0.264811, 0.264811], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 2241.000732, "scale": [ 0.259529, 0.259529, 0.259529], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 2274.333984, "scale": [ 0.254538, 0.254538, 0.254538], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 2307.667236, "scale": [ 0.249678, 0.249678, 0.249678], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 2341.000488, "scale": [ 0.244816, 0.244816, 0.244816], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 2374.333740, "scale": [ 0.240239, 0.240239, 0.240239], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 2407.666992, "scale": [ 0.235855, 0.235855, 0.235855], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 2441.000244, "scale": [ 0.231494, 0.231494, 0.231494], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 2474.333496, "scale": [ 0.227416, 0.227416, 0.227416], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 2507.666748, "scale": [ 0.223491, 0.223491, 0.223491], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 2541.000000, "scale": [ 0.219615, 0.219615, 0.219615], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 2574.333252, "scale": [ 0.216069, 0.216069, 0.216069], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 2607.666504, "scale": [ 0.212684, 0.212684, 0.212684], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 2640.999756, "scale": [ 0.209463, 0.209463, 0.209463], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 2674.333008, "scale": [ 0.206319, 0.206319, 0.206319], "translation": [ 0.462494, 0.000000, 0.000001] }, { "keytime": 2707.666260, "scale": [ 0.203439, 0.203439, 0.203439], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 2740.999512, "scale": [ 0.200783, 0.200783, 0.200783], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 2774.332764, "scale": [ 0.198222, 0.198222, 0.198222], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 2807.666016, "scale": [ 0.195910, 0.195910, 0.195910], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 2840.999268, "scale": [ 0.193770, 0.193770, 0.193770], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 2874.332520, "scale": [ 0.191749, 0.191749, 0.191749], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 2907.665771, "scale": [ 0.190018, 0.190018, 0.190018], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 2940.999023, "scale": [ 0.188458, 0.188458, 0.188458], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 2974.332275, "scale": [ 0.187031, 0.187031, 0.187031], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 3007.665527, "scale": [ 0.185821, 0.185821, 0.185821], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 3040.998779, "scale": [ 0.184789, 0.184789, 0.184789], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 3074.332031, "scale": [ 0.183956, 0.183956, 0.183956], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 3107.665283, "scale": [ 0.183325, 0.183325, 0.183325], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 3140.998535, "scale": [ 0.182863, 0.182863, 0.182863], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 3174.331787, "scale": [ 0.182567, 0.182567, 0.182567], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 3207.665039, "scale": [ 0.182453, 0.182453, 0.182453], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 3240.998291, "scale": [ 0.183322, 0.183322, 0.183322], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 3274.331543, "scale": [ 0.185576, 0.185576, 0.185576], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 3307.664795, "scale": [ 0.189132, 0.189132, 0.189132], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 3340.998047, "scale": [ 0.194021, 0.194021, 0.194021], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 3374.331299, "scale": [ 0.200512, 0.200512, 0.200512], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 3407.664551, "scale": [ 0.208608, 0.208609, 0.208608], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 3440.997803, "scale": [ 0.218037, 0.218037, 0.218037], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 3474.331055, "scale": [ 0.229141, 0.229142, 0.229141], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 3507.664307, "scale": [ 0.241255, 0.241255, 0.241255], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 3540.997559, "scale": [ 0.254714, 0.254714, 0.254714], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 3574.330811, "scale": [ 0.270290, 0.270290, 0.270290], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 3607.664062, "scale": [ 0.286673, 0.286673, 0.286673], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 3640.997314, "scale": [ 0.304235, 0.304235, 0.304235], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 3674.330566, "scale": [ 0.323541, 0.323541, 0.323541], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 3707.663818, "scale": [ 0.343411, 0.343411, 0.343411], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 3740.997070, "scale": [ 0.364626, 0.364626, 0.364626], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 3774.330322, "scale": [ 0.387444, 0.387444, 0.387444], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 3807.663574, "scale": [ 0.410471, 0.410471, 0.410471], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 3840.996826, "scale": [ 0.434278, 0.434278, 0.434278], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 3874.330078, "scale": [ 0.459566, 0.459566, 0.459566], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 3907.663330, "scale": [ 0.484881, 0.484881, 0.484880], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 3940.996582, "scale": [ 0.510635, 0.510635, 0.510635], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 3974.329834, "scale": [ 0.537536, 0.537536, 0.537536], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 4007.663086, "scale": [ 0.563901, 0.563901, 0.563901], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 4040.996338, "scale": [ 0.590422, 0.590422, 0.590422], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 4074.329590, "scale": [ 0.617746, 0.617746, 0.617746], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 4107.663086, "scale": [ 0.644118, 0.644118, 0.644118], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 4140.996094, "scale": [ 0.670246, 0.670246, 0.670246], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 4174.329590, "scale": [ 0.696803, 0.696803, 0.696803], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 4207.663086, "scale": [ 0.722126, 0.722126, 0.722126], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 4240.996582, "scale": [ 0.746686, 0.746686, 0.746686], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 4274.330078, "scale": [ 0.771265, 0.771265, 0.771265], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 4307.663574, "scale": [ 0.794325, 0.794325, 0.794325], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 4340.997070, "scale": [ 0.816538, 0.816538, 0.816538], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 4374.330566, "scale": [ 0.838424, 0.838425, 0.838425], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 4407.664062, "scale": [ 0.858308, 0.858308, 0.858308], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 4440.997559, "scale": [ 0.877101, 0.877101, 0.877101], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 4474.331055, "scale": [ 0.895269, 0.895269, 0.895269], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 4507.664551, "scale": [ 0.911702, 0.911702, 0.911702], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 4540.998047, "scale": [ 0.926869, 0.926869, 0.926869], "translation": [ 0.462494, 0.000000, 0.000000] }, { "keytime": 4574.331543, "scale": [ 0.940788, 0.940789, 0.940788], "translation": [ 0.462494, 0.000000, -0.000000] }, { "keytime": 4607.665039, "scale": [ 0.952955, 0.952955, 0.952955], "translation": [ 0.462494, 0.000000, -0.000000] }, { "keytime": 4640.998535, "scale": [ 0.963813, 0.963813, 0.963813], "translation": [ 0.462494, 0.000000, -0.000000] }, { "keytime": 4674.332031, "scale": [ 0.973597, 0.973597, 0.973597], "translation": [ 0.462494, 0.000000, -0.000000] }, { "keytime": 4707.665527, "scale": [ 0.981712, 0.981712, 0.981712], "translation": [ 0.462494, 0.000000, -0.000000] }, { "keytime": 4740.999023, "scale": [ 0.988049, 0.988049, 0.988049], "translation": [ 0.462494, 0.000000, -0.000000] }, { "keytime": 4774.332520, "scale": [ 0.993184, 0.993184, 0.993184], "translation": [ 0.462494, 0.000000, -0.000000] }, { "keytime": 4807.666016, "scale": [ 0.996794, 0.996794, 0.996794], "translation": [ 0.462494, 0.000000, -0.000000] }, { "keytime": 4832.000000, "scale": [ 0.998824, 0.998824, 0.998824], "translation": [ 0.462494, 0.000000, -0.000000] } ] }, { "boneId": "Bone_010", "keyframes": [ { "keytime": 41.000000, "scale": [ 0.659330, 0.659330, 0.659330], "translation": [ 0.375512, 0.000000, -0.000003] }, { "keytime": 74.333328, "scale": [ 0.659230, 0.659230, 0.659230], "translation": [ 0.375512, 0.000000, -0.000003] }, { "keytime": 107.666664, "scale": [ 0.658983, 0.658983, 0.658983], "translation": [ 0.375512, 0.000000, -0.000003] }, { "keytime": 141.000000, "scale": [ 0.658573, 0.658573, 0.658573], "translation": [ 0.375512, 0.000000, -0.000003] }, { "keytime": 174.333328, "scale": [ 0.658023, 0.658023, 0.658023], "translation": [ 0.375512, 0.000000, -0.000003] }, { "keytime": 207.666656, "scale": [ 0.657320, 0.657320, 0.657320], "translation": [ 0.375512, 0.000000, -0.000003] }, { "keytime": 240.999985, "scale": [ 0.656419, 0.656419, 0.656419], "translation": [ 0.375512, 0.000000, -0.000003] }, { "keytime": 274.333313, "scale": [ 0.655334, 0.655334, 0.655334], "translation": [ 0.375512, 0.000000, -0.000003] }, { "keytime": 307.666656, "scale": [ 0.654126, 0.654126, 0.654126], "translation": [ 0.375512, 0.000000, -0.000003] }, { "keytime": 341.000000, "scale": [ 0.652722, 0.652721, 0.652722], "translation": [ 0.375512, 0.000000, -0.000003] }, { "keytime": 374.333344, "scale": [ 0.651205, 0.651205, 0.651205], "translation": [ 0.375512, 0.000000, -0.000003] }, { "keytime": 407.666687, "scale": [ 0.649486, 0.649486, 0.649486], "translation": [ 0.375512, 0.000000, -0.000003] }, { "keytime": 441.000031, "scale": [ 0.647558, 0.647558, 0.647558], "translation": [ 0.375512, 0.000000, -0.000003] }, { "keytime": 474.333374, "scale": [ 0.645532, 0.645532, 0.645532], "translation": [ 0.375512, 0.000000, -0.000003] }, { "keytime": 507.666718, "scale": [ 0.643356, 0.643356, 0.643356], "translation": [ 0.375512, 0.000000, -0.000003] }, { "keytime": 541.000061, "scale": [ 0.640954, 0.640954, 0.640954], "translation": [ 0.375512, 0.000000, -0.000003] }, { "keytime": 574.333374, "scale": [ 0.638419, 0.638419, 0.638419], "translation": [ 0.375512, 0.000000, -0.000003] }, { "keytime": 607.666687, "scale": [ 0.635736, 0.635736, 0.635736], "translation": [ 0.375512, 0.000000, -0.000003] }, { "keytime": 641.000000, "scale": [ 0.632817, 0.632816, 0.632817], "translation": [ 0.375512, 0.000000, -0.000003] }, { "keytime": 674.333313, "scale": [ 0.629833, 0.629833, 0.629833], "translation": [ 0.375512, 0.000000, -0.000003] }, { "keytime": 707.666626, "scale": [ 0.626698, 0.626698, 0.626698], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 740.999939, "scale": [ 0.623371, 0.623371, 0.623371], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 774.333252, "scale": [ 0.619793, 0.619793, 0.619793], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 807.666565, "scale": [ 0.616175, 0.616175, 0.616175], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 840.999878, "scale": [ 0.612415, 0.612414, 0.612415], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 874.333191, "scale": [ 0.608389, 0.608389, 0.608389], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 907.666504, "scale": [ 0.604298, 0.604297, 0.604298], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 940.999817, "scale": [ 0.600071, 0.600071, 0.600071], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 1007.666443, "scale": [ 0.591081, 0.591081, 0.591081], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 1040.999756, "scale": [ 0.586451, 0.586451, 0.586451], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 1074.333130, "scale": [ 0.581511, 0.581511, 0.581511], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 1107.666504, "scale": [ 0.576589, 0.576589, 0.576589], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 1140.999878, "scale": [ 0.571547, 0.571547, 0.571547], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 1174.333252, "scale": [ 0.566211, 0.566211, 0.566211], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 1207.666626, "scale": [ 0.560857, 0.560857, 0.560857], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 1241.000000, "scale": [ 0.555340, 0.555340, 0.555340], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 1274.333374, "scale": [ 0.549774, 0.549774, 0.549774], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 1307.666748, "scale": [ 0.544136, 0.544136, 0.544136], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 1341.000122, "scale": [ 0.538262, 0.538262, 0.538262], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 1407.666870, "scale": [ 0.526474, 0.526474, 0.526474], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 1441.000244, "scale": [ 0.520230, 0.520230, 0.520231], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 1474.333618, "scale": [ 0.514111, 0.514111, 0.514111], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 1507.666992, "scale": [ 0.507947, 0.507947, 0.507947], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 1541.000366, "scale": [ 0.501444, 0.501444, 0.501444], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 1574.333740, "scale": [ 0.495132, 0.495132, 0.495132], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 1607.667114, "scale": [ 0.488681, 0.488681, 0.488681], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 1641.000488, "scale": [ 0.481984, 0.481984, 0.481984], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 1707.667236, "scale": [ 0.468984, 0.468984, 0.468984], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 1741.000610, "scale": [ 0.462121, 0.462121, 0.462121], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 1807.667358, "scale": [ 0.448794, 0.448794, 0.448794], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 1841.000732, "scale": [ 0.441928, 0.441928, 0.441928], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 1907.667480, "scale": [ 0.428601, 0.428601, 0.428601], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 1941.000854, "scale": [ 0.421735, 0.421735, 0.421735], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 2007.667603, "scale": [ 0.408408, 0.408408, 0.408408], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 2041.000977, "scale": [ 0.401543, 0.401543, 0.401543], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 2107.667725, "scale": [ 0.388215, 0.388215, 0.388215], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 2141.000977, "scale": [ 0.381350, 0.381350, 0.381350], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 2174.334229, "scale": [ 0.374742, 0.374742, 0.374742], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 2207.667480, "scale": [ 0.368311, 0.368311, 0.368311], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 2241.000732, "scale": [ 0.361685, 0.361685, 0.361685], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 2274.333984, "scale": [ 0.355254, 0.355254, 0.355254], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 2307.667236, "scale": [ 0.348926, 0.348926, 0.348926], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 2341.000488, "scale": [ 0.342517, 0.342517, 0.342517], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 2374.333740, "scale": [ 0.336297, 0.336297, 0.336297], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 2407.666992, "scale": [ 0.330284, 0.330284, 0.330284], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 2441.000244, "scale": [ 0.324091, 0.324091, 0.324091], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 2474.333496, "scale": [ 0.318200, 0.318200, 0.318200], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 2507.666748, "scale": [ 0.312430, 0.312430, 0.312430], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 2541.000000, "scale": [ 0.306486, 0.306486, 0.306486], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 2607.666504, "scale": [ 0.295487, 0.295487, 0.295487], "translation": [ 0.375512, 0.000000, -0.000002] }, { "keytime": 2674.333008, "scale": [ 0.284768, 0.284768, 0.284768], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 2707.666260, "scale": [ 0.279565, 0.279565, 0.279565], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 2740.999512, "scale": [ 0.274595, 0.274595, 0.274595], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 2774.332764, "scale": [ 0.269602, 0.269602, 0.269602], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 2807.666016, "scale": [ 0.264885, 0.264885, 0.264885], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 2874.332520, "scale": [ 0.255703, 0.255703, 0.255703], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 2907.665771, "scale": [ 0.251425, 0.251425, 0.251425], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 2940.999023, "scale": [ 0.247282, 0.247282, 0.247282], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 2974.332275, "scale": [ 0.243157, 0.243157, 0.243157], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 3007.665527, "scale": [ 0.239294, 0.239294, 0.239294], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 3040.998779, "scale": [ 0.235576, 0.235576, 0.235576], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 3074.332031, "scale": [ 0.231938, 0.231938, 0.231938], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 3107.665283, "scale": [ 0.228555, 0.228555, 0.228555], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 3140.998535, "scale": [ 0.225318, 0.225318, 0.225317], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 3174.331787, "scale": [ 0.222136, 0.222136, 0.222136], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 3207.665039, "scale": [ 0.219200, 0.219200, 0.219200], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 3240.998291, "scale": [ 0.216461, 0.216460, 0.216461], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 3274.331543, "scale": [ 0.213792, 0.213792, 0.213792], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 3307.664795, "scale": [ 0.211356, 0.211356, 0.211356], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 3340.998047, "scale": [ 0.209069, 0.209069, 0.209069], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 3374.331299, "scale": [ 0.206876, 0.206876, 0.206876], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 3407.664551, "scale": [ 0.204949, 0.204949, 0.204949], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 3440.997803, "scale": [ 0.203172, 0.203172, 0.203172], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 3474.331055, "scale": [ 0.201500, 0.201500, 0.201500], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 3507.664307, "scale": [ 0.200031, 0.200031, 0.200031], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 3540.997559, "scale": [ 0.198718, 0.198718, 0.198718], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 3574.330811, "scale": [ 0.197569, 0.197569, 0.197569], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 3607.664062, "scale": [ 0.196610, 0.196610, 0.196610], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 3640.997314, "scale": [ 0.195801, 0.195801, 0.195801], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 3674.330566, "scale": [ 0.195126, 0.195126, 0.195126], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 3707.663818, "scale": [ 0.194625, 0.194625, 0.194625], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 3740.997070, "scale": [ 0.194321, 0.194321, 0.194321], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 3774.330322, "scale": [ 0.194162, 0.194162, 0.194162], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 3807.663574, "scale": [ 0.195118, 0.195118, 0.195118], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 3840.996826, "scale": [ 0.198129, 0.198129, 0.198129], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 3874.330078, "scale": [ 0.204594, 0.204594, 0.204594], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 3907.663330, "scale": [ 0.215059, 0.215059, 0.215059], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 3940.996582, "scale": [ 0.228636, 0.228636, 0.228636], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 3974.329834, "scale": [ 0.245867, 0.245867, 0.245867], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 4007.663086, "scale": [ 0.265681, 0.265681, 0.265681], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 4040.996338, "scale": [ 0.288580, 0.288580, 0.288580], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 4074.329590, "scale": [ 0.315977, 0.315977, 0.315977], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 4107.663086, "scale": [ 0.345264, 0.345264, 0.345264], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 4140.996094, "scale": [ 0.376948, 0.376949, 0.376948], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 4174.329590, "scale": [ 0.411915, 0.411915, 0.411915], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 4207.663086, "scale": [ 0.447864, 0.447864, 0.447864], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 4240.996582, "scale": [ 0.485831, 0.485831, 0.485831], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 4274.330078, "scale": [ 0.526051, 0.526051, 0.526051], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 4307.663574, "scale": [ 0.565828, 0.565828, 0.565828], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 4340.997070, "scale": [ 0.605977, 0.605977, 0.605977], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 4374.330566, "scale": [ 0.647343, 0.647343, 0.647343], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 4407.664062, "scale": [ 0.686777, 0.686777, 0.686777], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 4440.997559, "scale": [ 0.725172, 0.725172, 0.725172], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 4474.331055, "scale": [ 0.763313, 0.763313, 0.763313], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 4507.664551, "scale": [ 0.798651, 0.798651, 0.798651], "translation": [ 0.375512, 0.000000, -0.000001] }, { "keytime": 4540.998047, "scale": [ 0.831971, 0.831970, 0.831970], "translation": [ 0.375512, 0.000000, -0.000000] }, { "keytime": 4574.331543, "scale": [ 0.863187, 0.863187, 0.863187], "translation": [ 0.375512, 0.000000, -0.000000] }, { "keytime": 4607.665039, "scale": [ 0.890811, 0.890811, 0.890811], "translation": [ 0.375512, 0.000000, -0.000000] }, { "keytime": 4640.998535, "scale": [ 0.915708, 0.915708, 0.915708], "translation": [ 0.375512, 0.000000, -0.000000] }, { "keytime": 4674.332031, "scale": [ 0.938326, 0.938326, 0.938326], "translation": [ 0.375512, 0.000000, -0.000000] }, { "keytime": 4707.665527, "scale": [ 0.957208, 0.957208, 0.957208], "translation": [ 0.375512, 0.000000, -0.000000] }, { "keytime": 4740.999023, "scale": [ 0.972020, 0.972020, 0.972020], "translation": [ 0.375512, 0.000000, -0.000000] }, { "keytime": 4774.332520, "scale": [ 0.984040, 0.984039, 0.984040], "translation": [ 0.375512, 0.000000, -0.000000] }, { "keytime": 4807.666016, "scale": [ 0.992496, 0.992495, 0.992495], "translation": [ 0.375512, 0.000000, -0.000000] }, { "keytime": 4832.000000, "scale": [ 0.997250, 0.997250, 0.997250], "translation": [ 0.375512, 0.000000, -0.000000] } ] }, { "boneId": "Bone_006", "keyframes": [ { "keytime": 41.000000, "scale": [ 0.600000, 0.600000, 0.600000], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 74.333328, "scale": [ 0.599915, 0.599914, 0.599914], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 107.666664, "scale": [ 0.599702, 0.599702, 0.599702], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 141.000000, "scale": [ 0.599349, 0.599349, 0.599349], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 174.333328, "scale": [ 0.598876, 0.598876, 0.598876], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 207.666656, "scale": [ 0.598272, 0.598272, 0.598272], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 240.999985, "scale": [ 0.597497, 0.597497, 0.597497], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 274.333313, "scale": [ 0.596564, 0.596564, 0.596564], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 307.666656, "scale": [ 0.595526, 0.595525, 0.595525], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 341.000000, "scale": [ 0.594318, 0.594318, 0.594318], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 374.333344, "scale": [ 0.593014, 0.593014, 0.593014], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 407.666687, "scale": [ 0.591536, 0.591536, 0.591536], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 441.000031, "scale": [ 0.589879, 0.589879, 0.589878], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 474.333374, "scale": [ 0.588137, 0.588137, 0.588137], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 507.666718, "scale": [ 0.586266, 0.586266, 0.586266], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 541.000061, "scale": [ 0.584200, 0.584200, 0.584200], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 574.333374, "scale": [ 0.582021, 0.582021, 0.582021], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 607.666687, "scale": [ 0.579714, 0.579714, 0.579714], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 641.000000, "scale": [ 0.577204, 0.577204, 0.577204], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 674.333313, "scale": [ 0.574638, 0.574638, 0.574638], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 707.666626, "scale": [ 0.571943, 0.571943, 0.571943], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 740.999939, "scale": [ 0.569082, 0.569082, 0.569082], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 774.333252, "scale": [ 0.566006, 0.566006, 0.566006], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 807.666565, "scale": [ 0.562895, 0.562895, 0.562895], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 840.999878, "scale": [ 0.559662, 0.559662, 0.559662], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 874.333191, "scale": [ 0.556201, 0.556201, 0.556201], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 907.666504, "scale": [ 0.552683, 0.552683, 0.552683], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 940.999817, "scale": [ 0.548993, 0.548993, 0.548993], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 974.333130, "scale": [ 0.545126, 0.545126, 0.545126], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 1007.666443, "scale": [ 0.541302, 0.541302, 0.541302], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 1040.999756, "scale": [ 0.537248, 0.537248, 0.537248], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 1074.333130, "scale": [ 0.533071, 0.533071, 0.533071], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 1107.666504, "scale": [ 0.528808, 0.528808, 0.528808], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 1140.999878, "scale": [ 0.524470, 0.524469, 0.524469], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 1174.333252, "scale": [ 0.519936, 0.519935, 0.519935], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 1207.666626, "scale": [ 0.515332, 0.515332, 0.515332], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 1241.000000, "scale": [ 0.510589, 0.510589, 0.510589], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 1274.333374, "scale": [ 0.505803, 0.505803, 0.505803], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 1307.666748, "scale": [ 0.500955, 0.500955, 0.500955], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 1341.000122, "scale": [ 0.495905, 0.495905, 0.495905], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 1407.666870, "scale": [ 0.485769, 0.485769, 0.485769], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 1441.000244, "scale": [ 0.480401, 0.480401, 0.480401], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 1474.333618, "scale": [ 0.475140, 0.475139, 0.475139], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 1507.666992, "scale": [ 0.469840, 0.469839, 0.469839], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 1541.000366, "scale": [ 0.464248, 0.464248, 0.464248], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 1574.333740, "scale": [ 0.458821, 0.458821, 0.458821], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 1607.667114, "scale": [ 0.453275, 0.453275, 0.453275], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 1641.000488, "scale": [ 0.447517, 0.447516, 0.447516], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 1707.667236, "scale": [ 0.436339, 0.436339, 0.436339], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 1741.000610, "scale": [ 0.430424, 0.430424, 0.430424], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 1807.667358, "scale": [ 0.418936, 0.418936, 0.418936], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 1841.000732, "scale": [ 0.413018, 0.413018, 0.413018], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 1907.667480, "scale": [ 0.401530, 0.401530, 0.401530], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 1941.000854, "scale": [ 0.395612, 0.395612, 0.395612], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 2007.667603, "scale": [ 0.384124, 0.384124, 0.384124], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 2041.000977, "scale": [ 0.378206, 0.378206, 0.378206], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 2074.334473, "scale": [ 0.372462, 0.372462, 0.372462], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 2107.667725, "scale": [ 0.366815, 0.366815, 0.366815], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 2141.000977, "scale": [ 0.361032, 0.361032, 0.361032], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 2207.667480, "scale": [ 0.349805, 0.349805, 0.349805], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 2241.000732, "scale": [ 0.344022, 0.344022, 0.344022], "translation": [ 0.373480, 0.000001, -0.000001] }, { "keytime": 2274.333984, "scale": [ 0.338578, 0.338578, 0.338578], "translation": [ 0.373480, 0.000000, -0.000001] }, { "keytime": 2307.667236, "scale": [ 0.333191, 0.333191, 0.333191], "translation": [ 0.373480, 0.000000, -0.000001] }, { "keytime": 2341.000488, "scale": [ 0.327641, 0.327641, 0.327641], "translation": [ 0.373480, 0.000000, -0.000001] }, { "keytime": 2374.333740, "scale": [ 0.322254, 0.322254, 0.322254], "translation": [ 0.373480, 0.000000, -0.000001] }, { "keytime": 2407.666992, "scale": [ 0.317084, 0.317084, 0.317084], "translation": [ 0.373480, 0.000000, -0.000001] }, { "keytime": 2441.000244, "scale": [ 0.311759, 0.311759, 0.311759], "translation": [ 0.373480, 0.000000, -0.000001] }, { "keytime": 2474.333496, "scale": [ 0.306693, 0.306693, 0.306693], "translation": [ 0.373480, 0.000000, -0.000001] }, { "keytime": 2507.666748, "scale": [ 0.301733, 0.301732, 0.301732], "translation": [ 0.373480, 0.000000, -0.000001] }, { "keytime": 2541.000000, "scale": [ 0.296621, 0.296621, 0.296621], "translation": [ 0.373480, 0.000000, -0.000001] }, { "keytime": 2607.666504, "scale": [ 0.287164, 0.287164, 0.287164], "translation": [ 0.373480, 0.000000, -0.000001] }, { "keytime": 2674.333008, "scale": [ 0.277948, 0.277948, 0.277948], "translation": [ 0.373480, 0.000000, -0.000001] }, { "keytime": 2707.666260, "scale": [ 0.273475, 0.273475, 0.273475], "translation": [ 0.373480, 0.000000, -0.000001] }, { "keytime": 2740.999512, "scale": [ 0.269271, 0.269271, 0.269271], "translation": [ 0.373480, 0.000000, -0.000001] }, { "keytime": 2774.332764, "scale": [ 0.264945, 0.264945, 0.264945], "translation": [ 0.373480, 0.000000, -0.000001] }, { "keytime": 2807.666016, "scale": [ 0.260889, 0.260889, 0.260889], "translation": [ 0.373480, 0.000000, -0.000001] }, { "keytime": 2840.999268, "scale": [ 0.256983, 0.256983, 0.256983], "translation": [ 0.373480, 0.000000, -0.000001] }, { "keytime": 2874.332520, "scale": [ 0.252959, 0.252959, 0.252959], "translation": [ 0.373480, 0.000000, -0.000001] }, { "keytime": 2907.665771, "scale": [ 0.249358, 0.249358, 0.249358], "translation": [ 0.373480, 0.000000, -0.000001] }, { "keytime": 2940.999023, "scale": [ 0.245760, 0.245760, 0.245760], "translation": [ 0.373480, 0.000000, -0.000001] }, { "keytime": 2974.332275, "scale": [ 0.242171, 0.242171, 0.242171], "translation": [ 0.373480, 0.000000, -0.000001] }, { "keytime": 3007.665527, "scale": [ 0.238849, 0.238849, 0.238849], "translation": [ 0.373480, 0.000000, -0.000001] }, { "keytime": 3040.998779, "scale": [ 0.235653, 0.235652, 0.235652], "translation": [ 0.373480, 0.000000, -0.000001] }, { "keytime": 3074.332031, "scale": [ 0.232524, 0.232524, 0.232524], "translation": [ 0.373480, 0.000000, -0.000001] }, { "keytime": 3107.665283, "scale": [ 0.229616, 0.229616, 0.229616], "translation": [ 0.373480, 0.000000, -0.000001] }, { "keytime": 3140.998535, "scale": [ 0.226832, 0.226832, 0.226832], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 3174.331787, "scale": [ 0.224097, 0.224097, 0.224097], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 3207.665039, "scale": [ 0.221573, 0.221572, 0.221572], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 3240.998291, "scale": [ 0.219217, 0.219217, 0.219217], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 3274.331543, "scale": [ 0.216923, 0.216923, 0.216923], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 3307.664795, "scale": [ 0.214828, 0.214828, 0.214828], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 3340.998047, "scale": [ 0.212862, 0.212862, 0.212862], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 3374.331299, "scale": [ 0.210976, 0.210976, 0.210976], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 3407.664551, "scale": [ 0.209319, 0.209319, 0.209319], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 3440.997803, "scale": [ 0.207792, 0.207791, 0.207791], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 3474.331055, "scale": [ 0.206354, 0.206354, 0.206354], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 3507.664307, "scale": [ 0.205090, 0.205090, 0.205090], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 3540.997559, "scale": [ 0.203962, 0.203962, 0.203962], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 3574.330811, "scale": [ 0.202974, 0.202974, 0.202974], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 3607.664062, "scale": [ 0.202149, 0.202149, 0.202149], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 3640.997314, "scale": [ 0.201454, 0.201453, 0.201453], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 3674.330566, "scale": [ 0.200873, 0.200873, 0.200873], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 3707.663818, "scale": [ 0.200442, 0.200442, 0.200442], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 3740.997070, "scale": [ 0.200181, 0.200181, 0.200181], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 3774.330322, "scale": [ 0.200044, 0.200044, 0.200044], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 3807.663574, "scale": [ 0.201000, 0.201000, 0.201000], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 3840.996826, "scale": [ 0.203989, 0.203989, 0.203989], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 3874.330078, "scale": [ 0.210407, 0.210407, 0.210407], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 3907.663330, "scale": [ 0.220796, 0.220796, 0.220796], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 3940.996582, "scale": [ 0.234274, 0.234274, 0.234274], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 3974.329834, "scale": [ 0.251378, 0.251378, 0.251378], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 4007.663086, "scale": [ 0.271048, 0.271048, 0.271048], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 4040.996338, "scale": [ 0.293779, 0.293779, 0.293779], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 4074.329590, "scale": [ 0.320976, 0.320976, 0.320976], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 4107.663086, "scale": [ 0.350049, 0.350049, 0.350049], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 4140.996094, "scale": [ 0.381502, 0.381502, 0.381502], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 4174.329590, "scale": [ 0.416213, 0.416213, 0.416213], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 4207.663086, "scale": [ 0.451899, 0.451899, 0.451899], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 4240.996582, "scale": [ 0.489589, 0.489588, 0.489588], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 4274.330078, "scale": [ 0.529515, 0.529515, 0.529515], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 4307.663574, "scale": [ 0.569001, 0.569001, 0.569001], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 4340.997070, "scale": [ 0.608857, 0.608857, 0.608857], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 4374.330566, "scale": [ 0.649921, 0.649921, 0.649921], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 4407.664062, "scale": [ 0.689066, 0.689066, 0.689066], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 4440.997559, "scale": [ 0.727181, 0.727181, 0.727181], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 4474.331055, "scale": [ 0.765043, 0.765043, 0.765043], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 4507.664551, "scale": [ 0.800123, 0.800122, 0.800122], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 4540.998047, "scale": [ 0.833199, 0.833199, 0.833198], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 4574.331543, "scale": [ 0.864188, 0.864187, 0.864187], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 4607.665039, "scale": [ 0.891609, 0.891609, 0.891609], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 4640.998535, "scale": [ 0.916324, 0.916324, 0.916324], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 4674.332031, "scale": [ 0.938778, 0.938777, 0.938777], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 4707.665527, "scale": [ 0.957521, 0.957520, 0.957520], "translation": [ 0.373480, 0.000000, -0.000000] }, { "keytime": 4740.999023, "scale": [ 0.972225, 0.972224, 0.972224], "translation": [ 0.373480, -0.000000, -0.000000] }, { "keytime": 4774.332520, "scale": [ 0.984157, 0.984156, 0.984156], "translation": [ 0.373480, -0.000000, -0.000000] }, { "keytime": 4807.666016, "scale": [ 0.992551, 0.992550, 0.992550], "translation": [ 0.373480, -0.000000, -0.000000] }, { "keytime": 4832.000000, "scale": [ 0.997270, 0.997270, 0.997270], "translation": [ 0.373480, -0.000000, -0.000000] } ] }, { "boneId": "Bone_012", "keyframes": [ { "keytime": 41.000000, "scale": [ 1.000000, 1.000000, 1.000000], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 74.333328, "scale": [ 0.999539, 0.999539, 0.999539], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 107.666664, "scale": [ 0.998395, 0.998396, 0.998395], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 141.000000, "scale": [ 0.996495, 0.996495, 0.996495], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 174.333328, "scale": [ 0.993947, 0.993948, 0.993947], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 207.666656, "scale": [ 0.990690, 0.990690, 0.990690], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 240.999985, "scale": [ 0.986509, 0.986510, 0.986510], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 274.333313, "scale": [ 0.981478, 0.981478, 0.981478], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 307.666656, "scale": [ 0.975880, 0.975880, 0.975880], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 341.000000, "scale": [ 0.969374, 0.969375, 0.969375], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 374.333344, "scale": [ 0.962352, 0.962352, 0.962352], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 407.666687, "scale": [ 0.954404, 0.954404, 0.954404], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 441.000031, "scale": [ 0.945505, 0.945505, 0.945505], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 474.333374, "scale": [ 0.936170, 0.936170, 0.936170], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 507.666718, "scale": [ 0.926164, 0.926164, 0.926164], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 541.000061, "scale": [ 0.915142, 0.915142, 0.915142], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 574.333374, "scale": [ 0.903561, 0.903561, 0.903561], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 607.666687, "scale": [ 0.891344, 0.891344, 0.891344], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 641.000000, "scale": [ 0.878101, 0.878101, 0.878101], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 674.333313, "scale": [ 0.864624, 0.864624, 0.864624], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 707.666626, "scale": [ 0.850533, 0.850533, 0.850533], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 740.999939, "scale": [ 0.835682, 0.835682, 0.835682], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 774.333252, "scale": [ 0.819810, 0.819810, 0.819810], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 807.666565, "scale": [ 0.803862, 0.803862, 0.803862], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 840.999878, "scale": [ 0.787408, 0.787408, 0.787408], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 874.333191, "scale": [ 0.769929, 0.769929, 0.769929], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 907.666504, "scale": [ 0.752363, 0.752363, 0.752363], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 940.999817, "scale": [ 0.734387, 0.734387, 0.734387], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 974.333130, "scale": [ 0.715462, 0.715462, 0.715462], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 1007.666443, "scale": [ 0.696731, 0.696731, 0.696731], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 1040.999756, "scale": [ 0.677662, 0.677662, 0.677662], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 1074.333130, "scale": [ 0.657637, 0.657637, 0.657637], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 1107.666504, "scale": [ 0.637958, 0.637958, 0.637958], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 1140.999878, "scale": [ 0.618080, 0.618080, 0.618080], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 1174.333252, "scale": [ 0.597406, 0.597406, 0.597406], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 1207.666626, "scale": [ 0.577149, 0.577149, 0.577149], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 1241.000000, "scale": [ 0.556279, 0.556279, 0.556279], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 1307.666748, "scale": [ 0.515766, 0.515766, 0.515766], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 1341.000122, "scale": [ 0.494896, 0.494896, 0.494896], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 1374.333496, "scale": [ 0.474639, 0.474639, 0.474639], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 1407.666870, "scale": [ 0.454629, 0.454629, 0.454629], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 1441.000244, "scale": [ 0.434202, 0.434202, 0.434202], "translation": [ 0.619659, 0.000001, 0.000001] }, { "keytime": 1474.333618, "scale": [ 0.414596, 0.414596, 0.414596], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 1507.666992, "scale": [ 0.395236, 0.395236, 0.395236], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 1541.000366, "scale": [ 0.375589, 0.375589, 0.375589], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 1574.333740, "scale": [ 0.356961, 0.356961, 0.356961], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 1607.667114, "scale": [ 0.338702, 0.338702, 0.338702], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 1641.000488, "scale": [ 0.320305, 0.320305, 0.320305], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 1674.333862, "scale": [ 0.302880, 0.302880, 0.302880], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 1707.667236, "scale": [ 0.285916, 0.285915, 0.285916], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 1741.000610, "scale": [ 0.269100, 0.269100, 0.269100], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 1774.333984, "scale": [ 0.253315, 0.253315, 0.253315], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 1807.667358, "scale": [ 0.238066, 0.238066, 0.238066], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 1841.000732, "scale": [ 0.222944, 0.222944, 0.222944], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 1874.334106, "scale": [ 0.208853, 0.208853, 0.208853], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 1907.667480, "scale": [ 0.195564, 0.195564, 0.195564], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 1941.000854, "scale": [ 0.182516, 0.182516, 0.182516], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 1974.334229, "scale": [ 0.170499, 0.170499, 0.170499], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 2007.667603, "scale": [ 0.159123, 0.159123, 0.159123], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 2041.000977, "scale": [ 0.148102, 0.148102, 0.148102], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 2074.334473, "scale": [ 0.138304, 0.138304, 0.138304], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 2107.667725, "scale": [ 0.129182, 0.129182, 0.129182], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 2141.000977, "scale": [ 0.120498, 0.120498, 0.120498], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 2174.334229, "scale": [ 0.112767, 0.112767, 0.112767], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 2207.667480, "scale": [ 0.105744, 0.105744, 0.105744], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 2241.000732, "scale": [ 0.099457, 0.099457, 0.099457], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 2274.333984, "scale": [ 0.094078, 0.094078, 0.094078], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 2307.667236, "scale": [ 0.089393, 0.089393, 0.089393], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 2341.000488, "scale": [ 0.085304, 0.085304, 0.085304], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 2374.333740, "scale": [ 0.082046, 0.082046, 0.082046], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 2407.666992, "scale": [ 0.079717, 0.079717, 0.079717], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 2441.000244, "scale": [ 0.078033, 0.078033, 0.078033], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 2474.333496, "scale": [ 0.077104, 0.077104, 0.077104], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 2507.666748, "scale": [ 0.076865, 0.076865, 0.076865], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 2541.000000, "scale": [ 0.077374, 0.077374, 0.077374], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 2574.333252, "scale": [ 0.078861, 0.078861, 0.078861], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 2607.666504, "scale": [ 0.081084, 0.081084, 0.081084], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 2640.999756, "scale": [ 0.084048, 0.084048, 0.084048], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 2674.333008, "scale": [ 0.087890, 0.087890, 0.087890], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 2707.666260, "scale": [ 0.092391, 0.092391, 0.092391], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 2740.999512, "scale": [ 0.097881, 0.097881, 0.097881], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 2774.332764, "scale": [ 0.104313, 0.104313, 0.104313], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 2807.666016, "scale": [ 0.111319, 0.111319, 0.111319], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 2840.999268, "scale": [ 0.119065, 0.119065, 0.119065], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 2874.332520, "scale": [ 0.127846, 0.127846, 0.127846], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 2907.665771, "scale": [ 0.137347, 0.137347, 0.137347], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 2940.999023, "scale": [ 0.147567, 0.147567, 0.147567], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 2974.332275, "scale": [ 0.158846, 0.158845, 0.158845], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 3007.665527, "scale": [ 0.170508, 0.170508, 0.170508], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 3040.998779, "scale": [ 0.182889, 0.182889, 0.182889], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 3074.332031, "scale": [ 0.196558, 0.196558, 0.196558], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 3107.665283, "scale": [ 0.210503, 0.210503, 0.210503], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 3140.998535, "scale": [ 0.225084, 0.225084, 0.225084], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 3174.331787, "scale": [ 0.240762, 0.240762, 0.240762], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 3207.665039, "scale": [ 0.256600, 0.256600, 0.256600], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 3240.998291, "scale": [ 0.273190, 0.273190, 0.273190], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 3274.331543, "scale": [ 0.290838, 0.290838, 0.290838], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 3307.664795, "scale": [ 0.308490, 0.308490, 0.308490], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 3340.998047, "scale": [ 0.326622, 0.326622, 0.326622], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 3374.331299, "scale": [ 0.345794, 0.345794, 0.345794], "translation": [ 0.619659, 0.000001, 0.000000] }, { "keytime": 3407.664551, "scale": [ 0.364948, 0.364948, 0.364948], "translation": [ 0.619659, 0.000000, 0.000000] }, { "keytime": 3440.997803, "scale": [ 0.384462, 0.384462, 0.384462], "translation": [ 0.619659, 0.000000, 0.000000] }, { "keytime": 3474.331055, "scale": [ 0.404912, 0.404912, 0.404912], "translation": [ 0.619659, 0.000000, 0.000000] }, { "keytime": 3507.664307, "scale": [ 0.425058, 0.425058, 0.425058], "translation": [ 0.619659, 0.000000, 0.000000] }, { "keytime": 3540.997559, "scale": [ 0.445471, 0.445471, 0.445471], "translation": [ 0.619659, 0.000000, 0.000000] }, { "keytime": 3574.330811, "scale": [ 0.466776, 0.466776, 0.466776], "translation": [ 0.619659, 0.000000, 0.000000] }, { "keytime": 3607.664062, "scale": [ 0.487665, 0.487665, 0.487665], "translation": [ 0.619659, 0.000000, 0.000000] }, { "keytime": 3640.997314, "scale": [ 0.508627, 0.508627, 0.508627], "translation": [ 0.619659, 0.000000, 0.000000] }, { "keytime": 3674.330566, "scale": [ 0.530224, 0.530223, 0.530224], "translation": [ 0.619659, 0.000000, 0.000000] }, { "keytime": 3740.997070, "scale": [ 0.572147, 0.572147, 0.572147], "translation": [ 0.619659, 0.000000, 0.000000] }, { "keytime": 3774.330322, "scale": [ 0.593744, 0.593744, 0.593744], "translation": [ 0.619659, 0.000000, 0.000000] }, { "keytime": 3807.663574, "scale": [ 0.614572, 0.614572, 0.614572], "translation": [ 0.619659, 0.000000, 0.000000] }, { "keytime": 3840.996826, "scale": [ 0.635197, 0.635197, 0.635197], "translation": [ 0.619659, 0.000000, 0.000000] }, { "keytime": 3874.330078, "scale": [ 0.656229, 0.656229, 0.656229], "translation": [ 0.619659, 0.000000, 0.000000] }, { "keytime": 3907.663330, "scale": [ 0.676298, 0.676298, 0.676298], "translation": [ 0.619659, 0.000000, 0.000000] }, { "keytime": 3940.996582, "scale": [ 0.696059, 0.696059, 0.696059], "translation": [ 0.619659, 0.000000, 0.000000] }, { "keytime": 3974.329834, "scale": [ 0.716060, 0.716061, 0.716061], "translation": [ 0.619659, 0.000000, 0.000000] }, { "keytime": 4007.663086, "scale": [ 0.735092, 0.735092, 0.735092], "translation": [ 0.619659, 0.000000, 0.000000] }, { "keytime": 4040.996338, "scale": [ 0.753700, 0.753700, 0.753701], "translation": [ 0.619659, 0.000000, 0.000000] }, { "keytime": 4074.329590, "scale": [ 0.772260, 0.772260, 0.772260], "translation": [ 0.619660, 0.000000, 0.000000] }, { "keytime": 4107.663086, "scale": [ 0.789763, 0.789763, 0.789763], "translation": [ 0.619660, 0.000000, 0.000000] }, { "keytime": 4140.996094, "scale": [ 0.806747, 0.806747, 0.806747], "translation": [ 0.619660, 0.000000, 0.000000] }, { "keytime": 4174.329590, "scale": [ 0.823670, 0.823670, 0.823670], "translation": [ 0.619660, 0.000000, 0.000000] }, { "keytime": 4207.663086, "scale": [ 0.839508, 0.839508, 0.839508], "translation": [ 0.619660, 0.000000, 0.000000] }, { "keytime": 4240.996582, "scale": [ 0.854551, 0.854551, 0.854551], "translation": [ 0.619660, 0.000000, 0.000000] }, { "keytime": 4274.330078, "scale": [ 0.869398, 0.869398, 0.869398], "translation": [ 0.619660, 0.000000, 0.000000] }, { "keytime": 4307.663574, "scale": [ 0.883147, 0.883147, 0.883147], "translation": [ 0.619660, 0.000000, 0.000000] }, { "keytime": 4340.997070, "scale": [ 0.896238, 0.896238, 0.896238], "translation": [ 0.619660, 0.000000, 0.000000] }, { "keytime": 4374.330566, "scale": [ 0.908994, 0.908994, 0.908995], "translation": [ 0.619660, 0.000000, 0.000000] }, { "keytime": 4407.664062, "scale": [ 0.920448, 0.920448, 0.920448], "translation": [ 0.619660, 0.000000, 0.000000] }, { "keytime": 4440.997559, "scale": [ 0.931196, 0.931196, 0.931196], "translation": [ 0.619660, 0.000000, 0.000000] }, { "keytime": 4474.331055, "scale": [ 0.941517, 0.941517, 0.941517], "translation": [ 0.619660, 0.000000, 0.000000] }, { "keytime": 4507.664551, "scale": [ 0.950799, 0.950799, 0.950799], "translation": [ 0.619660, 0.000000, 0.000000] }, { "keytime": 4540.998047, "scale": [ 0.959321, 0.959321, 0.959321], "translation": [ 0.619660, 0.000000, 0.000000] }, { "keytime": 4574.331543, "scale": [ 0.967103, 0.967104, 0.967103], "translation": [ 0.619660, 0.000000, 0.000000] }, { "keytime": 4607.665039, "scale": [ 0.973887, 0.973887, 0.973887], "translation": [ 0.619660, 0.000000, 0.000000] }, { "keytime": 4640.998535, "scale": [ 0.979927, 0.979927, 0.979927], "translation": [ 0.619660, 0.000000, 0.000000] }, { "keytime": 4674.332031, "scale": [ 0.985360, 0.985360, 0.985360], "translation": [ 0.619660, 0.000000, 0.000000] }, { "keytime": 4707.665527, "scale": [ 0.989860, 0.989861, 0.989861], "translation": [ 0.619660, 0.000000, 0.000000] }, { "keytime": 4740.999023, "scale": [ 0.993373, 0.993373, 0.993373], "translation": [ 0.619660, 0.000000, 0.000000] }, { "keytime": 4774.332520, "scale": [ 0.996219, 0.996219, 0.996219], "translation": [ 0.619660, 0.000000, 0.000000] }, { "keytime": 4807.666016, "scale": [ 0.998220, 0.998221, 0.998221], "translation": [ 0.619660, 0.000000, 0.000000] }, { "keytime": 4832.000000, "scale": [ 0.999347, 0.999347, 0.999347], "translation": [ 0.619660, 0.000000, 0.000000] } ] }, { "boneId": "Bone_005", "keyframes": [ { "keytime": 41.000000, "scale": [ 0.560000, 0.560000, 0.560000], "translation": [ 0.490018, 0.000000, -0.000002] }, { "keytime": 74.333328, "scale": [ 0.559887, 0.559887, 0.559887], "translation": [ 0.490018, 0.000000, -0.000002] }, { "keytime": 107.666664, "scale": [ 0.559605, 0.559605, 0.559605], "translation": [ 0.490018, 0.000000, -0.000002] }, { "keytime": 141.000000, "scale": [ 0.559137, 0.559138, 0.559138], "translation": [ 0.490018, 0.000000, -0.000002] }, { "keytime": 174.333328, "scale": [ 0.558511, 0.558511, 0.558511], "translation": [ 0.490018, 0.000000, -0.000002] }, { "keytime": 207.666656, "scale": [ 0.557710, 0.557710, 0.557710], "translation": [ 0.490018, 0.000000, -0.000002] }, { "keytime": 240.999985, "scale": [ 0.556682, 0.556682, 0.556682], "translation": [ 0.490018, 0.000000, -0.000002] }, { "keytime": 274.333313, "scale": [ 0.555445, 0.555445, 0.555445], "translation": [ 0.490018, 0.000000, -0.000001] }, { "keytime": 307.666656, "scale": [ 0.554069, 0.554069, 0.554068], "translation": [ 0.490018, 0.000000, -0.000001] }, { "keytime": 341.000000, "scale": [ 0.552468, 0.552468, 0.552468], "translation": [ 0.490018, 0.000000, -0.000001] }, { "keytime": 374.333344, "scale": [ 0.550739, 0.550739, 0.550739], "translation": [ 0.490018, 0.000000, -0.000001] }, { "keytime": 407.666687, "scale": [ 0.548781, 0.548781, 0.548781], "translation": [ 0.490018, 0.000000, -0.000001] }, { "keytime": 441.000031, "scale": [ 0.546585, 0.546585, 0.546585], "translation": [ 0.490018, 0.000000, -0.000001] }, { "keytime": 474.333374, "scale": [ 0.544279, 0.544279, 0.544279], "translation": [ 0.490018, 0.000000, -0.000001] }, { "keytime": 507.666718, "scale": [ 0.541803, 0.541803, 0.541803], "translation": [ 0.490018, 0.000000, -0.000001] }, { "keytime": 541.000061, "scale": [ 0.539070, 0.539070, 0.539070], "translation": [ 0.490018, 0.000000, -0.000001] }, { "keytime": 574.333374, "scale": [ 0.536191, 0.536191, 0.536191], "translation": [ 0.490018, 0.000000, -0.000001] }, { "keytime": 607.666687, "scale": [ 0.533145, 0.533145, 0.533145], "translation": [ 0.490018, 0.000000, -0.000001] }, { "keytime": 641.000000, "scale": [ 0.529834, 0.529834, 0.529834], "translation": [ 0.490018, 0.000000, -0.000001] }, { "keytime": 674.333313, "scale": [ 0.526454, 0.526454, 0.526454], "translation": [ 0.490018, 0.000000, -0.000001] }, { "keytime": 707.666626, "scale": [ 0.522908, 0.522908, 0.522908], "translation": [ 0.490018, 0.000000, -0.000001] }, { "keytime": 740.999939, "scale": [ 0.519150, 0.519150, 0.519150], "translation": [ 0.490018, 0.000000, -0.000001] }, { "keytime": 774.333252, "scale": [ 0.515116, 0.515116, 0.515116], "translation": [ 0.490018, 0.000000, -0.000001] }, { "keytime": 807.666565, "scale": [ 0.511042, 0.511042, 0.511042], "translation": [ 0.490018, 0.000000, -0.000001] }, { "keytime": 840.999878, "scale": [ 0.506817, 0.506817, 0.506817], "translation": [ 0.490018, 0.000000, -0.000001] }, { "keytime": 874.333191, "scale": [ 0.502303, 0.502303, 0.502303], "translation": [ 0.490018, 0.000000, -0.000001] }, { "keytime": 907.666504, "scale": [ 0.497728, 0.497728, 0.497728], "translation": [ 0.490018, 0.000000, -0.000001] }, { "keytime": 940.999817, "scale": [ 0.493014, 0.493014, 0.493014], "translation": [ 0.490018, 0.000000, -0.000001] }, { "keytime": 974.333130, "scale": [ 0.488014, 0.488014, 0.488014], "translation": [ 0.490018, 0.000000, -0.000001] }, { "keytime": 1007.666443, "scale": [ 0.483025, 0.483025, 0.483025], "translation": [ 0.490018, 0.000000, -0.000001] }, { "keytime": 1040.999756, "scale": [ 0.477904, 0.477904, 0.477904], "translation": [ 0.490018, 0.000000, -0.000001] }, { "keytime": 1074.333130, "scale": [ 0.472461, 0.472461, 0.472461], "translation": [ 0.490018, 0.000000, -0.000001] }, { "keytime": 1107.666504, "scale": [ 0.467003, 0.467003, 0.467003], "translation": [ 0.490018, 0.000000, -0.000001] }, { "keytime": 1140.999878, "scale": [ 0.461484, 0.461484, 0.461484], "translation": [ 0.490018, 0.000000, -0.000001] }, { "keytime": 1174.333252, "scale": [ 0.455732, 0.455732, 0.455732], "translation": [ 0.490018, 0.000000, -0.000001] }, { "keytime": 1207.666626, "scale": [ 0.449939, 0.449939, 0.449939], "translation": [ 0.490018, 0.000000, -0.000001] }, { "keytime": 1241.000000, "scale": [ 0.443970, 0.443970, 0.443970], "translation": [ 0.490018, 0.000000, -0.000001] }, { "keytime": 1274.333374, "scale": [ 0.438004, 0.438004, 0.438004], "translation": [ 0.490018, 0.000000, -0.000001] }, { "keytime": 1307.666748, "scale": [ 0.431979, 0.431979, 0.431980], "translation": [ 0.490018, 0.000000, -0.000001] }, { "keytime": 1341.000122, "scale": [ 0.425717, 0.425717, 0.425717], "translation": [ 0.490018, 0.000000, -0.000001] }, { "keytime": 1407.666870, "scale": [ 0.413227, 0.413227, 0.413227], "translation": [ 0.490019, 0.000000, -0.000001] }, { "keytime": 1441.000244, "scale": [ 0.406793, 0.406793, 0.406793], "translation": [ 0.490019, 0.000000, -0.000001] }, { "keytime": 1474.333618, "scale": [ 0.400458, 0.400458, 0.400458], "translation": [ 0.490019, 0.000000, -0.000001] }, { "keytime": 1507.666992, "scale": [ 0.394031, 0.394031, 0.394031], "translation": [ 0.490019, 0.000000, -0.000001] }, { "keytime": 1541.000366, "scale": [ 0.387409, 0.387409, 0.387409], "translation": [ 0.490019, 0.000000, -0.000001] }, { "keytime": 1607.667114, "scale": [ 0.374555, 0.374555, 0.374555], "translation": [ 0.490019, 0.000000, -0.000001] }, { "keytime": 1641.000488, "scale": [ 0.367934, 0.367934, 0.367934], "translation": [ 0.490019, 0.000000, -0.000001] }, { "keytime": 1707.667236, "scale": [ 0.355080, 0.355080, 0.355080], "translation": [ 0.490019, 0.000000, -0.000001] }, { "keytime": 1741.000610, "scale": [ 0.348549, 0.348549, 0.348549], "translation": [ 0.490019, 0.000000, -0.000001] }, { "keytime": 1807.667358, "scale": [ 0.335876, 0.335876, 0.335876], "translation": [ 0.490019, 0.000000, -0.000001] }, { "keytime": 1841.000732, "scale": [ 0.329348, 0.329348, 0.329348], "translation": [ 0.490019, 0.000000, -0.000001] }, { "keytime": 1874.334106, "scale": [ 0.323011, 0.323011, 0.323011], "translation": [ 0.490019, 0.000000, -0.000001] }, { "keytime": 1907.667480, "scale": [ 0.316886, 0.316886, 0.316886], "translation": [ 0.490019, 0.000000, -0.000001] }, { "keytime": 1941.000854, "scale": [ 0.310577, 0.310577, 0.310577], "translation": [ 0.490019, 0.000000, -0.000001] }, { "keytime": 1974.334229, "scale": [ 0.304557, 0.304557, 0.304557], "translation": [ 0.490019, 0.000000, -0.000001] }, { "keytime": 2007.667603, "scale": [ 0.298643, 0.298643, 0.298643], "translation": [ 0.490019, 0.000000, -0.000001] }, { "keytime": 2041.000977, "scale": [ 0.292549, 0.292549, 0.292549], "translation": [ 0.490019, 0.000000, -0.000001] }, { "keytime": 2107.667725, "scale": [ 0.281227, 0.281227, 0.281227], "translation": [ 0.490019, 0.000000, -0.000001] }, { "keytime": 2141.000977, "scale": [ 0.275544, 0.275544, 0.275544], "translation": [ 0.490019, 0.000000, -0.000001] }, { "keytime": 2207.667480, "scale": [ 0.264811, 0.264811, 0.264811], "translation": [ 0.490019, 0.000000, -0.000001] }, { "keytime": 2241.000732, "scale": [ 0.259529, 0.259529, 0.259529], "translation": [ 0.490019, 0.000000, -0.000001] }, { "keytime": 2274.333984, "scale": [ 0.254538, 0.254538, 0.254538], "translation": [ 0.490019, 0.000000, -0.000001] }, { "keytime": 2307.667236, "scale": [ 0.249678, 0.249678, 0.249678], "translation": [ 0.490019, 0.000000, -0.000001] }, { "keytime": 2341.000488, "scale": [ 0.244816, 0.244816, 0.244816], "translation": [ 0.490019, 0.000000, -0.000000] }, { "keytime": 2374.333740, "scale": [ 0.240239, 0.240239, 0.240239], "translation": [ 0.490019, 0.000000, -0.000000] }, { "keytime": 2407.666992, "scale": [ 0.235855, 0.235855, 0.235855], "translation": [ 0.490019, 0.000000, -0.000000] }, { "keytime": 2441.000244, "scale": [ 0.231494, 0.231494, 0.231494], "translation": [ 0.490019, 0.000000, -0.000000] }, { "keytime": 2474.333496, "scale": [ 0.227416, 0.227416, 0.227416], "translation": [ 0.490019, 0.000000, -0.000000] }, { "keytime": 2507.666748, "scale": [ 0.223491, 0.223491, 0.223491], "translation": [ 0.490019, 0.000000, -0.000000] }, { "keytime": 2541.000000, "scale": [ 0.219615, 0.219615, 0.219615], "translation": [ 0.490019, 0.000000, -0.000000] }, { "keytime": 2574.333252, "scale": [ 0.216069, 0.216069, 0.216069], "translation": [ 0.490019, 0.000000, -0.000000] }, { "keytime": 2607.666504, "scale": [ 0.212684, 0.212684, 0.212684], "translation": [ 0.490019, 0.000000, -0.000000] }, { "keytime": 2640.999756, "scale": [ 0.209463, 0.209463, 0.209463], "translation": [ 0.490019, 0.000000, -0.000000] }, { "keytime": 2674.333008, "scale": [ 0.206319, 0.206319, 0.206319], "translation": [ 0.490019, 0.000000, -0.000000] }, { "keytime": 2707.666260, "scale": [ 0.203439, 0.203439, 0.203439], "translation": [ 0.490019, 0.000000, -0.000000] }, { "keytime": 2740.999512, "scale": [ 0.200783, 0.200783, 0.200783], "translation": [ 0.490019, 0.000000, -0.000000] }, { "keytime": 2774.332764, "scale": [ 0.198222, 0.198222, 0.198222], "translation": [ 0.490019, 0.000000, -0.000000] }, { "keytime": 2807.666016, "scale": [ 0.195910, 0.195910, 0.195910], "translation": [ 0.490019, 0.000000, -0.000000] }, { "keytime": 2840.999268, "scale": [ 0.193770, 0.193770, 0.193770], "translation": [ 0.490019, 0.000000, -0.000000] }, { "keytime": 2874.332520, "scale": [ 0.191749, 0.191749, 0.191749], "translation": [ 0.490019, 0.000000, -0.000000] }, { "keytime": 2907.665771, "scale": [ 0.190018, 0.190018, 0.190018], "translation": [ 0.490019, 0.000000, -0.000000] }, { "keytime": 2940.999023, "scale": [ 0.188458, 0.188458, 0.188458], "translation": [ 0.490019, 0.000000, -0.000000] }, { "keytime": 2974.332275, "scale": [ 0.187031, 0.187031, 0.187031], "translation": [ 0.490019, 0.000000, -0.000000] }, { "keytime": 3007.665527, "scale": [ 0.185821, 0.185821, 0.185821], "translation": [ 0.490019, 0.000000, -0.000000] }, { "keytime": 3040.998779, "scale": [ 0.184789, 0.184789, 0.184789], "translation": [ 0.490019, 0.000000, -0.000000] }, { "keytime": 3074.332031, "scale": [ 0.183956, 0.183956, 0.183956], "translation": [ 0.490019, 0.000000, -0.000000] }, { "keytime": 3107.665283, "scale": [ 0.183325, 0.183325, 0.183325], "translation": [ 0.490019, 0.000000, -0.000000] }, { "keytime": 3140.998535, "scale": [ 0.182863, 0.182863, 0.182863], "translation": [ 0.490019, 0.000000, -0.000000] }, { "keytime": 3174.331787, "scale": [ 0.182567, 0.182567, 0.182567], "translation": [ 0.490019, 0.000000, -0.000000] }, { "keytime": 3207.665039, "scale": [ 0.182453, 0.182453, 0.182453], "translation": [ 0.490019, 0.000000, -0.000000] }, { "keytime": 3240.998291, "scale": [ 0.183322, 0.183322, 0.183322], "translation": [ 0.490019, 0.000000, -0.000000] }, { "keytime": 3274.331543, "scale": [ 0.185576, 0.185576, 0.185576], "translation": [ 0.490019, 0.000000, -0.000000] }, { "keytime": 3307.664795, "scale": [ 0.189132, 0.189132, 0.189132], "translation": [ 0.490019, 0.000000, -0.000000] }, { "keytime": 3340.998047, "scale": [ 0.194021, 0.194021, 0.194021], "translation": [ 0.490020, 0.000000, -0.000000] }, { "keytime": 3374.331299, "scale": [ 0.200512, 0.200512, 0.200512], "translation": [ 0.490020, 0.000000, 0.000000] }, { "keytime": 3407.664551, "scale": [ 0.208609, 0.208609, 0.208609], "translation": [ 0.490020, 0.000000, 0.000000] }, { "keytime": 3440.997803, "scale": [ 0.218037, 0.218037, 0.218037], "translation": [ 0.490020, 0.000000, 0.000000] }, { "keytime": 3474.331055, "scale": [ 0.229141, 0.229141, 0.229141], "translation": [ 0.490020, 0.000000, 0.000000] }, { "keytime": 3507.664307, "scale": [ 0.241255, 0.241255, 0.241255], "translation": [ 0.490020, 0.000000, 0.000000] }, { "keytime": 3540.997559, "scale": [ 0.254714, 0.254714, 0.254714], "translation": [ 0.490020, 0.000000, 0.000000] }, { "keytime": 3574.330811, "scale": [ 0.270290, 0.270290, 0.270290], "translation": [ 0.490020, 0.000000, 0.000000] }, { "keytime": 3607.664062, "scale": [ 0.286673, 0.286673, 0.286673], "translation": [ 0.490020, 0.000000, 0.000000] }, { "keytime": 3640.997314, "scale": [ 0.304235, 0.304235, 0.304235], "translation": [ 0.490020, 0.000000, 0.000000] }, { "keytime": 3674.330566, "scale": [ 0.323541, 0.323541, 0.323541], "translation": [ 0.490020, 0.000000, 0.000000] }, { "keytime": 3707.663818, "scale": [ 0.343411, 0.343411, 0.343411], "translation": [ 0.490020, 0.000000, 0.000000] }, { "keytime": 3740.997070, "scale": [ 0.364626, 0.364626, 0.364626], "translation": [ 0.490020, 0.000000, 0.000000] }, { "keytime": 3774.330322, "scale": [ 0.387444, 0.387445, 0.387445], "translation": [ 0.490020, 0.000000, 0.000000] }, { "keytime": 3807.663574, "scale": [ 0.410471, 0.410471, 0.410471], "translation": [ 0.490020, 0.000000, 0.000000] }, { "keytime": 3840.996826, "scale": [ 0.434278, 0.434278, 0.434278], "translation": [ 0.490020, 0.000000, 0.000000] }, { "keytime": 3874.330078, "scale": [ 0.459566, 0.459566, 0.459566], "translation": [ 0.490020, 0.000000, 0.000000] }, { "keytime": 3907.663330, "scale": [ 0.484881, 0.484881, 0.484880], "translation": [ 0.490020, 0.000000, 0.000000] }, { "keytime": 3940.996582, "scale": [ 0.510635, 0.510635, 0.510635], "translation": [ 0.490020, 0.000000, 0.000000] }, { "keytime": 3974.329834, "scale": [ 0.537536, 0.537536, 0.537536], "translation": [ 0.490020, 0.000000, 0.000000] }, { "keytime": 4007.663086, "scale": [ 0.563901, 0.563901, 0.563901], "translation": [ 0.490020, 0.000000, 0.000000] }, { "keytime": 4040.996338, "scale": [ 0.590422, 0.590422, 0.590422], "translation": [ 0.490020, 0.000000, 0.000000] }, { "keytime": 4074.329590, "scale": [ 0.617746, 0.617746, 0.617746], "translation": [ 0.490020, 0.000000, 0.000000] }, { "keytime": 4107.663086, "scale": [ 0.644118, 0.644118, 0.644118], "translation": [ 0.490020, 0.000000, 0.000000] }, { "keytime": 4140.996094, "scale": [ 0.670246, 0.670246, 0.670246], "translation": [ 0.490020, 0.000000, 0.000000] }, { "keytime": 4174.329590, "scale": [ 0.696804, 0.696804, 0.696804], "translation": [ 0.490020, 0.000000, 0.000000] }, { "keytime": 4207.663086, "scale": [ 0.722126, 0.722126, 0.722126], "translation": [ 0.490020, 0.000000, 0.000000] }, { "keytime": 4240.996582, "scale": [ 0.746686, 0.746686, 0.746686], "translation": [ 0.490020, 0.000000, 0.000000] }, { "keytime": 4274.330078, "scale": [ 0.771265, 0.771265, 0.771265], "translation": [ 0.490020, 0.000000, 0.000000] }, { "keytime": 4307.663574, "scale": [ 0.794325, 0.794325, 0.794325], "translation": [ 0.490020, 0.000000, 0.000000] }, { "keytime": 4340.997070, "scale": [ 0.816538, 0.816538, 0.816538], "translation": [ 0.490020, 0.000000, 0.000000] }, { "keytime": 4374.330566, "scale": [ 0.838425, 0.838425, 0.838425], "translation": [ 0.490020, 0.000000, 0.000001] }, { "keytime": 4407.664062, "scale": [ 0.858309, 0.858309, 0.858309], "translation": [ 0.490020, 0.000000, 0.000001] }, { "keytime": 4440.997559, "scale": [ 0.877101, 0.877101, 0.877101], "translation": [ 0.490020, 0.000000, 0.000001] }, { "keytime": 4474.331055, "scale": [ 0.895269, 0.895269, 0.895269], "translation": [ 0.490020, 0.000000, 0.000001] }, { "keytime": 4507.664551, "scale": [ 0.911702, 0.911702, 0.911702], "translation": [ 0.490020, 0.000000, 0.000001] }, { "keytime": 4540.998047, "scale": [ 0.926869, 0.926869, 0.926869], "translation": [ 0.490020, 0.000000, 0.000001] }, { "keytime": 4574.331543, "scale": [ 0.940789, 0.940789, 0.940789], "translation": [ 0.490020, 0.000000, 0.000001] }, { "keytime": 4607.665039, "scale": [ 0.952955, 0.952955, 0.952955], "translation": [ 0.490020, 0.000000, 0.000001] }, { "keytime": 4640.998535, "scale": [ 0.963813, 0.963813, 0.963813], "translation": [ 0.490020, 0.000000, 0.000001] }, { "keytime": 4674.332031, "scale": [ 0.973597, 0.973597, 0.973597], "translation": [ 0.490020, 0.000000, 0.000001] }, { "keytime": 4707.665527, "scale": [ 0.981712, 0.981712, 0.981712], "translation": [ 0.490020, 0.000000, 0.000001] }, { "keytime": 4740.999023, "scale": [ 0.988049, 0.988049, 0.988049], "translation": [ 0.490020, 0.000000, 0.000001] }, { "keytime": 4774.332520, "scale": [ 0.993184, 0.993184, 0.993184], "translation": [ 0.490020, 0.000000, 0.000001] }, { "keytime": 4807.666016, "scale": [ 0.996794, 0.996794, 0.996794], "translation": [ 0.490020, 0.000000, 0.000001] }, { "keytime": 4832.000000, "scale": [ 0.998824, 0.998824, 0.998824], "translation": [ 0.490020, 0.000000, 0.000001] } ] }, { "boneId": "Bone_004", "keyframes": [ { "keytime": 41.000000, "scale": [ 0.659330, 0.659330, 0.659330], "translation": [ 0.563430, 0.000000, 0.000003] }, { "keytime": 74.333328, "scale": [ 0.659035, 0.659035, 0.659035], "translation": [ 0.563430, 0.000000, 0.000003] }, { "keytime": 107.666664, "scale": [ 0.658303, 0.658303, 0.658303], "translation": [ 0.563430, 0.000000, 0.000003] }, { "keytime": 141.000000, "scale": [ 0.657087, 0.657087, 0.657086], "translation": [ 0.563430, 0.000000, 0.000003] }, { "keytime": 174.333328, "scale": [ 0.655456, 0.655456, 0.655456], "translation": [ 0.563430, 0.000000, 0.000003] }, { "keytime": 207.666656, "scale": [ 0.653371, 0.653371, 0.653371], "translation": [ 0.563430, 0.000000, 0.000003] }, { "keytime": 240.999985, "scale": [ 0.650696, 0.650696, 0.650695], "translation": [ 0.563430, 0.000000, 0.000003] }, { "keytime": 274.333313, "scale": [ 0.647475, 0.647475, 0.647475], "translation": [ 0.563430, 0.000000, 0.000003] }, { "keytime": 307.666656, "scale": [ 0.643892, 0.643892, 0.643892], "translation": [ 0.563430, 0.000000, 0.000003] }, { "keytime": 341.000000, "scale": [ 0.639728, 0.639728, 0.639728], "translation": [ 0.563430, 0.000000, 0.000003] }, { "keytime": 374.333344, "scale": [ 0.635233, 0.635233, 0.635233], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 407.666687, "scale": [ 0.630147, 0.630147, 0.630147], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 441.000031, "scale": [ 0.624451, 0.624451, 0.624451], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 474.333374, "scale": [ 0.618476, 0.618476, 0.618476], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 507.666718, "scale": [ 0.612071, 0.612071, 0.612071], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 541.000061, "scale": [ 0.605017, 0.605017, 0.605017], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 574.333374, "scale": [ 0.597604, 0.597605, 0.597604], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 607.666687, "scale": [ 0.589785, 0.589785, 0.589785], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 641.000000, "scale": [ 0.581309, 0.581309, 0.581309], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 674.333313, "scale": [ 0.572683, 0.572683, 0.572683], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 707.666626, "scale": [ 0.563664, 0.563664, 0.563664], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 740.999939, "scale": [ 0.554158, 0.554158, 0.554158], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 774.333252, "scale": [ 0.544000, 0.544000, 0.544000], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 807.666565, "scale": [ 0.533792, 0.533793, 0.533792], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 840.999878, "scale": [ 0.523261, 0.523261, 0.523261], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 874.333191, "scale": [ 0.512074, 0.512074, 0.512074], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 907.666504, "scale": [ 0.500830, 0.500830, 0.500830], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 940.999817, "scale": [ 0.489325, 0.489325, 0.489325], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 974.333130, "scale": [ 0.477212, 0.477212, 0.477212], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 1007.666443, "scale": [ 0.465223, 0.465223, 0.465223], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 1040.999756, "scale": [ 0.453018, 0.453018, 0.453018], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 1074.333130, "scale": [ 0.440201, 0.440201, 0.440201], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 1107.666504, "scale": [ 0.427548, 0.427548, 0.427548], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 1140.999878, "scale": [ 0.414821, 0.414821, 0.414821], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 1174.333252, "scale": [ 0.401650, 0.401650, 0.401650], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 1207.666626, "scale": [ 0.388685, 0.388685, 0.388685], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 1241.000000, "scale": [ 0.375327, 0.375327, 0.375327], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 1307.666748, "scale": [ 0.349397, 0.349397, 0.349397], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 1341.000122, "scale": [ 0.336039, 0.336039, 0.336039], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 1374.333496, "scale": [ 0.323074, 0.323074, 0.323074], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 1407.666870, "scale": [ 0.310344, 0.310344, 0.310344], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 1441.000244, "scale": [ 0.297232, 0.297232, 0.297232], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 1474.333618, "scale": [ 0.284643, 0.284643, 0.284643], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 1507.666992, "scale": [ 0.272252, 0.272252, 0.272252], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 1541.000366, "scale": [ 0.259677, 0.259677, 0.259677], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 1574.333740, "scale": [ 0.247754, 0.247754, 0.247754], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 1607.667114, "scale": [ 0.236068, 0.236067, 0.236067], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 1641.000488, "scale": [ 0.224293, 0.224293, 0.224293], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 1674.333862, "scale": [ 0.213140, 0.213140, 0.213140], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 1707.667236, "scale": [ 0.202282, 0.202282, 0.202282], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 1741.000610, "scale": [ 0.191519, 0.191519, 0.191519], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 1774.333984, "scale": [ 0.181415, 0.181415, 0.181415], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 1807.667358, "scale": [ 0.171655, 0.171655, 0.171655], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 1841.000732, "scale": [ 0.161977, 0.161977, 0.161977], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 1874.334106, "scale": [ 0.152958, 0.152958, 0.152958], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 1907.667480, "scale": [ 0.144453, 0.144453, 0.144452], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 1941.000854, "scale": [ 0.136101, 0.136101, 0.136101], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 1974.334229, "scale": [ 0.128410, 0.128410, 0.128410], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 2007.667603, "scale": [ 0.121129, 0.121129, 0.121129], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 2041.000977, "scale": [ 0.114074, 0.114074, 0.114074], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 2074.334473, "scale": [ 0.107803, 0.107803, 0.107803], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 2107.667725, "scale": [ 0.101964, 0.101964, 0.101964], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 2141.000977, "scale": [ 0.096406, 0.096406, 0.096406], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 2174.334229, "scale": [ 0.091459, 0.091459, 0.091458], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 2207.667480, "scale": [ 0.086963, 0.086963, 0.086963], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 2241.000732, "scale": [ 0.082939, 0.082939, 0.082939], "translation": [ 0.563430, 0.000000, 0.000002] }, { "keytime": 2274.333984, "scale": [ 0.079496, 0.079496, 0.079496], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 2307.667236, "scale": [ 0.076498, 0.076498, 0.076498], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 2341.000488, "scale": [ 0.073881, 0.073881, 0.073881], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 2374.333740, "scale": [ 0.071795, 0.071795, 0.071795], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 2407.666992, "scale": [ 0.070304, 0.070304, 0.070304], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 2441.000244, "scale": [ 0.069227, 0.069227, 0.069227], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 2474.333496, "scale": [ 0.068632, 0.068632, 0.068632], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 2507.666748, "scale": [ 0.068522, 0.068522, 0.068522], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 2541.000000, "scale": [ 0.069035, 0.069035, 0.069035], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 2574.333252, "scale": [ 0.070535, 0.070535, 0.070535], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 2607.666504, "scale": [ 0.072779, 0.072779, 0.072779], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 2640.999756, "scale": [ 0.075769, 0.075769, 0.075769], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 2674.333008, "scale": [ 0.079646, 0.079646, 0.079646], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 2707.666260, "scale": [ 0.084188, 0.084188, 0.084188], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 2740.999512, "scale": [ 0.089727, 0.089727, 0.089727], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 2774.332764, "scale": [ 0.096217, 0.096217, 0.096217], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 2807.666016, "scale": [ 0.103287, 0.103287, 0.103287], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 2840.999268, "scale": [ 0.111103, 0.111103, 0.111103], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 2874.332520, "scale": [ 0.119963, 0.119963, 0.119963], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 2907.665771, "scale": [ 0.129550, 0.129550, 0.129550], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 2940.999023, "scale": [ 0.139863, 0.139863, 0.139863], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 2974.332275, "scale": [ 0.151243, 0.151243, 0.151243], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 3007.665527, "scale": [ 0.163010, 0.163010, 0.163010], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 3040.998779, "scale": [ 0.175504, 0.175504, 0.175504], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 3074.332031, "scale": [ 0.189296, 0.189297, 0.189296], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 3107.665283, "scale": [ 0.203368, 0.203368, 0.203368], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 3140.998535, "scale": [ 0.218080, 0.218080, 0.218080], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 3174.331787, "scale": [ 0.233900, 0.233900, 0.233900], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 3207.665039, "scale": [ 0.249881, 0.249881, 0.249881], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 3240.998291, "scale": [ 0.266621, 0.266621, 0.266621], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 3274.331543, "scale": [ 0.284429, 0.284429, 0.284429], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 3307.664795, "scale": [ 0.302240, 0.302240, 0.302240], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 3340.998047, "scale": [ 0.320535, 0.320535, 0.320535], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 3374.331299, "scale": [ 0.339881, 0.339881, 0.339881], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 3407.664551, "scale": [ 0.359208, 0.359208, 0.359208], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 3440.997803, "scale": [ 0.378899, 0.378899, 0.378899], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 3474.331055, "scale": [ 0.399533, 0.399533, 0.399533], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 3507.664307, "scale": [ 0.419862, 0.419862, 0.419861], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 3540.997559, "scale": [ 0.440459, 0.440459, 0.440459], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 3574.330811, "scale": [ 0.461956, 0.461956, 0.461956], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 3607.664062, "scale": [ 0.482975, 0.482975, 0.482975], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 3640.997314, "scale": [ 0.504094, 0.504094, 0.504094], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 3674.330566, "scale": [ 0.525907, 0.525907, 0.525907], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 3740.997070, "scale": [ 0.568249, 0.568249, 0.568249], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 3774.330322, "scale": [ 0.590062, 0.590062, 0.590062], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 3807.663574, "scale": [ 0.611088, 0.611088, 0.611088], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 3840.996826, "scale": [ 0.631900, 0.631900, 0.631900], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 3874.330078, "scale": [ 0.653122, 0.653122, 0.653122], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 3907.663330, "scale": [ 0.673372, 0.673372, 0.673372], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 3940.996582, "scale": [ 0.693312, 0.693312, 0.693312], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 3974.329834, "scale": [ 0.713494, 0.713494, 0.713494], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 4007.663086, "scale": [ 0.732698, 0.732698, 0.732698], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 4040.996338, "scale": [ 0.751474, 0.751474, 0.751474], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 4074.329590, "scale": [ 0.770202, 0.770202, 0.770202], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 4107.663086, "scale": [ 0.787862, 0.787862, 0.787862], "translation": [ 0.563430, 0.000000, 0.000001] }, { "keytime": 4140.996094, "scale": [ 0.805001, 0.805001, 0.805000], "translation": [ 0.563430, 0.000000, 0.000000] }, { "keytime": 4174.329590, "scale": [ 0.822076, 0.822076, 0.822076], "translation": [ 0.563430, 0.000000, 0.000000] }, { "keytime": 4207.663086, "scale": [ 0.838057, 0.838057, 0.838057], "translation": [ 0.563430, 0.000000, 0.000000] }, { "keytime": 4240.996582, "scale": [ 0.853236, 0.853236, 0.853236], "translation": [ 0.563430, 0.000000, 0.000000] }, { "keytime": 4274.330078, "scale": [ 0.868217, 0.868217, 0.868217], "translation": [ 0.563430, 0.000000, 0.000000] }, { "keytime": 4307.663574, "scale": [ 0.882091, 0.882091, 0.882090], "translation": [ 0.563430, 0.000000, 0.000000] }, { "keytime": 4340.997070, "scale": [ 0.895300, 0.895300, 0.895300], "translation": [ 0.563430, 0.000000, 0.000000] }, { "keytime": 4374.330566, "scale": [ 0.908172, 0.908172, 0.908172], "translation": [ 0.563430, 0.000000, 0.000000] }, { "keytime": 4407.664062, "scale": [ 0.919729, 0.919729, 0.919729], "translation": [ 0.563430, 0.000000, 0.000000] }, { "keytime": 4440.997559, "scale": [ 0.930574, 0.930574, 0.930574], "translation": [ 0.563430, 0.000000, 0.000000] }, { "keytime": 4474.331055, "scale": [ 0.940989, 0.940989, 0.940989], "translation": [ 0.563430, 0.000000, 0.000000] }, { "keytime": 4507.664551, "scale": [ 0.950354, 0.950354, 0.950354], "translation": [ 0.563430, 0.000000, 0.000000] }, { "keytime": 4540.998047, "scale": [ 0.958954, 0.958953, 0.958953], "translation": [ 0.563430, 0.000000, 0.000000] }, { "keytime": 4574.331543, "scale": [ 0.966806, 0.966806, 0.966806], "translation": [ 0.563430, 0.000000, 0.000000] }, { "keytime": 4607.665039, "scale": [ 0.973651, 0.973651, 0.973651], "translation": [ 0.563430, 0.000000, 0.000000] }, { "keytime": 4640.998535, "scale": [ 0.979746, 0.979746, 0.979746], "translation": [ 0.563430, 0.000000, 0.000000] }, { "keytime": 4674.332031, "scale": [ 0.985228, 0.985228, 0.985228], "translation": [ 0.563430, 0.000000, 0.000000] }, { "keytime": 4707.665527, "scale": [ 0.989769, 0.989769, 0.989769], "translation": [ 0.563430, 0.000000, 0.000000] }, { "keytime": 4740.999023, "scale": [ 0.993313, 0.993313, 0.993313], "translation": [ 0.563430, 0.000000, 0.000000] }, { "keytime": 4774.332520, "scale": [ 0.996185, 0.996184, 0.996185], "translation": [ 0.563430, 0.000000, 0.000000] }, { "keytime": 4807.666016, "scale": [ 0.998204, 0.998204, 0.998204], "translation": [ 0.563430, 0.000000, 0.000000] }, { "keytime": 4832.000000, "scale": [ 0.999341, 0.999341, 0.999341], "translation": [ 0.563430, 0.000000, 0.000000] } ] }, { "boneId": "Bone_002", "keyframes": [ { "keytime": 41.000000, "scale": [ 0.628300, 1.000000, 0.628300] }, { "keytime": 74.333328, "scale": [ 0.628348, 1.000000, 0.628348] }, { "keytime": 107.666664, "scale": [ 0.628502, 1.000000, 0.628502] }, { "keytime": 141.000000, "scale": [ 0.628700, 1.000000, 0.628700] }, { "keytime": 174.333328, "scale": [ 0.628940, 1.000000, 0.628940] }, { "keytime": 240.999985, "scale": [ 0.629712, 1.000000, 0.629712] }, { "keytime": 274.333313, "scale": [ 0.630255, 1.000000, 0.630255] }, { "keytime": 307.666656, "scale": [ 0.630836, 1.000000, 0.630836] }, { "keytime": 341.000000, "scale": [ 0.631484, 1.000000, 0.631484] }, { "keytime": 407.666687, "scale": [ 0.633037, 1.000000, 0.633037] }, { "keytime": 441.000031, "scale": [ 0.633986, 1.000000, 0.633986] }, { "keytime": 474.333374, "scale": [ 0.634959, 1.000000, 0.634959] }, { "keytime": 507.666718, "scale": [ 0.635978, 1.000000, 0.635978] }, { "keytime": 541.000061, "scale": [ 0.637183, 1.000000, 0.637183] }, { "keytime": 574.333374, "scale": [ 0.638352, 1.000000, 0.638352] }, { "keytime": 607.666687, "scale": [ 0.639666, 1.000000, 0.639666] }, { "keytime": 641.000000, "scale": [ 0.641072, 1.000000, 0.641072] }, { "keytime": 674.333313, "scale": [ 0.642485, 1.000000, 0.642485] }, { "keytime": 740.999939, "scale": [ 0.645605, 1.000000, 0.645605] }, { "keytime": 807.666565, "scale": [ 0.649111, 1.000000, 0.649111] }, { "keytime": 840.999878, "scale": [ 0.650907, 1.000000, 0.650908] }, { "keytime": 874.333191, "scale": [ 0.652911, 1.000000, 0.652912] }, { "keytime": 907.666504, "scale": [ 0.654857, 1.000000, 0.654857] }, { "keytime": 940.999817, "scale": [ 0.656939, 1.000000, 0.656939] }, { "keytime": 974.333130, "scale": [ 0.659137, 1.000000, 0.659137] }, { "keytime": 1007.666443, "scale": [ 0.661314, 1.000000, 0.661314] }, { "keytime": 1040.999756, "scale": [ 0.663633, 1.000000, 0.663633] }, { "keytime": 1074.333130, "scale": [ 0.666022, 1.000000, 0.666022] }, { "keytime": 1107.666504, "scale": [ 0.668474, 1.000000, 0.668474] }, { "keytime": 1140.999878, "scale": [ 0.670974, 1.000000, 0.670974] }, { "keytime": 1174.333252, "scale": [ 0.673592, 1.000000, 0.673592] }, { "keytime": 1207.666626, "scale": [ 0.676268, 1.000000, 0.676268] }, { "keytime": 1241.000000, "scale": [ 0.679025, 1.000000, 0.679025] }, { "keytime": 1274.333374, "scale": [ 0.681827, 1.000000, 0.681827] }, { "keytime": 1307.666748, "scale": [ 0.684673, 1.000000, 0.684673] }, { "keytime": 1341.000122, "scale": [ 0.687646, 1.000000, 0.687647] }, { "keytime": 1407.666870, "scale": [ 0.693665, 1.000000, 0.693665] }, { "keytime": 1441.000244, "scale": [ 0.696912, 1.000000, 0.696912] }, { "keytime": 1507.666992, "scale": [ 0.703318, 1.000000, 0.703318] }, { "keytime": 1541.000366, "scale": [ 0.706617, 1.000000, 0.706617] }, { "keytime": 1607.667114, "scale": [ 0.713451, 1.000000, 0.713452] }, { "keytime": 1641.000488, "scale": [ 0.716972, 1.000000, 0.716972] }, { "keytime": 1674.333862, "scale": [ 0.720436, 1.000000, 0.720436] }, { "keytime": 1707.667236, "scale": [ 0.724045, 1.000000, 0.724046] }, { "keytime": 1741.000610, "scale": [ 0.727764, 1.000000, 0.727764] }, { "keytime": 1774.333984, "scale": [ 0.731374, 1.000000, 0.731374] }, { "keytime": 1807.667358, "scale": [ 0.735076, 1.000000, 0.735076] }, { "keytime": 1841.000732, "scale": [ 0.738993, 1.000000, 0.738993] }, { "keytime": 1907.667480, "scale": [ 0.746595, 1.000000, 0.746595] }, { "keytime": 1941.000854, "scale": [ 0.750511, 1.000000, 0.750511] }, { "keytime": 1974.334229, "scale": [ 0.754398, 1.000000, 0.754398] }, { "keytime": 2007.667603, "scale": [ 0.758373, 1.000000, 0.758373] }, { "keytime": 2041.000977, "scale": [ 0.762467, 1.000000, 0.762468] }, { "keytime": 2107.667725, "scale": [ 0.770416, 1.000000, 0.770416] }, { "keytime": 2141.000977, "scale": [ 0.774586, 1.000000, 0.774586] }, { "keytime": 2207.667480, "scale": [ 0.782832, 1.000000, 0.782832] }, { "keytime": 2241.000732, "scale": [ 0.787080, 1.000000, 0.787080] }, { "keytime": 2307.667236, "scale": [ 0.795326, 1.000000, 0.795326] }, { "keytime": 2341.000488, "scale": [ 0.799574, 1.000000, 0.799574] }, { "keytime": 2407.666992, "scale": [ 0.807820, 1.000000, 0.807820] }, { "keytime": 2441.000244, "scale": [ 0.812068, 1.000000, 0.812068] }, { "keytime": 2507.666748, "scale": [ 0.820314, 1.000000, 0.820313] }, { "keytime": 2541.000000, "scale": [ 0.824561, 1.000000, 0.824561] }, { "keytime": 2640.999756, "scale": [ 0.836930, 1.000000, 0.836930] }, { "keytime": 2674.333008, "scale": [ 0.841178, 1.000000, 0.841178] }, { "keytime": 2740.999512, "scale": [ 0.849424, 1.000000, 0.849424] }, { "keytime": 2774.332764, "scale": [ 0.853672, 1.000000, 0.853672] }, { "keytime": 2807.666016, "scale": [ 0.857713, 1.000000, 0.857713] }, { "keytime": 2840.999268, "scale": [ 0.861668, 1.000000, 0.861668] }, { "keytime": 2874.332520, "scale": [ 0.865742, 1.000000, 0.865742] }, { "keytime": 2940.999023, "scale": [ 0.873651, 1.000000, 0.873651] }, { "keytime": 2974.332275, "scale": [ 0.877725, 1.000000, 0.877725] }, { "keytime": 3007.665527, "scale": [ 0.881632, 1.000000, 0.881632] }, { "keytime": 3040.998779, "scale": [ 0.885382, 1.000000, 0.885381] }, { "keytime": 3074.332031, "scale": [ 0.889245, 1.000000, 0.889245] }, { "keytime": 3140.998535, "scale": [ 0.896745, 1.000000, 0.896745] }, { "keytime": 3174.331787, "scale": [ 0.900559, 1.000000, 0.900559] }, { "keytime": 3240.998291, "scale": [ 0.907655, 1.000000, 0.907655] }, { "keytime": 3274.331543, "scale": [ 0.911311, 1.000000, 0.911311] }, { "keytime": 3307.664795, "scale": [ 0.914762, 1.000000, 0.914762] }, { "keytime": 3340.998047, "scale": [ 0.918110, 1.000000, 0.918110] }, { "keytime": 3374.331299, "scale": [ 0.921559, 1.000000, 0.921559] }, { "keytime": 3407.664551, "scale": [ 0.924907, 1.000000, 0.924907] }, { "keytime": 3440.997803, "scale": [ 0.928094, 1.000000, 0.928094] }, { "keytime": 3474.331055, "scale": [ 0.931316, 1.000000, 0.931316] }, { "keytime": 3540.997559, "scale": [ 0.937569, 1.000000, 0.937569] }, { "keytime": 3574.330811, "scale": [ 0.940592, 1.000000, 0.940592] }, { "keytime": 3607.664062, "scale": [ 0.943521, 1.000000, 0.943521] }, { "keytime": 3640.997314, "scale": [ 0.946370, 1.000000, 0.946370] }, { "keytime": 3674.330566, "scale": [ 0.949215, 1.000000, 0.949215] }, { "keytime": 3707.663818, "scale": [ 0.951977, 1.000000, 0.951977] }, { "keytime": 3740.997070, "scale": [ 0.954569, 1.000000, 0.954569] }, { "keytime": 3774.330322, "scale": [ 0.957236, 1.000000, 0.957236] }, { "keytime": 3807.663574, "scale": [ 0.959738, 1.000000, 0.959738] }, { "keytime": 3840.996826, "scale": [ 0.962147, 1.000000, 0.962148] }, { "keytime": 3874.330078, "scale": [ 0.964630, 1.000000, 0.964630] }, { "keytime": 3940.996582, "scale": [ 0.969086, 1.000000, 0.969086] }, { "keytime": 3974.329834, "scale": [ 0.971287, 1.000000, 0.971287] }, { "keytime": 4040.996338, "scale": [ 0.975367, 1.000000, 0.975367] }, { "keytime": 4074.329590, "scale": [ 0.977278, 1.000000, 0.977278] }, { "keytime": 4107.663086, "scale": [ 0.979128, 1.000000, 0.979128] }, { "keytime": 4140.996094, "scale": [ 0.980886, 1.000000, 0.980886] }, { "keytime": 4174.329590, "scale": [ 0.982594, 1.000000, 0.982594] }, { "keytime": 4207.663086, "scale": [ 0.984251, 1.000000, 0.984251] }, { "keytime": 4240.996582, "scale": [ 0.985718, 1.000000, 0.985718] }, { "keytime": 4274.330078, "scale": [ 0.987225, 1.000000, 0.987225] }, { "keytime": 4307.663574, "scale": [ 0.988593, 1.000000, 0.988593] }, { "keytime": 4340.997070, "scale": [ 0.989860, 1.000000, 0.989860] }, { "keytime": 4374.330566, "scale": [ 0.991166, 1.000000, 0.991166] }, { "keytime": 4407.664062, "scale": [ 0.992239, 1.000000, 0.992239] }, { "keytime": 4440.997559, "scale": [ 0.993311, 1.000000, 0.993311] }, { "keytime": 4474.331055, "scale": [ 0.994317, 1.000000, 0.994317] }, { "keytime": 4540.998047, "scale": [ 0.996067, 1.000000, 0.996067] }, { "keytime": 4574.331543, "scale": [ 0.996772, 1.000000, 0.996772] }, { "keytime": 4607.665039, "scale": [ 0.997451, 1.000000, 0.997451] }, { "keytime": 4640.998535, "scale": [ 0.998037, 1.000000, 0.998037] }, { "keytime": 4674.332031, "scale": [ 0.998535, 1.000000, 0.998535] }, { "keytime": 4707.665527, "scale": [ 0.999018, 1.000000, 0.999018] }, { "keytime": 4740.999023, "scale": [ 0.999311, 1.000000, 0.999311] }, { "keytime": 4774.332520, "scale": [ 0.999609, 1.000000, 0.999609] }, { "keytime": 4807.666016, "scale": [ 0.999804, 1.000000, 0.999804] }, { "keytime": 4832.000000, "scale": [ 0.999877, 1.000000, 0.999877] } ] }, { "boneId": "Bone_003", "keyframes": [ { "keytime": 41.000000, "scale": [ 0.200000, 0.200000, 0.200000] }, { "keytime": 307.666656, "scale": [ 0.200220, 0.200220, 0.200220] }, { "keytime": 341.000000, "scale": [ 0.200287, 0.200287, 0.200287] }, { "keytime": 407.666687, "scale": [ 0.200646, 0.200646, 0.200646] }, { "keytime": 441.000031, "scale": [ 0.200832, 0.200832, 0.200832] }, { "keytime": 507.666718, "scale": [ 0.201191, 0.201191, 0.201191] }, { "keytime": 541.000061, "scale": [ 0.201376, 0.201376, 0.201376] }, { "keytime": 607.666687, "scale": [ 0.202166, 0.202166, 0.202166] }, { "keytime": 641.000000, "scale": [ 0.202572, 0.202572, 0.202572] }, { "keytime": 674.333313, "scale": [ 0.203013, 0.203013, 0.203013] }, { "keytime": 740.999939, "scale": [ 0.204180, 0.204180, 0.204180] }, { "keytime": 774.333252, "scale": [ 0.204917, 0.204917, 0.204917] }, { "keytime": 807.666565, "scale": [ 0.205682, 0.205682, 0.205682] }, { "keytime": 840.999878, "scale": [ 0.206492, 0.206492, 0.206492] }, { "keytime": 874.333191, "scale": [ 0.207490, 0.207490, 0.207490] }, { "keytime": 907.666504, "scale": [ 0.208458, 0.208458, 0.208458] }, { "keytime": 940.999817, "scale": [ 0.209588, 0.209588, 0.209588] }, { "keytime": 974.333130, "scale": [ 0.210814, 0.210814, 0.210814] }, { "keytime": 1007.666443, "scale": [ 0.212058, 0.212058, 0.212058] }, { "keytime": 1040.999756, "scale": [ 0.213482, 0.213482, 0.213482] }, { "keytime": 1074.333130, "scale": [ 0.214949, 0.214949, 0.214949] }, { "keytime": 1107.666504, "scale": [ 0.216549, 0.216549, 0.216549] }, { "keytime": 1140.999878, "scale": [ 0.218213, 0.218213, 0.218213] }, { "keytime": 1174.333252, "scale": [ 0.219985, 0.219985, 0.219985] }, { "keytime": 1207.666626, "scale": [ 0.221888, 0.221888, 0.221888] }, { "keytime": 1241.000000, "scale": [ 0.223848, 0.223848, 0.223848] }, { "keytime": 1274.333374, "scale": [ 0.225926, 0.225926, 0.225926] }, { "keytime": 1307.666748, "scale": [ 0.228063, 0.228063, 0.228063] }, { "keytime": 1341.000122, "scale": [ 0.230322, 0.230322, 0.230321] }, { "keytime": 1407.666870, "scale": [ 0.235044, 0.235044, 0.235044] }, { "keytime": 1441.000244, "scale": [ 0.237636, 0.237636, 0.237636] }, { "keytime": 1474.333618, "scale": [ 0.240208, 0.240208, 0.240208] }, { "keytime": 1507.666992, "scale": [ 0.242826, 0.242826, 0.242826] }, { "keytime": 1541.000366, "scale": [ 0.245678, 0.245678, 0.245678] }, { "keytime": 1574.333740, "scale": [ 0.248446, 0.248446, 0.248446] }, { "keytime": 1607.667114, "scale": [ 0.251347, 0.251347, 0.251347] }, { "keytime": 1641.000488, "scale": [ 0.254386, 0.254386, 0.254386] }, { "keytime": 1674.333862, "scale": [ 0.257374, 0.257374, 0.257374] }, { "keytime": 1707.667236, "scale": [ 0.260487, 0.260487, 0.260487] }, { "keytime": 1741.000610, "scale": [ 0.263695, 0.263695, 0.263695] }, { "keytime": 1774.333984, "scale": [ 0.266993, 0.266993, 0.266993] }, { "keytime": 1807.667358, "scale": [ 0.270519, 0.270519, 0.270519] }, { "keytime": 1841.000732, "scale": [ 0.274419, 0.274419, 0.274419] }, { "keytime": 1874.334106, "scale": [ 0.278462, 0.278462, 0.278462] }, { "keytime": 1907.667480, "scale": [ 0.282845, 0.282845, 0.282845] }, { "keytime": 1941.000854, "scale": [ 0.287625, 0.287625, 0.287624] }, { "keytime": 1974.334229, "scale": [ 0.292524, 0.292524, 0.292524] }, { "keytime": 2007.667603, "scale": [ 0.297676, 0.297676, 0.297676] }, { "keytime": 2041.000977, "scale": [ 0.303255, 0.303255, 0.303254] }, { "keytime": 2074.334473, "scale": [ 0.309011, 0.309011, 0.309011] }, { "keytime": 2107.667725, "scale": [ 0.315017, 0.315017, 0.315017] }, { "keytime": 2141.000977, "scale": [ 0.321468, 0.321468, 0.321468] }, { "keytime": 2174.334229, "scale": [ 0.327982, 0.327982, 0.327982] }, { "keytime": 2207.667480, "scale": [ 0.334749, 0.334749, 0.334749] }, { "keytime": 2241.000732, "scale": [ 0.342056, 0.342056, 0.342056] }, { "keytime": 2274.333984, "scale": [ 0.349398, 0.349398, 0.349398] }, { "keytime": 2307.667236, "scale": [ 0.356979, 0.356979, 0.356979] }, { "keytime": 2374.333740, "scale": [ 0.373102, 0.373102, 0.373102] }, { "keytime": 2407.666992, "scale": [ 0.381470, 0.381470, 0.381470] }, { "keytime": 2441.000244, "scale": [ 0.390323, 0.390323, 0.390323] }, { "keytime": 2474.333496, "scale": [ 0.399141, 0.399141, 0.399141] }, { "keytime": 2507.666748, "scale": [ 0.408173, 0.408173, 0.408173] }, { "keytime": 2541.000000, "scale": [ 0.417703, 0.417703, 0.417703] }, { "keytime": 2574.333252, "scale": [ 0.427227, 0.427227, 0.427227] }, { "keytime": 2607.666504, "scale": [ 0.436945, 0.436945, 0.436945] }, { "keytime": 2640.999756, "scale": [ 0.446850, 0.446850, 0.446850] }, { "keytime": 2674.333008, "scale": [ 0.457249, 0.457249, 0.457249] }, { "keytime": 2707.666260, "scale": [ 0.467524, 0.467524, 0.467524] }, { "keytime": 2740.999512, "scale": [ 0.478018, 0.478018, 0.478018] }, { "keytime": 2774.332764, "scale": [ 0.488991, 0.488991, 0.488991] }, { "keytime": 2807.666016, "scale": [ 0.499793, 0.499793, 0.499792] }, { "keytime": 2840.999268, "scale": [ 0.510732, 0.510732, 0.510732] }, { "keytime": 2874.332520, "scale": [ 0.522145, 0.522145, 0.522145] }, { "keytime": 2907.665771, "scale": [ 0.533449, 0.533449, 0.533449] }, { "keytime": 2940.999023, "scale": [ 0.544755, 0.544755, 0.544755] }, { "keytime": 2974.332275, "scale": [ 0.556524, 0.556524, 0.556524] }, { "keytime": 3040.998779, "scale": [ 0.579621, 0.579621, 0.579621] }, { "keytime": 3074.332031, "scale": [ 0.591712, 0.591712, 0.591712] }, { "keytime": 3140.998535, "scale": [ 0.615195, 0.615195, 0.615195] }, { "keytime": 3174.331787, "scale": [ 0.627292, 0.627292, 0.627292] }, { "keytime": 3240.998291, "scale": [ 0.650774, 0.650775, 0.650774] }, { "keytime": 3274.331543, "scale": [ 0.662872, 0.662872, 0.662872] }, { "keytime": 3340.998047, "scale": [ 0.686354, 0.686354, 0.686354] }, { "keytime": 3374.331299, "scale": [ 0.698451, 0.698451, 0.698451] }, { "keytime": 3407.664551, "scale": [ 0.709952, 0.709952, 0.709952] }, { "keytime": 3440.997803, "scale": [ 0.721451, 0.721451, 0.721451] }, { "keytime": 3474.331055, "scale": [ 0.733165, 0.733165, 0.733165] }, { "keytime": 3540.997559, "scale": [ 0.755621, 0.755621, 0.755621] }, { "keytime": 3574.330811, "scale": [ 0.766936, 0.766935, 0.766936] }, { "keytime": 3607.664062, "scale": [ 0.777765, 0.777765, 0.777765] }, { "keytime": 3640.997314, "scale": [ 0.788441, 0.788442, 0.788441] }, { "keytime": 3674.330566, "scale": [ 0.799268, 0.799269, 0.799268] }, { "keytime": 3707.663818, "scale": [ 0.809599, 0.809599, 0.809599] }, { "keytime": 3740.997070, "scale": [ 0.819685, 0.819685, 0.819685] }, { "keytime": 3774.330322, "scale": [ 0.829872, 0.829872, 0.829872] }, { "keytime": 3807.663574, "scale": [ 0.839549, 0.839549, 0.839549] }, { "keytime": 3840.996826, "scale": [ 0.849015, 0.849015, 0.849015] }, { "keytime": 3874.330078, "scale": [ 0.858532, 0.858532, 0.858532] }, { "keytime": 3907.663330, "scale": [ 0.867461, 0.867461, 0.867461] }, { "keytime": 3940.996582, "scale": [ 0.876154, 0.876154, 0.876154] }, { "keytime": 3974.329834, "scale": [ 0.884854, 0.884854, 0.884854] }, { "keytime": 4007.663086, "scale": [ 0.893045, 0.893045, 0.893045] }, { "keytime": 4040.996338, "scale": [ 0.900972, 0.900972, 0.900972] }, { "keytime": 4074.329590, "scale": [ 0.908787, 0.908786, 0.908786] }, { "keytime": 4107.663086, "scale": [ 0.916094, 0.916094, 0.916094] }, { "keytime": 4140.996094, "scale": [ 0.923131, 0.923131, 0.923131] }, { "keytime": 4174.329590, "scale": [ 0.930091, 0.930091, 0.930090] }, { "keytime": 4207.663086, "scale": [ 0.936558, 0.936558, 0.936558] }, { "keytime": 4240.996582, "scale": [ 0.942652, 0.942652, 0.942652] }, { "keytime": 4274.330078, "scale": [ 0.948634, 0.948634, 0.948634] }, { "keytime": 4307.663574, "scale": [ 0.954146, 0.954146, 0.954146] }, { "keytime": 4340.997070, "scale": [ 0.959369, 0.959369, 0.959369] }, { "keytime": 4374.330566, "scale": [ 0.964436, 0.964436, 0.964436] }, { "keytime": 4407.664062, "scale": [ 0.968962, 0.968962, 0.968962] }, { "keytime": 4440.997559, "scale": [ 0.973195, 0.973195, 0.973195] }, { "keytime": 4474.331055, "scale": [ 0.977249, 0.977249, 0.977249] }, { "keytime": 4507.664551, "scale": [ 0.980884, 0.980884, 0.980884] }, { "keytime": 4540.998047, "scale": [ 0.984213, 0.984213, 0.984213] }, { "keytime": 4574.331543, "scale": [ 0.987245, 0.987245, 0.987245] }, { "keytime": 4607.665039, "scale": [ 0.989883, 0.989883, 0.989883] }, { "keytime": 4640.998535, "scale": [ 0.992229, 0.992229, 0.992229] }, { "keytime": 4674.332031, "scale": [ 0.994336, 0.994336, 0.994336] }, { "keytime": 4707.665527, "scale": [ 0.996079, 0.996079, 0.996079] }, { "keytime": 4740.999023, "scale": [ 0.997438, 0.997438, 0.997438] }, { "keytime": 4774.332520, "scale": [ 0.998539, 0.998539, 0.998538] }, { "keytime": 4807.666016, "scale": [ 0.999312, 0.999312, 0.999312] }, { "keytime": 4832.000000, "scale": [ 0.999748, 0.999748, 0.999747] } ] }, { "boneId": "Bone_018", "keyframes": [ { "keytime": 41.000000, "scale": [ 0.659330, 0.659330, 0.659330], "translation": [ 0.432931, 0.000000, -0.000002] }, { "keytime": 74.333328, "scale": [ 0.659230, 0.659230, 0.659230], "translation": [ 0.432931, 0.000000, -0.000001] }, { "keytime": 107.666664, "scale": [ 0.658983, 0.658983, 0.658983], "translation": [ 0.432931, 0.000000, 0.000000] }, { "keytime": 141.000000, "scale": [ 0.658573, 0.658573, 0.658573], "translation": [ 0.432931, 0.000000, 0.000002] }, { "keytime": 174.333328, "scale": [ 0.658023, 0.658023, 0.658023], "translation": [ 0.432931, 0.000000, 0.000003] }, { "keytime": 207.666656, "scale": [ 0.657320, 0.657320, 0.657320], "translation": [ 0.432931, 0.000000, 0.000004] }, { "keytime": 240.999985, "scale": [ 0.656418, 0.656418, 0.656418], "translation": [ 0.432931, 0.000000, 0.000006] }, { "keytime": 274.333313, "scale": [ 0.655333, 0.655333, 0.655333], "translation": [ 0.432931, 0.000000, 0.000007] }, { "keytime": 307.666656, "scale": [ 0.654126, 0.654126, 0.654126], "translation": [ 0.432931, 0.000000, 0.000009] }, { "keytime": 341.000000, "scale": [ 0.652722, 0.652722, 0.652722], "translation": [ 0.432931, 0.000000, 0.000010] }, { "keytime": 374.333344, "scale": [ 0.651205, 0.651205, 0.651205], "translation": [ 0.432931, 0.000000, 0.000011] }, { "keytime": 407.666687, "scale": [ 0.649486, 0.649486, 0.649486], "translation": [ 0.432931, 0.000000, 0.000013] }, { "keytime": 441.000031, "scale": [ 0.647558, 0.647558, 0.647558], "translation": [ 0.432931, 0.000000, 0.000014] }, { "keytime": 474.333374, "scale": [ 0.645532, 0.645532, 0.645532], "translation": [ 0.432931, 0.000000, 0.000016] }, { "keytime": 507.666718, "scale": [ 0.643356, 0.643356, 0.643356], "translation": [ 0.432931, 0.000000, 0.000017] }, { "keytime": 541.000061, "scale": [ 0.640954, 0.640954, 0.640954], "translation": [ 0.432931, 0.000000, 0.000018] }, { "keytime": 574.333374, "scale": [ 0.638419, 0.638419, 0.638419], "translation": [ 0.432931, 0.000000, 0.000020] }, { "keytime": 607.666687, "scale": [ 0.635736, 0.635736, 0.635736], "translation": [ 0.432931, 0.000000, 0.000021] }, { "keytime": 641.000000, "scale": [ 0.632817, 0.632817, 0.632817], "translation": [ 0.432931, 0.000000, 0.000022] }, { "keytime": 674.333313, "scale": [ 0.629833, 0.629833, 0.629833], "translation": [ 0.432931, 0.000000, 0.000024] }, { "keytime": 707.666626, "scale": [ 0.626698, 0.626698, 0.626698], "translation": [ 0.432931, 0.000000, 0.000025] }, { "keytime": 740.999939, "scale": [ 0.623371, 0.623371, 0.623371], "translation": [ 0.432931, 0.000000, 0.000026] }, { "keytime": 774.333252, "scale": [ 0.619793, 0.619793, 0.619793], "translation": [ 0.432931, 0.000000, 0.000028] }, { "keytime": 807.666565, "scale": [ 0.616174, 0.616175, 0.616175], "translation": [ 0.432931, 0.000000, 0.000029] }, { "keytime": 840.999878, "scale": [ 0.612415, 0.612415, 0.612415], "translation": [ 0.432931, 0.000000, 0.000031] }, { "keytime": 874.333191, "scale": [ 0.608389, 0.608389, 0.608389], "translation": [ 0.432931, 0.000000, 0.000032] }, { "keytime": 907.666504, "scale": [ 0.604298, 0.604298, 0.604298], "translation": [ 0.432931, 0.000000, 0.000033] }, { "keytime": 940.999817, "scale": [ 0.600071, 0.600071, 0.600071], "translation": [ 0.432931, 0.000000, 0.000035] }, { "keytime": 1007.666443, "scale": [ 0.591081, 0.591081, 0.591081], "translation": [ 0.432931, 0.000000, 0.000038] }, { "keytime": 1040.999756, "scale": [ 0.586451, 0.586451, 0.586451], "translation": [ 0.432931, 0.000000, 0.000039] }, { "keytime": 1074.333130, "scale": [ 0.581511, 0.581511, 0.581511], "translation": [ 0.432931, 0.000000, 0.000040] }, { "keytime": 1107.666504, "scale": [ 0.576589, 0.576589, 0.576589], "translation": [ 0.432931, 0.000000, 0.000042] }, { "keytime": 1140.999878, "scale": [ 0.571547, 0.571547, 0.571547], "translation": [ 0.432931, 0.000000, 0.000043] }, { "keytime": 1174.333252, "scale": [ 0.566211, 0.566211, 0.566211], "translation": [ 0.432931, 0.000000, 0.000044] }, { "keytime": 1207.666626, "scale": [ 0.560857, 0.560857, 0.560857], "translation": [ 0.432931, 0.000000, 0.000046] }, { "keytime": 1241.000000, "scale": [ 0.555340, 0.555340, 0.555340], "translation": [ 0.432931, 0.000000, 0.000047] }, { "keytime": 1274.333374, "scale": [ 0.549774, 0.549774, 0.549774], "translation": [ 0.432931, 0.000000, 0.000049] }, { "keytime": 1307.666748, "scale": [ 0.544136, 0.544136, 0.544136], "translation": [ 0.432931, 0.000000, 0.000050] }, { "keytime": 1341.000122, "scale": [ 0.538262, 0.538262, 0.538262], "translation": [ 0.432931, 0.000000, 0.000051] }, { "keytime": 1407.666870, "scale": [ 0.526474, 0.526474, 0.526474], "translation": [ 0.432931, 0.000000, 0.000054] }, { "keytime": 1441.000244, "scale": [ 0.520231, 0.520231, 0.520231], "translation": [ 0.432931, 0.000000, 0.000055] }, { "keytime": 1474.333618, "scale": [ 0.514111, 0.514111, 0.514111], "translation": [ 0.432931, 0.000000, 0.000057] }, { "keytime": 1507.666992, "scale": [ 0.507947, 0.507947, 0.507947], "translation": [ 0.432931, 0.000000, 0.000058] }, { "keytime": 1541.000366, "scale": [ 0.501444, 0.501444, 0.501444], "translation": [ 0.432931, 0.000000, 0.000060] }, { "keytime": 1574.333740, "scale": [ 0.495132, 0.495132, 0.495132], "translation": [ 0.432931, 0.000000, 0.000061] }, { "keytime": 1607.667114, "scale": [ 0.488681, 0.488681, 0.488681], "translation": [ 0.432931, 0.000000, 0.000062] }, { "keytime": 1641.000488, "scale": [ 0.481984, 0.481984, 0.481984], "translation": [ 0.432931, 0.000000, 0.000064] }, { "keytime": 1707.667236, "scale": [ 0.468984, 0.468984, 0.468984], "translation": [ 0.432931, 0.000000, 0.000066] }, { "keytime": 1741.000610, "scale": [ 0.462121, 0.462121, 0.462121], "translation": [ 0.432931, 0.000000, 0.000068] }, { "keytime": 1807.667358, "scale": [ 0.448794, 0.448794, 0.448794], "translation": [ 0.432931, 0.000000, 0.000071] }, { "keytime": 1841.000732, "scale": [ 0.441928, 0.441928, 0.441928], "translation": [ 0.432931, 0.000000, 0.000072] }, { "keytime": 1907.667480, "scale": [ 0.428601, 0.428601, 0.428601], "translation": [ 0.432931, 0.000000, 0.000075] }, { "keytime": 1941.000854, "scale": [ 0.421735, 0.421736, 0.421735], "translation": [ 0.432931, 0.000000, 0.000076] }, { "keytime": 2007.667603, "scale": [ 0.408408, 0.408408, 0.408408], "translation": [ 0.432931, 0.000000, 0.000079] }, { "keytime": 2041.000977, "scale": [ 0.401543, 0.401543, 0.401543], "translation": [ 0.432931, 0.000000, 0.000080] }, { "keytime": 2107.667725, "scale": [ 0.388215, 0.388215, 0.388215], "translation": [ 0.432931, 0.000000, 0.000083] }, { "keytime": 2141.000977, "scale": [ 0.381350, 0.381350, 0.381350], "translation": [ 0.432931, 0.000000, 0.000084] }, { "keytime": 2174.334229, "scale": [ 0.374742, 0.374742, 0.374742], "translation": [ 0.432931, 0.000000, 0.000086] }, { "keytime": 2207.667480, "scale": [ 0.368311, 0.368311, 0.368311], "translation": [ 0.432931, 0.000000, 0.000087] }, { "keytime": 2241.000732, "scale": [ 0.361685, 0.361686, 0.361685], "translation": [ 0.432931, 0.000000, 0.000089] }, { "keytime": 2274.333984, "scale": [ 0.355254, 0.355255, 0.355254], "translation": [ 0.432931, 0.000000, 0.000090] }, { "keytime": 2307.667236, "scale": [ 0.348926, 0.348926, 0.348926], "translation": [ 0.432931, 0.000000, 0.000091] }, { "keytime": 2341.000488, "scale": [ 0.342517, 0.342517, 0.342517], "translation": [ 0.432931, 0.000000, 0.000093] }, { "keytime": 2374.333740, "scale": [ 0.336297, 0.336297, 0.336297], "translation": [ 0.432931, 0.000000, 0.000094] }, { "keytime": 2407.666992, "scale": [ 0.330284, 0.330285, 0.330284], "translation": [ 0.432931, 0.000000, 0.000095] }, { "keytime": 2441.000244, "scale": [ 0.324091, 0.324092, 0.324091], "translation": [ 0.432931, 0.000000, 0.000097] }, { "keytime": 2474.333496, "scale": [ 0.318200, 0.318200, 0.318200], "translation": [ 0.432931, 0.000000, 0.000098] }, { "keytime": 2507.666748, "scale": [ 0.312430, 0.312430, 0.312430], "translation": [ 0.432931, 0.000000, 0.000100] }, { "keytime": 2541.000000, "scale": [ 0.306486, 0.306486, 0.306486], "translation": [ 0.432931, 0.000000, 0.000101] }, { "keytime": 2574.333252, "scale": [ 0.300986, 0.300986, 0.300986], "translation": [ 0.432931, 0.000000, 0.000102] }, { "keytime": 2607.666504, "scale": [ 0.295487, 0.295487, 0.295487], "translation": [ 0.432931, 0.000000, 0.000024] }, { "keytime": 2640.999756, "scale": [ 0.290128, 0.290128, 0.290128], "translation": [ 0.432931, 0.000000, -0.000032] }, { "keytime": 2674.333008, "scale": [ 0.284768, 0.284768, 0.284768], "translation": [ 0.432931, 0.000000, -0.000031] }, { "keytime": 2707.666260, "scale": [ 0.279565, 0.279565, 0.279565], "translation": [ 0.432931, 0.000000, -0.000031] }, { "keytime": 2740.999512, "scale": [ 0.274595, 0.274595, 0.274595], "translation": [ 0.432931, 0.000000, -0.000030] }, { "keytime": 2774.332764, "scale": [ 0.269602, 0.269602, 0.269602], "translation": [ 0.432931, 0.000000, -0.000030] }, { "keytime": 2807.666016, "scale": [ 0.264885, 0.264885, 0.264885], "translation": [ 0.432931, 0.000000, -0.000029] }, { "keytime": 2874.332520, "scale": [ 0.255703, 0.255703, 0.255703], "translation": [ 0.432931, 0.000000, -0.000028] }, { "keytime": 2907.665771, "scale": [ 0.251425, 0.251425, 0.251425], "translation": [ 0.432931, 0.000000, -0.000028] }, { "keytime": 2940.999023, "scale": [ 0.247282, 0.247282, 0.247282], "translation": [ 0.432931, 0.000000, -0.000028] }, { "keytime": 2974.332275, "scale": [ 0.243157, 0.243157, 0.243157], "translation": [ 0.432931, 0.000000, -0.000027] }, { "keytime": 3007.665527, "scale": [ 0.239294, 0.239294, 0.239294], "translation": [ 0.432931, 0.000000, -0.000027] }, { "keytime": 3040.998779, "scale": [ 0.235576, 0.235576, 0.235576], "translation": [ 0.432931, 0.000000, -0.000026] }, { "keytime": 3074.332031, "scale": [ 0.231938, 0.231938, 0.231938], "translation": [ 0.432931, 0.000000, -0.000026] }, { "keytime": 3107.665283, "scale": [ 0.228555, 0.228555, 0.228555], "translation": [ 0.432931, 0.000000, -0.000025] }, { "keytime": 3140.998535, "scale": [ 0.225318, 0.225318, 0.225318], "translation": [ 0.432931, 0.000000, -0.000025] }, { "keytime": 3174.331787, "scale": [ 0.222136, 0.222136, 0.222136], "translation": [ 0.432931, 0.000000, -0.000024] }, { "keytime": 3207.665039, "scale": [ 0.219200, 0.219200, 0.219200], "translation": [ 0.432931, 0.000000, -0.000024] }, { "keytime": 3240.998291, "scale": [ 0.216461, 0.216461, 0.216460], "translation": [ 0.432931, 0.000000, -0.000023] }, { "keytime": 3274.331543, "scale": [ 0.213792, 0.213792, 0.213792], "translation": [ 0.432931, 0.000000, -0.000023] }, { "keytime": 3307.664795, "scale": [ 0.211356, 0.211356, 0.211356], "translation": [ 0.432931, 0.000000, -0.000022] }, { "keytime": 3340.998047, "scale": [ 0.209069, 0.209069, 0.209069], "translation": [ 0.432931, 0.000000, -0.000022] }, { "keytime": 3374.331299, "scale": [ 0.206876, 0.206876, 0.206876], "translation": [ 0.432931, 0.000000, -0.000021] }, { "keytime": 3407.664551, "scale": [ 0.204949, 0.204949, 0.204949], "translation": [ 0.432931, 0.000000, -0.000021] }, { "keytime": 3440.997803, "scale": [ 0.203172, 0.203172, 0.203172], "translation": [ 0.432931, 0.000000, -0.000020] }, { "keytime": 3474.331055, "scale": [ 0.201500, 0.201500, 0.201500], "translation": [ 0.432931, 0.000000, -0.000020] }, { "keytime": 3507.664307, "scale": [ 0.200031, 0.200031, 0.200031], "translation": [ 0.432931, 0.000000, -0.000019] }, { "keytime": 3540.997559, "scale": [ 0.198718, 0.198718, 0.198718], "translation": [ 0.432931, 0.000000, -0.000019] }, { "keytime": 3574.330811, "scale": [ 0.197569, 0.197569, 0.197569], "translation": [ 0.432931, 0.000000, -0.000018] }, { "keytime": 3607.664062, "scale": [ 0.196610, 0.196610, 0.196610], "translation": [ 0.432931, 0.000000, -0.000018] }, { "keytime": 3640.997314, "scale": [ 0.195801, 0.195801, 0.195801], "translation": [ 0.432931, 0.000000, -0.000018] }, { "keytime": 3674.330566, "scale": [ 0.195126, 0.195126, 0.195126], "translation": [ 0.432931, 0.000000, -0.000017] }, { "keytime": 3707.663818, "scale": [ 0.194625, 0.194625, 0.194625], "translation": [ 0.432931, 0.000000, -0.000017] }, { "keytime": 3740.997070, "scale": [ 0.194321, 0.194321, 0.194321], "translation": [ 0.432931, 0.000000, -0.000016] }, { "keytime": 3774.330322, "scale": [ 0.194162, 0.194162, 0.194162], "translation": [ 0.432931, 0.000000, -0.000016] }, { "keytime": 3807.663574, "scale": [ 0.195118, 0.195118, 0.195118], "translation": [ 0.432931, 0.000000, -0.000015] }, { "keytime": 3840.996826, "scale": [ 0.198129, 0.198129, 0.198129], "translation": [ 0.432931, 0.000000, -0.000015] }, { "keytime": 3874.330078, "scale": [ 0.204594, 0.204594, 0.204594], "translation": [ 0.432931, 0.000000, -0.000014] }, { "keytime": 3907.663330, "scale": [ 0.215059, 0.215059, 0.215059], "translation": [ 0.432931, 0.000000, -0.000014] }, { "keytime": 3940.996582, "scale": [ 0.228636, 0.228636, 0.228636], "translation": [ 0.432931, 0.000000, -0.000013] }, { "keytime": 3974.329834, "scale": [ 0.245867, 0.245867, 0.245867], "translation": [ 0.432931, 0.000000, -0.000013] }, { "keytime": 4007.663086, "scale": [ 0.265681, 0.265681, 0.265681], "translation": [ 0.432931, 0.000000, -0.000012] }, { "keytime": 4040.996338, "scale": [ 0.288580, 0.288580, 0.288580], "translation": [ 0.432931, 0.000000, -0.000012] }, { "keytime": 4074.329590, "scale": [ 0.315977, 0.315977, 0.315977], "translation": [ 0.432931, 0.000000, -0.000011] }, { "keytime": 4107.663086, "scale": [ 0.345264, 0.345264, 0.345264], "translation": [ 0.432931, 0.000000, -0.000011] }, { "keytime": 4140.996094, "scale": [ 0.376949, 0.376949, 0.376949], "translation": [ 0.432931, 0.000000, -0.000010] }, { "keytime": 4174.329590, "scale": [ 0.411915, 0.411915, 0.411915], "translation": [ 0.432931, 0.000000, -0.000010] }, { "keytime": 4207.663086, "scale": [ 0.447864, 0.447864, 0.447864], "translation": [ 0.432931, 0.000000, -0.000009] }, { "keytime": 4240.996582, "scale": [ 0.485831, 0.485831, 0.485831], "translation": [ 0.432931, 0.000000, -0.000009] }, { "keytime": 4274.330078, "scale": [ 0.526051, 0.526051, 0.526051], "translation": [ 0.432931, 0.000000, -0.000008] }, { "keytime": 4307.663574, "scale": [ 0.565828, 0.565828, 0.565828], "translation": [ 0.432931, 0.000000, -0.000008] }, { "keytime": 4340.997070, "scale": [ 0.605977, 0.605977, 0.605977], "translation": [ 0.432931, 0.000000, -0.000008] }, { "keytime": 4374.330566, "scale": [ 0.647343, 0.647343, 0.647343], "translation": [ 0.432931, 0.000000, -0.000007] }, { "keytime": 4407.664062, "scale": [ 0.686777, 0.686777, 0.686777], "translation": [ 0.432931, 0.000000, -0.000007] }, { "keytime": 4440.997559, "scale": [ 0.725172, 0.725172, 0.725172], "translation": [ 0.432931, 0.000000, -0.000006] }, { "keytime": 4474.331055, "scale": [ 0.763313, 0.763313, 0.763313], "translation": [ 0.432931, 0.000000, -0.000006] }, { "keytime": 4507.664551, "scale": [ 0.798651, 0.798651, 0.798651], "translation": [ 0.432931, 0.000000, -0.000005] }, { "keytime": 4540.998047, "scale": [ 0.831971, 0.831971, 0.831971], "translation": [ 0.432931, 0.000000, -0.000005] }, { "keytime": 4574.331543, "scale": [ 0.863187, 0.863187, 0.863187], "translation": [ 0.432931, 0.000000, -0.000004] }, { "keytime": 4607.665039, "scale": [ 0.890811, 0.890811, 0.890811], "translation": [ 0.432931, 0.000000, -0.000004] }, { "keytime": 4640.998535, "scale": [ 0.915708, 0.915707, 0.915708], "translation": [ 0.432931, 0.000000, -0.000003] }, { "keytime": 4674.332031, "scale": [ 0.938327, 0.938326, 0.938327], "translation": [ 0.432931, 0.000000, -0.000003] }, { "keytime": 4707.665527, "scale": [ 0.957208, 0.957208, 0.957208], "translation": [ 0.432931, 0.000000, -0.000002] }, { "keytime": 4740.999023, "scale": [ 0.972020, 0.972020, 0.972020], "translation": [ 0.432931, 0.000000, -0.000002] }, { "keytime": 4774.332520, "scale": [ 0.984040, 0.984040, 0.984040], "translation": [ 0.432931, 0.000000, -0.000001] }, { "keytime": 4807.666016, "scale": [ 0.992496, 0.992495, 0.992496], "translation": [ 0.432931, 0.000000, -0.000001] }, { "keytime": 4832.000000, "scale": [ 0.997250, 0.997249, 0.997250], "translation": [ 0.432931, 0.000000, -0.000001] } ] }, { "boneId": "Bone_024", "keyframes": [ { "keytime": 41.000000, "scale": [ 0.610000, 0.610000, 0.610000], "translation": [ 0.297497, 0.000000, 0.000006] }, { "keytime": 107.666664, "scale": [ 0.609733, 0.609733, 0.609733], "translation": [ 0.297497, 0.000000, 0.000003] }, { "keytime": 141.000000, "scale": [ 0.609464, 0.609464, 0.609464], "translation": [ 0.297497, 0.000000, 0.000001] }, { "keytime": 207.666656, "scale": [ 0.608674, 0.608674, 0.608674], "translation": [ 0.297497, 0.000000, -0.000001] }, { "keytime": 240.999985, "scale": [ 0.608029, 0.608029, 0.608029], "translation": [ 0.297497, 0.000000, -0.000003] }, { "keytime": 274.333313, "scale": [ 0.607360, 0.607360, 0.607360], "translation": [ 0.297497, 0.000000, -0.000004] }, { "keytime": 307.666656, "scale": [ 0.606590, 0.606590, 0.606590], "translation": [ 0.297497, 0.000000, -0.000006] }, { "keytime": 341.000000, "scale": [ 0.605665, 0.605665, 0.605665], "translation": [ 0.297497, 0.000000, -0.000007] }, { "keytime": 374.333344, "scale": [ 0.604768, 0.604768, 0.604767], "translation": [ 0.297497, 0.000000, -0.000009] }, { "keytime": 407.666687, "scale": [ 0.603631, 0.603631, 0.603631], "translation": [ 0.297497, 0.000000, -0.000010] }, { "keytime": 441.000031, "scale": [ 0.602459, 0.602459, 0.602458], "translation": [ 0.297497, 0.000000, -0.000012] }, { "keytime": 474.333374, "scale": [ 0.601204, 0.601204, 0.601204], "translation": [ 0.297497, 0.000000, -0.000013] }, { "keytime": 507.666718, "scale": [ 0.599832, 0.599832, 0.599832], "translation": [ 0.297497, 0.000000, -0.000014] }, { "keytime": 541.000061, "scale": [ 0.598418, 0.598418, 0.598418], "translation": [ 0.297497, 0.000000, -0.000016] }, { "keytime": 607.666687, "scale": [ 0.595220, 0.595220, 0.595220], "translation": [ 0.297497, 0.000000, -0.000019] }, { "keytime": 641.000000, "scale": [ 0.593462, 0.593462, 0.593462], "translation": [ 0.297497, 0.000000, -0.000020] }, { "keytime": 707.666626, "scale": [ 0.589824, 0.589824, 0.589824], "translation": [ 0.297498, 0.000000, -0.000023] }, { "keytime": 740.999939, "scale": [ 0.587797, 0.587797, 0.587797], "translation": [ 0.297498, 0.000000, -0.000024] }, { "keytime": 774.333252, "scale": [ 0.585704, 0.585704, 0.585704], "translation": [ 0.297498, 0.000000, -0.000026] }, { "keytime": 807.666565, "scale": [ 0.583573, 0.583573, 0.583573], "translation": [ 0.297498, 0.000000, -0.000027] }, { "keytime": 840.999878, "scale": [ 0.581335, 0.581335, 0.581335], "translation": [ 0.297498, 0.000000, -0.000029] }, { "keytime": 874.333191, "scale": [ 0.579031, 0.579030, 0.579030], "translation": [ 0.297498, 0.000000, -0.000030] }, { "keytime": 907.666504, "scale": [ 0.576597, 0.576597, 0.576596], "translation": [ 0.297498, 0.000000, -0.000031] }, { "keytime": 940.999817, "scale": [ 0.574161, 0.574161, 0.574161], "translation": [ 0.297498, 0.000000, -0.000033] }, { "keytime": 974.333130, "scale": [ 0.571556, 0.571556, 0.571556], "translation": [ 0.297498, 0.000000, -0.000034] }, { "keytime": 1040.999756, "scale": [ 0.566302, 0.566302, 0.566302], "translation": [ 0.297498, 0.000000, -0.000037] }, { "keytime": 1074.333130, "scale": [ 0.563412, 0.563412, 0.563412], "translation": [ 0.297498, 0.000000, -0.000039] }, { "keytime": 1107.666504, "scale": [ 0.560601, 0.560600, 0.560600], "translation": [ 0.297498, 0.000000, -0.000040] }, { "keytime": 1140.999878, "scale": [ 0.557706, 0.557705, 0.557705], "translation": [ 0.297498, 0.000000, -0.000041] }, { "keytime": 1174.333252, "scale": [ 0.554627, 0.554627, 0.554627], "translation": [ 0.297498, 0.000000, -0.000043] }, { "keytime": 1207.666626, "scale": [ 0.551639, 0.551639, 0.551639], "translation": [ 0.297498, 0.000000, -0.000044] }, { "keytime": 1241.000000, "scale": [ 0.548390, 0.548390, 0.548390], "translation": [ 0.297498, 0.000000, -0.000046] }, { "keytime": 1274.333374, "scale": [ 0.545233, 0.545233, 0.545233], "translation": [ 0.297498, 0.000000, -0.000047] }, { "keytime": 1307.666748, "scale": [ 0.541998, 0.541998, 0.541998], "translation": [ 0.297498, 0.000000, -0.000049] }, { "keytime": 1341.000122, "scale": [ 0.538579, 0.538579, 0.538579], "translation": [ 0.297498, 0.000000, -0.000050] }, { "keytime": 1374.333496, "scale": [ 0.535260, 0.535260, 0.535260], "translation": [ 0.297498, 0.000000, -0.000051] }, { "keytime": 1407.666870, "scale": [ 0.531753, 0.531752, 0.531752], "translation": [ 0.297498, 0.000000, -0.000053] }, { "keytime": 1441.000244, "scale": [ 0.528137, 0.528137, 0.528137], "translation": [ 0.297498, 0.000000, -0.000054] }, { "keytime": 1474.333618, "scale": [ 0.524627, 0.524627, 0.524627], "translation": [ 0.297498, 0.000000, -0.000056] }, { "keytime": 1507.666992, "scale": [ 0.521069, 0.521068, 0.521069], "translation": [ 0.297498, 0.000000, -0.000057] }, { "keytime": 1541.000366, "scale": [ 0.517233, 0.517233, 0.517233], "translation": [ 0.297498, 0.000000, -0.000059] }, { "keytime": 1607.667114, "scale": [ 0.509789, 0.509789, 0.509788], "translation": [ 0.297498, 0.000000, -0.000061] }, { "keytime": 1641.000488, "scale": [ 0.505855, 0.505855, 0.505855], "translation": [ 0.297498, 0.000000, -0.000063] }, { "keytime": 1707.667236, "scale": [ 0.498021, 0.498021, 0.498021], "translation": [ 0.297498, 0.000000, -0.000066] }, { "keytime": 1741.000610, "scale": [ 0.493985, 0.493985, 0.493985], "translation": [ 0.297498, 0.000000, -0.000067] }, { "keytime": 1774.333984, "scale": [ 0.489937, 0.489937, 0.489937], "translation": [ 0.297498, 0.000000, -0.000069] }, { "keytime": 1807.667358, "scale": [ 0.485844, 0.485844, 0.485844], "translation": [ 0.297498, 0.000000, -0.000070] }, { "keytime": 1841.000732, "scale": [ 0.481627, 0.481627, 0.481627], "translation": [ 0.297498, 0.000000, -0.000071] }, { "keytime": 1874.334106, "scale": [ 0.477535, 0.477535, 0.477535], "translation": [ 0.297498, 0.000000, -0.000073] }, { "keytime": 1907.667480, "scale": [ 0.473265, 0.473265, 0.473265], "translation": [ 0.297498, 0.000000, -0.000074] }, { "keytime": 1941.000854, "scale": [ 0.468864, 0.468864, 0.468864], "translation": [ 0.297498, 0.000000, -0.000076] }, { "keytime": 1974.334229, "scale": [ 0.464592, 0.464592, 0.464592], "translation": [ 0.297498, 0.000000, -0.000077] }, { "keytime": 2007.667603, "scale": [ 0.460321, 0.460321, 0.460321], "translation": [ 0.297498, 0.000000, -0.000052] }, { "keytime": 2041.000977, "scale": [ 0.455920, 0.455920, 0.455920], "translation": [ 0.297498, 0.000000, 0.000063] }, { "keytime": 2107.667725, "scale": [ 0.447001, 0.447001, 0.447001], "translation": [ 0.297498, 0.000000, -0.000051] }, { "keytime": 2141.000977, "scale": [ 0.442407, 0.442407, 0.442407], "translation": [ 0.297498, 0.000000, -0.000025] }, { "keytime": 2174.334229, "scale": [ 0.437948, 0.437947, 0.437947], "translation": [ 0.297498, 0.000000, 0.000036] }, { "keytime": 2207.667480, "scale": [ 0.433488, 0.433488, 0.433488], "translation": [ 0.297498, 0.000000, -0.000062] }, { "keytime": 2241.000732, "scale": [ 0.428894, 0.428894, 0.428894], "translation": [ 0.297498, 0.000000, 0.000079] }, { "keytime": 2274.333984, "scale": [ 0.424302, 0.424302, 0.424302], "translation": [ 0.297498, 0.000000, 0.000111] }, { "keytime": 2307.667236, "scale": [ 0.419665, 0.419665, 0.419665], "translation": [ 0.297498, 0.000000, 0.000105] }, { "keytime": 2341.000488, "scale": [ 0.414887, 0.414887, 0.414887], "translation": [ 0.297498, 0.000000, 0.000099] }, { "keytime": 2374.333740, "scale": [ 0.410250, 0.410250, 0.410250], "translation": [ 0.297498, 0.000000, 0.000093] }, { "keytime": 2407.666992, "scale": [ 0.405613, 0.405613, 0.405613], "translation": [ 0.297498, 0.000000, -0.000042] }, { "keytime": 2441.000244, "scale": [ 0.400836, 0.400835, 0.400835], "translation": [ 0.297498, 0.000000, -0.000181] }, { "keytime": 2474.333496, "scale": [ 0.396199, 0.396198, 0.396198], "translation": [ 0.297498, 0.000000, -0.000202] }, { "keytime": 2507.666748, "scale": [ 0.391562, 0.391561, 0.391561], "translation": [ 0.297498, 0.000000, -0.000106] }, { "keytime": 2541.000000, "scale": [ 0.386784, 0.386784, 0.386784], "translation": [ 0.297498, 0.000000, -0.000007] }, { "keytime": 2574.333252, "scale": [ 0.382147, 0.382147, 0.382147], "translation": [ 0.297498, 0.000000, 0.000089] }, { "keytime": 2607.666504, "scale": [ 0.377510, 0.377510, 0.377510], "translation": [ 0.297498, 0.000000, 0.000036] }, { "keytime": 2640.999756, "scale": [ 0.372873, 0.372873, 0.372873], "translation": [ 0.297498, 0.000000, -0.000071] }, { "keytime": 2674.333008, "scale": [ 0.368095, 0.368095, 0.368095], "translation": [ 0.297498, 0.000000, -0.000100] }, { "keytime": 2707.666260, "scale": [ 0.363458, 0.363458, 0.363458], "translation": [ 0.297498, 0.000000, 0.000126] }, { "keytime": 2740.999512, "scale": [ 0.358821, 0.358821, 0.358821], "translation": [ 0.297498, 0.000000, 0.000098] }, { "keytime": 2774.332764, "scale": [ 0.354044, 0.354044, 0.354044], "translation": [ 0.297498, 0.000000, 0.000063] }, { "keytime": 2840.999268, "scale": [ 0.344770, 0.344769, 0.344769], "translation": [ 0.297498, 0.000000, -0.000004] }, { "keytime": 2874.332520, "scale": [ 0.339992, 0.339992, 0.339992], "translation": [ 0.297498, 0.000000, -0.000038] }, { "keytime": 2907.665771, "scale": [ 0.335355, 0.335355, 0.335355], "translation": [ 0.297498, 0.000000, -0.000072] }, { "keytime": 2940.999023, "scale": [ 0.330718, 0.330718, 0.330718], "translation": [ 0.297498, 0.000000, 0.000021] }, { "keytime": 2974.332275, "scale": [ 0.325940, 0.325940, 0.325940], "translation": [ 0.297498, 0.000000, 0.000051] }, { "keytime": 3007.665527, "scale": [ 0.321303, 0.321303, 0.321303], "translation": [ 0.297498, 0.000000, -0.000020] }, { "keytime": 3040.998779, "scale": [ 0.316666, 0.316666, 0.316666], "translation": [ 0.297498, 0.000000, -0.000019] }, { "keytime": 3074.332031, "scale": [ 0.311889, 0.311889, 0.311889], "translation": [ 0.297498, 0.000000, -0.000019] }, { "keytime": 3107.665283, "scale": [ 0.307252, 0.307252, 0.307252], "translation": [ 0.297498, 0.000000, -0.000019] }, { "keytime": 3140.998535, "scale": [ 0.302740, 0.302740, 0.302740], "translation": [ 0.297498, 0.000000, -0.000018] }, { "keytime": 3174.331787, "scale": [ 0.298234, 0.298234, 0.298234], "translation": [ 0.297498, 0.000000, -0.000018] }, { "keytime": 3240.998291, "scale": [ 0.289489, 0.289488, 0.289488], "translation": [ 0.297498, 0.000000, -0.000017] }, { "keytime": 3274.331543, "scale": [ 0.284983, 0.284983, 0.284983], "translation": [ 0.297498, 0.000000, -0.000017] }, { "keytime": 3307.664795, "scale": [ 0.280716, 0.280716, 0.280716], "translation": [ 0.297498, 0.000000, -0.000017] }, { "keytime": 3340.998047, "scale": [ 0.276563, 0.276563, 0.276563], "translation": [ 0.297498, 0.000000, -0.000016] }, { "keytime": 3374.331299, "scale": [ 0.272284, 0.272284, 0.272284], "translation": [ 0.297498, 0.000000, -0.000016] }, { "keytime": 3407.664551, "scale": [ 0.268130, 0.268130, 0.268130], "translation": [ 0.297498, 0.000000, -0.000015] }, { "keytime": 3440.997803, "scale": [ 0.264122, 0.264122, 0.264122], "translation": [ 0.297498, 0.000000, -0.000015] }, { "keytime": 3474.331055, "scale": [ 0.260049, 0.260049, 0.260049], "translation": [ 0.297498, 0.000000, -0.000015] }, { "keytime": 3507.664307, "scale": [ 0.256140, 0.256139, 0.256139], "translation": [ 0.297498, 0.000000, -0.000014] }, { "keytime": 3540.997559, "scale": [ 0.252376, 0.252376, 0.252376], "translation": [ 0.297498, 0.000000, -0.000014] }, { "keytime": 3574.330811, "scale": [ 0.248499, 0.248499, 0.248499], "translation": [ 0.297498, 0.000000, -0.000014] }, { "keytime": 3607.664062, "scale": [ 0.244896, 0.244896, 0.244896], "translation": [ 0.297498, 0.000000, -0.000013] }, { "keytime": 3640.997314, "scale": [ 0.241351, 0.241351, 0.241351], "translation": [ 0.297498, 0.000000, -0.000013] }, { "keytime": 3674.330566, "scale": [ 0.237760, 0.237760, 0.237760], "translation": [ 0.297498, 0.000000, -0.000013] }, { "keytime": 3740.997070, "scale": [ 0.231169, 0.231169, 0.231169], "translation": [ 0.297498, 0.000000, -0.000012] }, { "keytime": 3774.330322, "scale": [ 0.227986, 0.227986, 0.227986], "translation": [ 0.297498, 0.000000, -0.000012] }, { "keytime": 3807.663574, "scale": [ 0.224975, 0.224975, 0.224975], "translation": [ 0.297498, 0.000000, -0.000011] }, { "keytime": 3840.996826, "scale": [ 0.222017, 0.222017, 0.222017], "translation": [ 0.297498, 0.000000, -0.000011] }, { "keytime": 3874.330078, "scale": [ 0.219158, 0.219158, 0.219158], "translation": [ 0.297498, 0.000000, -0.000010] }, { "keytime": 3907.663330, "scale": [ 0.216553, 0.216553, 0.216553], "translation": [ 0.297498, 0.000000, -0.000010] }, { "keytime": 3940.996582, "scale": [ 0.214083, 0.214083, 0.214083], "translation": [ 0.297498, 0.000000, -0.000010] }, { "keytime": 3974.329834, "scale": [ 0.211684, 0.211684, 0.211684], "translation": [ 0.297498, 0.000000, -0.000009] }, { "keytime": 4007.663086, "scale": [ 0.209505, 0.209505, 0.209505], "translation": [ 0.297498, 0.000000, -0.000009] }, { "keytime": 4040.996338, "scale": [ 0.207483, 0.207483, 0.207483], "translation": [ 0.297498, 0.000000, -0.000009] }, { "keytime": 4074.329590, "scale": [ 0.205619, 0.205619, 0.205619], "translation": [ 0.297498, 0.000000, -0.000008] }, { "keytime": 4107.663086, "scale": [ 0.203988, 0.203988, 0.203988], "translation": [ 0.297498, 0.000000, -0.000008] }, { "keytime": 4140.996094, "scale": [ 0.202536, 0.202536, 0.202536], "translation": [ 0.297498, 0.000000, -0.000008] }, { "keytime": 4174.329590, "scale": [ 0.201237, 0.201237, 0.201237], "translation": [ 0.297498, 0.000000, -0.000007] }, { "keytime": 4207.663086, "scale": [ 0.200177, 0.200177, 0.200177], "translation": [ 0.297498, 0.000000, -0.000007] }, { "keytime": 4240.996582, "scale": [ 0.199392, 0.199392, 0.199392], "translation": [ 0.297498, 0.000000, -0.000006] }, { "keytime": 4274.330078, "scale": [ 0.198811, 0.198811, 0.198811], "translation": [ 0.297498, 0.000000, -0.000006] }, { "keytime": 4307.663574, "scale": [ 0.198482, 0.198482, 0.198482], "translation": [ 0.297498, 0.000000, -0.000006] }, { "keytime": 4340.997070, "scale": [ 0.200200, 0.200200, 0.200200], "translation": [ 0.297498, 0.000000, -0.000005] }, { "keytime": 4374.330566, "scale": [ 0.208762, 0.208762, 0.208762], "translation": [ 0.297498, 0.000000, -0.000005] }, { "keytime": 4407.664062, "scale": [ 0.233695, 0.233695, 0.233695], "translation": [ 0.297498, 0.000000, -0.000005] }, { "keytime": 4440.997559, "scale": [ 0.270767, 0.270767, 0.270767], "translation": [ 0.297498, 0.000000, -0.000004] }, { "keytime": 4474.331055, "scale": [ 0.321035, 0.321036, 0.321036], "translation": [ 0.297498, 0.000000, -0.000004] }, { "keytime": 4507.664551, "scale": [ 0.380502, 0.380502, 0.380502], "translation": [ 0.297498, 0.000000, -0.000004] }, { "keytime": 4540.998047, "scale": [ 0.449405, 0.449405, 0.449406], "translation": [ 0.297498, 0.000000, -0.000003] }, { "keytime": 4574.331543, "scale": [ 0.528521, 0.528521, 0.528521], "translation": [ 0.297498, 0.000000, -0.000003] }, { "keytime": 4607.665039, "scale": [ 0.607648, 0.607649, 0.607648], "translation": [ 0.297498, 0.000000, -0.000003] }, { "keytime": 4640.998535, "scale": [ 0.686172, 0.686172, 0.686172], "translation": [ 0.297498, 0.000000, -0.000002] }, { "keytime": 4674.332031, "scale": [ 0.763564, 0.763564, 0.763564], "translation": [ 0.297498, 0.000000, -0.000002] }, { "keytime": 4707.665527, "scale": [ 0.832468, 0.832468, 0.832468], "translation": [ 0.297498, 0.000000, -0.000001] }, { "keytime": 4740.999023, "scale": [ 0.889327, 0.889326, 0.889327], "translation": [ 0.297498, 0.000000, -0.000001] }, { "keytime": 4774.332520, "scale": [ 0.936403, 0.936403, 0.936403], "translation": [ 0.297498, 0.000000, -0.000001] }, { "keytime": 4807.666016, "scale": [ 0.969984, 0.969984, 0.969984], "translation": [ 0.297498, 0.000000, -0.000000] }, { "keytime": 4832.000000, "scale": [ 0.989001, 0.989001, 0.989001], "translation": [ 0.297499, 0.000000, -0.000000] } ] }, { "boneId": "Bone_011", "keyframes": [ { "keytime": 41.000000, "scale": [ 0.200000, 0.200000, 0.200000] }, { "keytime": 307.666656, "scale": [ 0.200220, 0.200220, 0.200220] }, { "keytime": 341.000000, "scale": [ 0.200287, 0.200287, 0.200287] }, { "keytime": 407.666687, "scale": [ 0.200646, 0.200646, 0.200646] }, { "keytime": 441.000031, "scale": [ 0.200832, 0.200832, 0.200832] }, { "keytime": 507.666718, "scale": [ 0.201191, 0.201191, 0.201191] }, { "keytime": 541.000061, "scale": [ 0.201376, 0.201376, 0.201376] }, { "keytime": 607.666687, "scale": [ 0.202166, 0.202166, 0.202166] }, { "keytime": 641.000000, "scale": [ 0.202572, 0.202572, 0.202572] }, { "keytime": 674.333313, "scale": [ 0.203013, 0.203013, 0.203013] }, { "keytime": 740.999939, "scale": [ 0.204180, 0.204180, 0.204180] }, { "keytime": 774.333252, "scale": [ 0.204917, 0.204917, 0.204917] }, { "keytime": 807.666565, "scale": [ 0.205682, 0.205682, 0.205682] }, { "keytime": 840.999878, "scale": [ 0.206492, 0.206492, 0.206492] }, { "keytime": 874.333191, "scale": [ 0.207490, 0.207490, 0.207490] }, { "keytime": 907.666504, "scale": [ 0.208458, 0.208458, 0.208458] }, { "keytime": 940.999817, "scale": [ 0.209588, 0.209588, 0.209588] }, { "keytime": 974.333130, "scale": [ 0.210814, 0.210814, 0.210814] }, { "keytime": 1007.666443, "scale": [ 0.212058, 0.212058, 0.212058] }, { "keytime": 1040.999756, "scale": [ 0.213482, 0.213482, 0.213482] }, { "keytime": 1074.333130, "scale": [ 0.214949, 0.214949, 0.214949] }, { "keytime": 1107.666504, "scale": [ 0.216549, 0.216549, 0.216549] }, { "keytime": 1140.999878, "scale": [ 0.218213, 0.218213, 0.218213] }, { "keytime": 1174.333252, "scale": [ 0.219985, 0.219985, 0.219985] }, { "keytime": 1207.666626, "scale": [ 0.221888, 0.221888, 0.221888] }, { "keytime": 1241.000000, "scale": [ 0.223848, 0.223848, 0.223848] }, { "keytime": 1274.333374, "scale": [ 0.225926, 0.225926, 0.225926] }, { "keytime": 1307.666748, "scale": [ 0.228063, 0.228063, 0.228063] }, { "keytime": 1341.000122, "scale": [ 0.230322, 0.230322, 0.230322] }, { "keytime": 1407.666870, "scale": [ 0.235044, 0.235044, 0.235044] }, { "keytime": 1441.000244, "scale": [ 0.237636, 0.237636, 0.237636] }, { "keytime": 1474.333618, "scale": [ 0.240208, 0.240208, 0.240208] }, { "keytime": 1507.666992, "scale": [ 0.242826, 0.242826, 0.242826] }, { "keytime": 1541.000366, "scale": [ 0.245678, 0.245678, 0.245678] }, { "keytime": 1574.333740, "scale": [ 0.248446, 0.248446, 0.248446] }, { "keytime": 1607.667114, "scale": [ 0.251347, 0.251347, 0.251348] }, { "keytime": 1641.000488, "scale": [ 0.254386, 0.254386, 0.254386] }, { "keytime": 1674.333862, "scale": [ 0.257374, 0.257374, 0.257374] }, { "keytime": 1707.667236, "scale": [ 0.260487, 0.260487, 0.260488] }, { "keytime": 1741.000610, "scale": [ 0.263695, 0.263695, 0.263695] }, { "keytime": 1774.333984, "scale": [ 0.266993, 0.266993, 0.266993] }, { "keytime": 1807.667358, "scale": [ 0.270519, 0.270519, 0.270519] }, { "keytime": 1841.000732, "scale": [ 0.274419, 0.274419, 0.274419] }, { "keytime": 1874.334106, "scale": [ 0.278462, 0.278462, 0.278462] }, { "keytime": 1907.667480, "scale": [ 0.282845, 0.282845, 0.282845] }, { "keytime": 1941.000854, "scale": [ 0.287625, 0.287625, 0.287625] }, { "keytime": 1974.334229, "scale": [ 0.292524, 0.292524, 0.292524] }, { "keytime": 2007.667603, "scale": [ 0.297676, 0.297676, 0.297676] }, { "keytime": 2041.000977, "scale": [ 0.303255, 0.303255, 0.303255] }, { "keytime": 2074.334473, "scale": [ 0.309011, 0.309011, 0.309011] }, { "keytime": 2107.667725, "scale": [ 0.315017, 0.315017, 0.315017] }, { "keytime": 2141.000977, "scale": [ 0.321468, 0.321468, 0.321468] }, { "keytime": 2174.334229, "scale": [ 0.327982, 0.327982, 0.327982] }, { "keytime": 2207.667480, "scale": [ 0.334749, 0.334749, 0.334749] }, { "keytime": 2241.000732, "scale": [ 0.342056, 0.342056, 0.342056] }, { "keytime": 2274.333984, "scale": [ 0.349398, 0.349398, 0.349398] }, { "keytime": 2307.667236, "scale": [ 0.356979, 0.356979, 0.356979] }, { "keytime": 2374.333740, "scale": [ 0.373102, 0.373102, 0.373102] }, { "keytime": 2407.666992, "scale": [ 0.381470, 0.381470, 0.381470] }, { "keytime": 2441.000244, "scale": [ 0.390323, 0.390323, 0.390323] }, { "keytime": 2474.333496, "scale": [ 0.399141, 0.399141, 0.399141] }, { "keytime": 2507.666748, "scale": [ 0.408173, 0.408173, 0.408173] }, { "keytime": 2541.000000, "scale": [ 0.417703, 0.417703, 0.417703] }, { "keytime": 2574.333252, "scale": [ 0.427227, 0.427227, 0.427227] }, { "keytime": 2607.666504, "scale": [ 0.436945, 0.436945, 0.436945] }, { "keytime": 2640.999756, "scale": [ 0.446850, 0.446850, 0.446850] }, { "keytime": 2674.333008, "scale": [ 0.457249, 0.457249, 0.457249] }, { "keytime": 2707.666260, "scale": [ 0.467524, 0.467524, 0.467524] }, { "keytime": 2740.999512, "scale": [ 0.478019, 0.478019, 0.478019] }, { "keytime": 2774.332764, "scale": [ 0.488991, 0.488991, 0.488992] }, { "keytime": 2807.666016, "scale": [ 0.499793, 0.499793, 0.499793] }, { "keytime": 2840.999268, "scale": [ 0.510732, 0.510732, 0.510732] }, { "keytime": 2874.332520, "scale": [ 0.522145, 0.522145, 0.522145] }, { "keytime": 2907.665771, "scale": [ 0.533449, 0.533449, 0.533449] }, { "keytime": 2940.999023, "scale": [ 0.544755, 0.544755, 0.544755] }, { "keytime": 2974.332275, "scale": [ 0.556524, 0.556524, 0.556524] }, { "keytime": 3040.998779, "scale": [ 0.579621, 0.579621, 0.579621] }, { "keytime": 3074.332031, "scale": [ 0.591712, 0.591712, 0.591712] }, { "keytime": 3140.998535, "scale": [ 0.615195, 0.615195, 0.615195] }, { "keytime": 3174.331787, "scale": [ 0.627292, 0.627292, 0.627292] }, { "keytime": 3240.998291, "scale": [ 0.650775, 0.650775, 0.650775] }, { "keytime": 3274.331543, "scale": [ 0.662872, 0.662872, 0.662872] }, { "keytime": 3340.998047, "scale": [ 0.686354, 0.686354, 0.686354] }, { "keytime": 3374.331299, "scale": [ 0.698451, 0.698451, 0.698451] }, { "keytime": 3407.664551, "scale": [ 0.709952, 0.709953, 0.709953] }, { "keytime": 3440.997803, "scale": [ 0.721451, 0.721451, 0.721451] }, { "keytime": 3474.331055, "scale": [ 0.733165, 0.733165, 0.733165] }, { "keytime": 3540.997559, "scale": [ 0.755621, 0.755621, 0.755621] }, { "keytime": 3574.330811, "scale": [ 0.766936, 0.766936, 0.766936] }, { "keytime": 3607.664062, "scale": [ 0.777765, 0.777765, 0.777765] }, { "keytime": 3640.997314, "scale": [ 0.788442, 0.788442, 0.788442] }, { "keytime": 3674.330566, "scale": [ 0.799269, 0.799269, 0.799269] }, { "keytime": 3707.663818, "scale": [ 0.809599, 0.809599, 0.809599] }, { "keytime": 3740.997070, "scale": [ 0.819685, 0.819685, 0.819685] }, { "keytime": 3774.330322, "scale": [ 0.829872, 0.829872, 0.829872] }, { "keytime": 3807.663574, "scale": [ 0.839549, 0.839549, 0.839549] }, { "keytime": 3840.996826, "scale": [ 0.849016, 0.849016, 0.849016] }, { "keytime": 3874.330078, "scale": [ 0.858532, 0.858532, 0.858532] }, { "keytime": 3907.663330, "scale": [ 0.867461, 0.867462, 0.867462] }, { "keytime": 3940.996582, "scale": [ 0.876154, 0.876154, 0.876154] }, { "keytime": 3974.329834, "scale": [ 0.884854, 0.884854, 0.884854] }, { "keytime": 4007.663086, "scale": [ 0.893045, 0.893045, 0.893045] }, { "keytime": 4040.996338, "scale": [ 0.900972, 0.900972, 0.900972] }, { "keytime": 4074.329590, "scale": [ 0.908787, 0.908787, 0.908787] }, { "keytime": 4107.663086, "scale": [ 0.916094, 0.916094, 0.916094] }, { "keytime": 4140.996094, "scale": [ 0.923131, 0.923131, 0.923131] }, { "keytime": 4174.329590, "scale": [ 0.930091, 0.930091, 0.930091] }, { "keytime": 4207.663086, "scale": [ 0.936558, 0.936558, 0.936558] }, { "keytime": 4240.996582, "scale": [ 0.942652, 0.942652, 0.942652] }, { "keytime": 4274.330078, "scale": [ 0.948635, 0.948635, 0.948635] }, { "keytime": 4307.663574, "scale": [ 0.954146, 0.954146, 0.954146] }, { "keytime": 4340.997070, "scale": [ 0.959369, 0.959369, 0.959369] }, { "keytime": 4374.330566, "scale": [ 0.964436, 0.964436, 0.964436] }, { "keytime": 4407.664062, "scale": [ 0.968962, 0.968962, 0.968962] }, { "keytime": 4440.997559, "scale": [ 0.973196, 0.973196, 0.973196] }, { "keytime": 4474.331055, "scale": [ 0.977249, 0.977249, 0.977249] }, { "keytime": 4507.664551, "scale": [ 0.980884, 0.980884, 0.980884] }, { "keytime": 4540.998047, "scale": [ 0.984213, 0.984213, 0.984213] }, { "keytime": 4574.331543, "scale": [ 0.987245, 0.987245, 0.987245] }, { "keytime": 4607.665039, "scale": [ 0.989883, 0.989883, 0.989883] }, { "keytime": 4640.998535, "scale": [ 0.992229, 0.992229, 0.992229] }, { "keytime": 4674.332031, "scale": [ 0.994336, 0.994336, 0.994336] }, { "keytime": 4707.665527, "scale": [ 0.996079, 0.996079, 0.996079] }, { "keytime": 4740.999023, "scale": [ 0.997438, 0.997438, 0.997438] }, { "keytime": 4774.332520, "scale": [ 0.998539, 0.998539, 0.998539] }, { "keytime": 4807.666016, "scale": [ 0.999312, 0.999313, 0.999313] }, { "keytime": 4832.000000, "scale": [ 0.999748, 0.999748, 0.999748] } ] }, { "boneId": "Bone_013", "keyframes": [ { "keytime": 41.000000, "scale": [ 0.560000, 0.560000, 0.560000], "translation": [ 0.512197, 0.000000, 0.000002] }, { "keytime": 74.333328, "scale": [ 0.559886, 0.559886, 0.559886], "translation": [ 0.512197, 0.000000, 0.000002] }, { "keytime": 107.666664, "scale": [ 0.559605, 0.559605, 0.559605], "translation": [ 0.512197, 0.000000, 0.000002] }, { "keytime": 141.000000, "scale": [ 0.559137, 0.559138, 0.559137], "translation": [ 0.512197, 0.000000, 0.000002] }, { "keytime": 174.333328, "scale": [ 0.558511, 0.558511, 0.558511], "translation": [ 0.512197, 0.000000, 0.000002] }, { "keytime": 207.666656, "scale": [ 0.557710, 0.557710, 0.557710], "translation": [ 0.512197, 0.000000, 0.000002] }, { "keytime": 240.999985, "scale": [ 0.556682, 0.556682, 0.556682], "translation": [ 0.512197, 0.000000, 0.000002] }, { "keytime": 274.333313, "scale": [ 0.555445, 0.555445, 0.555445], "translation": [ 0.512197, 0.000000, 0.000002] }, { "keytime": 307.666656, "scale": [ 0.554068, 0.554069, 0.554069], "translation": [ 0.512197, 0.000000, 0.000002] }, { "keytime": 341.000000, "scale": [ 0.552468, 0.552468, 0.552468], "translation": [ 0.512197, 0.000000, 0.000002] }, { "keytime": 374.333344, "scale": [ 0.550739, 0.550739, 0.550739], "translation": [ 0.512197, 0.000000, 0.000002] }, { "keytime": 407.666687, "scale": [ 0.548781, 0.548781, 0.548781], "translation": [ 0.512197, 0.000000, 0.000002] }, { "keytime": 441.000031, "scale": [ 0.546585, 0.546585, 0.546585], "translation": [ 0.512197, 0.000000, 0.000002] }, { "keytime": 474.333374, "scale": [ 0.544279, 0.544279, 0.544278], "translation": [ 0.512197, 0.000000, 0.000002] }, { "keytime": 507.666718, "scale": [ 0.541802, 0.541803, 0.541802], "translation": [ 0.512197, 0.000000, 0.000002] }, { "keytime": 541.000061, "scale": [ 0.539070, 0.539070, 0.539070], "translation": [ 0.512197, 0.000000, 0.000002] }, { "keytime": 574.333374, "scale": [ 0.536191, 0.536191, 0.536191], "translation": [ 0.512197, 0.000000, 0.000002] }, { "keytime": 607.666687, "scale": [ 0.533145, 0.533145, 0.533145], "translation": [ 0.512197, 0.000000, 0.000002] }, { "keytime": 641.000000, "scale": [ 0.529834, 0.529834, 0.529834], "translation": [ 0.512197, 0.000000, 0.000002] }, { "keytime": 674.333313, "scale": [ 0.526454, 0.526454, 0.526454], "translation": [ 0.512197, 0.000000, 0.000002] }, { "keytime": 707.666626, "scale": [ 0.522908, 0.522908, 0.522908], "translation": [ 0.512197, 0.000000, 0.000002] }, { "keytime": 740.999939, "scale": [ 0.519150, 0.519150, 0.519150], "translation": [ 0.512197, 0.000000, 0.000002] }, { "keytime": 774.333252, "scale": [ 0.515116, 0.515116, 0.515116], "translation": [ 0.512197, 0.000000, 0.000002] }, { "keytime": 807.666565, "scale": [ 0.511042, 0.511042, 0.511042], "translation": [ 0.512197, 0.000000, 0.000002] }, { "keytime": 840.999878, "scale": [ 0.506817, 0.506817, 0.506817], "translation": [ 0.512197, 0.000000, 0.000002] }, { "keytime": 874.333191, "scale": [ 0.502303, 0.502303, 0.502303], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 907.666504, "scale": [ 0.497728, 0.497728, 0.497728], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 940.999817, "scale": [ 0.493014, 0.493014, 0.493014], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 974.333130, "scale": [ 0.488013, 0.488013, 0.488013], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 1007.666443, "scale": [ 0.483025, 0.483025, 0.483025], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 1040.999756, "scale": [ 0.477904, 0.477904, 0.477904], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 1074.333130, "scale": [ 0.472461, 0.472461, 0.472461], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 1107.666504, "scale": [ 0.467003, 0.467003, 0.467003], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 1140.999878, "scale": [ 0.461484, 0.461484, 0.461484], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 1174.333252, "scale": [ 0.455732, 0.455732, 0.455732], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 1207.666626, "scale": [ 0.449939, 0.449939, 0.449939], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 1241.000000, "scale": [ 0.443970, 0.443970, 0.443970], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 1274.333374, "scale": [ 0.438004, 0.438004, 0.438004], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 1307.666748, "scale": [ 0.431979, 0.431980, 0.431979], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 1341.000122, "scale": [ 0.425717, 0.425717, 0.425717], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 1407.666870, "scale": [ 0.413227, 0.413227, 0.413227], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 1441.000244, "scale": [ 0.406793, 0.406793, 0.406793], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 1474.333618, "scale": [ 0.400458, 0.400458, 0.400458], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 1507.666992, "scale": [ 0.394031, 0.394031, 0.394031], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 1541.000366, "scale": [ 0.387409, 0.387409, 0.387409], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 1607.667114, "scale": [ 0.374555, 0.374555, 0.374555], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 1641.000488, "scale": [ 0.367934, 0.367934, 0.367934], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 1707.667236, "scale": [ 0.355080, 0.355080, 0.355080], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 1741.000610, "scale": [ 0.348549, 0.348549, 0.348549], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 1807.667358, "scale": [ 0.335876, 0.335876, 0.335876], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 1841.000732, "scale": [ 0.329347, 0.329348, 0.329347], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 1874.334106, "scale": [ 0.323011, 0.323011, 0.323011], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 1907.667480, "scale": [ 0.316886, 0.316886, 0.316886], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 1941.000854, "scale": [ 0.310577, 0.310577, 0.310577], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 1974.334229, "scale": [ 0.304557, 0.304557, 0.304557], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 2007.667603, "scale": [ 0.298643, 0.298643, 0.298643], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 2041.000977, "scale": [ 0.292549, 0.292549, 0.292549], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 2107.667725, "scale": [ 0.281227, 0.281227, 0.281227], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 2141.000977, "scale": [ 0.275544, 0.275544, 0.275544], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 2207.667480, "scale": [ 0.264811, 0.264811, 0.264811], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 2241.000732, "scale": [ 0.259529, 0.259529, 0.259529], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 2274.333984, "scale": [ 0.254538, 0.254538, 0.254538], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 2307.667236, "scale": [ 0.249678, 0.249678, 0.249678], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 2341.000488, "scale": [ 0.244816, 0.244816, 0.244816], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 2374.333740, "scale": [ 0.240239, 0.240239, 0.240239], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 2407.666992, "scale": [ 0.235855, 0.235855, 0.235855], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 2441.000244, "scale": [ 0.231494, 0.231494, 0.231494], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 2474.333496, "scale": [ 0.227416, 0.227416, 0.227416], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 2507.666748, "scale": [ 0.223491, 0.223491, 0.223491], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 2541.000000, "scale": [ 0.219615, 0.219615, 0.219615], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 2574.333252, "scale": [ 0.216069, 0.216069, 0.216069], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 2607.666504, "scale": [ 0.212684, 0.212684, 0.212684], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 2640.999756, "scale": [ 0.209463, 0.209463, 0.209463], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 2674.333008, "scale": [ 0.206319, 0.206319, 0.206319], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 2707.666260, "scale": [ 0.203439, 0.203439, 0.203439], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 2740.999512, "scale": [ 0.200783, 0.200783, 0.200783], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 2774.332764, "scale": [ 0.198222, 0.198222, 0.198222], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 2807.666016, "scale": [ 0.195910, 0.195910, 0.195910], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 2840.999268, "scale": [ 0.193769, 0.193770, 0.193769], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 2874.332520, "scale": [ 0.191749, 0.191749, 0.191749], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 2907.665771, "scale": [ 0.190018, 0.190018, 0.190018], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 2940.999023, "scale": [ 0.188458, 0.188458, 0.188458], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 2974.332275, "scale": [ 0.187031, 0.187031, 0.187031], "translation": [ 0.512197, 0.000000, 0.000001] }, { "keytime": 3007.665527, "scale": [ 0.185821, 0.185821, 0.185821], "translation": [ 0.512197, 0.000000, 0.000000] }, { "keytime": 3040.998779, "scale": [ 0.184789, 0.184789, 0.184789], "translation": [ 0.512197, 0.000000, 0.000000] }, { "keytime": 3074.332031, "scale": [ 0.183956, 0.183956, 0.183956], "translation": [ 0.512197, 0.000000, 0.000000] }, { "keytime": 3107.665283, "scale": [ 0.183325, 0.183325, 0.183325], "translation": [ 0.512197, 0.000000, 0.000000] }, { "keytime": 3140.998535, "scale": [ 0.182863, 0.182863, 0.182863], "translation": [ 0.512197, 0.000000, 0.000000] }, { "keytime": 3174.331787, "scale": [ 0.182567, 0.182567, 0.182567], "translation": [ 0.512197, 0.000000, 0.000000] }, { "keytime": 3207.665039, "scale": [ 0.182453, 0.182453, 0.182453], "translation": [ 0.512197, 0.000000, 0.000000] }, { "keytime": 3240.998291, "scale": [ 0.183322, 0.183322, 0.183322], "translation": [ 0.512197, 0.000000, 0.000000] }, { "keytime": 3274.331543, "scale": [ 0.185576, 0.185576, 0.185576], "translation": [ 0.512197, 0.000000, 0.000000] }, { "keytime": 3307.664795, "scale": [ 0.189132, 0.189132, 0.189132], "translation": [ 0.512197, 0.000000, 0.000000] }, { "keytime": 3340.998047, "scale": [ 0.194021, 0.194021, 0.194021], "translation": [ 0.512197, 0.000000, 0.000000] }, { "keytime": 3374.331299, "scale": [ 0.200512, 0.200512, 0.200512], "translation": [ 0.512197, 0.000000, 0.000000] }, { "keytime": 3407.664551, "scale": [ 0.208608, 0.208608, 0.208608], "translation": [ 0.512197, 0.000000, 0.000000] }, { "keytime": 3440.997803, "scale": [ 0.218037, 0.218037, 0.218037], "translation": [ 0.512197, 0.000000, 0.000000] }, { "keytime": 3474.331055, "scale": [ 0.229141, 0.229141, 0.229141], "translation": [ 0.512197, 0.000000, 0.000000] }, { "keytime": 3507.664307, "scale": [ 0.241255, 0.241255, 0.241255], "translation": [ 0.512197, 0.000000, 0.000000] }, { "keytime": 3540.997559, "scale": [ 0.254714, 0.254714, 0.254714], "translation": [ 0.512197, 0.000000, 0.000000] }, { "keytime": 3574.330811, "scale": [ 0.270290, 0.270290, 0.270290], "translation": [ 0.512197, 0.000000, 0.000000] }, { "keytime": 3607.664062, "scale": [ 0.286673, 0.286673, 0.286673], "translation": [ 0.512197, 0.000000, 0.000000] }, { "keytime": 3640.997314, "scale": [ 0.304235, 0.304235, 0.304235], "translation": [ 0.512197, 0.000000, 0.000000] }, { "keytime": 3674.330566, "scale": [ 0.323541, 0.323541, 0.323541], "translation": [ 0.512197, 0.000000, 0.000000] }, { "keytime": 3707.663818, "scale": [ 0.343411, 0.343411, 0.343411], "translation": [ 0.512197, 0.000000, 0.000000] }, { "keytime": 3740.997070, "scale": [ 0.364626, 0.364626, 0.364626], "translation": [ 0.512197, 0.000000, 0.000000] }, { "keytime": 3774.330322, "scale": [ 0.387444, 0.387445, 0.387444], "translation": [ 0.512197, 0.000000, 0.000000] }, { "keytime": 3807.663574, "scale": [ 0.410471, 0.410471, 0.410471], "translation": [ 0.512197, -0.000000, 0.000000] }, { "keytime": 3840.996826, "scale": [ 0.434278, 0.434278, 0.434278], "translation": [ 0.512197, -0.000000, 0.000000] }, { "keytime": 3874.330078, "scale": [ 0.459566, 0.459566, 0.459566], "translation": [ 0.512197, -0.000000, 0.000000] }, { "keytime": 3907.663330, "scale": [ 0.484880, 0.484880, 0.484881], "translation": [ 0.512197, -0.000000, 0.000000] }, { "keytime": 3940.996582, "scale": [ 0.510635, 0.510635, 0.510635], "translation": [ 0.512197, -0.000000, 0.000000] }, { "keytime": 3974.329834, "scale": [ 0.537536, 0.537536, 0.537536], "translation": [ 0.512197, -0.000000, 0.000000] }, { "keytime": 4007.663086, "scale": [ 0.563901, 0.563901, 0.563901], "translation": [ 0.512197, -0.000000, 0.000000] }, { "keytime": 4040.996338, "scale": [ 0.590422, 0.590422, 0.590422], "translation": [ 0.512197, -0.000000, 0.000000] }, { "keytime": 4074.329590, "scale": [ 0.617746, 0.617747, 0.617746], "translation": [ 0.512197, -0.000000, -0.000000] }, { "keytime": 4107.663086, "scale": [ 0.644118, 0.644118, 0.644118], "translation": [ 0.512197, -0.000000, -0.000000] }, { "keytime": 4140.996094, "scale": [ 0.670246, 0.670246, 0.670246], "translation": [ 0.512197, -0.000000, -0.000000] }, { "keytime": 4174.329590, "scale": [ 0.696803, 0.696804, 0.696804], "translation": [ 0.512197, -0.000000, -0.000000] }, { "keytime": 4207.663086, "scale": [ 0.722126, 0.722126, 0.722126], "translation": [ 0.512197, -0.000000, -0.000000] }, { "keytime": 4240.996582, "scale": [ 0.746686, 0.746686, 0.746686], "translation": [ 0.512197, -0.000000, -0.000000] }, { "keytime": 4274.330078, "scale": [ 0.771265, 0.771265, 0.771265], "translation": [ 0.512197, -0.000000, -0.000000] }, { "keytime": 4307.663574, "scale": [ 0.794325, 0.794325, 0.794325], "translation": [ 0.512197, -0.000000, -0.000000] }, { "keytime": 4340.997070, "scale": [ 0.816538, 0.816538, 0.816538], "translation": [ 0.512197, -0.000000, -0.000000] }, { "keytime": 4374.330566, "scale": [ 0.838425, 0.838425, 0.838425], "translation": [ 0.512197, -0.000000, -0.000000] }, { "keytime": 4407.664062, "scale": [ 0.858308, 0.858309, 0.858308], "translation": [ 0.512197, -0.000000, -0.000000] }, { "keytime": 4440.997559, "scale": [ 0.877101, 0.877101, 0.877101], "translation": [ 0.512197, -0.000000, -0.000000] }, { "keytime": 4474.331055, "scale": [ 0.895269, 0.895269, 0.895269], "translation": [ 0.512197, -0.000000, -0.000000] }, { "keytime": 4507.664551, "scale": [ 0.911702, 0.911702, 0.911702], "translation": [ 0.512197, -0.000000, -0.000000] }, { "keytime": 4540.998047, "scale": [ 0.926869, 0.926869, 0.926869], "translation": [ 0.512197, -0.000000, -0.000000] }, { "keytime": 4574.331543, "scale": [ 0.940788, 0.940789, 0.940789], "translation": [ 0.512197, -0.000000, -0.000000] }, { "keytime": 4607.665039, "scale": [ 0.952955, 0.952955, 0.952955], "translation": [ 0.512197, -0.000000, -0.000000] }, { "keytime": 4640.998535, "scale": [ 0.963813, 0.963814, 0.963813], "translation": [ 0.512197, -0.000000, -0.000000] }, { "keytime": 4674.332031, "scale": [ 0.973597, 0.973597, 0.973597], "translation": [ 0.512197, -0.000000, -0.000000] }, { "keytime": 4707.665527, "scale": [ 0.981712, 0.981712, 0.981712], "translation": [ 0.512197, -0.000000, -0.000000] }, { "keytime": 4740.999023, "scale": [ 0.988049, 0.988049, 0.988049], "translation": [ 0.512197, -0.000000, -0.000000] }, { "keytime": 4774.332520, "scale": [ 0.993184, 0.993184, 0.993184], "translation": [ 0.512197, -0.000000, -0.000000] }, { "keytime": 4807.666016, "scale": [ 0.996794, 0.996794, 0.996794], "translation": [ 0.512197, -0.000000, -0.000000] }, { "keytime": 4832.000000, "scale": [ 0.998824, 0.998824, 0.998824], "translation": [ 0.512197, -0.000000, -0.000000] } ] }, { "boneId": "Bone_014", "keyframes": [ { "keytime": 41.000000, "scale": [ 0.659330, 0.659330, 0.659330], "translation": [ 0.448483, 0.000000, 0.000001] }, { "keytime": 74.333328, "scale": [ 0.659230, 0.659230, 0.659230], "translation": [ 0.448483, 0.000000, 0.000001] }, { "keytime": 107.666664, "scale": [ 0.658983, 0.658983, 0.658983], "translation": [ 0.448483, 0.000000, 0.000001] }, { "keytime": 141.000000, "scale": [ 0.658573, 0.658573, 0.658573], "translation": [ 0.448483, 0.000000, 0.000001] }, { "keytime": 174.333328, "scale": [ 0.658023, 0.658023, 0.658023], "translation": [ 0.448483, 0.000000, 0.000001] }, { "keytime": 207.666656, "scale": [ 0.657320, 0.657320, 0.657320], "translation": [ 0.448483, 0.000000, 0.000001] }, { "keytime": 240.999985, "scale": [ 0.656419, 0.656418, 0.656419], "translation": [ 0.448483, 0.000000, 0.000001] }, { "keytime": 274.333313, "scale": [ 0.655334, 0.655333, 0.655333], "translation": [ 0.448483, 0.000000, 0.000001] }, { "keytime": 307.666656, "scale": [ 0.654126, 0.654126, 0.654126], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 341.000000, "scale": [ 0.652722, 0.652721, 0.652722], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 374.333344, "scale": [ 0.651205, 0.651205, 0.651205], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 407.666687, "scale": [ 0.649486, 0.649486, 0.649486], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 441.000031, "scale": [ 0.647558, 0.647558, 0.647558], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 474.333374, "scale": [ 0.645532, 0.645532, 0.645532], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 507.666718, "scale": [ 0.643356, 0.643356, 0.643356], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 541.000061, "scale": [ 0.640954, 0.640953, 0.640954], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 574.333374, "scale": [ 0.638419, 0.638419, 0.638419], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 607.666687, "scale": [ 0.635736, 0.635736, 0.635736], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 641.000000, "scale": [ 0.632817, 0.632817, 0.632817], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 674.333313, "scale": [ 0.629833, 0.629833, 0.629833], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 707.666626, "scale": [ 0.626698, 0.626698, 0.626698], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 740.999939, "scale": [ 0.623371, 0.623371, 0.623371], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 774.333252, "scale": [ 0.619793, 0.619793, 0.619793], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 807.666565, "scale": [ 0.616174, 0.616174, 0.616175], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 840.999878, "scale": [ 0.612415, 0.612415, 0.612415], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 874.333191, "scale": [ 0.608389, 0.608389, 0.608389], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 907.666504, "scale": [ 0.604298, 0.604298, 0.604298], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 940.999817, "scale": [ 0.600071, 0.600071, 0.600071], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 1007.666443, "scale": [ 0.591081, 0.591081, 0.591081], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 1040.999756, "scale": [ 0.586451, 0.586451, 0.586451], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 1074.333130, "scale": [ 0.581511, 0.581511, 0.581511], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 1107.666504, "scale": [ 0.576589, 0.576589, 0.576589], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 1140.999878, "scale": [ 0.571547, 0.571547, 0.571547], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 1174.333252, "scale": [ 0.566211, 0.566211, 0.566211], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 1207.666626, "scale": [ 0.560857, 0.560857, 0.560857], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 1241.000000, "scale": [ 0.555340, 0.555340, 0.555340], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 1274.333374, "scale": [ 0.549774, 0.549774, 0.549774], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 1307.666748, "scale": [ 0.544136, 0.544136, 0.544136], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 1341.000122, "scale": [ 0.538262, 0.538262, 0.538262], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 1407.666870, "scale": [ 0.526474, 0.526474, 0.526474], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 1441.000244, "scale": [ 0.520231, 0.520230, 0.520231], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 1474.333618, "scale": [ 0.514111, 0.514111, 0.514111], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 1507.666992, "scale": [ 0.507947, 0.507947, 0.507947], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 1541.000366, "scale": [ 0.501444, 0.501444, 0.501444], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 1574.333740, "scale": [ 0.495132, 0.495132, 0.495132], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 1607.667114, "scale": [ 0.488681, 0.488681, 0.488681], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 1641.000488, "scale": [ 0.481984, 0.481984, 0.481984], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 1707.667236, "scale": [ 0.468984, 0.468984, 0.468984], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 1741.000610, "scale": [ 0.462121, 0.462121, 0.462121], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 1807.667358, "scale": [ 0.448794, 0.448794, 0.448794], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 1841.000732, "scale": [ 0.441928, 0.441928, 0.441928], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 1907.667480, "scale": [ 0.428601, 0.428601, 0.428601], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 1941.000854, "scale": [ 0.421735, 0.421735, 0.421735], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 2007.667603, "scale": [ 0.408408, 0.408408, 0.408408], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 2041.000977, "scale": [ 0.401543, 0.401543, 0.401542], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 2107.667725, "scale": [ 0.388215, 0.388215, 0.388215], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 2141.000977, "scale": [ 0.381350, 0.381350, 0.381350], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 2174.334229, "scale": [ 0.374742, 0.374742, 0.374742], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 2207.667480, "scale": [ 0.368311, 0.368311, 0.368311], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 2241.000732, "scale": [ 0.361685, 0.361685, 0.361685], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 2274.333984, "scale": [ 0.355254, 0.355254, 0.355254], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 2307.667236, "scale": [ 0.348926, 0.348926, 0.348926], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 2341.000488, "scale": [ 0.342517, 0.342517, 0.342517], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 2374.333740, "scale": [ 0.336297, 0.336297, 0.336297], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 2407.666992, "scale": [ 0.330284, 0.330284, 0.330284], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 2441.000244, "scale": [ 0.324091, 0.324091, 0.324091], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 2474.333496, "scale": [ 0.318200, 0.318200, 0.318200], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 2507.666748, "scale": [ 0.312430, 0.312430, 0.312430], "translation": [ 0.448484, 0.000000, 0.000001] }, { "keytime": 2541.000000, "scale": [ 0.306486, 0.306486, 0.306486], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 2607.666504, "scale": [ 0.295487, 0.295487, 0.295487], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 2674.333008, "scale": [ 0.284768, 0.284768, 0.284768], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 2707.666260, "scale": [ 0.279565, 0.279565, 0.279565], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 2740.999512, "scale": [ 0.274595, 0.274595, 0.274595], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 2774.332764, "scale": [ 0.269602, 0.269602, 0.269602], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 2807.666016, "scale": [ 0.264885, 0.264885, 0.264885], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 2874.332520, "scale": [ 0.255703, 0.255703, 0.255703], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 2907.665771, "scale": [ 0.251425, 0.251425, 0.251425], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 2940.999023, "scale": [ 0.247282, 0.247282, 0.247282], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 2974.332275, "scale": [ 0.243157, 0.243157, 0.243157], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 3007.665527, "scale": [ 0.239294, 0.239294, 0.239294], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 3040.998779, "scale": [ 0.235576, 0.235576, 0.235576], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 3074.332031, "scale": [ 0.231938, 0.231938, 0.231938], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 3107.665283, "scale": [ 0.228555, 0.228555, 0.228555], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 3140.998535, "scale": [ 0.225318, 0.225317, 0.225318], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 3174.331787, "scale": [ 0.222136, 0.222136, 0.222136], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 3207.665039, "scale": [ 0.219200, 0.219200, 0.219200], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 3240.998291, "scale": [ 0.216461, 0.216460, 0.216461], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 3274.331543, "scale": [ 0.213792, 0.213792, 0.213792], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 3307.664795, "scale": [ 0.211356, 0.211356, 0.211356], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 3340.998047, "scale": [ 0.209069, 0.209069, 0.209069], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 3374.331299, "scale": [ 0.206876, 0.206876, 0.206876], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 3407.664551, "scale": [ 0.204949, 0.204949, 0.204949], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 3440.997803, "scale": [ 0.203172, 0.203172, 0.203172], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 3474.331055, "scale": [ 0.201500, 0.201500, 0.201500], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 3507.664307, "scale": [ 0.200031, 0.200031, 0.200031], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 3540.997559, "scale": [ 0.198718, 0.198718, 0.198718], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 3574.330811, "scale": [ 0.197569, 0.197569, 0.197569], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 3607.664062, "scale": [ 0.196610, 0.196610, 0.196610], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 3640.997314, "scale": [ 0.195801, 0.195801, 0.195801], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 3674.330566, "scale": [ 0.195126, 0.195126, 0.195126], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 3707.663818, "scale": [ 0.194625, 0.194625, 0.194625], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 3740.997070, "scale": [ 0.194321, 0.194321, 0.194321], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 3774.330322, "scale": [ 0.194162, 0.194162, 0.194162], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 3807.663574, "scale": [ 0.195118, 0.195118, 0.195118], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 3840.996826, "scale": [ 0.198129, 0.198129, 0.198129], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 3874.330078, "scale": [ 0.204594, 0.204594, 0.204594], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 3907.663330, "scale": [ 0.215059, 0.215059, 0.215059], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 3940.996582, "scale": [ 0.228636, 0.228636, 0.228636], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 3974.329834, "scale": [ 0.245867, 0.245867, 0.245867], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 4007.663086, "scale": [ 0.265681, 0.265681, 0.265681], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 4040.996338, "scale": [ 0.288580, 0.288580, 0.288580], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 4074.329590, "scale": [ 0.315977, 0.315977, 0.315977], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 4107.663086, "scale": [ 0.345264, 0.345264, 0.345264], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 4140.996094, "scale": [ 0.376949, 0.376948, 0.376949], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 4174.329590, "scale": [ 0.411915, 0.411915, 0.411915], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 4207.663086, "scale": [ 0.447864, 0.447864, 0.447864], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 4240.996582, "scale": [ 0.485831, 0.485831, 0.485831], "translation": [ 0.448484, 0.000000, 0.000000] }, { "keytime": 4274.330078, "scale": [ 0.526051, 0.526051, 0.526051], "translation": [ 0.448484, 0.000000, -0.000000] }, { "keytime": 4307.663574, "scale": [ 0.565828, 0.565828, 0.565828], "translation": [ 0.448484, 0.000000, -0.000000] }, { "keytime": 4340.997070, "scale": [ 0.605977, 0.605977, 0.605977], "translation": [ 0.448484, 0.000000, -0.000000] }, { "keytime": 4374.330566, "scale": [ 0.647343, 0.647343, 0.647343], "translation": [ 0.448484, 0.000000, -0.000000] }, { "keytime": 4407.664062, "scale": [ 0.686777, 0.686777, 0.686777], "translation": [ 0.448484, 0.000000, -0.000000] }, { "keytime": 4440.997559, "scale": [ 0.725172, 0.725172, 0.725172], "translation": [ 0.448484, 0.000000, -0.000000] }, { "keytime": 4474.331055, "scale": [ 0.763313, 0.763313, 0.763313], "translation": [ 0.448484, 0.000000, -0.000000] }, { "keytime": 4507.664551, "scale": [ 0.798651, 0.798651, 0.798651], "translation": [ 0.448484, 0.000000, -0.000000] }, { "keytime": 4540.998047, "scale": [ 0.831971, 0.831970, 0.831971], "translation": [ 0.448484, 0.000000, -0.000000] }, { "keytime": 4574.331543, "scale": [ 0.863187, 0.863187, 0.863187], "translation": [ 0.448484, 0.000000, -0.000000] }, { "keytime": 4607.665039, "scale": [ 0.890811, 0.890810, 0.890811], "translation": [ 0.448484, 0.000000, -0.000000] }, { "keytime": 4640.998535, "scale": [ 0.915708, 0.915708, 0.915708], "translation": [ 0.448484, 0.000000, -0.000000] }, { "keytime": 4674.332031, "scale": [ 0.938327, 0.938326, 0.938327], "translation": [ 0.448484, 0.000000, -0.000000] }, { "keytime": 4707.665527, "scale": [ 0.957208, 0.957208, 0.957208], "translation": [ 0.448484, 0.000000, -0.000000] }, { "keytime": 4740.999023, "scale": [ 0.972020, 0.972020, 0.972020], "translation": [ 0.448484, 0.000000, -0.000000] }, { "keytime": 4774.332520, "scale": [ 0.984040, 0.984040, 0.984040], "translation": [ 0.448484, 0.000000, -0.000000] }, { "keytime": 4807.666016, "scale": [ 0.992495, 0.992495, 0.992495], "translation": [ 0.448484, 0.000000, -0.000000] }, { "keytime": 4832.000000, "scale": [ 0.997250, 0.997250, 0.997250], "translation": [ 0.448484, 0.000000, -0.000000] } ] }, { "boneId": "Bone_025", "keyframes": [ { "keytime": 41.000000, "scale": [ 0.610000, 0.610000, 0.610000], "translation": [ 0.333668, -0.000000, 0.000002] }, { "keytime": 107.666664, "scale": [ 0.609734, 0.609734, 0.609734], "translation": [ 0.333672, -0.000000, 0.000004] }, { "keytime": 141.000000, "scale": [ 0.609464, 0.609464, 0.609464], "translation": [ 0.333675, -0.000000, 0.000005] }, { "keytime": 207.666656, "scale": [ 0.608674, 0.608674, 0.608674], "translation": [ 0.333679, -0.000000, 0.000007] }, { "keytime": 240.999985, "scale": [ 0.608029, 0.608029, 0.608029], "translation": [ 0.333682, -0.000000, 0.000008] }, { "keytime": 274.333313, "scale": [ 0.607360, 0.607360, 0.607360], "translation": [ 0.333684, -0.000000, 0.000009] }, { "keytime": 307.666656, "scale": [ 0.606590, 0.606590, 0.606590], "translation": [ 0.333686, -0.000000, 0.000010] }, { "keytime": 341.000000, "scale": [ 0.605665, 0.605665, 0.605665], "translation": [ 0.333689, -0.000000, 0.000011] }, { "keytime": 374.333344, "scale": [ 0.604768, 0.604768, 0.604768], "translation": [ 0.333691, -0.000000, 0.000012] }, { "keytime": 407.666687, "scale": [ 0.603632, 0.603632, 0.603631], "translation": [ 0.333693, -0.000000, 0.000012] }, { "keytime": 441.000031, "scale": [ 0.602459, 0.602459, 0.602459], "translation": [ 0.333695, -0.000000, 0.000013] }, { "keytime": 474.333374, "scale": [ 0.601204, 0.601205, 0.601205], "translation": [ 0.333698, -0.000000, 0.000014] }, { "keytime": 507.666718, "scale": [ 0.599832, 0.599832, 0.599832], "translation": [ 0.333700, -0.000000, 0.000015] }, { "keytime": 541.000061, "scale": [ 0.598418, 0.598418, 0.598419], "translation": [ 0.333702, -0.000000, 0.000016] }, { "keytime": 607.666687, "scale": [ 0.595221, 0.595221, 0.595221], "translation": [ 0.333707, -0.000000, 0.000018] }, { "keytime": 641.000000, "scale": [ 0.593462, 0.593462, 0.593462], "translation": [ 0.333709, -0.000000, 0.000019] }, { "keytime": 707.666626, "scale": [ 0.589824, 0.589824, 0.589824], "translation": [ 0.333714, -0.000000, 0.000021] }, { "keytime": 740.999939, "scale": [ 0.587797, 0.587797, 0.587797], "translation": [ 0.333716, -0.000000, 0.000022] }, { "keytime": 774.333252, "scale": [ 0.585704, 0.585704, 0.585704], "translation": [ 0.333718, -0.000000, 0.000023] }, { "keytime": 807.666565, "scale": [ 0.583573, 0.583573, 0.583573], "translation": [ 0.333721, -0.000000, 0.000024] }, { "keytime": 840.999878, "scale": [ 0.581335, 0.581335, 0.581335], "translation": [ 0.333723, -0.000000, 0.000024] }, { "keytime": 874.333191, "scale": [ 0.579030, 0.579030, 0.579030], "translation": [ 0.333725, -0.000000, 0.000025] }, { "keytime": 907.666504, "scale": [ 0.576597, 0.576597, 0.576597], "translation": [ 0.333727, -0.000000, 0.000026] }, { "keytime": 940.999817, "scale": [ 0.574161, 0.574161, 0.574161], "translation": [ 0.333730, -0.000000, 0.000027] }, { "keytime": 974.333130, "scale": [ 0.571556, 0.571557, 0.571557], "translation": [ 0.333732, -0.000000, 0.000028] }, { "keytime": 1040.999756, "scale": [ 0.566302, 0.566302, 0.566302], "translation": [ 0.333737, -0.000000, 0.000030] }, { "keytime": 1074.333130, "scale": [ 0.563412, 0.563412, 0.563412], "translation": [ 0.333739, -0.000000, 0.000031] }, { "keytime": 1107.666504, "scale": [ 0.560600, 0.560600, 0.560600], "translation": [ 0.333741, -0.000000, 0.000032] }, { "keytime": 1140.999878, "scale": [ 0.557705, 0.557706, 0.557705], "translation": [ 0.333744, -0.000000, 0.000033] }, { "keytime": 1174.333252, "scale": [ 0.554627, 0.554627, 0.554627], "translation": [ 0.333746, -0.000000, 0.000034] }, { "keytime": 1207.666626, "scale": [ 0.551639, 0.551639, 0.551639], "translation": [ 0.333748, -0.000000, 0.000035] }, { "keytime": 1241.000000, "scale": [ 0.548390, 0.548390, 0.548390], "translation": [ 0.333750, -0.000000, 0.000036] }, { "keytime": 1274.333374, "scale": [ 0.545233, 0.545233, 0.545233], "translation": [ 0.333753, -0.000000, 0.000037] }, { "keytime": 1307.666748, "scale": [ 0.541998, 0.541998, 0.541998], "translation": [ 0.333755, -0.000000, 0.000037] }, { "keytime": 1341.000122, "scale": [ 0.538579, 0.538579, 0.538579], "translation": [ 0.333757, -0.000000, 0.000038] }, { "keytime": 1374.333496, "scale": [ 0.535260, 0.535260, 0.535260], "translation": [ 0.333760, -0.000000, 0.000039] }, { "keytime": 1407.666870, "scale": [ 0.531752, 0.531753, 0.531753], "translation": [ 0.333762, -0.000000, 0.000040] }, { "keytime": 1441.000244, "scale": [ 0.528137, 0.528137, 0.528137], "translation": [ 0.333764, -0.000000, 0.000041] }, { "keytime": 1474.333618, "scale": [ 0.524627, 0.524627, 0.524628], "translation": [ 0.333766, -0.000000, 0.000042] }, { "keytime": 1507.666992, "scale": [ 0.521069, 0.521069, 0.521069], "translation": [ 0.333769, -0.000000, 0.000043] }, { "keytime": 1541.000366, "scale": [ 0.517233, 0.517233, 0.517233], "translation": [ 0.333771, -0.000000, 0.000044] }, { "keytime": 1607.667114, "scale": [ 0.509789, 0.509789, 0.509789], "translation": [ 0.333776, -0.000000, 0.000046] }, { "keytime": 1641.000488, "scale": [ 0.505855, 0.505855, 0.505855], "translation": [ 0.333778, -0.000000, 0.000047] }, { "keytime": 1707.667236, "scale": [ 0.498021, 0.498021, 0.498021], "translation": [ 0.333783, -0.000000, 0.000049] }, { "keytime": 1741.000610, "scale": [ 0.493985, 0.493985, 0.493985], "translation": [ 0.333785, -0.000000, 0.000049] }, { "keytime": 1774.333984, "scale": [ 0.489937, 0.489937, 0.489937], "translation": [ 0.333787, -0.000000, 0.000050] }, { "keytime": 1807.667358, "scale": [ 0.485844, 0.485844, 0.485844], "translation": [ 0.333789, -0.000000, 0.000051] }, { "keytime": 1841.000732, "scale": [ 0.481627, 0.481627, 0.481627], "translation": [ 0.333792, -0.000000, 0.000052] }, { "keytime": 1874.334106, "scale": [ 0.477535, 0.477535, 0.477535], "translation": [ 0.333794, -0.000000, 0.000053] }, { "keytime": 1907.667480, "scale": [ 0.473265, 0.473265, 0.473265], "translation": [ 0.333796, -0.000000, 0.000054] }, { "keytime": 1941.000854, "scale": [ 0.468864, 0.468864, 0.468864], "translation": [ 0.333799, -0.000000, 0.000055] }, { "keytime": 2007.667603, "scale": [ 0.460321, 0.460321, 0.460321], "translation": [ 0.333803, -0.000000, 0.000057] }, { "keytime": 2041.000977, "scale": [ 0.455920, 0.455920, 0.455920], "translation": [ 0.333806, -0.000000, 0.000058] }, { "keytime": 2107.667725, "scale": [ 0.447001, 0.447001, 0.447001], "translation": [ 0.333810, -0.000000, 0.000060] }, { "keytime": 2141.000977, "scale": [ 0.442407, 0.442407, 0.442407], "translation": [ 0.333812, -0.000000, 0.000002] }, { "keytime": 2174.334229, "scale": [ 0.437948, 0.437948, 0.437948], "translation": [ 0.333815, -0.000000, -0.000074] }, { "keytime": 2207.667480, "scale": [ 0.433488, 0.433488, 0.433488], "translation": [ 0.333817, -0.000000, -0.000031] }, { "keytime": 2241.000732, "scale": [ 0.428894, 0.428894, 0.428894], "translation": [ 0.333819, -0.000000, 0.000013] }, { "keytime": 2274.333984, "scale": [ 0.424302, 0.424302, 0.424302], "translation": [ 0.333822, -0.000000, 0.000056] }, { "keytime": 2307.667236, "scale": [ 0.419665, 0.419665, 0.419665], "translation": [ 0.333824, -0.000000, 0.000099] }, { "keytime": 2341.000488, "scale": [ 0.414887, 0.414887, 0.414887], "translation": [ 0.333826, -0.000000, 0.000143] }, { "keytime": 2374.333740, "scale": [ 0.410250, 0.410250, 0.410250], "translation": [ 0.333828, -0.000000, 0.000186] }, { "keytime": 2407.666992, "scale": [ 0.405613, 0.405613, 0.405613], "translation": [ 0.333831, -0.000000, 0.000039] }, { "keytime": 2441.000244, "scale": [ 0.400836, 0.400836, 0.400836], "translation": [ 0.333793, -0.000000, 0.000161] }, { "keytime": 2474.333496, "scale": [ 0.396198, 0.396199, 0.396199], "translation": [ 0.333743, -0.000000, 0.000143] }, { "keytime": 2507.666748, "scale": [ 0.391561, 0.391562, 0.391562], "translation": [ 0.333694, -0.000000, -0.000040] }, { "keytime": 2541.000000, "scale": [ 0.386784, 0.386784, 0.386784], "translation": [ 0.333642, -0.000000, 0.000018] }, { "keytime": 2574.333252, "scale": [ 0.382147, 0.382147, 0.382147], "translation": [ 0.333592, -0.000000, -0.000097] }, { "keytime": 2607.666504, "scale": [ 0.377510, 0.377510, 0.377510], "translation": [ 0.333698, -0.000000, -0.000036] }, { "keytime": 2640.999756, "scale": [ 0.372873, 0.372873, 0.372873], "translation": [ 0.333754, -0.000000, 0.000030] }, { "keytime": 2674.333008, "scale": [ 0.368095, 0.368095, 0.368095], "translation": [ 0.333690, -0.000000, 0.000030] }, { "keytime": 2740.999512, "scale": [ 0.358821, 0.358821, 0.358821], "translation": [ 0.333567, -0.000000, 0.000030] }, { "keytime": 2774.332764, "scale": [ 0.354044, 0.354044, 0.354044], "translation": [ 0.333698, -0.000000, 0.000030] }, { "keytime": 2807.666016, "scale": [ 0.349407, 0.349407, 0.349407], "translation": [ 0.333737, -0.000000, 0.000030] }, { "keytime": 2840.999268, "scale": [ 0.344769, 0.344770, 0.344770], "translation": [ 0.333634, -0.000000, -0.000003] }, { "keytime": 2874.332520, "scale": [ 0.339992, 0.339992, 0.339992], "translation": [ 0.333634, -0.000000, -0.000157] }, { "keytime": 2907.665771, "scale": [ 0.335355, 0.335355, 0.335355], "translation": [ 0.333635, -0.000000, -0.000082] }, { "keytime": 2940.999023, "scale": [ 0.330718, 0.330718, 0.330718], "translation": [ 0.333635, -0.000000, -0.000005] }, { "keytime": 2974.332275, "scale": [ 0.325940, 0.325940, 0.325940], "translation": [ 0.333636, -0.000000, 0.000036] }, { "keytime": 3040.998779, "scale": [ 0.316666, 0.316666, 0.316666], "translation": [ 0.333637, -0.000000, 0.000035] }, { "keytime": 3074.332031, "scale": [ 0.311889, 0.311889, 0.311889], "translation": [ 0.333637, -0.000000, 0.000034] }, { "keytime": 3107.665283, "scale": [ 0.307252, 0.307252, 0.307252], "translation": [ 0.333638, -0.000000, 0.000034] }, { "keytime": 3140.998535, "scale": [ 0.302740, 0.302740, 0.302740], "translation": [ 0.333638, -0.000000, 0.000033] }, { "keytime": 3174.331787, "scale": [ 0.298234, 0.298234, 0.298235], "translation": [ 0.333639, -0.000000, 0.000033] }, { "keytime": 3240.998291, "scale": [ 0.289488, 0.289488, 0.289489], "translation": [ 0.333640, -0.000000, 0.000031] }, { "keytime": 3274.331543, "scale": [ 0.284983, 0.284983, 0.284983], "translation": [ 0.333640, -0.000000, 0.000031] }, { "keytime": 3307.664795, "scale": [ 0.280716, 0.280716, 0.280716], "translation": [ 0.333641, -0.000000, 0.000030] }, { "keytime": 3340.998047, "scale": [ 0.276563, 0.276563, 0.276563], "translation": [ 0.333641, -0.000000, 0.000029] }, { "keytime": 3374.331299, "scale": [ 0.272284, 0.272284, 0.272284], "translation": [ 0.333642, -0.000000, 0.000029] }, { "keytime": 3407.664551, "scale": [ 0.268130, 0.268130, 0.268130], "translation": [ 0.333642, -0.000000, 0.000028] }, { "keytime": 3440.997803, "scale": [ 0.264122, 0.264122, 0.264122], "translation": [ 0.333643, -0.000000, 0.000027] }, { "keytime": 3474.331055, "scale": [ 0.260049, 0.260049, 0.260049], "translation": [ 0.333643, -0.000000, 0.000027] }, { "keytime": 3507.664307, "scale": [ 0.256139, 0.256139, 0.256140], "translation": [ 0.333644, -0.000000, 0.000026] }, { "keytime": 3540.997559, "scale": [ 0.252376, 0.252376, 0.252376], "translation": [ 0.333644, -0.000000, 0.000025] }, { "keytime": 3574.330811, "scale": [ 0.248499, 0.248499, 0.248499], "translation": [ 0.333645, -0.000000, 0.000025] }, { "keytime": 3607.664062, "scale": [ 0.244896, 0.244896, 0.244896], "translation": [ 0.333645, -0.000000, 0.000024] }, { "keytime": 3640.997314, "scale": [ 0.241351, 0.241351, 0.241351], "translation": [ 0.333646, -0.000000, 0.000023] }, { "keytime": 3674.330566, "scale": [ 0.237760, 0.237760, 0.237760], "translation": [ 0.333646, -0.000000, 0.000023] }, { "keytime": 3740.997070, "scale": [ 0.231169, 0.231169, 0.231169], "translation": [ 0.333647, -0.000000, 0.000022] }, { "keytime": 3774.330322, "scale": [ 0.227986, 0.227986, 0.227986], "translation": [ 0.333648, -0.000000, 0.000021] }, { "keytime": 3807.663574, "scale": [ 0.224975, 0.224975, 0.224975], "translation": [ 0.333648, -0.000000, 0.000020] }, { "keytime": 3840.996826, "scale": [ 0.222017, 0.222017, 0.222017], "translation": [ 0.333649, -0.000000, 0.000020] }, { "keytime": 3874.330078, "scale": [ 0.219158, 0.219158, 0.219158], "translation": [ 0.333649, -0.000000, 0.000019] }, { "keytime": 3907.663330, "scale": [ 0.216553, 0.216553, 0.216553], "translation": [ 0.333649, -0.000000, 0.000018] }, { "keytime": 3940.996582, "scale": [ 0.214083, 0.214083, 0.214083], "translation": [ 0.333650, -0.000000, 0.000018] }, { "keytime": 3974.329834, "scale": [ 0.211684, 0.211684, 0.211684], "translation": [ 0.333650, -0.000000, 0.000017] }, { "keytime": 4007.663086, "scale": [ 0.209505, 0.209505, 0.209505], "translation": [ 0.333651, -0.000000, 0.000016] }, { "keytime": 4040.996338, "scale": [ 0.207483, 0.207483, 0.207483], "translation": [ 0.333651, -0.000000, 0.000016] }, { "keytime": 4074.329590, "scale": [ 0.205619, 0.205619, 0.205619], "translation": [ 0.333652, -0.000000, 0.000015] }, { "keytime": 4107.663086, "scale": [ 0.203988, 0.203988, 0.203988], "translation": [ 0.333652, -0.000000, 0.000014] }, { "keytime": 4140.996094, "scale": [ 0.202536, 0.202536, 0.202536], "translation": [ 0.333653, -0.000000, 0.000014] }, { "keytime": 4174.329590, "scale": [ 0.201237, 0.201237, 0.201237], "translation": [ 0.333653, -0.000000, 0.000013] }, { "keytime": 4207.663086, "scale": [ 0.200177, 0.200177, 0.200177], "translation": [ 0.333654, -0.000000, 0.000012] }, { "keytime": 4240.996582, "scale": [ 0.199392, 0.199392, 0.199392], "translation": [ 0.333654, -0.000000, 0.000012] }, { "keytime": 4274.330078, "scale": [ 0.198811, 0.198811, 0.198811], "translation": [ 0.333655, -0.000000, 0.000011] }, { "keytime": 4307.663574, "scale": [ 0.198482, 0.198482, 0.198482], "translation": [ 0.333655, -0.000000, 0.000011] }, { "keytime": 4340.997070, "scale": [ 0.200200, 0.200200, 0.200200], "translation": [ 0.333656, 0.000000, 0.000010] }, { "keytime": 4374.330566, "scale": [ 0.208762, 0.208762, 0.208762], "translation": [ 0.333656, 0.000000, 0.000009] }, { "keytime": 4407.664062, "scale": [ 0.233695, 0.233695, 0.233695], "translation": [ 0.333657, 0.000000, 0.000009] }, { "keytime": 4440.997559, "scale": [ 0.270767, 0.270767, 0.270767], "translation": [ 0.333657, 0.000000, 0.000008] }, { "keytime": 4474.331055, "scale": [ 0.321035, 0.321036, 0.321036], "translation": [ 0.333658, 0.000000, 0.000007] }, { "keytime": 4507.664551, "scale": [ 0.380502, 0.380502, 0.380502], "translation": [ 0.333658, 0.000000, 0.000007] }, { "keytime": 4540.998047, "scale": [ 0.449405, 0.449406, 0.449406], "translation": [ 0.333659, 0.000000, 0.000006] }, { "keytime": 4574.331543, "scale": [ 0.528521, 0.528521, 0.528521], "translation": [ 0.333659, 0.000000, 0.000005] }, { "keytime": 4607.665039, "scale": [ 0.607649, 0.607649, 0.607649], "translation": [ 0.333660, 0.000000, 0.000005] }, { "keytime": 4640.998535, "scale": [ 0.686172, 0.686172, 0.686172], "translation": [ 0.333660, 0.000000, 0.000004] }, { "keytime": 4674.332031, "scale": [ 0.763564, 0.763564, 0.763564], "translation": [ 0.333661, 0.000000, 0.000003] }, { "keytime": 4707.665527, "scale": [ 0.832468, 0.832468, 0.832468], "translation": [ 0.333661, 0.000000, 0.000003] }, { "keytime": 4740.999023, "scale": [ 0.889326, 0.889327, 0.889327], "translation": [ 0.333662, 0.000000, 0.000002] }, { "keytime": 4774.332520, "scale": [ 0.936403, 0.936403, 0.936403], "translation": [ 0.333662, 0.000000, 0.000001] }, { "keytime": 4807.666016, "scale": [ 0.969984, 0.969984, 0.969984], "translation": [ 0.333663, 0.000000, 0.000001] }, { "keytime": 4832.000000, "scale": [ 0.989001, 0.989001, 0.989001], "translation": [ 0.333663, 0.000000, 0.000000] } ] }, { "boneId": "Bone_015", "keyframes": [ { "keytime": 41.000000, "scale": [ 0.200000, 0.200000, 0.200000] }, { "keytime": 307.666656, "scale": [ 0.200220, 0.200220, 0.200220] }, { "keytime": 341.000000, "scale": [ 0.200287, 0.200287, 0.200287] }, { "keytime": 407.666687, "scale": [ 0.200646, 0.200646, 0.200646] }, { "keytime": 441.000031, "scale": [ 0.200832, 0.200832, 0.200832] }, { "keytime": 507.666718, "scale": [ 0.201191, 0.201191, 0.201191] }, { "keytime": 541.000061, "scale": [ 0.201376, 0.201376, 0.201376] }, { "keytime": 607.666687, "scale": [ 0.202166, 0.202166, 0.202166] }, { "keytime": 641.000000, "scale": [ 0.202572, 0.202572, 0.202572] }, { "keytime": 674.333313, "scale": [ 0.203013, 0.203013, 0.203013] }, { "keytime": 740.999939, "scale": [ 0.204180, 0.204180, 0.204180] }, { "keytime": 774.333252, "scale": [ 0.204917, 0.204917, 0.204917] }, { "keytime": 807.666565, "scale": [ 0.205682, 0.205682, 0.205682] }, { "keytime": 840.999878, "scale": [ 0.206492, 0.206492, 0.206492] }, { "keytime": 874.333191, "scale": [ 0.207490, 0.207490, 0.207490] }, { "keytime": 907.666504, "scale": [ 0.208458, 0.208458, 0.208458] }, { "keytime": 940.999817, "scale": [ 0.209588, 0.209588, 0.209588] }, { "keytime": 974.333130, "scale": [ 0.210814, 0.210814, 0.210814] }, { "keytime": 1007.666443, "scale": [ 0.212058, 0.212058, 0.212058] }, { "keytime": 1040.999756, "scale": [ 0.213482, 0.213482, 0.213482] }, { "keytime": 1074.333130, "scale": [ 0.214949, 0.214949, 0.214949] }, { "keytime": 1107.666504, "scale": [ 0.216549, 0.216549, 0.216549] }, { "keytime": 1140.999878, "scale": [ 0.218213, 0.218213, 0.218213] }, { "keytime": 1174.333252, "scale": [ 0.219985, 0.219985, 0.219985] }, { "keytime": 1207.666626, "scale": [ 0.221888, 0.221888, 0.221888] }, { "keytime": 1241.000000, "scale": [ 0.223848, 0.223848, 0.223848] }, { "keytime": 1274.333374, "scale": [ 0.225926, 0.225926, 0.225926] }, { "keytime": 1307.666748, "scale": [ 0.228063, 0.228063, 0.228063] }, { "keytime": 1341.000122, "scale": [ 0.230322, 0.230322, 0.230322] }, { "keytime": 1407.666870, "scale": [ 0.235044, 0.235044, 0.235044] }, { "keytime": 1441.000244, "scale": [ 0.237636, 0.237636, 0.237636] }, { "keytime": 1474.333618, "scale": [ 0.240208, 0.240208, 0.240208] }, { "keytime": 1507.666992, "scale": [ 0.242826, 0.242826, 0.242826] }, { "keytime": 1541.000366, "scale": [ 0.245678, 0.245678, 0.245678] }, { "keytime": 1574.333740, "scale": [ 0.248446, 0.248446, 0.248446] }, { "keytime": 1607.667114, "scale": [ 0.251347, 0.251347, 0.251347] }, { "keytime": 1641.000488, "scale": [ 0.254386, 0.254386, 0.254386] }, { "keytime": 1674.333862, "scale": [ 0.257374, 0.257374, 0.257374] }, { "keytime": 1707.667236, "scale": [ 0.260487, 0.260487, 0.260487] }, { "keytime": 1741.000610, "scale": [ 0.263695, 0.263695, 0.263695] }, { "keytime": 1774.333984, "scale": [ 0.266993, 0.266993, 0.266993] }, { "keytime": 1807.667358, "scale": [ 0.270519, 0.270519, 0.270519] }, { "keytime": 1841.000732, "scale": [ 0.274419, 0.274419, 0.274419] }, { "keytime": 1874.334106, "scale": [ 0.278462, 0.278462, 0.278462] }, { "keytime": 1907.667480, "scale": [ 0.282845, 0.282845, 0.282845] }, { "keytime": 1941.000854, "scale": [ 0.287625, 0.287625, 0.287625] }, { "keytime": 1974.334229, "scale": [ 0.292524, 0.292524, 0.292524] }, { "keytime": 2007.667603, "scale": [ 0.297676, 0.297676, 0.297676] }, { "keytime": 2041.000977, "scale": [ 0.303255, 0.303255, 0.303255] }, { "keytime": 2074.334473, "scale": [ 0.309011, 0.309011, 0.309011] }, { "keytime": 2107.667725, "scale": [ 0.315017, 0.315017, 0.315017] }, { "keytime": 2141.000977, "scale": [ 0.321468, 0.321468, 0.321468] }, { "keytime": 2174.334229, "scale": [ 0.327982, 0.327982, 0.327982] }, { "keytime": 2207.667480, "scale": [ 0.334749, 0.334749, 0.334749] }, { "keytime": 2241.000732, "scale": [ 0.342056, 0.342056, 0.342056] }, { "keytime": 2274.333984, "scale": [ 0.349398, 0.349398, 0.349398] }, { "keytime": 2307.667236, "scale": [ 0.356979, 0.356979, 0.356979] }, { "keytime": 2374.333740, "scale": [ 0.373102, 0.373102, 0.373102] }, { "keytime": 2407.666992, "scale": [ 0.381470, 0.381470, 0.381470] }, { "keytime": 2441.000244, "scale": [ 0.390323, 0.390323, 0.390323] }, { "keytime": 2474.333496, "scale": [ 0.399141, 0.399141, 0.399141] }, { "keytime": 2507.666748, "scale": [ 0.408173, 0.408173, 0.408173] }, { "keytime": 2541.000000, "scale": [ 0.417703, 0.417703, 0.417703] }, { "keytime": 2574.333252, "scale": [ 0.427227, 0.427227, 0.427227] }, { "keytime": 2607.666504, "scale": [ 0.436945, 0.436945, 0.436945] }, { "keytime": 2640.999756, "scale": [ 0.446850, 0.446850, 0.446850] }, { "keytime": 2674.333008, "scale": [ 0.457249, 0.457249, 0.457249] }, { "keytime": 2707.666260, "scale": [ 0.467524, 0.467524, 0.467524] }, { "keytime": 2740.999512, "scale": [ 0.478019, 0.478019, 0.478019] }, { "keytime": 2774.332764, "scale": [ 0.488991, 0.488991, 0.488991] }, { "keytime": 2807.666016, "scale": [ 0.499793, 0.499793, 0.499793] }, { "keytime": 2840.999268, "scale": [ 0.510732, 0.510732, 0.510732] }, { "keytime": 2874.332520, "scale": [ 0.522145, 0.522145, 0.522145] }, { "keytime": 2907.665771, "scale": [ 0.533449, 0.533449, 0.533449] }, { "keytime": 2940.999023, "scale": [ 0.544755, 0.544755, 0.544755] }, { "keytime": 2974.332275, "scale": [ 0.556524, 0.556524, 0.556524] }, { "keytime": 3040.998779, "scale": [ 0.579621, 0.579621, 0.579621] }, { "keytime": 3074.332031, "scale": [ 0.591712, 0.591712, 0.591712] }, { "keytime": 3140.998535, "scale": [ 0.615195, 0.615195, 0.615195] }, { "keytime": 3174.331787, "scale": [ 0.627292, 0.627292, 0.627292] }, { "keytime": 3240.998291, "scale": [ 0.650774, 0.650775, 0.650774] }, { "keytime": 3274.331543, "scale": [ 0.662872, 0.662872, 0.662872] }, { "keytime": 3340.998047, "scale": [ 0.686354, 0.686354, 0.686354] }, { "keytime": 3374.331299, "scale": [ 0.698451, 0.698451, 0.698451] }, { "keytime": 3407.664551, "scale": [ 0.709952, 0.709952, 0.709952] }, { "keytime": 3440.997803, "scale": [ 0.721451, 0.721451, 0.721451] }, { "keytime": 3474.331055, "scale": [ 0.733165, 0.733165, 0.733165] }, { "keytime": 3540.997559, "scale": [ 0.755621, 0.755621, 0.755621] }, { "keytime": 3574.330811, "scale": [ 0.766936, 0.766936, 0.766936] }, { "keytime": 3607.664062, "scale": [ 0.777765, 0.777765, 0.777765] }, { "keytime": 3640.997314, "scale": [ 0.788442, 0.788442, 0.788442] }, { "keytime": 3674.330566, "scale": [ 0.799269, 0.799269, 0.799269] }, { "keytime": 3707.663818, "scale": [ 0.809599, 0.809599, 0.809599] }, { "keytime": 3740.997070, "scale": [ 0.819685, 0.819685, 0.819685] }, { "keytime": 3774.330322, "scale": [ 0.829872, 0.829872, 0.829872] }, { "keytime": 3807.663574, "scale": [ 0.839549, 0.839549, 0.839549] }, { "keytime": 3840.996826, "scale": [ 0.849016, 0.849016, 0.849016] }, { "keytime": 3874.330078, "scale": [ 0.858532, 0.858532, 0.858532] }, { "keytime": 3907.663330, "scale": [ 0.867462, 0.867461, 0.867461] }, { "keytime": 3940.996582, "scale": [ 0.876154, 0.876154, 0.876154] }, { "keytime": 3974.329834, "scale": [ 0.884854, 0.884854, 0.884854] }, { "keytime": 4007.663086, "scale": [ 0.893045, 0.893045, 0.893045] }, { "keytime": 4040.996338, "scale": [ 0.900972, 0.900972, 0.900972] }, { "keytime": 4074.329590, "scale": [ 0.908787, 0.908787, 0.908787] }, { "keytime": 4107.663086, "scale": [ 0.916094, 0.916094, 0.916094] }, { "keytime": 4140.996094, "scale": [ 0.923131, 0.923131, 0.923131] }, { "keytime": 4174.329590, "scale": [ 0.930090, 0.930091, 0.930091] }, { "keytime": 4207.663086, "scale": [ 0.936558, 0.936558, 0.936558] }, { "keytime": 4240.996582, "scale": [ 0.942652, 0.942652, 0.942652] }, { "keytime": 4274.330078, "scale": [ 0.948634, 0.948635, 0.948634] }, { "keytime": 4307.663574, "scale": [ 0.954146, 0.954146, 0.954146] }, { "keytime": 4340.997070, "scale": [ 0.959369, 0.959369, 0.959369] }, { "keytime": 4374.330566, "scale": [ 0.964436, 0.964436, 0.964436] }, { "keytime": 4407.664062, "scale": [ 0.968962, 0.968962, 0.968962] }, { "keytime": 4440.997559, "scale": [ 0.973196, 0.973195, 0.973196] }, { "keytime": 4474.331055, "scale": [ 0.977249, 0.977249, 0.977249] }, { "keytime": 4507.664551, "scale": [ 0.980884, 0.980884, 0.980884] }, { "keytime": 4540.998047, "scale": [ 0.984213, 0.984213, 0.984213] }, { "keytime": 4574.331543, "scale": [ 0.987245, 0.987245, 0.987245] }, { "keytime": 4607.665039, "scale": [ 0.989883, 0.989883, 0.989883] }, { "keytime": 4640.998535, "scale": [ 0.992229, 0.992229, 0.992229] }, { "keytime": 4674.332031, "scale": [ 0.994336, 0.994336, 0.994336] }, { "keytime": 4707.665527, "scale": [ 0.996079, 0.996079, 0.996079] }, { "keytime": 4740.999023, "scale": [ 0.997438, 0.997438, 0.997438] }, { "keytime": 4774.332520, "scale": [ 0.998539, 0.998539, 0.998539] }, { "keytime": 4807.666016, "scale": [ 0.999312, 0.999312, 0.999313] }, { "keytime": 4832.000000, "scale": [ 0.999748, 0.999748, 0.999748] } ] }, { "boneId": "Bone_016", "keyframes": [ { "keytime": 41.000000, "scale": [ 1.000000, 1.000000, 1.000000], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 74.333328, "scale": [ 0.999539, 0.999539, 0.999539], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 107.666664, "scale": [ 0.998395, 0.998396, 0.998395], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 141.000000, "scale": [ 0.996495, 0.996495, 0.996495], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 174.333328, "scale": [ 0.993948, 0.993948, 0.993948], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 207.666656, "scale": [ 0.990690, 0.990690, 0.990690], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 240.999985, "scale": [ 0.986509, 0.986509, 0.986509], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 274.333313, "scale": [ 0.981478, 0.981478, 0.981478], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 307.666656, "scale": [ 0.975880, 0.975880, 0.975880], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 341.000000, "scale": [ 0.969375, 0.969374, 0.969375], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 374.333344, "scale": [ 0.962352, 0.962352, 0.962352], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 407.666687, "scale": [ 0.954404, 0.954404, 0.954404], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 441.000031, "scale": [ 0.945505, 0.945505, 0.945505], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 474.333374, "scale": [ 0.936170, 0.936170, 0.936170], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 507.666718, "scale": [ 0.926164, 0.926164, 0.926164], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 541.000061, "scale": [ 0.915142, 0.915142, 0.915142], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 574.333374, "scale": [ 0.903561, 0.903561, 0.903561], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 607.666687, "scale": [ 0.891344, 0.891344, 0.891344], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 641.000000, "scale": [ 0.878101, 0.878101, 0.878101], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 674.333313, "scale": [ 0.864624, 0.864624, 0.864624], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 707.666626, "scale": [ 0.850533, 0.850533, 0.850533], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 740.999939, "scale": [ 0.835682, 0.835682, 0.835682], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 774.333252, "scale": [ 0.819810, 0.819810, 0.819810], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 807.666565, "scale": [ 0.803862, 0.803862, 0.803862], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 840.999878, "scale": [ 0.787408, 0.787408, 0.787408], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 874.333191, "scale": [ 0.769929, 0.769929, 0.769929], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 907.666504, "scale": [ 0.752363, 0.752363, 0.752363], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 940.999817, "scale": [ 0.734386, 0.734387, 0.734386], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 974.333130, "scale": [ 0.715462, 0.715462, 0.715462], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 1007.666443, "scale": [ 0.696731, 0.696731, 0.696731], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 1040.999756, "scale": [ 0.677662, 0.677662, 0.677662], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 1074.333130, "scale": [ 0.657637, 0.657637, 0.657637], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 1107.666504, "scale": [ 0.637958, 0.637958, 0.637958], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 1140.999878, "scale": [ 0.618080, 0.618080, 0.618080], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 1174.333252, "scale": [ 0.597406, 0.597406, 0.597406], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 1207.666626, "scale": [ 0.577149, 0.577149, 0.577149], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 1241.000000, "scale": [ 0.556279, 0.556279, 0.556279], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 1307.666748, "scale": [ 0.515766, 0.515766, 0.515766], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 1341.000122, "scale": [ 0.494896, 0.494896, 0.494896], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 1374.333496, "scale": [ 0.474639, 0.474639, 0.474639], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 1407.666870, "scale": [ 0.454629, 0.454629, 0.454629], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 1441.000244, "scale": [ 0.434202, 0.434202, 0.434202], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 1474.333618, "scale": [ 0.414596, 0.414596, 0.414596], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 1507.666992, "scale": [ 0.395236, 0.395236, 0.395236], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 1541.000366, "scale": [ 0.375589, 0.375589, 0.375589], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 1574.333740, "scale": [ 0.356961, 0.356961, 0.356961], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 1607.667114, "scale": [ 0.338702, 0.338702, 0.338702], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 1641.000488, "scale": [ 0.320305, 0.320305, 0.320305], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 1674.333862, "scale": [ 0.302880, 0.302880, 0.302880], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 1707.667236, "scale": [ 0.285916, 0.285916, 0.285916], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 1741.000610, "scale": [ 0.269100, 0.269100, 0.269100], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 1774.333984, "scale": [ 0.253315, 0.253315, 0.253315], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 1807.667358, "scale": [ 0.238066, 0.238066, 0.238066], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 1841.000732, "scale": [ 0.222944, 0.222944, 0.222944], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 1874.334106, "scale": [ 0.208853, 0.208853, 0.208853], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 1907.667480, "scale": [ 0.195564, 0.195564, 0.195564], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 1941.000854, "scale": [ 0.182516, 0.182516, 0.182516], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 1974.334229, "scale": [ 0.170499, 0.170499, 0.170499], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 2007.667603, "scale": [ 0.159123, 0.159123, 0.159123], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 2041.000977, "scale": [ 0.148102, 0.148102, 0.148102], "translation": [ 0.623222, -0.000000, 0.000001] }, { "keytime": 2074.334473, "scale": [ 0.138304, 0.138304, 0.138304], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 2107.667725, "scale": [ 0.129182, 0.129182, 0.129182], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 2141.000977, "scale": [ 0.120498, 0.120498, 0.120498], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 2174.334229, "scale": [ 0.112767, 0.112767, 0.112767], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 2207.667480, "scale": [ 0.105744, 0.105744, 0.105744], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 2241.000732, "scale": [ 0.099457, 0.099457, 0.099457], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 2274.333984, "scale": [ 0.094078, 0.094078, 0.094078], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 2307.667236, "scale": [ 0.089393, 0.089393, 0.089393], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 2341.000488, "scale": [ 0.085304, 0.085304, 0.085304], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 2374.333740, "scale": [ 0.082046, 0.082046, 0.082046], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 2407.666992, "scale": [ 0.079717, 0.079717, 0.079717], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 2441.000244, "scale": [ 0.078033, 0.078033, 0.078033], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 2474.333496, "scale": [ 0.077104, 0.077104, 0.077104], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 2507.666748, "scale": [ 0.076865, 0.076865, 0.076865], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 2541.000000, "scale": [ 0.077374, 0.077374, 0.077374], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 2574.333252, "scale": [ 0.078861, 0.078861, 0.078861], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 2607.666504, "scale": [ 0.081084, 0.081084, 0.081084], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 2640.999756, "scale": [ 0.084048, 0.084048, 0.084048], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 2674.333008, "scale": [ 0.087890, 0.087890, 0.087890], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 2707.666260, "scale": [ 0.092391, 0.092391, 0.092391], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 2740.999512, "scale": [ 0.097881, 0.097881, 0.097881], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 2774.332764, "scale": [ 0.104313, 0.104313, 0.104313], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 2807.666016, "scale": [ 0.111319, 0.111319, 0.111319], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 2840.999268, "scale": [ 0.119065, 0.119065, 0.119065], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 2874.332520, "scale": [ 0.127846, 0.127846, 0.127846], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 2907.665771, "scale": [ 0.137347, 0.137347, 0.137347], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 2940.999023, "scale": [ 0.147567, 0.147567, 0.147567], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 2974.332275, "scale": [ 0.158846, 0.158846, 0.158846], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 3007.665527, "scale": [ 0.170508, 0.170508, 0.170508], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 3040.998779, "scale": [ 0.182889, 0.182889, 0.182889], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 3074.332031, "scale": [ 0.196558, 0.196558, 0.196558], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 3107.665283, "scale": [ 0.210503, 0.210503, 0.210503], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 3140.998535, "scale": [ 0.225084, 0.225084, 0.225084], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 3174.331787, "scale": [ 0.240762, 0.240762, 0.240762], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 3207.665039, "scale": [ 0.256600, 0.256600, 0.256600], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 3240.998291, "scale": [ 0.273190, 0.273190, 0.273190], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 3274.331543, "scale": [ 0.290838, 0.290838, 0.290838], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 3307.664795, "scale": [ 0.308490, 0.308490, 0.308490], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 3340.998047, "scale": [ 0.326622, 0.326622, 0.326622], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 3374.331299, "scale": [ 0.345794, 0.345794, 0.345794], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 3407.664551, "scale": [ 0.364948, 0.364948, 0.364948], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 3440.997803, "scale": [ 0.384462, 0.384462, 0.384462], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 3474.331055, "scale": [ 0.404912, 0.404912, 0.404912], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 3507.664307, "scale": [ 0.425058, 0.425058, 0.425058], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 3540.997559, "scale": [ 0.445471, 0.445471, 0.445471], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 3574.330811, "scale": [ 0.466776, 0.466776, 0.466776], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 3607.664062, "scale": [ 0.487665, 0.487665, 0.487665], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 3640.997314, "scale": [ 0.508627, 0.508627, 0.508627], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 3674.330566, "scale": [ 0.530224, 0.530224, 0.530224], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 3740.997070, "scale": [ 0.572147, 0.572147, 0.572147], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 3774.330322, "scale": [ 0.593744, 0.593744, 0.593744], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 3807.663574, "scale": [ 0.614572, 0.614572, 0.614572], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 3840.996826, "scale": [ 0.635197, 0.635197, 0.635197], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 3874.330078, "scale": [ 0.656229, 0.656229, 0.656229], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 3907.663330, "scale": [ 0.676298, 0.676298, 0.676298], "translation": [ 0.623223, -0.000000, 0.000001] }, { "keytime": 3940.996582, "scale": [ 0.696059, 0.696059, 0.696059], "translation": [ 0.623223, -0.000000, 0.000000] }, { "keytime": 3974.329834, "scale": [ 0.716061, 0.716061, 0.716061], "translation": [ 0.623223, -0.000000, 0.000000] }, { "keytime": 4007.663086, "scale": [ 0.735092, 0.735092, 0.735092], "translation": [ 0.623223, -0.000000, 0.000000] }, { "keytime": 4040.996338, "scale": [ 0.753700, 0.753701, 0.753701], "translation": [ 0.623223, -0.000000, 0.000000] }, { "keytime": 4074.329590, "scale": [ 0.772260, 0.772260, 0.772260], "translation": [ 0.623223, -0.000000, 0.000000] }, { "keytime": 4107.663086, "scale": [ 0.789763, 0.789763, 0.789763], "translation": [ 0.623223, -0.000000, 0.000000] }, { "keytime": 4140.996094, "scale": [ 0.806747, 0.806747, 0.806747], "translation": [ 0.623223, -0.000000, 0.000000] }, { "keytime": 4174.329590, "scale": [ 0.823671, 0.823670, 0.823671], "translation": [ 0.623223, -0.000000, 0.000000] }, { "keytime": 4207.663086, "scale": [ 0.839508, 0.839508, 0.839508], "translation": [ 0.623223, -0.000000, 0.000000] }, { "keytime": 4240.996582, "scale": [ 0.854551, 0.854551, 0.854551], "translation": [ 0.623223, -0.000000, 0.000000] }, { "keytime": 4274.330078, "scale": [ 0.869398, 0.869398, 0.869398], "translation": [ 0.623223, -0.000000, 0.000000] }, { "keytime": 4307.663574, "scale": [ 0.883147, 0.883147, 0.883147], "translation": [ 0.623223, -0.000000, 0.000000] }, { "keytime": 4340.997070, "scale": [ 0.896238, 0.896238, 0.896238], "translation": [ 0.623223, -0.000000, 0.000000] }, { "keytime": 4374.330566, "scale": [ 0.908995, 0.908995, 0.908995], "translation": [ 0.623223, -0.000000, 0.000000] }, { "keytime": 4407.664062, "scale": [ 0.920448, 0.920449, 0.920449], "translation": [ 0.623223, -0.000000, 0.000000] }, { "keytime": 4440.997559, "scale": [ 0.931196, 0.931196, 0.931196], "translation": [ 0.623223, -0.000000, 0.000000] }, { "keytime": 4474.331055, "scale": [ 0.941517, 0.941517, 0.941517], "translation": [ 0.623223, -0.000000, 0.000000] }, { "keytime": 4507.664551, "scale": [ 0.950799, 0.950799, 0.950798], "translation": [ 0.623223, -0.000000, 0.000000] }, { "keytime": 4540.998047, "scale": [ 0.959321, 0.959321, 0.959321], "translation": [ 0.623223, -0.000000, 0.000000] }, { "keytime": 4574.331543, "scale": [ 0.967103, 0.967104, 0.967104], "translation": [ 0.623223, -0.000000, 0.000000] }, { "keytime": 4607.665039, "scale": [ 0.973887, 0.973887, 0.973887], "translation": [ 0.623223, -0.000000, 0.000000] }, { "keytime": 4640.998535, "scale": [ 0.979927, 0.979927, 0.979927], "translation": [ 0.623223, -0.000000, 0.000000] }, { "keytime": 4674.332031, "scale": [ 0.985360, 0.985360, 0.985360], "translation": [ 0.623223, -0.000000, 0.000000] }, { "keytime": 4707.665527, "scale": [ 0.989861, 0.989861, 0.989861], "translation": [ 0.623223, -0.000000, 0.000000] }, { "keytime": 4740.999023, "scale": [ 0.993373, 0.993373, 0.993373], "translation": [ 0.623223, -0.000000, 0.000000] }, { "keytime": 4774.332520, "scale": [ 0.996219, 0.996219, 0.996219], "translation": [ 0.623223, -0.000000, 0.000000] }, { "keytime": 4807.666016, "scale": [ 0.998220, 0.998220, 0.998221], "translation": [ 0.623223, -0.000000, 0.000000] }, { "keytime": 4832.000000, "scale": [ 0.999347, 0.999347, 0.999347], "translation": [ 0.623223, -0.000000, 0.000000] } ] }, { "boneId": "Bone_017", "keyframes": [ { "keytime": 41.000000, "scale": [ 0.560000, 0.560000, 0.560000], "translation": [ 0.522341, 0.000001, 0.000002] }, { "keytime": 74.333328, "scale": [ 0.559887, 0.559887, 0.559887], "translation": [ 0.522341, 0.000001, 0.000002] }, { "keytime": 107.666664, "scale": [ 0.559605, 0.559605, 0.559605], "translation": [ 0.522341, 0.000001, 0.000002] }, { "keytime": 141.000000, "scale": [ 0.559137, 0.559137, 0.559137], "translation": [ 0.522341, 0.000001, 0.000002] }, { "keytime": 174.333328, "scale": [ 0.558511, 0.558511, 0.558511], "translation": [ 0.522341, 0.000001, 0.000002] }, { "keytime": 207.666656, "scale": [ 0.557710, 0.557710, 0.557710], "translation": [ 0.522341, 0.000001, 0.000002] }, { "keytime": 240.999985, "scale": [ 0.556682, 0.556682, 0.556682], "translation": [ 0.522341, 0.000001, 0.000002] }, { "keytime": 274.333313, "scale": [ 0.555445, 0.555445, 0.555445], "translation": [ 0.522341, 0.000001, 0.000002] }, { "keytime": 307.666656, "scale": [ 0.554069, 0.554069, 0.554069], "translation": [ 0.522341, 0.000001, 0.000002] }, { "keytime": 341.000000, "scale": [ 0.552468, 0.552468, 0.552468], "translation": [ 0.522341, 0.000001, 0.000002] }, { "keytime": 374.333344, "scale": [ 0.550739, 0.550739, 0.550739], "translation": [ 0.522341, 0.000001, 0.000002] }, { "keytime": 407.666687, "scale": [ 0.548781, 0.548781, 0.548781], "translation": [ 0.522341, 0.000001, 0.000002] }, { "keytime": 441.000031, "scale": [ 0.546585, 0.546585, 0.546585], "translation": [ 0.522341, 0.000001, 0.000002] }, { "keytime": 474.333374, "scale": [ 0.544279, 0.544279, 0.544279], "translation": [ 0.522341, 0.000001, 0.000002] }, { "keytime": 507.666718, "scale": [ 0.541803, 0.541802, 0.541802], "translation": [ 0.522341, 0.000001, 0.000002] }, { "keytime": 541.000061, "scale": [ 0.539070, 0.539070, 0.539070], "translation": [ 0.522341, 0.000001, 0.000002] }, { "keytime": 574.333374, "scale": [ 0.536191, 0.536191, 0.536191], "translation": [ 0.522341, 0.000001, 0.000002] }, { "keytime": 607.666687, "scale": [ 0.533145, 0.533145, 0.533145], "translation": [ 0.522341, 0.000000, 0.000002] }, { "keytime": 641.000000, "scale": [ 0.529834, 0.529834, 0.529834], "translation": [ 0.522341, 0.000000, 0.000002] }, { "keytime": 674.333313, "scale": [ 0.526454, 0.526454, 0.526454], "translation": [ 0.522341, 0.000000, 0.000002] }, { "keytime": 707.666626, "scale": [ 0.522908, 0.522908, 0.522907], "translation": [ 0.522340, 0.000000, 0.000002] }, { "keytime": 740.999939, "scale": [ 0.519150, 0.519150, 0.519150], "translation": [ 0.522340, 0.000000, 0.000002] }, { "keytime": 774.333252, "scale": [ 0.515116, 0.515116, 0.515116], "translation": [ 0.522340, 0.000000, 0.000002] }, { "keytime": 807.666565, "scale": [ 0.511042, 0.511042, 0.511042], "translation": [ 0.522340, 0.000000, 0.000002] }, { "keytime": 840.999878, "scale": [ 0.506817, 0.506817, 0.506817], "translation": [ 0.522340, 0.000000, 0.000002] }, { "keytime": 874.333191, "scale": [ 0.502303, 0.502303, 0.502303], "translation": [ 0.522340, 0.000000, 0.000002] }, { "keytime": 907.666504, "scale": [ 0.497728, 0.497728, 0.497728], "translation": [ 0.522340, 0.000000, 0.000002] }, { "keytime": 940.999817, "scale": [ 0.493014, 0.493014, 0.493014], "translation": [ 0.522340, 0.000000, 0.000002] }, { "keytime": 974.333130, "scale": [ 0.488014, 0.488014, 0.488013], "translation": [ 0.522340, 0.000000, 0.000002] }, { "keytime": 1007.666443, "scale": [ 0.483025, 0.483025, 0.483025], "translation": [ 0.522340, 0.000000, 0.000002] }, { "keytime": 1040.999756, "scale": [ 0.477904, 0.477904, 0.477903], "translation": [ 0.522340, 0.000000, 0.000002] }, { "keytime": 1074.333130, "scale": [ 0.472461, 0.472461, 0.472461], "translation": [ 0.522340, 0.000000, 0.000002] }, { "keytime": 1107.666504, "scale": [ 0.467003, 0.467003, 0.467003], "translation": [ 0.522340, 0.000000, 0.000002] }, { "keytime": 1140.999878, "scale": [ 0.461484, 0.461484, 0.461484], "translation": [ 0.522340, 0.000000, 0.000002] }, { "keytime": 1174.333252, "scale": [ 0.455732, 0.455732, 0.455732], "translation": [ 0.522340, 0.000000, 0.000002] }, { "keytime": 1207.666626, "scale": [ 0.449939, 0.449939, 0.449939], "translation": [ 0.522340, 0.000000, 0.000002] }, { "keytime": 1241.000000, "scale": [ 0.443970, 0.443970, 0.443970], "translation": [ 0.522340, 0.000000, 0.000002] }, { "keytime": 1274.333374, "scale": [ 0.438004, 0.438004, 0.438004], "translation": [ 0.522340, 0.000000, 0.000002] }, { "keytime": 1307.666748, "scale": [ 0.431979, 0.431979, 0.431979], "translation": [ 0.522340, 0.000000, 0.000002] }, { "keytime": 1341.000122, "scale": [ 0.425717, 0.425717, 0.425717], "translation": [ 0.522340, 0.000000, 0.000002] }, { "keytime": 1407.666870, "scale": [ 0.413227, 0.413227, 0.413227], "translation": [ 0.522340, 0.000000, 0.000002] }, { "keytime": 1441.000244, "scale": [ 0.406793, 0.406793, 0.406793], "translation": [ 0.522340, 0.000000, 0.000002] }, { "keytime": 1474.333618, "scale": [ 0.400458, 0.400458, 0.400458], "translation": [ 0.522340, 0.000000, 0.000002] }, { "keytime": 1507.666992, "scale": [ 0.394031, 0.394031, 0.394031], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 1541.000366, "scale": [ 0.387410, 0.387410, 0.387409], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 1607.667114, "scale": [ 0.374556, 0.374556, 0.374555], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 1641.000488, "scale": [ 0.367934, 0.367934, 0.367934], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 1707.667236, "scale": [ 0.355080, 0.355080, 0.355080], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 1741.000610, "scale": [ 0.348549, 0.348549, 0.348549], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 1807.667358, "scale": [ 0.335876, 0.335876, 0.335876], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 1841.000732, "scale": [ 0.329348, 0.329348, 0.329347], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 1874.334106, "scale": [ 0.323011, 0.323011, 0.323011], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 1907.667480, "scale": [ 0.316886, 0.316886, 0.316886], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 1941.000854, "scale": [ 0.310577, 0.310577, 0.310577], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 1974.334229, "scale": [ 0.304558, 0.304558, 0.304558], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 2007.667603, "scale": [ 0.298643, 0.298643, 0.298643], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 2041.000977, "scale": [ 0.292549, 0.292549, 0.292549], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 2107.667725, "scale": [ 0.281227, 0.281227, 0.281227], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 2141.000977, "scale": [ 0.275544, 0.275544, 0.275544], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 2207.667480, "scale": [ 0.264811, 0.264811, 0.264811], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 2241.000732, "scale": [ 0.259529, 0.259529, 0.259529], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 2274.333984, "scale": [ 0.254538, 0.254538, 0.254538], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 2307.667236, "scale": [ 0.249678, 0.249678, 0.249678], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 2341.000488, "scale": [ 0.244816, 0.244816, 0.244816], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 2374.333740, "scale": [ 0.240239, 0.240239, 0.240239], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 2407.666992, "scale": [ 0.235855, 0.235855, 0.235855], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 2441.000244, "scale": [ 0.231494, 0.231494, 0.231494], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 2474.333496, "scale": [ 0.227416, 0.227416, 0.227416], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 2507.666748, "scale": [ 0.223491, 0.223491, 0.223491], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 2541.000000, "scale": [ 0.219615, 0.219615, 0.219615], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 2574.333252, "scale": [ 0.216069, 0.216069, 0.216069], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 2607.666504, "scale": [ 0.212684, 0.212684, 0.212684], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 2640.999756, "scale": [ 0.209463, 0.209463, 0.209463], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 2674.333008, "scale": [ 0.206319, 0.206319, 0.206319], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 2707.666260, "scale": [ 0.203439, 0.203439, 0.203439], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 2740.999512, "scale": [ 0.200783, 0.200783, 0.200783], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 2774.332764, "scale": [ 0.198222, 0.198222, 0.198222], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 2807.666016, "scale": [ 0.195910, 0.195910, 0.195910], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 2840.999268, "scale": [ 0.193770, 0.193770, 0.193770], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 2874.332520, "scale": [ 0.191749, 0.191749, 0.191749], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 2907.665771, "scale": [ 0.190018, 0.190018, 0.190018], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 2940.999023, "scale": [ 0.188458, 0.188458, 0.188458], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 2974.332275, "scale": [ 0.187031, 0.187031, 0.187031], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 3007.665527, "scale": [ 0.185821, 0.185821, 0.185821], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 3040.998779, "scale": [ 0.184789, 0.184789, 0.184789], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 3074.332031, "scale": [ 0.183956, 0.183956, 0.183956], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 3107.665283, "scale": [ 0.183325, 0.183325, 0.183325], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 3140.998535, "scale": [ 0.182863, 0.182863, 0.182863], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 3174.331787, "scale": [ 0.182567, 0.182567, 0.182567], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 3207.665039, "scale": [ 0.182453, 0.182454, 0.182453], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 3240.998291, "scale": [ 0.183322, 0.183322, 0.183322], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 3274.331543, "scale": [ 0.185576, 0.185576, 0.185576], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 3307.664795, "scale": [ 0.189132, 0.189132, 0.189132], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 3340.998047, "scale": [ 0.194021, 0.194021, 0.194021], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 3374.331299, "scale": [ 0.200512, 0.200512, 0.200512], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 3407.664551, "scale": [ 0.208609, 0.208609, 0.208608], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 3440.997803, "scale": [ 0.218037, 0.218037, 0.218037], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 3474.331055, "scale": [ 0.229141, 0.229141, 0.229141], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 3507.664307, "scale": [ 0.241255, 0.241255, 0.241255], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 3540.997559, "scale": [ 0.254714, 0.254714, 0.254714], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 3574.330811, "scale": [ 0.270290, 0.270290, 0.270290], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 3607.664062, "scale": [ 0.286673, 0.286673, 0.286673], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 3640.997314, "scale": [ 0.304235, 0.304235, 0.304235], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 3674.330566, "scale": [ 0.323541, 0.323541, 0.323541], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 3707.663818, "scale": [ 0.343411, 0.343411, 0.343411], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 3740.997070, "scale": [ 0.364626, 0.364626, 0.364626], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 3774.330322, "scale": [ 0.387444, 0.387444, 0.387444], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 3807.663574, "scale": [ 0.410471, 0.410471, 0.410471], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 3840.996826, "scale": [ 0.434278, 0.434278, 0.434278], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 3874.330078, "scale": [ 0.459566, 0.459566, 0.459566], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 3907.663330, "scale": [ 0.484880, 0.484881, 0.484880], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 3940.996582, "scale": [ 0.510635, 0.510635, 0.510635], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 3974.329834, "scale": [ 0.537536, 0.537536, 0.537536], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 4007.663086, "scale": [ 0.563901, 0.563901, 0.563901], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 4040.996338, "scale": [ 0.590422, 0.590422, 0.590422], "translation": [ 0.522340, 0.000000, 0.000001] }, { "keytime": 4074.329590, "scale": [ 0.617746, 0.617746, 0.617746], "translation": [ 0.522340, 0.000000, 0.000000] }, { "keytime": 4107.663086, "scale": [ 0.644118, 0.644118, 0.644118], "translation": [ 0.522340, 0.000000, 0.000000] }, { "keytime": 4140.996094, "scale": [ 0.670246, 0.670246, 0.670246], "translation": [ 0.522340, 0.000000, 0.000000] }, { "keytime": 4174.329590, "scale": [ 0.696804, 0.696804, 0.696804], "translation": [ 0.522340, 0.000000, 0.000000] }, { "keytime": 4207.663086, "scale": [ 0.722126, 0.722126, 0.722126], "translation": [ 0.522340, 0.000000, 0.000000] }, { "keytime": 4240.996582, "scale": [ 0.746686, 0.746686, 0.746686], "translation": [ 0.522340, 0.000000, 0.000000] }, { "keytime": 4274.330078, "scale": [ 0.771265, 0.771265, 0.771265], "translation": [ 0.522340, 0.000000, 0.000000] }, { "keytime": 4307.663574, "scale": [ 0.794325, 0.794325, 0.794325], "translation": [ 0.522340, 0.000000, 0.000000] }, { "keytime": 4340.997070, "scale": [ 0.816538, 0.816538, 0.816538], "translation": [ 0.522340, 0.000000, 0.000000] }, { "keytime": 4374.330566, "scale": [ 0.838425, 0.838425, 0.838425], "translation": [ 0.522340, 0.000000, 0.000000] }, { "keytime": 4407.664062, "scale": [ 0.858308, 0.858308, 0.858309], "translation": [ 0.522340, 0.000000, 0.000000] }, { "keytime": 4440.997559, "scale": [ 0.877101, 0.877101, 0.877101], "translation": [ 0.522340, 0.000000, 0.000000] }, { "keytime": 4474.331055, "scale": [ 0.895269, 0.895269, 0.895269], "translation": [ 0.522340, 0.000000, 0.000000] }, { "keytime": 4507.664551, "scale": [ 0.911702, 0.911702, 0.911702], "translation": [ 0.522340, 0.000000, 0.000000] }, { "keytime": 4540.998047, "scale": [ 0.926869, 0.926869, 0.926870], "translation": [ 0.522340, 0.000000, 0.000000] }, { "keytime": 4574.331543, "scale": [ 0.940789, 0.940789, 0.940789], "translation": [ 0.522340, 0.000000, 0.000000] }, { "keytime": 4607.665039, "scale": [ 0.952955, 0.952955, 0.952955], "translation": [ 0.522340, 0.000000, 0.000000] }, { "keytime": 4640.998535, "scale": [ 0.963813, 0.963813, 0.963813], "translation": [ 0.522340, 0.000000, 0.000000] }, { "keytime": 4674.332031, "scale": [ 0.973597, 0.973597, 0.973597], "translation": [ 0.522340, 0.000000, 0.000000] }, { "keytime": 4707.665527, "scale": [ 0.981712, 0.981712, 0.981712], "translation": [ 0.522340, 0.000000, 0.000000] }, { "keytime": 4740.999023, "scale": [ 0.988049, 0.988049, 0.988049], "translation": [ 0.522340, 0.000000, 0.000000] }, { "keytime": 4774.332520, "scale": [ 0.993184, 0.993183, 0.993184], "translation": [ 0.522340, 0.000000, 0.000000] }, { "keytime": 4807.666016, "scale": [ 0.996794, 0.996793, 0.996794], "translation": [ 0.522340, 0.000000, 0.000000] }, { "keytime": 4832.000000, "scale": [ 0.998824, 0.998824, 0.998824], "translation": [ 0.522340, 0.000000, 0.000000] } ] }, { "boneId": "Bone_027", "keyframes": [ { "keytime": 41.000000, "scale": [ 0.610000, 0.610000, 0.610000], "translation": [ 0.338165, -0.000000, 0.000004] }, { "keytime": 107.666664, "scale": [ 0.609734, 0.609734, 0.609734], "translation": [ 0.338167, -0.000000, 0.000005] }, { "keytime": 141.000000, "scale": [ 0.609464, 0.609464, 0.609464], "translation": [ 0.338168, -0.000000, 0.000005] }, { "keytime": 207.666656, "scale": [ 0.608674, 0.608674, 0.608674], "translation": [ 0.338170, -0.000000, 0.000006] }, { "keytime": 240.999985, "scale": [ 0.608029, 0.608029, 0.608029], "translation": [ 0.338171, -0.000000, 0.000007] }, { "keytime": 274.333313, "scale": [ 0.607360, 0.607360, 0.607360], "translation": [ 0.338172, -0.000000, 0.000007] }, { "keytime": 307.666656, "scale": [ 0.606590, 0.606590, 0.606590], "translation": [ 0.338173, -0.000000, 0.000007] }, { "keytime": 341.000000, "scale": [ 0.605665, 0.605665, 0.605665], "translation": [ 0.338174, -0.000000, 0.000008] }, { "keytime": 374.333344, "scale": [ 0.604768, 0.604768, 0.604768], "translation": [ 0.338175, -0.000000, 0.000008] }, { "keytime": 407.666687, "scale": [ 0.603632, 0.603632, 0.603632], "translation": [ 0.338176, -0.000000, 0.000009] }, { "keytime": 441.000031, "scale": [ 0.602459, 0.602459, 0.602459], "translation": [ 0.338177, -0.000000, 0.000009] }, { "keytime": 474.333374, "scale": [ 0.601204, 0.601205, 0.601205], "translation": [ 0.338178, -0.000000, 0.000010] }, { "keytime": 507.666718, "scale": [ 0.599832, 0.599832, 0.599832], "translation": [ 0.338179, -0.000000, 0.000010] }, { "keytime": 541.000061, "scale": [ 0.598418, 0.598419, 0.598419], "translation": [ 0.338180, -0.000000, 0.000011] }, { "keytime": 607.666687, "scale": [ 0.595220, 0.595221, 0.595220], "translation": [ 0.338182, -0.000000, 0.000011] }, { "keytime": 641.000000, "scale": [ 0.593462, 0.593462, 0.593462], "translation": [ 0.338183, -0.000000, 0.000012] }, { "keytime": 707.666626, "scale": [ 0.589824, 0.589824, 0.589824], "translation": [ 0.338185, -0.000000, 0.000013] }, { "keytime": 740.999939, "scale": [ 0.587797, 0.587797, 0.587797], "translation": [ 0.338186, -0.000000, 0.000013] }, { "keytime": 774.333252, "scale": [ 0.585704, 0.585704, 0.585704], "translation": [ 0.338187, -0.000000, 0.000014] }, { "keytime": 807.666565, "scale": [ 0.583573, 0.583573, 0.583573], "translation": [ 0.338188, -0.000000, 0.000014] }, { "keytime": 840.999878, "scale": [ 0.581335, 0.581336, 0.581335], "translation": [ 0.338189, -0.000000, 0.000014] }, { "keytime": 874.333191, "scale": [ 0.579030, 0.579031, 0.579031], "translation": [ 0.338190, -0.000000, 0.000015] }, { "keytime": 907.666504, "scale": [ 0.576597, 0.576597, 0.576597], "translation": [ 0.338191, -0.000000, 0.000015] }, { "keytime": 940.999817, "scale": [ 0.574161, 0.574161, 0.574161], "translation": [ 0.338192, -0.000000, 0.000016] }, { "keytime": 974.333130, "scale": [ 0.571557, 0.571557, 0.571557], "translation": [ 0.338194, -0.000000, 0.000016] }, { "keytime": 1040.999756, "scale": [ 0.566302, 0.566303, 0.566303], "translation": [ 0.338196, -0.000000, 0.000017] }, { "keytime": 1074.333130, "scale": [ 0.563412, 0.563412, 0.563412], "translation": [ 0.338197, -0.000000, 0.000018] }, { "keytime": 1107.666504, "scale": [ 0.560600, 0.560601, 0.560601], "translation": [ 0.338198, -0.000000, 0.000018] }, { "keytime": 1140.999878, "scale": [ 0.557705, 0.557706, 0.557706], "translation": [ 0.338199, -0.000000, 0.000018] }, { "keytime": 1174.333252, "scale": [ 0.554627, 0.554627, 0.554627], "translation": [ 0.338200, -0.000000, 0.000019] }, { "keytime": 1207.666626, "scale": [ 0.551639, 0.551639, 0.551639], "translation": [ 0.338201, -0.000000, 0.000019] }, { "keytime": 1241.000000, "scale": [ 0.548390, 0.548390, 0.548390], "translation": [ 0.338202, -0.000000, 0.000020] }, { "keytime": 1274.333374, "scale": [ 0.545233, 0.545233, 0.545233], "translation": [ 0.338203, -0.000000, 0.000020] }, { "keytime": 1307.666748, "scale": [ 0.541998, 0.541998, 0.541998], "translation": [ 0.338204, -0.000000, 0.000021] }, { "keytime": 1341.000122, "scale": [ 0.538579, 0.538579, 0.538579], "translation": [ 0.338205, -0.000000, 0.000021] }, { "keytime": 1374.333496, "scale": [ 0.535260, 0.535260, 0.535260], "translation": [ 0.338206, -0.000000, 0.000021] }, { "keytime": 1407.666870, "scale": [ 0.531753, 0.531753, 0.531753], "translation": [ 0.338207, -0.000000, 0.000022] }, { "keytime": 1441.000244, "scale": [ 0.528137, 0.528137, 0.528137], "translation": [ 0.338208, -0.000000, 0.000022] }, { "keytime": 1474.333618, "scale": [ 0.524627, 0.524628, 0.524628], "translation": [ 0.338209, -0.000000, 0.000023] }, { "keytime": 1507.666992, "scale": [ 0.521069, 0.521069, 0.521069], "translation": [ 0.338210, -0.000000, 0.000023] }, { "keytime": 1541.000366, "scale": [ 0.517233, 0.517233, 0.517233], "translation": [ 0.338211, -0.000000, 0.000024] }, { "keytime": 1607.667114, "scale": [ 0.509789, 0.509789, 0.509789], "translation": [ 0.338213, -0.000000, 0.000025] }, { "keytime": 1641.000488, "scale": [ 0.505855, 0.505855, 0.505855], "translation": [ 0.338214, -0.000000, 0.000025] }, { "keytime": 1707.667236, "scale": [ 0.498021, 0.498021, 0.498021], "translation": [ 0.338216, -0.000000, 0.000026] }, { "keytime": 1741.000610, "scale": [ 0.493985, 0.493985, 0.493985], "translation": [ 0.338217, -0.000000, 0.000026] }, { "keytime": 1774.333984, "scale": [ 0.489937, 0.489937, 0.489937], "translation": [ 0.338218, -0.000000, 0.000027] }, { "keytime": 1807.667358, "scale": [ 0.485844, 0.485844, 0.485844], "translation": [ 0.338219, -0.000000, 0.000027] }, { "keytime": 1841.000732, "scale": [ 0.481627, 0.481628, 0.481627], "translation": [ 0.338220, -0.000000, 0.000028] }, { "keytime": 1874.334106, "scale": [ 0.477535, 0.477535, 0.477535], "translation": [ 0.338221, -0.000000, 0.000028] }, { "keytime": 1907.667480, "scale": [ 0.473265, 0.473265, 0.473265], "translation": [ 0.338222, -0.000000, 0.000028] }, { "keytime": 1941.000854, "scale": [ 0.468864, 0.468864, 0.468864], "translation": [ 0.338223, -0.000000, 0.000029] }, { "keytime": 2007.667603, "scale": [ 0.460321, 0.460321, 0.460321], "translation": [ 0.338225, -0.000000, 0.000030] }, { "keytime": 2041.000977, "scale": [ 0.455920, 0.455920, 0.455920], "translation": [ 0.338226, -0.000000, 0.000030] }, { "keytime": 2107.667725, "scale": [ 0.447001, 0.447001, 0.447001], "translation": [ 0.338228, -0.000000, 0.000031] }, { "keytime": 2141.000977, "scale": [ 0.442407, 0.442407, 0.442407], "translation": [ 0.338229, -0.000000, 0.000032] }, { "keytime": 2207.667480, "scale": [ 0.433488, 0.433488, 0.433488], "translation": [ 0.338231, -0.000000, 0.000032] }, { "keytime": 2241.000732, "scale": [ 0.428894, 0.428894, 0.428894], "translation": [ 0.338232, -0.000000, -0.000105] }, { "keytime": 2274.333984, "scale": [ 0.424302, 0.424302, 0.424302], "translation": [ 0.338233, -0.000000, -0.000129] }, { "keytime": 2307.667236, "scale": [ 0.419665, 0.419665, 0.419665], "translation": [ 0.338234, -0.000000, -0.000115] }, { "keytime": 2341.000488, "scale": [ 0.414887, 0.414887, 0.414887], "translation": [ 0.338235, -0.000000, -0.000057] }, { "keytime": 2374.333740, "scale": [ 0.410250, 0.410250, 0.410250], "translation": [ 0.338236, -0.000000, 0.000133] }, { "keytime": 2407.666992, "scale": [ 0.405613, 0.405613, 0.405613], "translation": [ 0.338237, -0.000000, 0.000059] }, { "keytime": 2441.000244, "scale": [ 0.400836, 0.400836, 0.400836], "translation": [ 0.338165, -0.000000, -0.000021] }, { "keytime": 2474.333496, "scale": [ 0.396199, 0.396199, 0.396199], "translation": [ 0.338162, -0.000000, -0.000099] }, { "keytime": 2507.666748, "scale": [ 0.391561, 0.391562, 0.391561], "translation": [ 0.338234, -0.000000, -0.000103] }, { "keytime": 2541.000000, "scale": [ 0.386784, 0.386784, 0.386784], "translation": [ 0.338233, -0.000000, 0.000143] }, { "keytime": 2607.666504, "scale": [ 0.377510, 0.377510, 0.377510], "translation": [ 0.338231, -0.000000, -0.000109] }, { "keytime": 2640.999756, "scale": [ 0.372873, 0.372873, 0.372873], "translation": [ 0.338230, -0.000000, -0.000100] }, { "keytime": 2674.333008, "scale": [ 0.368095, 0.368095, 0.368095], "translation": [ 0.338229, -0.000000, -0.000022] }, { "keytime": 2707.666260, "scale": [ 0.363458, 0.363458, 0.363458], "translation": [ 0.338228, -0.000000, -0.000222] }, { "keytime": 2740.999512, "scale": [ 0.358821, 0.358821, 0.358821], "translation": [ 0.338227, -0.000000, -0.000049] }, { "keytime": 2774.332764, "scale": [ 0.354044, 0.354044, 0.354044], "translation": [ 0.338226, -0.000000, -0.000114] }, { "keytime": 2807.666016, "scale": [ 0.349407, 0.349407, 0.349407], "translation": [ 0.338225, -0.000000, -0.000128] }, { "keytime": 2840.999268, "scale": [ 0.344770, 0.344770, 0.344770], "translation": [ 0.338224, -0.000000, -0.000029] }, { "keytime": 2874.332520, "scale": [ 0.339992, 0.339992, 0.339992], "translation": [ 0.338223, -0.000000, -0.000055] }, { "keytime": 2940.999023, "scale": [ 0.330718, 0.330718, 0.330718], "translation": [ 0.338221, -0.000000, -0.000106] }, { "keytime": 2974.332275, "scale": [ 0.325940, 0.325940, 0.325940], "translation": [ 0.338220, -0.000000, -0.000048] }, { "keytime": 3007.665527, "scale": [ 0.321303, 0.321303, 0.321303], "translation": [ 0.338219, -0.000000, 0.000062] }, { "keytime": 3040.998779, "scale": [ 0.316666, 0.316666, 0.316666], "translation": [ 0.338218, -0.000000, 0.000061] }, { "keytime": 3074.332031, "scale": [ 0.311889, 0.311889, 0.311889], "translation": [ 0.338217, -0.000000, 0.000060] }, { "keytime": 3107.665283, "scale": [ 0.307252, 0.307252, 0.307252], "translation": [ 0.338216, -0.000000, 0.000058] }, { "keytime": 3140.998535, "scale": [ 0.302740, 0.302740, 0.302740], "translation": [ 0.338215, -0.000000, 0.000057] }, { "keytime": 3174.331787, "scale": [ 0.298234, 0.298234, 0.298234], "translation": [ 0.338214, -0.000000, 0.000056] }, { "keytime": 3240.998291, "scale": [ 0.289489, 0.289489, 0.289488], "translation": [ 0.338212, -0.000000, 0.000054] }, { "keytime": 3274.331543, "scale": [ 0.284983, 0.284983, 0.284983], "translation": [ 0.338211, -0.000000, 0.000053] }, { "keytime": 3307.664795, "scale": [ 0.280717, 0.280717, 0.280716], "translation": [ 0.338210, -0.000000, 0.000052] }, { "keytime": 3340.998047, "scale": [ 0.276563, 0.276563, 0.276563], "translation": [ 0.338209, -0.000000, 0.000051] }, { "keytime": 3374.331299, "scale": [ 0.272284, 0.272284, 0.272284], "translation": [ 0.338208, -0.000000, 0.000050] }, { "keytime": 3407.664551, "scale": [ 0.268130, 0.268130, 0.268130], "translation": [ 0.338207, -0.000000, 0.000049] }, { "keytime": 3440.997803, "scale": [ 0.264122, 0.264122, 0.264122], "translation": [ 0.338206, -0.000000, 0.000047] }, { "keytime": 3474.331055, "scale": [ 0.260049, 0.260049, 0.260049], "translation": [ 0.338205, -0.000000, 0.000046] }, { "keytime": 3507.664307, "scale": [ 0.256139, 0.256140, 0.256139], "translation": [ 0.338204, -0.000000, 0.000045] }, { "keytime": 3540.997559, "scale": [ 0.252376, 0.252376, 0.252376], "translation": [ 0.338203, -0.000000, 0.000044] }, { "keytime": 3574.330811, "scale": [ 0.248499, 0.248499, 0.248499], "translation": [ 0.338202, -0.000000, 0.000043] }, { "keytime": 3607.664062, "scale": [ 0.244896, 0.244896, 0.244896], "translation": [ 0.338201, -0.000000, 0.000042] }, { "keytime": 3640.997314, "scale": [ 0.241351, 0.241351, 0.241351], "translation": [ 0.338200, -0.000000, 0.000041] }, { "keytime": 3674.330566, "scale": [ 0.237760, 0.237760, 0.237760], "translation": [ 0.338199, -0.000000, 0.000040] }, { "keytime": 3740.997070, "scale": [ 0.231169, 0.231169, 0.231169], "translation": [ 0.338197, -0.000000, 0.000038] }, { "keytime": 3774.330322, "scale": [ 0.227986, 0.227986, 0.227986], "translation": [ 0.338196, -0.000000, 0.000036] }, { "keytime": 3807.663574, "scale": [ 0.224975, 0.224975, 0.224975], "translation": [ 0.338195, -0.000000, 0.000035] }, { "keytime": 3840.996826, "scale": [ 0.222017, 0.222017, 0.222017], "translation": [ 0.338194, -0.000000, 0.000034] }, { "keytime": 3874.330078, "scale": [ 0.219158, 0.219158, 0.219158], "translation": [ 0.338193, -0.000000, 0.000033] }, { "keytime": 3907.663330, "scale": [ 0.216553, 0.216553, 0.216553], "translation": [ 0.338192, -0.000000, 0.000032] }, { "keytime": 3940.996582, "scale": [ 0.214083, 0.214083, 0.214083], "translation": [ 0.338191, -0.000000, 0.000031] }, { "keytime": 3974.329834, "scale": [ 0.211684, 0.211684, 0.211684], "translation": [ 0.338190, -0.000000, 0.000030] }, { "keytime": 4007.663086, "scale": [ 0.209505, 0.209505, 0.209505], "translation": [ 0.338190, -0.000000, 0.000029] }, { "keytime": 4040.996338, "scale": [ 0.207483, 0.207483, 0.207483], "translation": [ 0.338189, -0.000000, 0.000028] }, { "keytime": 4074.329590, "scale": [ 0.205619, 0.205619, 0.205619], "translation": [ 0.338188, -0.000000, 0.000027] }, { "keytime": 4107.663086, "scale": [ 0.203988, 0.203988, 0.203988], "translation": [ 0.338187, -0.000000, 0.000025] }, { "keytime": 4140.996094, "scale": [ 0.202536, 0.202536, 0.202536], "translation": [ 0.338186, 0.000000, 0.000024] }, { "keytime": 4174.329590, "scale": [ 0.201237, 0.201237, 0.201237], "translation": [ 0.338185, 0.000000, 0.000023] }, { "keytime": 4207.663086, "scale": [ 0.200177, 0.200177, 0.200177], "translation": [ 0.338184, 0.000000, 0.000022] }, { "keytime": 4240.996582, "scale": [ 0.199392, 0.199392, 0.199392], "translation": [ 0.338183, 0.000000, 0.000021] }, { "keytime": 4274.330078, "scale": [ 0.198811, 0.198811, 0.198811], "translation": [ 0.338182, 0.000000, 0.000020] }, { "keytime": 4307.663574, "scale": [ 0.198482, 0.198482, 0.198482], "translation": [ 0.338181, 0.000000, 0.000019] }, { "keytime": 4340.997070, "scale": [ 0.200200, 0.200200, 0.200200], "translation": [ 0.338180, 0.000000, 0.000018] }, { "keytime": 4374.330566, "scale": [ 0.208762, 0.208762, 0.208762], "translation": [ 0.338179, 0.000000, 0.000017] }, { "keytime": 4407.664062, "scale": [ 0.233695, 0.233695, 0.233695], "translation": [ 0.338178, 0.000000, 0.000016] }, { "keytime": 4440.997559, "scale": [ 0.270767, 0.270767, 0.270767], "translation": [ 0.338177, 0.000000, 0.000014] }, { "keytime": 4474.331055, "scale": [ 0.321036, 0.321036, 0.321036], "translation": [ 0.338176, 0.000000, 0.000013] }, { "keytime": 4507.664551, "scale": [ 0.380502, 0.380502, 0.380502], "translation": [ 0.338175, 0.000000, 0.000012] }, { "keytime": 4540.998047, "scale": [ 0.449405, 0.449405, 0.449406], "translation": [ 0.338174, 0.000000, 0.000011] }, { "keytime": 4574.331543, "scale": [ 0.528521, 0.528521, 0.528521], "translation": [ 0.338173, 0.000000, 0.000010] }, { "keytime": 4607.665039, "scale": [ 0.607649, 0.607649, 0.607649], "translation": [ 0.338172, 0.000000, 0.000009] }, { "keytime": 4640.998535, "scale": [ 0.686172, 0.686172, 0.686172], "translation": [ 0.338171, 0.000000, 0.000008] }, { "keytime": 4674.332031, "scale": [ 0.763564, 0.763564, 0.763564], "translation": [ 0.338170, 0.000000, 0.000007] }, { "keytime": 4707.665527, "scale": [ 0.832468, 0.832468, 0.832468], "translation": [ 0.338169, 0.000000, 0.000006] }, { "keytime": 4740.999023, "scale": [ 0.889327, 0.889327, 0.889327], "translation": [ 0.338168, 0.000000, 0.000005] }, { "keytime": 4774.332520, "scale": [ 0.936403, 0.936403, 0.936403], "translation": [ 0.338167, 0.000000, 0.000003] }, { "keytime": 4807.666016, "scale": [ 0.969984, 0.969984, 0.969984], "translation": [ 0.338166, 0.000000, 0.000002] }, { "keytime": 4832.000000, "scale": [ 0.989001, 0.989001, 0.989001], "translation": [ 0.338165, 0.000000, 0.000002] } ] }, { "boneId": "Bone_019", "keyframes": [ { "keytime": 41.000000, "scale": [ 0.200000, 0.200000, 0.200000] }, { "keytime": 307.666656, "scale": [ 0.200220, 0.200220, 0.200220] }, { "keytime": 341.000000, "scale": [ 0.200287, 0.200287, 0.200287] }, { "keytime": 407.666687, "scale": [ 0.200646, 0.200646, 0.200646] }, { "keytime": 441.000031, "scale": [ 0.200832, 0.200832, 0.200832] }, { "keytime": 507.666718, "scale": [ 0.201191, 0.201191, 0.201191] }, { "keytime": 541.000061, "scale": [ 0.201376, 0.201376, 0.201376] }, { "keytime": 607.666687, "scale": [ 0.202166, 0.202166, 0.202166] }, { "keytime": 641.000000, "scale": [ 0.202572, 0.202572, 0.202572] }, { "keytime": 674.333313, "scale": [ 0.203013, 0.203013, 0.203013] }, { "keytime": 740.999939, "scale": [ 0.204180, 0.204180, 0.204180] }, { "keytime": 774.333252, "scale": [ 0.204917, 0.204917, 0.204917] }, { "keytime": 807.666565, "scale": [ 0.205682, 0.205682, 0.205682] }, { "keytime": 840.999878, "scale": [ 0.206492, 0.206492, 0.206492] }, { "keytime": 874.333191, "scale": [ 0.207490, 0.207490, 0.207490] }, { "keytime": 907.666504, "scale": [ 0.208458, 0.208458, 0.208458] }, { "keytime": 940.999817, "scale": [ 0.209588, 0.209588, 0.209588] }, { "keytime": 974.333130, "scale": [ 0.210814, 0.210814, 0.210814] }, { "keytime": 1007.666443, "scale": [ 0.212058, 0.212058, 0.212058] }, { "keytime": 1040.999756, "scale": [ 0.213482, 0.213482, 0.213482] }, { "keytime": 1074.333130, "scale": [ 0.214949, 0.214949, 0.214949] }, { "keytime": 1107.666504, "scale": [ 0.216549, 0.216549, 0.216549] }, { "keytime": 1140.999878, "scale": [ 0.218213, 0.218213, 0.218213] }, { "keytime": 1174.333252, "scale": [ 0.219985, 0.219985, 0.219985] }, { "keytime": 1207.666626, "scale": [ 0.221888, 0.221888, 0.221888] }, { "keytime": 1241.000000, "scale": [ 0.223848, 0.223848, 0.223848] }, { "keytime": 1274.333374, "scale": [ 0.225926, 0.225926, 0.225926] }, { "keytime": 1307.666748, "scale": [ 0.228063, 0.228063, 0.228063] }, { "keytime": 1341.000122, "scale": [ 0.230322, 0.230322, 0.230321] }, { "keytime": 1407.666870, "scale": [ 0.235044, 0.235044, 0.235044] }, { "keytime": 1441.000244, "scale": [ 0.237636, 0.237636, 0.237636] }, { "keytime": 1474.333618, "scale": [ 0.240208, 0.240208, 0.240208] }, { "keytime": 1507.666992, "scale": [ 0.242826, 0.242826, 0.242826] }, { "keytime": 1541.000366, "scale": [ 0.245678, 0.245678, 0.245678] }, { "keytime": 1574.333740, "scale": [ 0.248446, 0.248446, 0.248446] }, { "keytime": 1607.667114, "scale": [ 0.251348, 0.251347, 0.251347] }, { "keytime": 1641.000488, "scale": [ 0.254386, 0.254386, 0.254386] }, { "keytime": 1674.333862, "scale": [ 0.257374, 0.257374, 0.257374] }, { "keytime": 1707.667236, "scale": [ 0.260487, 0.260487, 0.260487] }, { "keytime": 1741.000610, "scale": [ 0.263695, 0.263695, 0.263695] }, { "keytime": 1774.333984, "scale": [ 0.266993, 0.266993, 0.266993] }, { "keytime": 1807.667358, "scale": [ 0.270519, 0.270519, 0.270519] }, { "keytime": 1841.000732, "scale": [ 0.274419, 0.274419, 0.274419] }, { "keytime": 1874.334106, "scale": [ 0.278462, 0.278462, 0.278462] }, { "keytime": 1907.667480, "scale": [ 0.282845, 0.282845, 0.282845] }, { "keytime": 1941.000854, "scale": [ 0.287625, 0.287625, 0.287625] }, { "keytime": 1974.334229, "scale": [ 0.292524, 0.292524, 0.292524] }, { "keytime": 2007.667603, "scale": [ 0.297676, 0.297676, 0.297676] }, { "keytime": 2041.000977, "scale": [ 0.303255, 0.303255, 0.303255] }, { "keytime": 2074.334473, "scale": [ 0.309011, 0.309011, 0.309011] }, { "keytime": 2107.667725, "scale": [ 0.315017, 0.315017, 0.315017] }, { "keytime": 2141.000977, "scale": [ 0.321468, 0.321468, 0.321468] }, { "keytime": 2174.334229, "scale": [ 0.327982, 0.327982, 0.327982] }, { "keytime": 2207.667480, "scale": [ 0.334749, 0.334749, 0.334749] }, { "keytime": 2241.000732, "scale": [ 0.342056, 0.342056, 0.342056] }, { "keytime": 2274.333984, "scale": [ 0.349398, 0.349398, 0.349398] }, { "keytime": 2307.667236, "scale": [ 0.356979, 0.356979, 0.356979] }, { "keytime": 2374.333740, "scale": [ 0.373102, 0.373102, 0.373102] }, { "keytime": 2407.666992, "scale": [ 0.381470, 0.381470, 0.381470] }, { "keytime": 2441.000244, "scale": [ 0.390323, 0.390323, 0.390323] }, { "keytime": 2474.333496, "scale": [ 0.399141, 0.399141, 0.399141] }, { "keytime": 2507.666748, "scale": [ 0.408173, 0.408173, 0.408173] }, { "keytime": 2541.000000, "scale": [ 0.417703, 0.417703, 0.417703] }, { "keytime": 2574.333252, "scale": [ 0.427227, 0.427227, 0.427227] }, { "keytime": 2607.666504, "scale": [ 0.436945, 0.436945, 0.436945] }, { "keytime": 2640.999756, "scale": [ 0.446850, 0.446850, 0.446850] }, { "keytime": 2674.333008, "scale": [ 0.457250, 0.457249, 0.457249] }, { "keytime": 2707.666260, "scale": [ 0.467524, 0.467524, 0.467524] }, { "keytime": 2740.999512, "scale": [ 0.478019, 0.478019, 0.478019] }, { "keytime": 2774.332764, "scale": [ 0.488991, 0.488991, 0.488991] }, { "keytime": 2807.666016, "scale": [ 0.499793, 0.499793, 0.499793] }, { "keytime": 2840.999268, "scale": [ 0.510732, 0.510732, 0.510732] }, { "keytime": 2874.332520, "scale": [ 0.522145, 0.522145, 0.522145] }, { "keytime": 2907.665771, "scale": [ 0.533449, 0.533449, 0.533449] }, { "keytime": 2940.999023, "scale": [ 0.544755, 0.544755, 0.544755] }, { "keytime": 2974.332275, "scale": [ 0.556524, 0.556524, 0.556524] }, { "keytime": 3040.998779, "scale": [ 0.579621, 0.579621, 0.579621] }, { "keytime": 3074.332031, "scale": [ 0.591712, 0.591712, 0.591712] }, { "keytime": 3140.998535, "scale": [ 0.615195, 0.615195, 0.615195] }, { "keytime": 3174.331787, "scale": [ 0.627292, 0.627292, 0.627292] }, { "keytime": 3240.998291, "scale": [ 0.650774, 0.650775, 0.650775] }, { "keytime": 3274.331543, "scale": [ 0.662872, 0.662872, 0.662872] }, { "keytime": 3340.998047, "scale": [ 0.686354, 0.686354, 0.686354] }, { "keytime": 3374.331299, "scale": [ 0.698451, 0.698451, 0.698451] }, { "keytime": 3407.664551, "scale": [ 0.709952, 0.709953, 0.709952] }, { "keytime": 3440.997803, "scale": [ 0.721451, 0.721451, 0.721451] }, { "keytime": 3474.331055, "scale": [ 0.733165, 0.733165, 0.733165] }, { "keytime": 3540.997559, "scale": [ 0.755621, 0.755622, 0.755621] }, { "keytime": 3574.330811, "scale": [ 0.766936, 0.766936, 0.766936] }, { "keytime": 3607.664062, "scale": [ 0.777765, 0.777765, 0.777765] }, { "keytime": 3640.997314, "scale": [ 0.788442, 0.788442, 0.788442] }, { "keytime": 3674.330566, "scale": [ 0.799269, 0.799269, 0.799269] }, { "keytime": 3707.663818, "scale": [ 0.809599, 0.809599, 0.809599] }, { "keytime": 3740.997070, "scale": [ 0.819685, 0.819685, 0.819685] }, { "keytime": 3774.330322, "scale": [ 0.829872, 0.829872, 0.829872] }, { "keytime": 3807.663574, "scale": [ 0.839549, 0.839549, 0.839549] }, { "keytime": 3840.996826, "scale": [ 0.849016, 0.849016, 0.849016] }, { "keytime": 3874.330078, "scale": [ 0.858532, 0.858532, 0.858532] }, { "keytime": 3907.663330, "scale": [ 0.867462, 0.867462, 0.867462] }, { "keytime": 3940.996582, "scale": [ 0.876154, 0.876154, 0.876154] }, { "keytime": 3974.329834, "scale": [ 0.884854, 0.884854, 0.884854] }, { "keytime": 4007.663086, "scale": [ 0.893045, 0.893045, 0.893045] }, { "keytime": 4040.996338, "scale": [ 0.900972, 0.900973, 0.900972] }, { "keytime": 4074.329590, "scale": [ 0.908787, 0.908787, 0.908787] }, { "keytime": 4107.663086, "scale": [ 0.916094, 0.916094, 0.916094] }, { "keytime": 4140.996094, "scale": [ 0.923131, 0.923131, 0.923131] }, { "keytime": 4174.329590, "scale": [ 0.930091, 0.930091, 0.930091] }, { "keytime": 4207.663086, "scale": [ 0.936558, 0.936558, 0.936558] }, { "keytime": 4240.996582, "scale": [ 0.942652, 0.942652, 0.942652] }, { "keytime": 4274.330078, "scale": [ 0.948635, 0.948635, 0.948634] }, { "keytime": 4307.663574, "scale": [ 0.954146, 0.954146, 0.954146] }, { "keytime": 4340.997070, "scale": [ 0.959369, 0.959369, 0.959369] }, { "keytime": 4374.330566, "scale": [ 0.964436, 0.964436, 0.964436] }, { "keytime": 4407.664062, "scale": [ 0.968962, 0.968962, 0.968962] }, { "keytime": 4440.997559, "scale": [ 0.973196, 0.973195, 0.973196] }, { "keytime": 4474.331055, "scale": [ 0.977249, 0.977249, 0.977249] }, { "keytime": 4507.664551, "scale": [ 0.980884, 0.980884, 0.980884] }, { "keytime": 4540.998047, "scale": [ 0.984213, 0.984213, 0.984213] }, { "keytime": 4574.331543, "scale": [ 0.987245, 0.987245, 0.987245] }, { "keytime": 4607.665039, "scale": [ 0.989883, 0.989883, 0.989883] }, { "keytime": 4640.998535, "scale": [ 0.992229, 0.992229, 0.992229] }, { "keytime": 4674.332031, "scale": [ 0.994336, 0.994336, 0.994336] }, { "keytime": 4707.665527, "scale": [ 0.996079, 0.996079, 0.996079] }, { "keytime": 4740.999023, "scale": [ 0.997438, 0.997438, 0.997438] }, { "keytime": 4774.332520, "scale": [ 0.998539, 0.998539, 0.998539] }, { "keytime": 4807.666016, "scale": [ 0.999313, 0.999312, 0.999312] }, { "keytime": 4832.000000, "scale": [ 0.999748, 0.999748, 0.999748] } ] }, { "boneId": "Bone_020", "keyframes": [ { "keytime": 41.000000, "scale": [ 1.000000, 1.000000, 1.000000] }, { "keytime": 74.333328, "scale": [ 0.999539, 0.999539, 0.999539] }, { "keytime": 107.666664, "scale": [ 0.998395, 0.998396, 0.998396] }, { "keytime": 141.000000, "scale": [ 0.996495, 0.996495, 0.996495] }, { "keytime": 174.333328, "scale": [ 0.993948, 0.993948, 0.993948] }, { "keytime": 207.666656, "scale": [ 0.990690, 0.990690, 0.990690] }, { "keytime": 240.999985, "scale": [ 0.986510, 0.986510, 0.986509] }, { "keytime": 274.333313, "scale": [ 0.981478, 0.981478, 0.981478] }, { "keytime": 307.666656, "scale": [ 0.975880, 0.975880, 0.975880] }, { "keytime": 341.000000, "scale": [ 0.969374, 0.969375, 0.969375] }, { "keytime": 374.333344, "scale": [ 0.962352, 0.962352, 0.962352] }, { "keytime": 407.666687, "scale": [ 0.954404, 0.954405, 0.954405] }, { "keytime": 441.000031, "scale": [ 0.945505, 0.945505, 0.945505] }, { "keytime": 474.333374, "scale": [ 0.936170, 0.936170, 0.936170] }, { "keytime": 507.666718, "scale": [ 0.926164, 0.926164, 0.926164] }, { "keytime": 541.000061, "scale": [ 0.915142, 0.915142, 0.915142] }, { "keytime": 574.333374, "scale": [ 0.903561, 0.903561, 0.903561] }, { "keytime": 607.666687, "scale": [ 0.891344, 0.891344, 0.891344] }, { "keytime": 641.000000, "scale": [ 0.878101, 0.878101, 0.878101] }, { "keytime": 674.333313, "scale": [ 0.864624, 0.864624, 0.864624] }, { "keytime": 707.666626, "scale": [ 0.850533, 0.850533, 0.850533] }, { "keytime": 740.999939, "scale": [ 0.835682, 0.835682, 0.835682] }, { "keytime": 774.333252, "scale": [ 0.819810, 0.819810, 0.819810] }, { "keytime": 807.666565, "scale": [ 0.803862, 0.803862, 0.803862] }, { "keytime": 840.999878, "scale": [ 0.787408, 0.787408, 0.787408] }, { "keytime": 874.333191, "scale": [ 0.769929, 0.769929, 0.769929] }, { "keytime": 907.666504, "scale": [ 0.752363, 0.752363, 0.752363] }, { "keytime": 940.999817, "scale": [ 0.734387, 0.734387, 0.734387] }, { "keytime": 974.333130, "scale": [ 0.715462, 0.715462, 0.715462] }, { "keytime": 1007.666443, "scale": [ 0.696731, 0.696731, 0.696731] }, { "keytime": 1040.999756, "scale": [ 0.677662, 0.677662, 0.677662] }, { "keytime": 1074.333130, "scale": [ 0.657637, 0.657637, 0.657637] }, { "keytime": 1107.666504, "scale": [ 0.637958, 0.637958, 0.637958] }, { "keytime": 1140.999878, "scale": [ 0.618080, 0.618080, 0.618080] }, { "keytime": 1174.333252, "scale": [ 0.597405, 0.597406, 0.597406] }, { "keytime": 1207.666626, "scale": [ 0.577149, 0.577149, 0.577149] }, { "keytime": 1241.000000, "scale": [ 0.556279, 0.556279, 0.556279] }, { "keytime": 1307.666748, "scale": [ 0.515766, 0.515766, 0.515766] }, { "keytime": 1341.000122, "scale": [ 0.494896, 0.494896, 0.494896] }, { "keytime": 1374.333496, "scale": [ 0.474639, 0.474639, 0.474639] }, { "keytime": 1407.666870, "scale": [ 0.454629, 0.454629, 0.454629] }, { "keytime": 1441.000244, "scale": [ 0.434202, 0.434202, 0.434202] }, { "keytime": 1474.333618, "scale": [ 0.414596, 0.414596, 0.414596] }, { "keytime": 1507.666992, "scale": [ 0.395236, 0.395236, 0.395236] }, { "keytime": 1541.000366, "scale": [ 0.375589, 0.375590, 0.375589] }, { "keytime": 1574.333740, "scale": [ 0.356961, 0.356961, 0.356961] }, { "keytime": 1607.667114, "scale": [ 0.338702, 0.338702, 0.338702] }, { "keytime": 1641.000488, "scale": [ 0.320305, 0.320305, 0.320305] }, { "keytime": 1674.333862, "scale": [ 0.302880, 0.302880, 0.302880] }, { "keytime": 1707.667236, "scale": [ 0.285916, 0.285916, 0.285916] }, { "keytime": 1741.000610, "scale": [ 0.269100, 0.269100, 0.269100] }, { "keytime": 1774.333984, "scale": [ 0.253315, 0.253315, 0.253315] }, { "keytime": 1807.667358, "scale": [ 0.238066, 0.238066, 0.238066] }, { "keytime": 1841.000732, "scale": [ 0.222944, 0.222944, 0.222944] }, { "keytime": 1874.334106, "scale": [ 0.208853, 0.208854, 0.208854] }, { "keytime": 1907.667480, "scale": [ 0.195564, 0.195564, 0.195564] }, { "keytime": 1941.000854, "scale": [ 0.182516, 0.182516, 0.182516] }, { "keytime": 1974.334229, "scale": [ 0.170499, 0.170499, 0.170499] }, { "keytime": 2007.667603, "scale": [ 0.159123, 0.159123, 0.159123] }, { "keytime": 2041.000977, "scale": [ 0.148102, 0.148102, 0.148102] }, { "keytime": 2074.334473, "scale": [ 0.138304, 0.138304, 0.138305] }, { "keytime": 2107.667725, "scale": [ 0.129182, 0.129182, 0.129182] }, { "keytime": 2141.000977, "scale": [ 0.120498, 0.120498, 0.120498] }, { "keytime": 2174.334229, "scale": [ 0.112767, 0.112767, 0.112767] }, { "keytime": 2207.667480, "scale": [ 0.105744, 0.105745, 0.105745] }, { "keytime": 2241.000732, "scale": [ 0.099457, 0.099457, 0.099457] }, { "keytime": 2274.333984, "scale": [ 0.094078, 0.094078, 0.094078] }, { "keytime": 2307.667236, "scale": [ 0.089393, 0.089393, 0.089393] }, { "keytime": 2341.000488, "scale": [ 0.085304, 0.085304, 0.085304] }, { "keytime": 2374.333740, "scale": [ 0.082046, 0.082046, 0.082046] }, { "keytime": 2407.666992, "scale": [ 0.079717, 0.079717, 0.079717] }, { "keytime": 2441.000244, "scale": [ 0.078033, 0.078033, 0.078033] }, { "keytime": 2474.333496, "scale": [ 0.077104, 0.077104, 0.077104] }, { "keytime": 2507.666748, "scale": [ 0.076865, 0.076865, 0.076865] }, { "keytime": 2541.000000, "scale": [ 0.077374, 0.077374, 0.077374] }, { "keytime": 2574.333252, "scale": [ 0.078861, 0.078861, 0.078861] }, { "keytime": 2607.666504, "scale": [ 0.081084, 0.081084, 0.081084] }, { "keytime": 2640.999756, "scale": [ 0.084048, 0.084048, 0.084048] }, { "keytime": 2674.333008, "scale": [ 0.087890, 0.087890, 0.087890] }, { "keytime": 2707.666260, "scale": [ 0.092391, 0.092391, 0.092391] }, { "keytime": 2740.999512, "scale": [ 0.097881, 0.097881, 0.097881] }, { "keytime": 2774.332764, "scale": [ 0.104313, 0.104313, 0.104313] }, { "keytime": 2807.666016, "scale": [ 0.111319, 0.111319, 0.111319] }, { "keytime": 2840.999268, "scale": [ 0.119065, 0.119065, 0.119065] }, { "keytime": 2874.332520, "scale": [ 0.127846, 0.127846, 0.127846] }, { "keytime": 2907.665771, "scale": [ 0.137347, 0.137347, 0.137347] }, { "keytime": 2940.999023, "scale": [ 0.147567, 0.147567, 0.147567] }, { "keytime": 2974.332275, "scale": [ 0.158846, 0.158846, 0.158846] }, { "keytime": 3007.665527, "scale": [ 0.170508, 0.170508, 0.170508] }, { "keytime": 3040.998779, "scale": [ 0.182889, 0.182889, 0.182889] }, { "keytime": 3074.332031, "scale": [ 0.196558, 0.196558, 0.196558] }, { "keytime": 3107.665283, "scale": [ 0.210503, 0.210503, 0.210503] }, { "keytime": 3140.998535, "scale": [ 0.225084, 0.225084, 0.225084] }, { "keytime": 3174.331787, "scale": [ 0.240762, 0.240762, 0.240762] }, { "keytime": 3207.665039, "scale": [ 0.256600, 0.256600, 0.256600] }, { "keytime": 3240.998291, "scale": [ 0.273190, 0.273190, 0.273190] }, { "keytime": 3274.331543, "scale": [ 0.290838, 0.290838, 0.290839] }, { "keytime": 3307.664795, "scale": [ 0.308490, 0.308490, 0.308490] }, { "keytime": 3340.998047, "scale": [ 0.326622, 0.326622, 0.326622] }, { "keytime": 3374.331299, "scale": [ 0.345794, 0.345794, 0.345794] }, { "keytime": 3407.664551, "scale": [ 0.364948, 0.364948, 0.364948] }, { "keytime": 3440.997803, "scale": [ 0.384462, 0.384462, 0.384462] }, { "keytime": 3474.331055, "scale": [ 0.404912, 0.404912, 0.404912] }, { "keytime": 3507.664307, "scale": [ 0.425058, 0.425058, 0.425058] }, { "keytime": 3540.997559, "scale": [ 0.445471, 0.445471, 0.445471] }, { "keytime": 3574.330811, "scale": [ 0.466776, 0.466776, 0.466776] }, { "keytime": 3607.664062, "scale": [ 0.487665, 0.487665, 0.487665] }, { "keytime": 3640.997314, "scale": [ 0.508627, 0.508627, 0.508627] }, { "keytime": 3674.330566, "scale": [ 0.530224, 0.530224, 0.530224] }, { "keytime": 3740.997070, "scale": [ 0.572147, 0.572147, 0.572147] }, { "keytime": 3774.330322, "scale": [ 0.593744, 0.593744, 0.593744] }, { "keytime": 3807.663574, "scale": [ 0.614572, 0.614572, 0.614572] }, { "keytime": 3840.996826, "scale": [ 0.635197, 0.635197, 0.635197] }, { "keytime": 3874.330078, "scale": [ 0.656229, 0.656229, 0.656229] }, { "keytime": 3907.663330, "scale": [ 0.676298, 0.676298, 0.676298] }, { "keytime": 3940.996582, "scale": [ 0.696059, 0.696059, 0.696059] }, { "keytime": 3974.329834, "scale": [ 0.716061, 0.716061, 0.716061] }, { "keytime": 4007.663086, "scale": [ 0.735092, 0.735092, 0.735092] }, { "keytime": 4040.996338, "scale": [ 0.753701, 0.753700, 0.753701] }, { "keytime": 4074.329590, "scale": [ 0.772260, 0.772260, 0.772260] }, { "keytime": 4107.663086, "scale": [ 0.789763, 0.789763, 0.789763] }, { "keytime": 4140.996094, "scale": [ 0.806747, 0.806747, 0.806747] }, { "keytime": 4174.329590, "scale": [ 0.823670, 0.823670, 0.823670] }, { "keytime": 4207.663086, "scale": [ 0.839508, 0.839508, 0.839508] }, { "keytime": 4240.996582, "scale": [ 0.854551, 0.854551, 0.854551] }, { "keytime": 4274.330078, "scale": [ 0.869398, 0.869398, 0.869398] }, { "keytime": 4307.663574, "scale": [ 0.883147, 0.883147, 0.883147] }, { "keytime": 4340.997070, "scale": [ 0.896238, 0.896238, 0.896238] }, { "keytime": 4374.330566, "scale": [ 0.908995, 0.908995, 0.908995] }, { "keytime": 4407.664062, "scale": [ 0.920448, 0.920448, 0.920448] }, { "keytime": 4440.997559, "scale": [ 0.931196, 0.931196, 0.931196] }, { "keytime": 4474.331055, "scale": [ 0.941517, 0.941517, 0.941517] }, { "keytime": 4507.664551, "scale": [ 0.950799, 0.950798, 0.950799] }, { "keytime": 4540.998047, "scale": [ 0.959321, 0.959321, 0.959321] }, { "keytime": 4574.331543, "scale": [ 0.967104, 0.967104, 0.967104] }, { "keytime": 4607.665039, "scale": [ 0.973887, 0.973887, 0.973887] }, { "keytime": 4640.998535, "scale": [ 0.979927, 0.979927, 0.979927] }, { "keytime": 4674.332031, "scale": [ 0.985360, 0.985360, 0.985360] }, { "keytime": 4707.665527, "scale": [ 0.989861, 0.989860, 0.989861] }, { "keytime": 4740.999023, "scale": [ 0.993373, 0.993373, 0.993373] }, { "keytime": 4774.332520, "scale": [ 0.996219, 0.996219, 0.996219] }, { "keytime": 4807.666016, "scale": [ 0.998221, 0.998221, 0.998221] }, { "keytime": 4832.000000, "scale": [ 0.999347, 0.999347, 0.999347] } ] }, { "boneId": "Bone_021", "keyframes": [ { "keytime": 41.000000, "scale": [ 0.560000, 0.560000, 0.560000], "translation": [ 0.544526, 0.000002, 0.000001] }, { "keytime": 74.333328, "scale": [ 0.559886, 0.559886, 0.559886], "translation": [ 0.544526, 0.000002, 0.000001] }, { "keytime": 107.666664, "scale": [ 0.559605, 0.559605, 0.559605], "translation": [ 0.544526, 0.000002, 0.000001] }, { "keytime": 141.000000, "scale": [ 0.559137, 0.559137, 0.559137], "translation": [ 0.544526, 0.000002, 0.000001] }, { "keytime": 174.333328, "scale": [ 0.558511, 0.558511, 0.558511], "translation": [ 0.544526, 0.000002, 0.000001] }, { "keytime": 207.666656, "scale": [ 0.557710, 0.557710, 0.557710], "translation": [ 0.544526, 0.000002, 0.000001] }, { "keytime": 240.999985, "scale": [ 0.556682, 0.556682, 0.556682], "translation": [ 0.544526, 0.000002, 0.000001] }, { "keytime": 274.333313, "scale": [ 0.555445, 0.555445, 0.555445], "translation": [ 0.544526, 0.000002, 0.000001] }, { "keytime": 307.666656, "scale": [ 0.554069, 0.554069, 0.554068], "translation": [ 0.544526, 0.000002, 0.000001] }, { "keytime": 341.000000, "scale": [ 0.552468, 0.552468, 0.552468], "translation": [ 0.544526, 0.000002, 0.000001] }, { "keytime": 374.333344, "scale": [ 0.550739, 0.550739, 0.550739], "translation": [ 0.544526, 0.000002, 0.000001] }, { "keytime": 407.666687, "scale": [ 0.548781, 0.548781, 0.548781], "translation": [ 0.544526, 0.000002, 0.000001] }, { "keytime": 441.000031, "scale": [ 0.546585, 0.546585, 0.546585], "translation": [ 0.544526, 0.000001, 0.000001] }, { "keytime": 474.333374, "scale": [ 0.544279, 0.544279, 0.544278], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 507.666718, "scale": [ 0.541802, 0.541802, 0.541802], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 541.000061, "scale": [ 0.539070, 0.539070, 0.539070], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 574.333374, "scale": [ 0.536191, 0.536191, 0.536191], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 607.666687, "scale": [ 0.533145, 0.533145, 0.533145], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 641.000000, "scale": [ 0.529834, 0.529834, 0.529834], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 674.333313, "scale": [ 0.526454, 0.526454, 0.526454], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 707.666626, "scale": [ 0.522907, 0.522907, 0.522907], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 740.999939, "scale": [ 0.519150, 0.519150, 0.519150], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 774.333252, "scale": [ 0.515116, 0.515116, 0.515116], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 807.666565, "scale": [ 0.511042, 0.511042, 0.511042], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 840.999878, "scale": [ 0.506817, 0.506817, 0.506817], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 874.333191, "scale": [ 0.502303, 0.502303, 0.502303], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 907.666504, "scale": [ 0.497728, 0.497728, 0.497728], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 940.999817, "scale": [ 0.493014, 0.493014, 0.493014], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 974.333130, "scale": [ 0.488014, 0.488013, 0.488013], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 1007.666443, "scale": [ 0.483025, 0.483025, 0.483025], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 1040.999756, "scale": [ 0.477904, 0.477904, 0.477903], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 1074.333130, "scale": [ 0.472461, 0.472461, 0.472461], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 1107.666504, "scale": [ 0.467003, 0.467003, 0.467003], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 1140.999878, "scale": [ 0.461484, 0.461484, 0.461484], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 1174.333252, "scale": [ 0.455732, 0.455732, 0.455732], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 1207.666626, "scale": [ 0.449939, 0.449939, 0.449939], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 1241.000000, "scale": [ 0.443970, 0.443970, 0.443970], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 1274.333374, "scale": [ 0.438004, 0.438004, 0.438004], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 1307.666748, "scale": [ 0.431979, 0.431979, 0.431979], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 1341.000122, "scale": [ 0.425717, 0.425717, 0.425717], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 1407.666870, "scale": [ 0.413227, 0.413227, 0.413227], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 1441.000244, "scale": [ 0.406793, 0.406793, 0.406793], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 1474.333618, "scale": [ 0.400458, 0.400458, 0.400458], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 1507.666992, "scale": [ 0.394031, 0.394031, 0.394031], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 1541.000366, "scale": [ 0.387409, 0.387409, 0.387409], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 1607.667114, "scale": [ 0.374555, 0.374555, 0.374555], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 1641.000488, "scale": [ 0.367934, 0.367934, 0.367934], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 1707.667236, "scale": [ 0.355080, 0.355080, 0.355080], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 1741.000610, "scale": [ 0.348549, 0.348549, 0.348549], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 1807.667358, "scale": [ 0.335876, 0.335876, 0.335876], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 1841.000732, "scale": [ 0.329347, 0.329347, 0.329347], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 1874.334106, "scale": [ 0.323011, 0.323011, 0.323011], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 1907.667480, "scale": [ 0.316886, 0.316886, 0.316886], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 1941.000854, "scale": [ 0.310577, 0.310577, 0.310577], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 1974.334229, "scale": [ 0.304557, 0.304557, 0.304557], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 2007.667603, "scale": [ 0.298643, 0.298643, 0.298643], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 2041.000977, "scale": [ 0.292549, 0.292549, 0.292549], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 2107.667725, "scale": [ 0.281227, 0.281227, 0.281227], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 2141.000977, "scale": [ 0.275544, 0.275544, 0.275544], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 2207.667480, "scale": [ 0.264811, 0.264811, 0.264811], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 2241.000732, "scale": [ 0.259529, 0.259529, 0.259529], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 2274.333984, "scale": [ 0.254538, 0.254538, 0.254538], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 2307.667236, "scale": [ 0.249678, 0.249678, 0.249678], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 2341.000488, "scale": [ 0.244816, 0.244816, 0.244816], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 2374.333740, "scale": [ 0.240239, 0.240239, 0.240239], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 2407.666992, "scale": [ 0.235855, 0.235855, 0.235855], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 2441.000244, "scale": [ 0.231494, 0.231494, 0.231494], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 2474.333496, "scale": [ 0.227416, 0.227416, 0.227416], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 2507.666748, "scale": [ 0.223491, 0.223491, 0.223491], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 2541.000000, "scale": [ 0.219615, 0.219615, 0.219615], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 2574.333252, "scale": [ 0.216069, 0.216069, 0.216069], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 2607.666504, "scale": [ 0.212684, 0.212684, 0.212684], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 2640.999756, "scale": [ 0.209463, 0.209463, 0.209463], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 2674.333008, "scale": [ 0.206319, 0.206319, 0.206319], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 2707.666260, "scale": [ 0.203439, 0.203439, 0.203439], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 2740.999512, "scale": [ 0.200783, 0.200783, 0.200783], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 2774.332764, "scale": [ 0.198222, 0.198222, 0.198221], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 2807.666016, "scale": [ 0.195910, 0.195910, 0.195910], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 2840.999268, "scale": [ 0.193770, 0.193770, 0.193769], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 2874.332520, "scale": [ 0.191749, 0.191749, 0.191749], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 2907.665771, "scale": [ 0.190018, 0.190018, 0.190018], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 2940.999023, "scale": [ 0.188458, 0.188458, 0.188458], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 2974.332275, "scale": [ 0.187031, 0.187031, 0.187031], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 3007.665527, "scale": [ 0.185821, 0.185821, 0.185821], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 3040.998779, "scale": [ 0.184789, 0.184789, 0.184789], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 3074.332031, "scale": [ 0.183956, 0.183956, 0.183956], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 3107.665283, "scale": [ 0.183325, 0.183325, 0.183325], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 3140.998535, "scale": [ 0.182863, 0.182863, 0.182863], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 3174.331787, "scale": [ 0.182567, 0.182567, 0.182567], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 3207.665039, "scale": [ 0.182453, 0.182453, 0.182453], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 3240.998291, "scale": [ 0.183322, 0.183322, 0.183322], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 3274.331543, "scale": [ 0.185576, 0.185576, 0.185576], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 3307.664795, "scale": [ 0.189132, 0.189132, 0.189132], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 3340.998047, "scale": [ 0.194021, 0.194021, 0.194021], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 3374.331299, "scale": [ 0.200512, 0.200512, 0.200512], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 3407.664551, "scale": [ 0.208608, 0.208609, 0.208609], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 3440.997803, "scale": [ 0.218037, 0.218037, 0.218037], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 3474.331055, "scale": [ 0.229141, 0.229141, 0.229141], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 3507.664307, "scale": [ 0.241255, 0.241255, 0.241255], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 3540.997559, "scale": [ 0.254714, 0.254714, 0.254714], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 3574.330811, "scale": [ 0.270290, 0.270290, 0.270290], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 3607.664062, "scale": [ 0.286673, 0.286673, 0.286673], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 3640.997314, "scale": [ 0.304235, 0.304235, 0.304235], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 3674.330566, "scale": [ 0.323541, 0.323541, 0.323541], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 3707.663818, "scale": [ 0.343411, 0.343411, 0.343411], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 3740.997070, "scale": [ 0.364626, 0.364626, 0.364626], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 3774.330322, "scale": [ 0.387445, 0.387444, 0.387445], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 3807.663574, "scale": [ 0.410471, 0.410471, 0.410471], "translation": [ 0.544527, 0.000001, 0.000001] }, { "keytime": 3840.996826, "scale": [ 0.434278, 0.434278, 0.434278], "translation": [ 0.544527, 0.000000, 0.000001] }, { "keytime": 3874.330078, "scale": [ 0.459566, 0.459566, 0.459566], "translation": [ 0.544527, 0.000000, 0.000001] }, { "keytime": 3907.663330, "scale": [ 0.484880, 0.484880, 0.484880], "translation": [ 0.544527, 0.000000, 0.000001] }, { "keytime": 3940.996582, "scale": [ 0.510635, 0.510635, 0.510635], "translation": [ 0.544527, 0.000000, 0.000001] }, { "keytime": 3974.329834, "scale": [ 0.537536, 0.537536, 0.537536], "translation": [ 0.544527, 0.000000, 0.000001] }, { "keytime": 4007.663086, "scale": [ 0.563901, 0.563901, 0.563901], "translation": [ 0.544527, 0.000000, 0.000001] }, { "keytime": 4040.996338, "scale": [ 0.590422, 0.590422, 0.590422], "translation": [ 0.544527, 0.000000, 0.000001] }, { "keytime": 4074.329590, "scale": [ 0.617746, 0.617746, 0.617746], "translation": [ 0.544527, 0.000000, 0.000001] }, { "keytime": 4107.663086, "scale": [ 0.644118, 0.644118, 0.644118], "translation": [ 0.544527, 0.000000, 0.000001] }, { "keytime": 4140.996094, "scale": [ 0.670246, 0.670246, 0.670246], "translation": [ 0.544527, 0.000000, 0.000000] }, { "keytime": 4174.329590, "scale": [ 0.696803, 0.696803, 0.696803], "translation": [ 0.544527, 0.000000, 0.000000] }, { "keytime": 4207.663086, "scale": [ 0.722126, 0.722126, 0.722126], "translation": [ 0.544527, 0.000000, 0.000000] }, { "keytime": 4240.996582, "scale": [ 0.746686, 0.746686, 0.746686], "translation": [ 0.544527, 0.000000, 0.000000] }, { "keytime": 4274.330078, "scale": [ 0.771265, 0.771265, 0.771265], "translation": [ 0.544527, 0.000000, 0.000000] }, { "keytime": 4307.663574, "scale": [ 0.794325, 0.794325, 0.794325], "translation": [ 0.544527, 0.000000, 0.000000] }, { "keytime": 4340.997070, "scale": [ 0.816538, 0.816538, 0.816538], "translation": [ 0.544527, 0.000000, 0.000000] }, { "keytime": 4374.330566, "scale": [ 0.838425, 0.838425, 0.838425], "translation": [ 0.544527, 0.000000, 0.000000] }, { "keytime": 4407.664062, "scale": [ 0.858308, 0.858308, 0.858309], "translation": [ 0.544527, 0.000000, 0.000000] }, { "keytime": 4440.997559, "scale": [ 0.877101, 0.877101, 0.877101], "translation": [ 0.544527, 0.000000, 0.000000] }, { "keytime": 4474.331055, "scale": [ 0.895269, 0.895269, 0.895269], "translation": [ 0.544527, 0.000000, 0.000000] }, { "keytime": 4507.664551, "scale": [ 0.911702, 0.911702, 0.911702], "translation": [ 0.544527, 0.000000, 0.000000] }, { "keytime": 4540.998047, "scale": [ 0.926869, 0.926869, 0.926869], "translation": [ 0.544527, 0.000000, 0.000000] }, { "keytime": 4574.331543, "scale": [ 0.940789, 0.940789, 0.940789], "translation": [ 0.544527, 0.000000, 0.000000] }, { "keytime": 4607.665039, "scale": [ 0.952955, 0.952955, 0.952955], "translation": [ 0.544527, 0.000000, 0.000000] }, { "keytime": 4640.998535, "scale": [ 0.963813, 0.963813, 0.963813], "translation": [ 0.544527, 0.000000, 0.000000] }, { "keytime": 4674.332031, "scale": [ 0.973597, 0.973597, 0.973597], "translation": [ 0.544527, 0.000000, 0.000000] }, { "keytime": 4707.665527, "scale": [ 0.981712, 0.981712, 0.981712], "translation": [ 0.544527, 0.000000, 0.000000] }, { "keytime": 4740.999023, "scale": [ 0.988049, 0.988049, 0.988049], "translation": [ 0.544527, 0.000000, 0.000000] }, { "keytime": 4774.332520, "scale": [ 0.993184, 0.993184, 0.993184], "translation": [ 0.544527, 0.000000, 0.000000] }, { "keytime": 4807.666016, "scale": [ 0.996794, 0.996794, 0.996794], "translation": [ 0.544527, 0.000000, 0.000000] }, { "keytime": 4832.000000, "scale": [ 0.998824, 0.998824, 0.998824], "translation": [ 0.544527, 0.000000, 0.000000] } ] }, { "boneId": "Bone_022", "keyframes": [ { "keytime": 41.000000, "scale": [ 0.659330, 0.659330, 0.659330] }, { "keytime": 74.333328, "scale": [ 0.659230, 0.659230, 0.659230] }, { "keytime": 107.666664, "scale": [ 0.658983, 0.658983, 0.658983] }, { "keytime": 141.000000, "scale": [ 0.658573, 0.658573, 0.658573] }, { "keytime": 174.333328, "scale": [ 0.658023, 0.658023, 0.658023] }, { "keytime": 207.666656, "scale": [ 0.657320, 0.657320, 0.657320] }, { "keytime": 240.999985, "scale": [ 0.656418, 0.656419, 0.656418] }, { "keytime": 274.333313, "scale": [ 0.655334, 0.655334, 0.655334] }, { "keytime": 307.666656, "scale": [ 0.654126, 0.654126, 0.654126] }, { "keytime": 341.000000, "scale": [ 0.652722, 0.652722, 0.652722] }, { "keytime": 374.333344, "scale": [ 0.651205, 0.651205, 0.651205] }, { "keytime": 407.666687, "scale": [ 0.649486, 0.649486, 0.649486] }, { "keytime": 441.000031, "scale": [ 0.647558, 0.647558, 0.647558] }, { "keytime": 474.333374, "scale": [ 0.645532, 0.645532, 0.645532] }, { "keytime": 507.666718, "scale": [ 0.643356, 0.643356, 0.643356] }, { "keytime": 541.000061, "scale": [ 0.640954, 0.640954, 0.640954] }, { "keytime": 574.333374, "scale": [ 0.638419, 0.638419, 0.638419] }, { "keytime": 607.666687, "scale": [ 0.635736, 0.635736, 0.635736] }, { "keytime": 641.000000, "scale": [ 0.632817, 0.632817, 0.632817] }, { "keytime": 674.333313, "scale": [ 0.629833, 0.629832, 0.629833] }, { "keytime": 707.666626, "scale": [ 0.626698, 0.626698, 0.626698] }, { "keytime": 740.999939, "scale": [ 0.623371, 0.623371, 0.623371] }, { "keytime": 774.333252, "scale": [ 0.619793, 0.619793, 0.619793] }, { "keytime": 807.666565, "scale": [ 0.616175, 0.616175, 0.616175] }, { "keytime": 840.999878, "scale": [ 0.612415, 0.612415, 0.612415] }, { "keytime": 874.333191, "scale": [ 0.608389, 0.608389, 0.608389] }, { "keytime": 907.666504, "scale": [ 0.604298, 0.604298, 0.604298] }, { "keytime": 940.999817, "scale": [ 0.600071, 0.600071, 0.600071] }, { "keytime": 1007.666443, "scale": [ 0.591081, 0.591081, 0.591081] }, { "keytime": 1040.999756, "scale": [ 0.586451, 0.586451, 0.586451] }, { "keytime": 1074.333130, "scale": [ 0.581511, 0.581511, 0.581511] }, { "keytime": 1107.666504, "scale": [ 0.576589, 0.576589, 0.576589] }, { "keytime": 1140.999878, "scale": [ 0.571547, 0.571547, 0.571547] }, { "keytime": 1174.333252, "scale": [ 0.566211, 0.566211, 0.566211] }, { "keytime": 1207.666626, "scale": [ 0.560857, 0.560857, 0.560857] }, { "keytime": 1241.000000, "scale": [ 0.555340, 0.555340, 0.555340] }, { "keytime": 1274.333374, "scale": [ 0.549774, 0.549774, 0.549774] }, { "keytime": 1307.666748, "scale": [ 0.544136, 0.544136, 0.544136] }, { "keytime": 1341.000122, "scale": [ 0.538262, 0.538262, 0.538262] }, { "keytime": 1407.666870, "scale": [ 0.526474, 0.526474, 0.526474] }, { "keytime": 1441.000244, "scale": [ 0.520231, 0.520231, 0.520231] }, { "keytime": 1474.333618, "scale": [ 0.514111, 0.514111, 0.514111] }, { "keytime": 1507.666992, "scale": [ 0.507947, 0.507947, 0.507947] }, { "keytime": 1541.000366, "scale": [ 0.501444, 0.501444, 0.501444] }, { "keytime": 1574.333740, "scale": [ 0.495132, 0.495132, 0.495132] }, { "keytime": 1607.667114, "scale": [ 0.488681, 0.488681, 0.488681] }, { "keytime": 1641.000488, "scale": [ 0.481984, 0.481984, 0.481984] }, { "keytime": 1707.667236, "scale": [ 0.468984, 0.468984, 0.468984] }, { "keytime": 1741.000610, "scale": [ 0.462121, 0.462121, 0.462121] }, { "keytime": 1807.667358, "scale": [ 0.448794, 0.448794, 0.448794] }, { "keytime": 1841.000732, "scale": [ 0.441928, 0.441928, 0.441928] }, { "keytime": 1907.667480, "scale": [ 0.428601, 0.428601, 0.428601] }, { "keytime": 1941.000854, "scale": [ 0.421736, 0.421736, 0.421736] }, { "keytime": 2007.667603, "scale": [ 0.408408, 0.408408, 0.408408] }, { "keytime": 2041.000977, "scale": [ 0.401543, 0.401543, 0.401543] }, { "keytime": 2107.667725, "scale": [ 0.388215, 0.388215, 0.388215] }, { "keytime": 2141.000977, "scale": [ 0.381350, 0.381350, 0.381350] }, { "keytime": 2174.334229, "scale": [ 0.374742, 0.374742, 0.374742] }, { "keytime": 2207.667480, "scale": [ 0.368311, 0.368311, 0.368311] }, { "keytime": 2241.000732, "scale": [ 0.361686, 0.361685, 0.361685] }, { "keytime": 2274.333984, "scale": [ 0.355255, 0.355254, 0.355254] }, { "keytime": 2307.667236, "scale": [ 0.348926, 0.348926, 0.348926] }, { "keytime": 2341.000488, "scale": [ 0.342517, 0.342517, 0.342517] }, { "keytime": 2374.333740, "scale": [ 0.336297, 0.336297, 0.336297] }, { "keytime": 2407.666992, "scale": [ 0.330284, 0.330284, 0.330284] }, { "keytime": 2441.000244, "scale": [ 0.324091, 0.324091, 0.324091] }, { "keytime": 2474.333496, "scale": [ 0.318200, 0.318200, 0.318200] }, { "keytime": 2507.666748, "scale": [ 0.312430, 0.312430, 0.312430] }, { "keytime": 2541.000000, "scale": [ 0.306486, 0.306486, 0.306486] }, { "keytime": 2607.666504, "scale": [ 0.295487, 0.295487, 0.295487] }, { "keytime": 2674.333008, "scale": [ 0.284768, 0.284768, 0.284768] }, { "keytime": 2707.666260, "scale": [ 0.279565, 0.279565, 0.279565] }, { "keytime": 2740.999512, "scale": [ 0.274595, 0.274595, 0.274595] }, { "keytime": 2774.332764, "scale": [ 0.269602, 0.269602, 0.269602] }, { "keytime": 2807.666016, "scale": [ 0.264885, 0.264885, 0.264885] }, { "keytime": 2874.332520, "scale": [ 0.255703, 0.255703, 0.255703] }, { "keytime": 2907.665771, "scale": [ 0.251426, 0.251425, 0.251425] }, { "keytime": 2940.999023, "scale": [ 0.247282, 0.247282, 0.247282] }, { "keytime": 2974.332275, "scale": [ 0.243157, 0.243157, 0.243157] }, { "keytime": 3007.665527, "scale": [ 0.239294, 0.239294, 0.239294] }, { "keytime": 3040.998779, "scale": [ 0.235576, 0.235576, 0.235576] }, { "keytime": 3074.332031, "scale": [ 0.231938, 0.231938, 0.231938] }, { "keytime": 3107.665283, "scale": [ 0.228555, 0.228555, 0.228555] }, { "keytime": 3140.998535, "scale": [ 0.225318, 0.225318, 0.225318] }, { "keytime": 3174.331787, "scale": [ 0.222136, 0.222136, 0.222136] }, { "keytime": 3207.665039, "scale": [ 0.219200, 0.219200, 0.219200] }, { "keytime": 3240.998291, "scale": [ 0.216461, 0.216460, 0.216461] }, { "keytime": 3274.331543, "scale": [ 0.213792, 0.213792, 0.213792] }, { "keytime": 3307.664795, "scale": [ 0.211356, 0.211356, 0.211356] }, { "keytime": 3340.998047, "scale": [ 0.209069, 0.209069, 0.209069] }, { "keytime": 3374.331299, "scale": [ 0.206876, 0.206876, 0.206876] }, { "keytime": 3407.664551, "scale": [ 0.204949, 0.204949, 0.204949] }, { "keytime": 3440.997803, "scale": [ 0.203172, 0.203172, 0.203172] }, { "keytime": 3474.331055, "scale": [ 0.201500, 0.201500, 0.201500] }, { "keytime": 3507.664307, "scale": [ 0.200031, 0.200031, 0.200031] }, { "keytime": 3540.997559, "scale": [ 0.198718, 0.198718, 0.198718] }, { "keytime": 3574.330811, "scale": [ 0.197569, 0.197569, 0.197569] }, { "keytime": 3607.664062, "scale": [ 0.196610, 0.196610, 0.196610] }, { "keytime": 3640.997314, "scale": [ 0.195801, 0.195801, 0.195801] }, { "keytime": 3674.330566, "scale": [ 0.195126, 0.195126, 0.195126] }, { "keytime": 3707.663818, "scale": [ 0.194625, 0.194625, 0.194625] }, { "keytime": 3740.997070, "scale": [ 0.194321, 0.194321, 0.194321] }, { "keytime": 3774.330322, "scale": [ 0.194162, 0.194162, 0.194162] }, { "keytime": 3807.663574, "scale": [ 0.195118, 0.195118, 0.195118] }, { "keytime": 3840.996826, "scale": [ 0.198129, 0.198129, 0.198129] }, { "keytime": 3874.330078, "scale": [ 0.204594, 0.204594, 0.204594] }, { "keytime": 3907.663330, "scale": [ 0.215059, 0.215059, 0.215059] }, { "keytime": 3940.996582, "scale": [ 0.228636, 0.228636, 0.228636] }, { "keytime": 3974.329834, "scale": [ 0.245867, 0.245867, 0.245867] }, { "keytime": 4007.663086, "scale": [ 0.265681, 0.265681, 0.265681] }, { "keytime": 4040.996338, "scale": [ 0.288580, 0.288580, 0.288580] }, { "keytime": 4074.329590, "scale": [ 0.315977, 0.315977, 0.315977] }, { "keytime": 4107.663086, "scale": [ 0.345264, 0.345264, 0.345264] }, { "keytime": 4140.996094, "scale": [ 0.376949, 0.376948, 0.376949] }, { "keytime": 4174.329590, "scale": [ 0.411915, 0.411915, 0.411915] }, { "keytime": 4207.663086, "scale": [ 0.447864, 0.447864, 0.447864] }, { "keytime": 4240.996582, "scale": [ 0.485831, 0.485831, 0.485831] }, { "keytime": 4274.330078, "scale": [ 0.526051, 0.526051, 0.526051] }, { "keytime": 4307.663574, "scale": [ 0.565828, 0.565828, 0.565828] }, { "keytime": 4340.997070, "scale": [ 0.605977, 0.605977, 0.605977] }, { "keytime": 4374.330566, "scale": [ 0.647343, 0.647343, 0.647343] }, { "keytime": 4407.664062, "scale": [ 0.686777, 0.686777, 0.686777] }, { "keytime": 4440.997559, "scale": [ 0.725172, 0.725172, 0.725172] }, { "keytime": 4474.331055, "scale": [ 0.763313, 0.763313, 0.763313] }, { "keytime": 4507.664551, "scale": [ 0.798651, 0.798651, 0.798651] }, { "keytime": 4540.998047, "scale": [ 0.831971, 0.831971, 0.831971] }, { "keytime": 4574.331543, "scale": [ 0.863188, 0.863187, 0.863187] }, { "keytime": 4607.665039, "scale": [ 0.890811, 0.890811, 0.890811] }, { "keytime": 4640.998535, "scale": [ 0.915708, 0.915708, 0.915708] }, { "keytime": 4674.332031, "scale": [ 0.938327, 0.938327, 0.938326] }, { "keytime": 4707.665527, "scale": [ 0.957208, 0.957208, 0.957208] }, { "keytime": 4740.999023, "scale": [ 0.972020, 0.972020, 0.972020] }, { "keytime": 4774.332520, "scale": [ 0.984040, 0.984040, 0.984040] }, { "keytime": 4807.666016, "scale": [ 0.992495, 0.992496, 0.992495] }, { "keytime": 4832.000000, "scale": [ 0.997249, 0.997250, 0.997250] } ] }, { "boneId": "Bone_023", "keyframes": [ { "keytime": 41.000000, "scale": [ 0.610000, 0.610000, 0.610000], "translation": [ 0.327775, -0.000001, 0.000001] }, { "keytime": 107.666664, "scale": [ 0.609734, 0.609734, 0.609734], "translation": [ 0.327778, 0.000003, 0.000001] }, { "keytime": 141.000000, "scale": [ 0.609464, 0.609464, 0.609464], "translation": [ 0.327779, 0.000006, 0.000000] }, { "keytime": 207.666656, "scale": [ 0.608674, 0.608674, 0.608674], "translation": [ 0.327782, 0.000010, 0.000000] }, { "keytime": 240.999985, "scale": [ 0.608029, 0.608029, 0.608029], "translation": [ 0.327784, 0.000013, 0.000000] }, { "keytime": 274.333313, "scale": [ 0.607360, 0.607360, 0.607360], "translation": [ 0.327785, 0.000015, 0.000000] }, { "keytime": 307.666656, "scale": [ 0.606590, 0.606590, 0.606590], "translation": [ 0.327787, 0.000017, 0.000000] }, { "keytime": 341.000000, "scale": [ 0.605665, 0.605665, 0.605665], "translation": [ 0.327788, 0.000020, 0.000000] }, { "keytime": 374.333344, "scale": [ 0.604768, 0.604767, 0.604767], "translation": [ 0.327790, 0.000022, 0.000000] }, { "keytime": 407.666687, "scale": [ 0.603632, 0.603632, 0.603631], "translation": [ 0.327792, 0.000024, 0.000000] }, { "keytime": 441.000031, "scale": [ 0.602459, 0.602459, 0.602459], "translation": [ 0.327793, 0.000027, 0.000000] }, { "keytime": 474.333374, "scale": [ 0.601205, 0.601205, 0.601204], "translation": [ 0.327795, 0.000029, 0.000000] }, { "keytime": 507.666718, "scale": [ 0.599832, 0.599832, 0.599832], "translation": [ 0.327796, 0.000031, 0.000000] }, { "keytime": 541.000061, "scale": [ 0.598418, 0.598418, 0.598418], "translation": [ 0.327798, 0.000034, 0.000000] }, { "keytime": 607.666687, "scale": [ 0.595220, 0.595220, 0.595221], "translation": [ 0.327801, 0.000038, 0.000000] }, { "keytime": 641.000000, "scale": [ 0.593462, 0.593462, 0.593462], "translation": [ 0.327802, 0.000041, 0.000000] }, { "keytime": 707.666626, "scale": [ 0.589824, 0.589824, 0.589824], "translation": [ 0.327805, 0.000045, 0.000000] }, { "keytime": 740.999939, "scale": [ 0.587797, 0.587797, 0.587797], "translation": [ 0.327807, 0.000047, 0.000000] }, { "keytime": 774.333252, "scale": [ 0.585704, 0.585704, 0.585704], "translation": [ 0.327809, 0.000050, 0.000000] }, { "keytime": 807.666565, "scale": [ 0.583573, 0.583573, 0.583573], "translation": [ 0.327810, 0.000052, 0.000000] }, { "keytime": 840.999878, "scale": [ 0.581335, 0.581335, 0.581335], "translation": [ 0.327812, 0.000054, 0.000000] }, { "keytime": 874.333191, "scale": [ 0.579030, 0.579030, 0.579030], "translation": [ 0.327813, 0.000057, 0.000000] }, { "keytime": 907.666504, "scale": [ 0.576597, 0.576597, 0.576597], "translation": [ 0.327815, 0.000059, 0.000000] }, { "keytime": 940.999817, "scale": [ 0.574161, 0.574161, 0.574161], "translation": [ 0.327816, 0.000061, 0.000000] }, { "keytime": 974.333130, "scale": [ 0.571557, 0.571557, 0.571557], "translation": [ 0.327818, 0.000064, 0.000000] }, { "keytime": 1040.999756, "scale": [ 0.566302, 0.566302, 0.566302], "translation": [ 0.327821, 0.000068, 0.000000] }, { "keytime": 1074.333130, "scale": [ 0.563412, 0.563412, 0.563412], "translation": [ 0.327822, 0.000071, 0.000000] }, { "keytime": 1107.666504, "scale": [ 0.560601, 0.560601, 0.560600], "translation": [ 0.327824, 0.000073, 0.000000] }, { "keytime": 1140.999878, "scale": [ 0.557706, 0.557706, 0.557705], "translation": [ 0.327825, 0.000075, 0.000000] }, { "keytime": 1174.333252, "scale": [ 0.554627, 0.554627, 0.554627], "translation": [ 0.327827, 0.000078, 0.000000] }, { "keytime": 1207.666626, "scale": [ 0.551640, 0.551640, 0.551639], "translation": [ 0.327829, 0.000080, 0.000000] }, { "keytime": 1241.000000, "scale": [ 0.548390, 0.548390, 0.548390], "translation": [ 0.327830, 0.000082, 0.000000] }, { "keytime": 1274.333374, "scale": [ 0.545233, 0.545233, 0.545233], "translation": [ 0.327832, 0.000085, 0.000000] }, { "keytime": 1307.666748, "scale": [ 0.541998, 0.541998, 0.541998], "translation": [ 0.327833, 0.000087, 0.000000] }, { "keytime": 1341.000122, "scale": [ 0.538579, 0.538579, 0.538579], "translation": [ 0.327835, 0.000089, 0.000000] }, { "keytime": 1374.333496, "scale": [ 0.535260, 0.535260, 0.535260], "translation": [ 0.327836, 0.000092, 0.000000] }, { "keytime": 1407.666870, "scale": [ 0.531753, 0.531753, 0.531753], "translation": [ 0.327838, 0.000094, 0.000000] }, { "keytime": 1441.000244, "scale": [ 0.528137, 0.528137, 0.528137], "translation": [ 0.327839, 0.000096, 0.000000] }, { "keytime": 1474.333618, "scale": [ 0.524627, 0.524627, 0.524628], "translation": [ 0.327841, 0.000099, 0.000000] }, { "keytime": 1507.666992, "scale": [ 0.521069, 0.521069, 0.521069], "translation": [ 0.327843, 0.000101, 0.000000] }, { "keytime": 1541.000366, "scale": [ 0.517233, 0.517233, 0.517233], "translation": [ 0.327844, 0.000103, 0.000000] }, { "keytime": 1607.667114, "scale": [ 0.509789, 0.509789, 0.509789], "translation": [ 0.327847, 0.000108, 0.000000] }, { "keytime": 1641.000488, "scale": [ 0.505855, 0.505855, 0.505855], "translation": [ 0.327849, 0.000110, 0.000000] }, { "keytime": 1707.667236, "scale": [ 0.498021, 0.498021, 0.498021], "translation": [ 0.327852, 0.000115, 0.000000] }, { "keytime": 1741.000610, "scale": [ 0.493985, 0.493985, 0.493985], "translation": [ 0.327853, 0.000117, 0.000000] }, { "keytime": 1774.333984, "scale": [ 0.489937, 0.489937, 0.489937], "translation": [ 0.327855, 0.000119, 0.000000] }, { "keytime": 1807.667358, "scale": [ 0.485844, 0.485844, 0.485844], "translation": [ 0.327856, 0.000122, 0.000000] }, { "keytime": 1841.000732, "scale": [ 0.481627, 0.481627, 0.481627], "translation": [ 0.327858, 0.000124, 0.000000] }, { "keytime": 1874.334106, "scale": [ 0.477535, 0.477535, 0.477535], "translation": [ 0.327860, 0.000126, 0.000000] }, { "keytime": 1907.667480, "scale": [ 0.473265, 0.473265, 0.473265], "translation": [ 0.327861, 0.000129, 0.000000] }, { "keytime": 1941.000854, "scale": [ 0.468864, 0.468864, 0.468864], "translation": [ 0.327863, 0.000131, 0.000000] }, { "keytime": 1974.334229, "scale": [ 0.464592, 0.464592, 0.464592], "translation": [ 0.327864, 0.000133, 0.000000] }, { "keytime": 2007.667603, "scale": [ 0.460321, 0.460321, 0.460321], "translation": [ 0.327866, 0.000093, 0.000000] }, { "keytime": 2041.000977, "scale": [ 0.455920, 0.455920, 0.455920], "translation": [ 0.327867, -0.000096, 0.000000] }, { "keytime": 2074.334473, "scale": [ 0.451461, 0.451460, 0.451460], "translation": [ 0.327869, 0.000002, 0.000000] }, { "keytime": 2107.667725, "scale": [ 0.447001, 0.447001, 0.447001], "translation": [ 0.327870, 0.000011, 0.000000] }, { "keytime": 2141.000977, "scale": [ 0.442407, 0.442407, 0.442407], "translation": [ 0.327872, -0.000011, 0.000000] }, { "keytime": 2207.667480, "scale": [ 0.433488, 0.433488, 0.433488], "translation": [ 0.327875, -0.000056, 0.000000] }, { "keytime": 2241.000732, "scale": [ 0.428894, 0.428894, 0.428894], "translation": [ 0.327877, -0.000079, 0.000000] }, { "keytime": 2274.333984, "scale": [ 0.424302, 0.424302, 0.424302], "translation": [ 0.327878, -0.000101, 0.000000] }, { "keytime": 2307.667236, "scale": [ 0.419665, 0.419665, 0.419665], "translation": [ 0.327880, -0.000029, 0.000000] }, { "keytime": 2341.000488, "scale": [ 0.414887, 0.414887, 0.414887], "translation": [ 0.327881, 0.000044, 0.000000] }, { "keytime": 2374.333740, "scale": [ 0.410250, 0.410250, 0.410250], "translation": [ 0.327883, -0.000202, 0.000000] }, { "keytime": 2407.666992, "scale": [ 0.405613, 0.405613, 0.405613], "translation": [ 0.327884, -0.000001, 0.000000] }, { "keytime": 2441.000244, "scale": [ 0.400836, 0.400836, 0.400836], "translation": [ 0.327886, 0.000011, 0.000000] }, { "keytime": 2474.333496, "scale": [ 0.396199, 0.396198, 0.396199], "translation": [ 0.327887, -0.000048, 0.000000] }, { "keytime": 2507.666748, "scale": [ 0.391562, 0.391561, 0.391561], "translation": [ 0.327868, -0.000087, 0.000000] }, { "keytime": 2541.000000, "scale": [ 0.386784, 0.386784, 0.386784], "translation": [ 0.327780, -0.000062, 0.000000] }, { "keytime": 2640.999756, "scale": [ 0.372873, 0.372873, 0.372873], "translation": [ 0.327780, 0.000010, 0.000000] }, { "keytime": 2674.333008, "scale": [ 0.368095, 0.368095, 0.368095], "translation": [ 0.327779, 0.000034, 0.000000] }, { "keytime": 2740.999512, "scale": [ 0.358821, 0.358821, 0.358821], "translation": [ 0.327779, 0.000082, 0.000000] }, { "keytime": 2774.332764, "scale": [ 0.354044, 0.354044, 0.354044], "translation": [ 0.327779, 0.000060, 0.000000] }, { "keytime": 2840.999268, "scale": [ 0.344770, 0.344770, 0.344770], "translation": [ 0.327779, -0.000018, 0.000000] }, { "keytime": 2874.332520, "scale": [ 0.339992, 0.339992, 0.339992], "translation": [ 0.327779, -0.000058, 0.000000] }, { "keytime": 2940.999023, "scale": [ 0.330718, 0.330718, 0.330718], "translation": [ 0.327779, -0.000136, 0.000000] }, { "keytime": 2974.332275, "scale": [ 0.325940, 0.325940, 0.325940], "translation": [ 0.327779, -0.000105, 0.000000] }, { "keytime": 3040.998779, "scale": [ 0.316666, 0.316666, 0.316666], "translation": [ 0.327779, 0.000108, 0.000000] }, { "keytime": 3074.332031, "scale": [ 0.311889, 0.311889, 0.311889], "translation": [ 0.327779, -0.000013, 0.000000] }, { "keytime": 3107.665283, "scale": [ 0.307252, 0.307252, 0.307252], "translation": [ 0.327778, -0.000045, 0.000000] }, { "keytime": 3140.998535, "scale": [ 0.302740, 0.302740, 0.302740], "translation": [ 0.327778, -0.000044, 0.000000] }, { "keytime": 3174.331787, "scale": [ 0.298234, 0.298234, 0.298234], "translation": [ 0.327778, -0.000043, 0.000000] }, { "keytime": 3240.998291, "scale": [ 0.289489, 0.289488, 0.289489], "translation": [ 0.327778, -0.000042, 0.000000] }, { "keytime": 3274.331543, "scale": [ 0.284983, 0.284983, 0.284983], "translation": [ 0.327778, -0.000041, 0.000000] }, { "keytime": 3307.664795, "scale": [ 0.280716, 0.280716, 0.280716], "translation": [ 0.327778, -0.000040, 0.000000] }, { "keytime": 3340.998047, "scale": [ 0.276563, 0.276563, 0.276563], "translation": [ 0.327778, -0.000039, 0.000000] }, { "keytime": 3374.331299, "scale": [ 0.272284, 0.272284, 0.272284], "translation": [ 0.327778, -0.000038, 0.000000] }, { "keytime": 3407.664551, "scale": [ 0.268130, 0.268130, 0.268130], "translation": [ 0.327778, -0.000037, 0.000000] }, { "keytime": 3440.997803, "scale": [ 0.264122, 0.264122, 0.264122], "translation": [ 0.327778, -0.000037, 0.000000] }, { "keytime": 3474.331055, "scale": [ 0.260049, 0.260049, 0.260049], "translation": [ 0.327778, -0.000036, 0.000000] }, { "keytime": 3507.664307, "scale": [ 0.256140, 0.256139, 0.256139], "translation": [ 0.327778, -0.000035, 0.000000] }, { "keytime": 3540.997559, "scale": [ 0.252376, 0.252376, 0.252376], "translation": [ 0.327778, -0.000034, 0.000000] }, { "keytime": 3574.330811, "scale": [ 0.248499, 0.248499, 0.248499], "translation": [ 0.327777, -0.000033, 0.000000] }, { "keytime": 3607.664062, "scale": [ 0.244896, 0.244896, 0.244896], "translation": [ 0.327777, -0.000032, 0.000000] }, { "keytime": 3640.997314, "scale": [ 0.241351, 0.241351, 0.241351], "translation": [ 0.327777, -0.000032, 0.000000] }, { "keytime": 3674.330566, "scale": [ 0.237760, 0.237760, 0.237760], "translation": [ 0.327777, -0.000031, 0.000000] }, { "keytime": 3740.997070, "scale": [ 0.231169, 0.231169, 0.231169], "translation": [ 0.327777, -0.000029, 0.000000] }, { "keytime": 3774.330322, "scale": [ 0.227986, 0.227986, 0.227986], "translation": [ 0.327777, -0.000028, 0.000000] }, { "keytime": 3807.663574, "scale": [ 0.224975, 0.224975, 0.224975], "translation": [ 0.327777, -0.000027, 0.000000] }, { "keytime": 3840.996826, "scale": [ 0.222017, 0.222017, 0.222017], "translation": [ 0.327777, -0.000026, 0.000000] }, { "keytime": 3874.330078, "scale": [ 0.219158, 0.219158, 0.219158], "translation": [ 0.327777, -0.000026, 0.000000] }, { "keytime": 3907.663330, "scale": [ 0.216553, 0.216553, 0.216553], "translation": [ 0.327777, -0.000025, 0.000000] }, { "keytime": 3940.996582, "scale": [ 0.214083, 0.214083, 0.214083], "translation": [ 0.327777, -0.000024, 0.000000] }, { "keytime": 3974.329834, "scale": [ 0.211684, 0.211684, 0.211684], "translation": [ 0.327777, -0.000023, 0.000000] }, { "keytime": 4007.663086, "scale": [ 0.209505, 0.209505, 0.209505], "translation": [ 0.327776, -0.000022, 0.000000] }, { "keytime": 4040.996338, "scale": [ 0.207483, 0.207483, 0.207483], "translation": [ 0.327776, -0.000021, 0.000000] }, { "keytime": 4074.329590, "scale": [ 0.205619, 0.205619, 0.205619], "translation": [ 0.327776, -0.000020, 0.000000] }, { "keytime": 4107.663086, "scale": [ 0.203988, 0.203988, 0.203988], "translation": [ 0.327776, -0.000020, 0.000000] }, { "keytime": 4140.996094, "scale": [ 0.202536, 0.202536, 0.202536], "translation": [ 0.327776, -0.000019, 0.000000] }, { "keytime": 4174.329590, "scale": [ 0.201237, 0.201237, 0.201237], "translation": [ 0.327776, -0.000018, 0.000000] }, { "keytime": 4207.663086, "scale": [ 0.200177, 0.200177, 0.200177], "translation": [ 0.327776, -0.000017, 0.000000] }, { "keytime": 4240.996582, "scale": [ 0.199392, 0.199392, 0.199392], "translation": [ 0.327776, -0.000016, 0.000000] }, { "keytime": 4274.330078, "scale": [ 0.198811, 0.198811, 0.198811], "translation": [ 0.327776, -0.000015, 0.000000] }, { "keytime": 4307.663574, "scale": [ 0.198482, 0.198482, 0.198482], "translation": [ 0.327776, -0.000014, 0.000000] }, { "keytime": 4340.997070, "scale": [ 0.200200, 0.200200, 0.200200], "translation": [ 0.327776, -0.000014, 0.000000] }, { "keytime": 4374.330566, "scale": [ 0.208762, 0.208762, 0.208762], "translation": [ 0.327776, -0.000013, 0.000000] }, { "keytime": 4407.664062, "scale": [ 0.233695, 0.233695, 0.233695], "translation": [ 0.327776, -0.000012, 0.000000] }, { "keytime": 4440.997559, "scale": [ 0.270767, 0.270767, 0.270767], "translation": [ 0.327775, -0.000011, 0.000000] }, { "keytime": 4474.331055, "scale": [ 0.321036, 0.321036, 0.321036], "translation": [ 0.327775, -0.000010, 0.000000] }, { "keytime": 4507.664551, "scale": [ 0.380502, 0.380502, 0.380502], "translation": [ 0.327775, -0.000009, 0.000000] }, { "keytime": 4540.998047, "scale": [ 0.449406, 0.449406, 0.449406], "translation": [ 0.327775, -0.000009, 0.000000] }, { "keytime": 4574.331543, "scale": [ 0.528521, 0.528521, 0.528521], "translation": [ 0.327775, -0.000008, 0.000000] }, { "keytime": 4607.665039, "scale": [ 0.607649, 0.607649, 0.607649], "translation": [ 0.327775, -0.000007, 0.000000] }, { "keytime": 4640.998535, "scale": [ 0.686172, 0.686172, 0.686172], "translation": [ 0.327775, -0.000006, 0.000000] }, { "keytime": 4674.332031, "scale": [ 0.763564, 0.763564, 0.763564], "translation": [ 0.327775, -0.000005, 0.000000] }, { "keytime": 4707.665527, "scale": [ 0.832468, 0.832468, 0.832468], "translation": [ 0.327775, -0.000004, 0.000000] }, { "keytime": 4740.999023, "scale": [ 0.889327, 0.889327, 0.889327], "translation": [ 0.327775, -0.000003, 0.000000] }, { "keytime": 4774.332520, "scale": [ 0.936403, 0.936403, 0.936403], "translation": [ 0.327775, -0.000003, 0.000000] }, { "keytime": 4807.666016, "scale": [ 0.969984, 0.969984, 0.969984], "translation": [ 0.327775, -0.000002, 0.000000] }, { "keytime": 4832.000000, "scale": [ 0.989001, 0.989001, 0.989001], "translation": [ 0.327775, -0.000001, 0.000000] } ] } ] }, { "id": "life", "bones": [ { "boneId": "Bone", "keyframes": [ { "keytime": 41.000000, "rotation": [ 0.507984, -0.502482, 0.491842, 0.497550] }, { "keytime": 74.333328, "rotation": [ 0.507972, -0.502483, 0.491861, 0.497542] }, { "keytime": 107.666664, "rotation": [ 0.507943, -0.502487, 0.491909, 0.497521] }, { "keytime": 141.000000, "rotation": [ 0.507894, -0.502493, 0.491988, 0.497486] }, { "keytime": 174.333328, "rotation": [ 0.507828, -0.502501, 0.492094, 0.497440] }, { "keytime": 207.666656, "rotation": [ 0.507744, -0.502511, 0.492231, 0.497381] }, { "keytime": 240.999985, "rotation": [ 0.507635, -0.502525, 0.492405, 0.497305] }, { "keytime": 274.333313, "rotation": [ 0.507505, -0.502542, 0.492615, 0.497213] }, { "keytime": 307.666656, "rotation": [ 0.507360, -0.502560, 0.492848, 0.497111] }, { "keytime": 341.000000, "rotation": [ 0.507192, -0.502581, 0.493119, 0.496993] }, { "keytime": 374.333344, "rotation": [ 0.507010, -0.502602, 0.493412, 0.496867] }, { "keytime": 407.666687, "rotation": [ 0.506805, -0.502628, 0.493743, 0.496721] }, { "keytime": 441.000031, "rotation": [ 0.506574, -0.502658, 0.494113, 0.496558] }, { "keytime": 474.333374, "rotation": [ 0.506333, -0.502688, 0.494500, 0.496388] }, { "keytime": 507.666718, "rotation": [ 0.506074, -0.502718, 0.494916, 0.496207] }, { "keytime": 541.000061, "rotation": [ 0.505789, -0.502749, 0.495372, 0.496011] }, { "keytime": 574.333374, "rotation": [ 0.505491, -0.502789, 0.495851, 0.495796] }, { "keytime": 607.666687, "rotation": [ 0.505176, -0.502830, 0.496355, 0.495572] }, { "keytime": 641.000000, "rotation": [ 0.504835, -0.502871, 0.496900, 0.495331] }, { "keytime": 674.333313, "rotation": [ 0.504488, -0.502909, 0.497454, 0.495090] }, { "keytime": 707.666626, "rotation": [ 0.504126, -0.502946, 0.498031, 0.494841] }, { "keytime": 740.999939, "rotation": [ 0.503745, -0.502997, 0.498638, 0.494566] }, { "keytime": 774.333252, "rotation": [ 0.503341, -0.503047, 0.499282, 0.494276] }, { "keytime": 807.666565, "rotation": [-0.502935, 0.503093, -0.499927, -0.493989] }, { "keytime": 840.999878, "rotation": [-0.502516, 0.503136, -0.500593, -0.493699] }, { "keytime": 874.333191, "rotation": [-0.502068, 0.503179, -0.501301, -0.493393] }, { "keytime": 907.666504, "rotation": [-0.501628, 0.503236, -0.501999, -0.493071] }, { "keytime": 940.999817, "rotation": [-0.501178, 0.503290, -0.502712, -0.492747] }, { "keytime": 974.333130, "rotation": [ 0.500702, -0.503341, 0.503463, 0.492412] }, { "keytime": 1007.666443, "rotation": [ 0.500229, -0.503386, 0.504207, 0.492086] }, { "keytime": 1040.999756, "rotation": [ 0.499748, -0.503431, 0.504960, 0.491756] }, { "keytime": 1074.333130, "rotation": [ 0.499255, -0.503490, 0.505736, 0.491399] }, { "keytime": 1107.666504, "rotation": [ 0.498770, -0.503543, 0.506497, 0.491053] }, { "keytime": 1140.999878, "rotation": [ 0.498280, -0.503592, 0.507263, 0.490710] }, { "keytime": 1174.333252, "rotation": [ 0.497773, -0.503640, 0.508055, 0.490356] }, { "keytime": 1207.666626, "rotation": [ 0.497279, -0.503685, 0.508824, 0.490014] }, { "keytime": 1241.000000, "rotation": [ 0.496777, -0.503739, 0.509606, 0.489654] }, { "keytime": 1274.333374, "rotation": [ 0.496291, -0.503789, 0.510362, 0.489308] }, { "keytime": 1307.666748, "rotation": [ 0.495808, -0.503835, 0.511113, 0.488967] }, { "keytime": 1341.000122, "rotation": [ 0.495313, -0.503881, 0.511878, 0.488620] }, { "keytime": 1374.333496, "rotation": [ 0.494839, -0.503923, 0.512611, 0.488288] }, { "keytime": 1407.666870, "rotation": [ 0.494377, -0.503970, 0.513326, 0.487958] }, { "keytime": 1441.000244, "rotation": [ 0.493909, -0.504014, 0.514048, 0.487625] }, { "keytime": 1474.333618, "rotation": [ 0.493463, -0.504055, 0.514735, 0.487310] }, { "keytime": 1541.000366, "rotation": [ 0.492589, -0.504132, 0.516078, 0.486694] }, { "keytime": 1574.333740, "rotation": [ 0.492181, -0.504170, 0.516703, 0.486403] }, { "keytime": 1607.667114, "rotation": [ 0.491787, -0.504205, 0.517308, 0.486122] }, { "keytime": 1641.000488, "rotation": [ 0.491394, -0.504240, 0.517909, 0.485844] }, { "keytime": 1674.333862, "rotation": [ 0.491027, -0.504271, 0.518470, 0.485584] }, { "keytime": 1707.667236, "rotation": [ 0.490675, -0.504301, 0.519007, 0.485335] }, { "keytime": 1741.000610, "rotation": [ 0.490335, -0.504331, 0.519526, 0.485093] }, { "keytime": 1774.333984, "rotation": [ 0.490021, -0.504358, 0.520004, 0.484870] }, { "keytime": 1807.667358, "rotation": [ 0.489724, -0.504383, 0.520456, 0.484659] }, { "keytime": 1841.000732, "rotation": [ 0.489436, -0.504407, 0.520894, 0.484454] }, { "keytime": 1874.334106, "rotation": [ 0.489174, -0.504428, 0.521292, 0.484268] }, { "keytime": 1907.667480, "rotation": [ 0.488936, -0.504448, 0.521653, 0.484099] }, { "keytime": 1941.000854, "rotation": [ 0.488709, -0.504467, 0.521997, 0.483938] }, { "keytime": 1974.334229, "rotation": [ 0.488508, -0.504483, 0.522301, 0.483795] }, { "keytime": 2007.667603, "rotation": [ 0.488326, -0.504498, 0.522578, 0.483665] }, { "keytime": 2041.000977, "rotation": [ 0.488157, -0.504512, 0.522833, 0.483545] }, { "keytime": 2074.334473, "rotation": [ 0.488019, -0.504523, 0.523043, 0.483447] }, { "keytime": 2107.667725, "rotation": [ 0.487899, -0.504532, 0.523224, 0.483362] }, { "keytime": 2141.000977, "rotation": [ 0.487796, -0.504541, 0.523380, 0.483288] }, { "keytime": 2174.334229, "rotation": [ 0.487714, -0.504547, 0.523503, 0.483230] }, { "keytime": 2207.667480, "rotation": [ 0.487652, -0.504552, 0.523598, 0.483185] }, { "keytime": 2241.000732, "rotation": [ 0.487613, -0.504555, 0.523657, 0.483158] }, { "keytime": 2274.333984, "rotation": [ 0.487594, -0.504557, 0.523685, 0.483144] }, { "keytime": 2307.667236, "rotation": [ 0.487595, -0.504555, 0.523685, 0.483144] }, { "keytime": 2341.000488, "rotation": [ 0.487619, -0.504549, 0.523655, 0.483159] }, { "keytime": 2374.333740, "rotation": [ 0.487665, -0.504538, 0.523597, 0.483189] }, { "keytime": 2407.666992, "rotation": [ 0.487741, -0.504518, 0.523500, 0.483237] }, { "keytime": 2441.000244, "rotation": [ 0.487844, -0.504491, 0.523370, 0.483302] }, { "keytime": 2474.333496, "rotation": [ 0.487968, -0.504459, 0.523213, 0.483380] }, { "keytime": 2507.666748, "rotation": [ 0.488114, -0.504422, 0.523027, 0.483473] }, { "keytime": 2541.000000, "rotation": [ 0.488290, -0.504376, 0.522805, 0.483584] }, { "keytime": 2574.333252, "rotation": [ 0.488491, -0.504324, 0.522549, 0.483711] }, { "keytime": 2607.666504, "rotation": [ 0.488716, -0.504266, 0.522263, 0.483853] }, { "keytime": 2640.999756, "rotation": [ 0.488963, -0.504202, 0.521949, 0.484010] }, { "keytime": 2674.333008, "rotation": [ 0.489242, -0.504129, 0.521594, 0.484186] }, { "keytime": 2707.666260, "rotation": [ 0.489537, -0.504052, 0.521219, 0.484373] }, { "keytime": 2740.999512, "rotation": [ 0.489861, -0.503967, 0.520805, 0.484577] }, { "keytime": 2774.332764, "rotation": [ 0.490218, -0.503874, 0.520350, 0.484802] }, { "keytime": 2807.666016, "rotation": [ 0.490588, -0.503777, 0.519878, 0.485036] }, { "keytime": 2840.999268, "rotation": [ 0.490979, -0.503673, 0.519378, 0.485283] }, { "keytime": 2874.332520, "rotation": [ 0.491404, -0.503560, 0.518834, 0.485552] }, { "keytime": 2907.665771, "rotation": [ 0.491847, -0.503444, 0.518267, 0.485830] }, { "keytime": 2940.999023, "rotation": [ 0.492309, -0.503321, 0.517674, 0.486121] }, { "keytime": 2974.332275, "rotation": [ 0.492806, -0.503189, 0.517036, 0.486433] }, { "keytime": 3007.665527, "rotation": [ 0.493308, -0.503053, 0.516390, 0.486750] }, { "keytime": 3040.998779, "rotation": [ 0.493829, -0.502912, 0.515718, 0.487080] }, { "keytime": 3074.332031, "rotation": [ 0.494393, -0.502761, 0.514992, 0.487433] }, { "keytime": 3107.665283, "rotation": [ 0.494958, -0.502610, 0.514262, 0.487786] }, { "keytime": 3140.998535, "rotation": [ 0.495539, -0.502452, 0.513510, 0.488150] }, { "keytime": 3174.331787, "rotation": [ 0.496153, -0.502283, 0.512713, 0.488538] }, { "keytime": 3207.665039, "rotation": [ 0.496764, -0.502111, 0.511919, 0.488926] }, { "keytime": 3240.998291, "rotation": [ 0.497399, -0.501941, 0.511094, 0.489318] }, { "keytime": 3274.331543, "rotation": [ 0.498066, -0.501760, 0.510225, 0.489731] }, { "keytime": 3307.664795, "rotation": [ 0.498726, -0.501579, 0.509365, 0.490141] }, { "keytime": 3340.998047, "rotation": [ 0.499393, -0.501389, 0.508492, 0.490562] }, { "keytime": 3374.331299, "rotation": [ 0.500088, -0.501184, 0.507579, 0.491010] }, { "keytime": 3407.664551, "rotation": [ 0.500790, -0.501000, 0.506660, 0.491430] }, { "keytime": 3440.997803, "rotation": [ 0.501500, -0.500813, 0.505729, 0.491856] }, { "keytime": 3474.331055, "rotation": [ 0.502233, -0.500610, 0.504764, 0.492305] }, { "keytime": 3507.664307, "rotation": [ 0.502936, -0.500398, 0.503832, 0.492757] }, { "keytime": 3540.997559, "rotation": [ 0.503639, -0.500171, 0.502898, 0.493225] }, { "keytime": 3574.330811, "rotation": [ 0.504394, -0.499979, 0.501900, 0.493664] }, { "keytime": 3607.664062, "rotation": [ 0.505109, -0.499788, 0.500946, 0.494095] }, { "keytime": 3640.997314, "rotation": [ 0.505826, -0.499573, 0.499990, 0.494548] }, { "keytime": 3674.330566, "rotation": [ 0.506569, -0.499333, 0.498996, 0.495032] }, { "keytime": 3707.663818, "rotation": [ 0.507290, -0.499097, 0.498032, 0.495503] }, { "keytime": 3740.997070, "rotation": [ 0.508009, -0.498902, 0.497069, 0.495929] }, { "keytime": 3774.330322, "rotation": [ 0.508743, -0.498683, 0.496082, 0.496384] }, { "keytime": 3807.663574, "rotation": [ 0.509450, -0.498464, 0.495132, 0.496829] }, { "keytime": 3840.996826, "rotation": [ 0.510148, -0.498243, 0.494189, 0.497272] }, { "keytime": 3874.330078, "rotation": [ 0.510860, -0.498019, 0.493226, 0.497722] }, { "keytime": 3907.663330, "rotation": [ 0.511542, -0.497818, 0.492303, 0.498137] }, { "keytime": 3940.996582, "rotation": [ 0.512212, -0.497613, 0.491394, 0.498550] }, { "keytime": 3974.329834, "rotation": [ 0.512890, -0.497401, 0.490472, 0.498972] }, { "keytime": 4007.663086, "rotation": [ 0.513536, -0.497198, 0.489592, 0.499375] }, { "keytime": 4040.996338, "rotation": [ 0.514168, -0.496997, 0.488728, 0.499769] }, { "keytime": 4074.329590, "rotation": [ 0.514802, -0.496802, 0.487861, 0.500158] }, { "keytime": 4107.663086, "rotation": [ 0.515402, -0.496614, 0.487040, 0.500528] }, { "keytime": 4174.329590, "rotation": [ 0.516570, -0.496242, 0.485436, 0.501250] }, { "keytime": 4207.663086, "rotation": [ 0.517119, -0.496065, 0.484679, 0.501590] }, { "keytime": 4240.996582, "rotation": [ 0.517646, -0.495898, 0.483952, 0.501914] }, { "keytime": 4274.330078, "rotation": [ 0.518170, -0.495731, 0.483229, 0.502236] }, { "keytime": 4307.663574, "rotation": [ 0.518659, -0.495573, 0.482553, 0.502537] }, { "keytime": 4340.997070, "rotation": [ 0.519128, -0.495421, 0.481902, 0.502826] }, { "keytime": 4374.330566, "rotation": [ 0.519591, -0.495270, 0.481261, 0.503111] }, { "keytime": 4407.664062, "rotation": [ 0.520013, -0.495134, 0.480674, 0.503370] }, { "keytime": 4440.997559, "rotation": [ 0.520415, -0.495003, 0.480116, 0.503617] }, { "keytime": 4474.331055, "rotation": [ 0.520807, -0.494875, 0.479570, 0.503857] }, { "keytime": 4507.664551, "rotation": [ 0.521166, -0.494757, 0.479069, 0.504078] }, { "keytime": 4540.998047, "rotation": [ 0.521503, -0.494646, 0.478599, 0.504285] }, { "keytime": 4574.331543, "rotation": [ 0.521822, -0.494541, 0.478154, 0.504480] }, { "keytime": 4607.665039, "rotation": [ 0.522108, -0.494446, 0.477753, 0.504656] }, { "keytime": 4640.998535, "rotation": [ 0.522373, -0.494359, 0.477382, 0.504819] }, { "keytime": 4674.332031, "rotation": [ 0.522623, -0.494276, 0.477032, 0.504972] }, { "keytime": 4707.665527, "rotation": [ 0.522843, -0.494203, 0.476724, 0.505107] }, { "keytime": 4740.999023, "rotation": [ 0.523034, -0.494139, 0.476456, 0.505224] }, { "keytime": 4774.332520, "rotation": [ 0.523208, -0.494082, 0.476212, 0.505330] }, { "keytime": 4807.666016, "rotation": [ 0.523355, -0.494033, 0.476007, 0.505420] }, { "keytime": 4840.999512, "rotation": [ 0.523479, -0.493991, 0.475832, 0.505496] }, { "keytime": 4874.333008, "rotation": [ 0.523584, -0.493956, 0.475684, 0.505560] }, { "keytime": 4907.666504, "rotation": [ 0.523657, -0.493932, 0.475582, 0.505605] }, { "keytime": 4941.000000, "rotation": [ 0.523709, -0.493915, 0.475508, 0.505637] }, { "keytime": 4974.333496, "rotation": [ 0.523738, -0.493905, 0.475467, 0.505655] }, { "keytime": 5007.666992, "rotation": [ 0.523745, -0.493903, 0.475456, 0.505660] }, { "keytime": 5041.000488, "rotation": [ 0.523728, -0.493913, 0.475475, 0.505651] }, { "keytime": 5074.333984, "rotation": [ 0.523677, -0.493942, 0.475529, 0.505624] }, { "keytime": 5107.667480, "rotation": [ 0.523600, -0.493985, 0.475610, 0.505585] }, { "keytime": 5141.000977, "rotation": [ 0.523494, -0.494044, 0.475723, 0.505531] }, { "keytime": 5174.334473, "rotation": [ 0.523366, -0.494116, 0.475859, 0.505466] }, { "keytime": 5207.667969, "rotation": [ 0.523211, -0.494203, 0.476023, 0.505387] }, { "keytime": 5241.001465, "rotation": [ 0.523016, -0.494312, 0.476229, 0.505288] }, { "keytime": 5274.334961, "rotation": [ 0.522801, -0.494432, 0.476457, 0.505178] }, { "keytime": 5307.668457, "rotation": [ 0.522561, -0.494566, 0.476711, 0.505055] }, { "keytime": 5341.001953, "rotation": [ 0.522288, -0.494719, 0.476999, 0.504916] }, { "keytime": 5374.335449, "rotation": [ 0.521998, -0.494880, 0.477306, 0.504768] }, { "keytime": 5407.668945, "rotation": [ 0.521677, -0.495059, 0.477645, 0.504604] }, { "keytime": 5441.002441, "rotation": [ 0.521323, -0.495256, 0.478019, 0.504422] }, { "keytime": 5474.335938, "rotation": [ 0.520957, -0.495460, 0.478405, 0.504235] }, { "keytime": 5507.669434, "rotation": [ 0.520570, -0.495674, 0.478812, 0.504037] }, { "keytime": 5541.002930, "rotation": [ 0.520150, -0.495905, 0.479253, 0.503823] }, { "keytime": 5574.336426, "rotation": [ 0.519719, -0.496145, 0.479706, 0.503602] }, { "keytime": 5607.669922, "rotation": [ 0.519272, -0.496392, 0.480175, 0.503372] }, { "keytime": 5674.336914, "rotation": [ 0.518321, -0.496915, 0.481171, 0.502885] }, { "keytime": 5707.670410, "rotation": [ 0.517834, -0.497181, 0.481681, 0.502636] }, { "keytime": 5741.003906, "rotation": [ 0.517321, -0.497464, 0.482217, 0.502371] }, { "keytime": 5774.337402, "rotation": [ 0.516816, -0.497741, 0.482743, 0.502110] }, { "keytime": 5807.670898, "rotation": [ 0.516307, -0.498018, 0.483273, 0.501849] }, { "keytime": 5841.004395, "rotation": [ 0.515780, -0.498305, 0.483821, 0.501578] }, { "keytime": 5874.337891, "rotation": [ 0.515268, -0.498581, 0.484353, 0.501317] }, { "keytime": 5907.671387, "rotation": [ 0.514760, -0.498859, 0.484879, 0.501053] }, { "keytime": 5941.004883, "rotation": [ 0.514243, -0.499140, 0.485415, 0.500785] }, { "keytime": 5974.338379, "rotation": [ 0.513747, -0.499408, 0.485928, 0.500529] }, { "keytime": 6007.671875, "rotation": [ 0.513261, -0.499669, 0.486431, 0.500279] }, { "keytime": 6041.005371, "rotation": [ 0.512770, -0.499930, 0.486937, 0.500029] }, { "keytime": 6074.338867, "rotation": [ 0.512314, -0.500178, 0.487407, 0.499790] }, { "keytime": 6107.672363, "rotation": [ 0.511873, -0.500416, 0.487861, 0.499561] }, { "keytime": 6141.005859, "rotation": [ 0.511435, -0.500650, 0.488311, 0.499335] }, { "keytime": 6174.339355, "rotation": [ 0.511029, -0.500866, 0.488728, 0.499126] }, { "keytime": 6207.672852, "rotation": [ 0.510643, -0.501070, 0.489124, 0.498928] }, { "keytime": 6241.006348, "rotation": [ 0.510275, -0.501268, 0.489502, 0.498736] }, { "keytime": 6274.339844, "rotation": [ 0.509941, -0.501447, 0.489844, 0.498562] }, { "keytime": 6307.673340, "rotation": [ 0.509629, -0.501612, 0.490163, 0.498401] }, { "keytime": 6341.006836, "rotation": [ 0.509333, -0.501769, 0.490465, 0.498249] }, { "keytime": 6374.340332, "rotation": [ 0.509071, -0.501906, 0.490733, 0.498114] }, { "keytime": 6407.673828, "rotation": [ 0.508843, -0.502028, 0.490966, 0.497995] }, { "keytime": 6441.007324, "rotation": [ 0.508635, -0.502139, 0.491179, 0.497886] }, { "keytime": 6474.340820, "rotation": [ 0.508459, -0.502231, 0.491358, 0.497795] }, { "keytime": 6507.674316, "rotation": [ 0.508309, -0.502310, 0.491511, 0.497718] }, { "keytime": 6541.007812, "rotation": [ 0.508182, -0.502377, 0.491640, 0.497653] }, { "keytime": 6574.341309, "rotation": [ 0.508095, -0.502423, 0.491729, 0.497607] }, { "keytime": 6607.674805, "rotation": [ 0.508034, -0.502456, 0.491792, 0.497575] } ] }, { "boneId": "Bone_026", "keyframes": [ { "keytime": 41.000000, "rotation": [ 0.058774, -0.116409, 0.109280, 0.985420] }, { "keytime": 141.000000, "rotation": [ 0.058775, -0.116415, 0.109279, 0.985419] }, { "keytime": 207.666656, "rotation": [ 0.058777, -0.116423, 0.109278, 0.985418] }, { "keytime": 307.666656, "rotation": [ 0.058780, -0.116445, 0.109278, 0.985416] }, { "keytime": 374.333344, "rotation": [ 0.058783, -0.116465, 0.109277, 0.985413] }, { "keytime": 441.000031, "rotation": [ 0.058786, -0.116490, 0.109277, 0.985410] }, { "keytime": 541.000061, "rotation": [ 0.058791, -0.116536, 0.109275, 0.985404] }, { "keytime": 607.666687, "rotation": [ 0.058795, -0.116572, 0.109273, 0.985400] }, { "keytime": 707.666626, "rotation": [ 0.058801, -0.116632, 0.109270, 0.985393] }, { "keytime": 840.999878, "rotation": [ 0.058811, -0.116725, 0.109267, 0.985382] }, { "keytime": 1007.666443, "rotation": [ 0.058825, -0.116856, 0.109264, 0.985366] }, { "keytime": 1341.000122, "rotation": [ 0.058854, -0.117135, 0.109258, 0.985332] }, { "keytime": 1474.333618, "rotation": [ 0.058865, -0.117239, 0.109255, 0.985319] }, { "keytime": 1541.000366, "rotation": [ 0.058870, -0.117288, 0.109254, 0.985313] }, { "keytime": 1641.000488, "rotation": [ 0.058877, -0.117355, 0.109252, 0.985305] }, { "keytime": 1707.667236, "rotation": [ 0.058882, -0.117396, 0.109252, 0.985300] }, { "keytime": 1774.333984, "rotation": [ 0.058886, -0.117432, 0.109251, 0.985295] }, { "keytime": 1874.334106, "rotation": [ 0.058891, -0.117480, 0.109251, 0.985289] }, { "keytime": 1974.334229, "rotation": [ 0.058896, -0.117517, 0.109250, 0.985285] }, { "keytime": 2041.000977, "rotation": [ 0.058898, -0.117536, 0.109249, 0.985282] }, { "keytime": 2141.000977, "rotation": [ 0.058901, -0.117556, 0.109248, 0.985280] }, { "keytime": 2207.667480, "rotation": [ 0.058902, -0.117565, 0.109247, 0.985279] }, { "keytime": 2307.667236, "rotation": [ 0.058903, -0.117567, 0.109244, 0.985279] }, { "keytime": 2341.000488, "rotation": [ 0.058903, -0.117565, 0.109242, 0.985279] }, { "keytime": 2374.333740, "rotation": [ 0.058902, -0.117562, 0.109237, 0.985280] }, { "keytime": 2407.666992, "rotation": [ 0.058903, -0.117555, 0.109229, 0.985282] }, { "keytime": 2441.000244, "rotation": [ 0.058903, -0.117546, 0.109218, 0.985284] }, { "keytime": 2474.333496, "rotation": [ 0.058904, -0.117535, 0.109205, 0.985287] }, { "keytime": 2507.666748, "rotation": [ 0.058905, -0.117523, 0.109189, 0.985290] }, { "keytime": 2541.000000, "rotation": [ 0.058905, -0.117508, 0.109170, 0.985294] }, { "keytime": 2574.333252, "rotation": [ 0.058906, -0.117490, 0.109149, 0.985298] }, { "keytime": 2607.666504, "rotation": [ 0.058907, -0.117471, 0.109125, 0.985303] }, { "keytime": 2640.999756, "rotation": [ 0.058908, -0.117449, 0.109099, 0.985309] }, { "keytime": 2707.666260, "rotation": [ 0.058911, -0.117400, 0.109038, 0.985321] }, { "keytime": 2740.999512, "rotation": [ 0.058912, -0.117372, 0.109003, 0.985328] }, { "keytime": 2807.666016, "rotation": [ 0.058915, -0.117309, 0.108926, 0.985344] }, { "keytime": 2840.999268, "rotation": [ 0.058917, -0.117275, 0.108884, 0.985353] }, { "keytime": 2907.665771, "rotation": [ 0.058921, -0.117200, 0.108792, 0.985371] }, { "keytime": 2940.999023, "rotation": [ 0.058923, -0.117159, 0.108742, 0.985382] }, { "keytime": 3007.665527, "rotation": [ 0.058927, -0.117073, 0.108635, 0.985403] }, { "keytime": 3040.998779, "rotation": [ 0.058930, -0.117027, 0.108580, 0.985415] }, { "keytime": 3107.665283, "rotation": [ 0.058934, -0.116929, 0.108459, 0.985440] }, { "keytime": 3140.998535, "rotation": [ 0.058937, -0.116878, 0.108396, 0.985452] }, { "keytime": 3207.665039, "rotation": [ 0.058942, -0.116771, 0.108264, 0.985479] }, { "keytime": 3240.998291, "rotation": [ 0.058945, -0.116716, 0.108196, 0.985493] }, { "keytime": 3340.998047, "rotation": [ 0.058954, -0.116541, 0.107982, 0.985537] }, { "keytime": 3440.997803, "rotation": [ 0.058963, -0.116357, 0.107755, 0.985583] }, { "keytime": 3540.997559, "rotation": [ 0.058972, -0.116167, 0.107520, 0.985630] }, { "keytime": 3574.330811, "rotation": [ 0.058975, -0.116101, 0.107439, 0.985647] }, { "keytime": 3640.997314, "rotation": [ 0.058981, -0.115974, 0.107282, 0.985678] }, { "keytime": 3674.330566, "rotation": [ 0.058983, -0.115908, 0.107201, 0.985695] }, { "keytime": 3740.997070, "rotation": [ 0.058989, -0.115781, 0.107045, 0.985726] }, { "keytime": 3774.330322, "rotation": [ 0.058992, -0.115715, 0.106964, 0.985743] }, { "keytime": 3874.330078, "rotation": [ 0.059002, -0.115525, 0.106731, 0.985790] }, { "keytime": 3974.329834, "rotation": [ 0.059011, -0.115343, 0.106507, 0.985835] }, { "keytime": 4074.329590, "rotation": [ 0.059020, -0.115170, 0.106295, 0.985877] }, { "keytime": 4174.329590, "rotation": [ 0.059027, -0.115011, 0.106099, 0.985916] }, { "keytime": 4207.663086, "rotation": [ 0.059030, -0.114961, 0.106038, 0.985929] }, { "keytime": 4274.330078, "rotation": [ 0.059034, -0.114866, 0.105921, 0.985952] }, { "keytime": 4307.663574, "rotation": [ 0.059037, -0.114822, 0.105866, 0.985963] }, { "keytime": 4374.330566, "rotation": [ 0.059041, -0.114737, 0.105762, 0.985984] }, { "keytime": 4407.664062, "rotation": [ 0.059043, -0.114699, 0.105715, 0.985993] }, { "keytime": 4474.331055, "rotation": [ 0.059046, -0.114626, 0.105626, 0.986011] }, { "keytime": 4507.664551, "rotation": [ 0.059048, -0.114594, 0.105585, 0.986019] }, { "keytime": 4540.998047, "rotation": [ 0.059049, -0.114563, 0.105548, 0.986027] }, { "keytime": 4574.331543, "rotation": [ 0.059051, -0.114534, 0.105512, 0.986034] }, { "keytime": 4607.665039, "rotation": [ 0.059052, -0.114507, 0.105480, 0.986040] }, { "keytime": 4674.332031, "rotation": [ 0.059055, -0.114460, 0.105422, 0.986052] }, { "keytime": 4707.665527, "rotation": [ 0.059055, -0.114440, 0.105397, 0.986057] }, { "keytime": 4774.332520, "rotation": [ 0.059057, -0.114407, 0.105356, 0.986065] }, { "keytime": 4807.666016, "rotation": [ 0.059058, -0.114393, 0.105339, 0.986068] }, { "keytime": 4840.999512, "rotation": [ 0.059058, -0.114382, 0.105325, 0.986071] }, { "keytime": 4874.333008, "rotation": [ 0.059058, -0.114372, 0.105313, 0.986073] }, { "keytime": 4907.666504, "rotation": [ 0.059059, -0.114366, 0.105305, 0.986075] }, { "keytime": 4941.000000, "rotation": [ 0.059059, -0.114361, 0.105299, 0.986076] }, { "keytime": 4974.333496, "rotation": [ 0.059059, -0.114358, 0.105296, 0.986077] }, { "keytime": 5007.666992, "rotation": [ 0.059059, -0.114358, 0.105296, 0.986077] }, { "keytime": 5041.000488, "rotation": [ 0.059059, -0.114360, 0.105300, 0.986076] }, { "keytime": 5074.333984, "rotation": [ 0.059058, -0.114367, 0.105313, 0.986074] }, { "keytime": 5107.667480, "rotation": [ 0.059057, -0.114377, 0.105333, 0.986071] }, { "keytime": 5141.000977, "rotation": [ 0.059055, -0.114391, 0.105360, 0.986066] }, { "keytime": 5174.334473, "rotation": [ 0.059052, -0.114408, 0.105393, 0.986061] }, { "keytime": 5207.667969, "rotation": [ 0.059050, -0.114428, 0.105432, 0.986054] }, { "keytime": 5241.001465, "rotation": [ 0.059046, -0.114454, 0.105482, 0.986046] }, { "keytime": 5274.334961, "rotation": [ 0.059042, -0.114482, 0.105537, 0.986037] }, { "keytime": 5307.668457, "rotation": [ 0.059038, -0.114513, 0.105598, 0.986028] }, { "keytime": 5341.001953, "rotation": [ 0.059033, -0.114549, 0.105668, 0.986016] }, { "keytime": 5374.335449, "rotation": [ 0.059027, -0.114587, 0.105742, 0.986004] }, { "keytime": 5407.668945, "rotation": [ 0.059022, -0.114630, 0.105824, 0.985991] }, { "keytime": 5441.002441, "rotation": [ 0.059015, -0.114676, 0.105914, 0.985976] }, { "keytime": 5474.335938, "rotation": [ 0.059008, -0.114724, 0.106007, 0.985961] }, { "keytime": 5507.669434, "rotation": [ 0.059001, -0.114775, 0.106106, 0.985945] }, { "keytime": 5541.002930, "rotation": [ 0.058994, -0.114830, 0.106212, 0.985927] }, { "keytime": 5574.336426, "rotation": [ 0.058985, -0.114886, 0.106322, 0.985910] }, { "keytime": 5607.669922, "rotation": [ 0.058977, -0.114945, 0.106435, 0.985891] }, { "keytime": 5674.336914, "rotation": [ 0.058960, -0.115069, 0.106677, 0.985851] }, { "keytime": 5707.670410, "rotation": [ 0.058952, -0.115133, 0.106800, 0.985831] }, { "keytime": 5807.670898, "rotation": [ 0.058924, -0.115332, 0.107187, 0.985767] }, { "keytime": 5841.004395, "rotation": [ 0.058914, -0.115400, 0.107320, 0.985746] }, { "keytime": 5907.671387, "rotation": [ 0.058896, -0.115532, 0.107578, 0.985703] }, { "keytime": 5941.004883, "rotation": [ 0.058887, -0.115600, 0.107708, 0.985681] }, { "keytime": 5974.338379, "rotation": [ 0.058878, -0.115664, 0.107833, 0.985661] }, { "keytime": 6041.005371, "rotation": [ 0.058860, -0.115791, 0.108079, 0.985620] }, { "keytime": 6074.338867, "rotation": [ 0.058852, -0.115850, 0.108194, 0.985601] }, { "keytime": 6141.005859, "rotation": [ 0.058836, -0.115964, 0.108415, 0.985564] }, { "keytime": 6174.339355, "rotation": [ 0.058829, -0.116016, 0.108517, 0.985547] }, { "keytime": 6207.672852, "rotation": [ 0.058822, -0.116066, 0.108614, 0.985531] }, { "keytime": 6241.006348, "rotation": [ 0.058815, -0.116114, 0.108706, 0.985516] }, { "keytime": 6274.339844, "rotation": [ 0.058809, -0.116157, 0.108790, 0.985502] }, { "keytime": 6307.673340, "rotation": [ 0.058804, -0.116197, 0.108868, 0.985489] }, { "keytime": 6341.006836, "rotation": [ 0.058798, -0.116235, 0.108942, 0.985476] }, { "keytime": 6374.340332, "rotation": [ 0.058793, -0.116269, 0.109008, 0.985465] }, { "keytime": 6407.673828, "rotation": [ 0.058789, -0.116298, 0.109065, 0.985456] }, { "keytime": 6441.007324, "rotation": [ 0.058786, -0.116325, 0.109117, 0.985447] }, { "keytime": 6474.340820, "rotation": [ 0.058783, -0.116348, 0.109161, 0.985440] }, { "keytime": 6507.674316, "rotation": [ 0.058780, -0.116367, 0.109199, 0.985434] }, { "keytime": 6541.007812, "rotation": [ 0.058778, -0.116384, 0.109230, 0.985428] }, { "keytime": 6574.341309, "rotation": [ 0.058776, -0.116395, 0.109252, 0.985425] }, { "keytime": 6607.674805, "rotation": [ 0.058775, -0.116403, 0.109267, 0.985422] } ] }, { "boneId": "Bone_007", "keyframes": [ { "keytime": 41.000000, "rotation": [ 0.844233, 0.256493, 0.362806, 0.299756] }, { "keytime": 74.333328, "rotation": [ 0.844234, 0.256492, 0.362803, 0.299759] }, { "keytime": 107.666664, "rotation": [ 0.844236, 0.256489, 0.362794, 0.299764] }, { "keytime": 141.000000, "rotation": [ 0.844240, 0.256485, 0.362780, 0.299774] }, { "keytime": 174.333328, "rotation": [ 0.844245, 0.256480, 0.362762, 0.299787] }, { "keytime": 207.666656, "rotation": [ 0.844252, 0.256473, 0.362738, 0.299803] }, { "keytime": 240.999985, "rotation": [ 0.844260, 0.256464, 0.362707, 0.299825] }, { "keytime": 274.333313, "rotation": [ 0.844270, 0.256453, 0.362671, 0.299851] }, { "keytime": 307.666656, "rotation": [ 0.844281, 0.256441, 0.362630, 0.299879] }, { "keytime": 341.000000, "rotation": [ 0.844294, 0.256427, 0.362582, 0.299912] }, { "keytime": 374.333344, "rotation": [ 0.844308, 0.256412, 0.362531, 0.299948] }, { "keytime": 407.666687, "rotation": [ 0.844323, 0.256395, 0.362473, 0.299988] }, { "keytime": 441.000031, "rotation": [ 0.844341, 0.256376, 0.362409, 0.300034] }, { "keytime": 474.333374, "rotation": [ 0.844359, 0.256356, 0.362341, 0.300082] }, { "keytime": 507.666718, "rotation": [ 0.844378, 0.256334, 0.362268, 0.300133] }, { "keytime": 541.000061, "rotation": [ 0.844400, 0.256311, 0.362188, 0.300188] }, { "keytime": 574.333374, "rotation": [ 0.844423, 0.256286, 0.362104, 0.300247] }, { "keytime": 607.666687, "rotation": [ 0.844447, 0.256260, 0.362016, 0.300309] }, { "keytime": 674.333313, "rotation": [ 0.844498, 0.256203, 0.361823, 0.300444] }, { "keytime": 707.666626, "rotation": [ 0.844526, 0.256173, 0.361722, 0.300515] }, { "keytime": 740.999939, "rotation": [ 0.844554, 0.256142, 0.361615, 0.300590] }, { "keytime": 807.666565, "rotation": [ 0.844616, 0.256075, 0.361387, 0.300748] }, { "keytime": 840.999878, "rotation": [ 0.844647, 0.256040, 0.361270, 0.300830] }, { "keytime": 907.666504, "rotation": [ 0.844713, 0.255967, 0.361022, 0.301004] }, { "keytime": 940.999817, "rotation": [ 0.844747, 0.255929, 0.360896, 0.301092] }, { "keytime": 1040.999756, "rotation": [ 0.844853, 0.255812, 0.360501, 0.301369] }, { "keytime": 1074.333130, "rotation": [ 0.844889, 0.255771, 0.360363, 0.301466] }, { "keytime": 1140.999878, "rotation": [ 0.844961, 0.255691, 0.360093, 0.301656] }, { "keytime": 1174.333252, "rotation": [ 0.844998, 0.255650, 0.359954, 0.301753] }, { "keytime": 1207.666626, "rotation": [ 0.845034, 0.255610, 0.359819, 0.301848] }, { "keytime": 1241.000000, "rotation": [ 0.845070, 0.255568, 0.359680, 0.301945] }, { "keytime": 1341.000122, "rotation": [ 0.845178, 0.255448, 0.359275, 0.302228] }, { "keytime": 1374.333496, "rotation": [ 0.845212, 0.255410, 0.359145, 0.302319] }, { "keytime": 1441.000244, "rotation": [ 0.845280, 0.255334, 0.358889, 0.302497] }, { "keytime": 1474.333618, "rotation": [ 0.845313, 0.255298, 0.358766, 0.302582] }, { "keytime": 1541.000366, "rotation": [ 0.845376, 0.255228, 0.358526, 0.302748] }, { "keytime": 1574.333740, "rotation": [ 0.845406, 0.255195, 0.358414, 0.302825] }, { "keytime": 1641.000488, "rotation": [ 0.845463, 0.255132, 0.358198, 0.302974] }, { "keytime": 1674.333862, "rotation": [ 0.845490, 0.255102, 0.358098, 0.303044] }, { "keytime": 1707.667236, "rotation": [ 0.845515, 0.255073, 0.358002, 0.303112] }, { "keytime": 1741.000610, "rotation": [ 0.845539, 0.255046, 0.357909, 0.303177] }, { "keytime": 1774.333984, "rotation": [ 0.845562, 0.255020, 0.357824, 0.303236] }, { "keytime": 1807.667358, "rotation": [ 0.845583, 0.254996, 0.357742, 0.303292] }, { "keytime": 1841.000732, "rotation": [ 0.845604, 0.254973, 0.357664, 0.303347] }, { "keytime": 1874.334106, "rotation": [ 0.845623, 0.254952, 0.357592, 0.303396] }, { "keytime": 1907.667480, "rotation": [ 0.845640, 0.254933, 0.357528, 0.303441] }, { "keytime": 1941.000854, "rotation": [ 0.845656, 0.254914, 0.357466, 0.303485] }, { "keytime": 1974.334229, "rotation": [ 0.845670, 0.254898, 0.357411, 0.303523] }, { "keytime": 2007.667603, "rotation": [ 0.845683, 0.254883, 0.357361, 0.303557] }, { "keytime": 2041.000977, "rotation": [ 0.845695, 0.254870, 0.357316, 0.303589] }, { "keytime": 2074.334473, "rotation": [ 0.845705, 0.254859, 0.357278, 0.303615] }, { "keytime": 2107.667725, "rotation": [ 0.845714, 0.254849, 0.357245, 0.303638] }, { "keytime": 2141.000977, "rotation": [ 0.845721, 0.254841, 0.357217, 0.303658] }, { "keytime": 2174.334229, "rotation": [ 0.845727, 0.254834, 0.357195, 0.303673] }, { "keytime": 2207.667480, "rotation": [ 0.845731, 0.254829, 0.357178, 0.303685] }, { "keytime": 2241.000732, "rotation": [ 0.845734, 0.254826, 0.357167, 0.303692] }, { "keytime": 2274.333984, "rotation": [ 0.845736, 0.254825, 0.357162, 0.303695] }, { "keytime": 2307.667236, "rotation": [ 0.845736, 0.254824, 0.357161, 0.303695] }, { "keytime": 2341.000488, "rotation": [ 0.845736, 0.254825, 0.357165, 0.303692] }, { "keytime": 2374.333740, "rotation": [ 0.845735, 0.254826, 0.357170, 0.303686] }, { "keytime": 2407.666992, "rotation": [ 0.845734, 0.254826, 0.357181, 0.303677] }, { "keytime": 2441.000244, "rotation": [ 0.845732, 0.254828, 0.357194, 0.303664] }, { "keytime": 2474.333496, "rotation": [ 0.845730, 0.254829, 0.357211, 0.303649] }, { "keytime": 2507.666748, "rotation": [ 0.845728, 0.254831, 0.357230, 0.303631] }, { "keytime": 2541.000000, "rotation": [ 0.845726, 0.254833, 0.357254, 0.303609] }, { "keytime": 2574.333252, "rotation": [ 0.845722, 0.254835, 0.357281, 0.303584] }, { "keytime": 2607.666504, "rotation": [ 0.845719, 0.254838, 0.357311, 0.303556] }, { "keytime": 2640.999756, "rotation": [ 0.845715, 0.254841, 0.357344, 0.303525] }, { "keytime": 2707.666260, "rotation": [ 0.845706, 0.254848, 0.357421, 0.303453] }, { "keytime": 2740.999512, "rotation": [ 0.845701, 0.254852, 0.357464, 0.303413] }, { "keytime": 2807.666016, "rotation": [ 0.845689, 0.254861, 0.357562, 0.303322] }, { "keytime": 2840.999268, "rotation": [ 0.845683, 0.254866, 0.357615, 0.303274] }, { "keytime": 2874.332520, "rotation": [ 0.845676, 0.254872, 0.357672, 0.303220] }, { "keytime": 2907.665771, "rotation": [ 0.845669, 0.254877, 0.357732, 0.303165] }, { "keytime": 2940.999023, "rotation": [ 0.845662, 0.254883, 0.357795, 0.303107] }, { "keytime": 3007.665527, "rotation": [ 0.845645, 0.254896, 0.357931, 0.302982] }, { "keytime": 3040.998779, "rotation": [ 0.845637, 0.254903, 0.358002, 0.302916] }, { "keytime": 3107.665283, "rotation": [ 0.845618, 0.254917, 0.358156, 0.302774] }, { "keytime": 3140.998535, "rotation": [ 0.845608, 0.254925, 0.358236, 0.302701] }, { "keytime": 3207.665039, "rotation": [ 0.845587, 0.254942, 0.358405, 0.302545] }, { "keytime": 3240.998291, "rotation": [ 0.845576, 0.254950, 0.358492, 0.302465] }, { "keytime": 3340.998047, "rotation": [ 0.845541, 0.254977, 0.358769, 0.302211] }, { "keytime": 3440.997803, "rotation": [ 0.845503, 0.255007, 0.359063, 0.301943] }, { "keytime": 3540.997559, "rotation": [ 0.845463, 0.255037, 0.359370, 0.301666] }, { "keytime": 3640.997314, "rotation": [ 0.845420, 0.255069, 0.359684, 0.301383] }, { "keytime": 3674.330566, "rotation": [ 0.845406, 0.255081, 0.359791, 0.301287] }, { "keytime": 3740.997070, "rotation": [ 0.845377, 0.255103, 0.360000, 0.301099] }, { "keytime": 3774.330322, "rotation": [ 0.845362, 0.255114, 0.360107, 0.301002] }, { "keytime": 3840.996826, "rotation": [ 0.845333, 0.255136, 0.360314, 0.300818] }, { "keytime": 3874.330078, "rotation": [ 0.845318, 0.255147, 0.360421, 0.300723] }, { "keytime": 3974.329834, "rotation": [ 0.845273, 0.255182, 0.360726, 0.300453] }, { "keytime": 4074.329590, "rotation": [ 0.845229, 0.255216, 0.361020, 0.300197] }, { "keytime": 4174.329590, "rotation": [ 0.845185, 0.255250, 0.361297, 0.299957] }, { "keytime": 4207.663086, "rotation": [ 0.845171, 0.255260, 0.361385, 0.299882] }, { "keytime": 4274.330078, "rotation": [ 0.845143, 0.255282, 0.361555, 0.299738] }, { "keytime": 4307.663574, "rotation": [ 0.845129, 0.255292, 0.361636, 0.299670] }, { "keytime": 4374.330566, "rotation": [ 0.845102, 0.255313, 0.361792, 0.299541] }, { "keytime": 4407.664062, "rotation": [ 0.845089, 0.255323, 0.361865, 0.299481] }, { "keytime": 4474.331055, "rotation": [ 0.845063, 0.255343, 0.362004, 0.299368] }, { "keytime": 4507.664551, "rotation": [ 0.845051, 0.255353, 0.362068, 0.299317] }, { "keytime": 4574.331543, "rotation": [ 0.845027, 0.255372, 0.362191, 0.299221] }, { "keytime": 4607.665039, "rotation": [ 0.845015, 0.255381, 0.362246, 0.299179] }, { "keytime": 4674.332031, "rotation": [ 0.844992, 0.255399, 0.362350, 0.299101] }, { "keytime": 4707.665527, "rotation": [ 0.844981, 0.255407, 0.362398, 0.299068] }, { "keytime": 4774.332520, "rotation": [ 0.844961, 0.255424, 0.362483, 0.299009] }, { "keytime": 4807.666016, "rotation": [ 0.844951, 0.255431, 0.362520, 0.298985] }, { "keytime": 4874.333008, "rotation": [ 0.844932, 0.255447, 0.362588, 0.298944] }, { "keytime": 4941.000000, "rotation": [ 0.844914, 0.255461, 0.362642, 0.298916] }, { "keytime": 4974.333496, "rotation": [ 0.844905, 0.255468, 0.362664, 0.298907] }, { "keytime": 5041.000488, "rotation": [ 0.844889, 0.255483, 0.362703, 0.298895] }, { "keytime": 5107.667480, "rotation": [ 0.844869, 0.255503, 0.362736, 0.298892] }, { "keytime": 5174.334473, "rotation": [ 0.844847, 0.255528, 0.362767, 0.298896] }, { "keytime": 5207.667969, "rotation": [ 0.844835, 0.255543, 0.362781, 0.298901] }, { "keytime": 5274.334961, "rotation": [ 0.844808, 0.255578, 0.362807, 0.298916] }, { "keytime": 5307.668457, "rotation": [ 0.844794, 0.255597, 0.362818, 0.298927] }, { "keytime": 5374.335449, "rotation": [ 0.844763, 0.255639, 0.362838, 0.298953] }, { "keytime": 5474.335938, "rotation": [ 0.844712, 0.255712, 0.362861, 0.299006] }, { "keytime": 5574.336426, "rotation": [ 0.844658, 0.255794, 0.362876, 0.299072] }, { "keytime": 5674.336914, "rotation": [ 0.844600, 0.255883, 0.362883, 0.299150] }, { "keytime": 5807.670898, "rotation": [ 0.844523, 0.256008, 0.362881, 0.299263] }, { "keytime": 5941.004883, "rotation": [ 0.844447, 0.256132, 0.362872, 0.299384] }, { "keytime": 6041.005371, "rotation": [ 0.844394, 0.256218, 0.362862, 0.299470] }, { "keytime": 6141.005859, "rotation": [ 0.844348, 0.256296, 0.362849, 0.299549] }, { "keytime": 6207.672852, "rotation": [ 0.844321, 0.256342, 0.362840, 0.299597] }, { "keytime": 6274.339844, "rotation": [ 0.844297, 0.256382, 0.362832, 0.299639] }, { "keytime": 6341.006836, "rotation": [ 0.844277, 0.256417, 0.362824, 0.299675] }, { "keytime": 6407.673828, "rotation": [ 0.844261, 0.256445, 0.362818, 0.299705] }, { "keytime": 6474.340820, "rotation": [ 0.844248, 0.256466, 0.362813, 0.299728] }, { "keytime": 6541.007812, "rotation": [ 0.844239, 0.256482, 0.362809, 0.299744] }, { "keytime": 6607.674805, "rotation": [ 0.844235, 0.256490, 0.362807, 0.299754] } ] }, { "boneId": "Bone_008", "keyframes": [ { "keytime": 41.000000, "rotation": [ 0.930243, 0.004179, -0.112102, 0.349376] }, { "keytime": 74.333328, "rotation": [ 0.930243, 0.004178, -0.112099, 0.349378] }, { "keytime": 107.666664, "rotation": [ 0.930243, 0.004175, -0.112092, 0.349380] }, { "keytime": 141.000000, "rotation": [ 0.930242, 0.004169, -0.112079, 0.349385] }, { "keytime": 174.333328, "rotation": [ 0.930242, 0.004162, -0.112063, 0.349391] }, { "keytime": 207.666656, "rotation": [ 0.930242, 0.004153, -0.112041, 0.349399] }, { "keytime": 240.999985, "rotation": [ 0.930241, 0.004142, -0.112014, 0.349410] }, { "keytime": 274.333313, "rotation": [ 0.930240, 0.004129, -0.111981, 0.349422] }, { "keytime": 307.666656, "rotation": [ 0.930240, 0.004114, -0.111944, 0.349436] }, { "keytime": 341.000000, "rotation": [ 0.930239, 0.004097, -0.111901, 0.349452] }, { "keytime": 374.333344, "rotation": [ 0.930238, 0.004078, -0.111856, 0.349470] }, { "keytime": 407.666687, "rotation": [ 0.930237, 0.004057, -0.111804, 0.349489] }, { "keytime": 441.000031, "rotation": [ 0.930236, 0.004033, -0.111745, 0.349512] }, { "keytime": 474.333374, "rotation": [ 0.930234, 0.004008, -0.111684, 0.349535] }, { "keytime": 507.666718, "rotation": [ 0.930233, 0.003982, -0.111619, 0.349559] }, { "keytime": 541.000061, "rotation": [ 0.930232, 0.003954, -0.111547, 0.349586] }, { "keytime": 574.333374, "rotation": [ 0.930230, 0.003923, -0.111471, 0.349615] }, { "keytime": 607.666687, "rotation": [ 0.930229, 0.003890, -0.111392, 0.349645] }, { "keytime": 674.333313, "rotation": [ 0.930225, 0.003819, -0.111219, 0.349711] }, { "keytime": 707.666626, "rotation": [ 0.930223, 0.003782, -0.111128, 0.349745] }, { "keytime": 740.999939, "rotation": [ 0.930221, 0.003744, -0.111032, 0.349781] }, { "keytime": 807.666565, "rotation": [ 0.930217, 0.003662, -0.110827, 0.349858] }, { "keytime": 840.999878, "rotation": [ 0.930214, 0.003619, -0.110722, 0.349898] }, { "keytime": 907.666504, "rotation": [ 0.930210, 0.003528, -0.110499, 0.349982] }, { "keytime": 940.999817, "rotation": [ 0.930207, 0.003482, -0.110386, 0.350025] }, { "keytime": 1040.999756, "rotation": [ 0.930199, 0.003338, -0.110030, 0.350160] }, { "keytime": 1074.333130, "rotation": [ 0.930196, 0.003288, -0.109906, 0.350207] }, { "keytime": 1140.999878, "rotation": [ 0.930191, 0.003190, -0.109663, 0.350298] }, { "keytime": 1174.333252, "rotation": [ 0.930188, 0.003139, -0.109538, 0.350345] }, { "keytime": 1207.666626, "rotation": [ 0.930185, 0.003090, -0.109416, 0.350391] }, { "keytime": 1241.000000, "rotation": [ 0.930183, 0.003040, -0.109291, 0.350438] }, { "keytime": 1307.666748, "rotation": [ 0.930177, 0.002942, -0.109050, 0.350528] }, { "keytime": 1341.000122, "rotation": [ 0.930174, 0.002893, -0.108928, 0.350574] }, { "keytime": 1374.333496, "rotation": [ 0.930171, 0.002845, -0.108811, 0.350619] }, { "keytime": 1441.000244, "rotation": [ 0.930166, 0.002752, -0.108581, 0.350705] }, { "keytime": 1474.333618, "rotation": [ 0.930163, 0.002707, -0.108471, 0.350747] }, { "keytime": 1541.000366, "rotation": [ 0.930158, 0.002621, -0.108256, 0.350828] }, { "keytime": 1574.333740, "rotation": [ 0.930156, 0.002581, -0.108156, 0.350865] }, { "keytime": 1641.000488, "rotation": [ 0.930151, 0.002502, -0.107962, 0.350939] }, { "keytime": 1674.333862, "rotation": [ 0.930148, 0.002466, -0.107872, 0.350972] }, { "keytime": 1707.667236, "rotation": [ 0.930146, 0.002430, -0.107786, 0.351005] }, { "keytime": 1741.000610, "rotation": [ 0.930144, 0.002396, -0.107703, 0.351036] }, { "keytime": 1774.333984, "rotation": [ 0.930142, 0.002365, -0.107626, 0.351065] }, { "keytime": 1807.667358, "rotation": [ 0.930140, 0.002336, -0.107553, 0.351092] }, { "keytime": 1841.000732, "rotation": [ 0.930139, 0.002307, -0.107483, 0.351119] }, { "keytime": 1874.334106, "rotation": [ 0.930137, 0.002281, -0.107418, 0.351143] }, { "keytime": 1907.667480, "rotation": [ 0.930135, 0.002258, -0.107360, 0.351165] }, { "keytime": 1941.000854, "rotation": [ 0.930134, 0.002235, -0.107305, 0.351186] }, { "keytime": 1974.334229, "rotation": [ 0.930133, 0.002215, -0.107256, 0.351204] }, { "keytime": 2007.667603, "rotation": [ 0.930132, 0.002197, -0.107211, 0.351221] }, { "keytime": 2041.000977, "rotation": [ 0.930131, 0.002181, -0.107170, 0.351236] }, { "keytime": 2074.334473, "rotation": [ 0.930130, 0.002167, -0.107136, 0.351249] }, { "keytime": 2107.667725, "rotation": [ 0.930129, 0.002155, -0.107107, 0.351260] }, { "keytime": 2141.000977, "rotation": [ 0.930128, 0.002144, -0.107082, 0.351269] }, { "keytime": 2174.334229, "rotation": [ 0.930128, 0.002136, -0.107062, 0.351277] }, { "keytime": 2207.667480, "rotation": [ 0.930127, 0.002130, -0.107047, 0.351283] }, { "keytime": 2241.000732, "rotation": [ 0.930127, 0.002127, -0.107037, 0.351286] }, { "keytime": 2274.333984, "rotation": [ 0.930127, 0.002125, -0.107033, 0.351288] }, { "keytime": 2307.667236, "rotation": [ 0.930127, 0.002125, -0.107032, 0.351288] }, { "keytime": 2341.000488, "rotation": [ 0.930127, 0.002126, -0.107035, 0.351286] }, { "keytime": 2374.333740, "rotation": [ 0.930128, 0.002130, -0.107039, 0.351284] }, { "keytime": 2407.666992, "rotation": [ 0.930129, 0.002137, -0.107047, 0.351279] }, { "keytime": 2441.000244, "rotation": [ 0.930130, 0.002145, -0.107057, 0.351272] }, { "keytime": 2474.333496, "rotation": [ 0.930132, 0.002156, -0.107070, 0.351264] }, { "keytime": 2507.666748, "rotation": [ 0.930133, 0.002169, -0.107085, 0.351255] }, { "keytime": 2541.000000, "rotation": [ 0.930135, 0.002184, -0.107103, 0.351244] }, { "keytime": 2574.333252, "rotation": [ 0.930138, 0.002201, -0.107123, 0.351231] }, { "keytime": 2607.666504, "rotation": [ 0.930141, 0.002220, -0.107146, 0.351217] }, { "keytime": 2640.999756, "rotation": [ 0.930143, 0.002242, -0.107172, 0.351201] }, { "keytime": 2707.666260, "rotation": [ 0.930150, 0.002291, -0.107231, 0.351165] }, { "keytime": 2740.999512, "rotation": [ 0.930154, 0.002319, -0.107264, 0.351144] }, { "keytime": 2807.666016, "rotation": [ 0.930163, 0.002381, -0.107340, 0.351098] }, { "keytime": 2840.999268, "rotation": [ 0.930167, 0.002415, -0.107380, 0.351073] }, { "keytime": 2907.665771, "rotation": [ 0.930178, 0.002490, -0.107470, 0.351018] }, { "keytime": 2940.999023, "rotation": [ 0.930183, 0.002529, -0.107519, 0.350988] }, { "keytime": 3007.665527, "rotation": [ 0.930195, 0.002615, -0.107624, 0.350925] }, { "keytime": 3040.998779, "rotation": [ 0.930201, 0.002660, -0.107679, 0.350891] }, { "keytime": 3107.665283, "rotation": [ 0.930214, 0.002756, -0.107799, 0.350819] }, { "keytime": 3140.998535, "rotation": [ 0.930221, 0.002806, -0.107861, 0.350782] }, { "keytime": 3207.665039, "rotation": [ 0.930235, 0.002911, -0.107992, 0.350703] }, { "keytime": 3240.998291, "rotation": [ 0.930242, 0.002965, -0.108060, 0.350662] }, { "keytime": 3340.998047, "rotation": [ 0.930265, 0.003135, -0.108277, 0.350534] }, { "keytime": 3440.997803, "rotation": [ 0.930288, 0.003314, -0.108508, 0.350399] }, { "keytime": 3540.997559, "rotation": [ 0.930312, 0.003496, -0.108750, 0.350259] }, { "keytime": 3640.997314, "rotation": [ 0.930335, 0.003681, -0.109000, 0.350117] }, { "keytime": 3674.330566, "rotation": [ 0.930343, 0.003744, -0.109085, 0.350069] }, { "keytime": 3740.997070, "rotation": [ 0.930358, 0.003867, -0.109251, 0.349976] }, { "keytime": 3774.330322, "rotation": [ 0.930366, 0.003928, -0.109337, 0.349927] }, { "keytime": 3840.996826, "rotation": [ 0.930381, 0.004046, -0.109505, 0.349834] }, { "keytime": 3874.330078, "rotation": [ 0.930388, 0.004106, -0.109592, 0.349787] }, { "keytime": 3940.996582, "rotation": [ 0.930401, 0.004218, -0.109757, 0.349698] }, { "keytime": 3974.329834, "rotation": [ 0.930408, 0.004274, -0.109841, 0.349653] }, { "keytime": 4007.663086, "rotation": [ 0.930414, 0.004328, -0.109922, 0.349611] }, { "keytime": 4074.329590, "rotation": [ 0.930426, 0.004431, -0.110083, 0.349527] }, { "keytime": 4174.329590, "rotation": [ 0.930442, 0.004574, -0.110315, 0.349409] }, { "keytime": 4207.663086, "rotation": [ 0.930447, 0.004618, -0.110388, 0.349373] }, { "keytime": 4274.330078, "rotation": [ 0.930456, 0.004701, -0.110533, 0.349303] }, { "keytime": 4340.997070, "rotation": [ 0.930463, 0.004775, -0.110670, 0.349239] }, { "keytime": 4374.330566, "rotation": [ 0.930466, 0.004810, -0.110738, 0.349208] }, { "keytime": 4440.997559, "rotation": [ 0.930472, 0.004870, -0.110863, 0.349153] }, { "keytime": 4474.331055, "rotation": [ 0.930474, 0.004899, -0.110925, 0.349127] }, { "keytime": 4507.664551, "rotation": [ 0.930476, 0.004924, -0.110983, 0.349103] }, { "keytime": 4540.998047, "rotation": [ 0.930478, 0.004947, -0.111039, 0.349080] }, { "keytime": 4574.331543, "rotation": [ 0.930479, 0.004968, -0.111094, 0.349059] }, { "keytime": 4607.665039, "rotation": [ 0.930480, 0.004987, -0.111146, 0.349040] }, { "keytime": 4674.332031, "rotation": [ 0.930481, 0.005017, -0.111245, 0.349005] }, { "keytime": 4707.665527, "rotation": [ 0.930481, 0.005029, -0.111291, 0.348990] }, { "keytime": 4774.332520, "rotation": [ 0.930480, 0.005045, -0.111376, 0.348966] }, { "keytime": 4807.666016, "rotation": [ 0.930479, 0.005050, -0.111415, 0.348956] }, { "keytime": 4840.999512, "rotation": [ 0.930477, 0.005052, -0.111452, 0.348948] }, { "keytime": 4874.333008, "rotation": [ 0.930476, 0.005052, -0.111488, 0.348941] }, { "keytime": 4907.666504, "rotation": [ 0.930474, 0.005050, -0.111520, 0.348936] }, { "keytime": 4941.000000, "rotation": [ 0.930471, 0.005045, -0.111551, 0.348933] }, { "keytime": 5007.666992, "rotation": [ 0.930466, 0.005030, -0.111606, 0.348931] }, { "keytime": 5074.333984, "rotation": [ 0.930459, 0.005008, -0.111656, 0.348933] }, { "keytime": 5174.334473, "rotation": [ 0.930447, 0.004968, -0.111727, 0.348942] }, { "keytime": 5207.667969, "rotation": [ 0.930443, 0.004953, -0.111749, 0.348947] }, { "keytime": 5241.001465, "rotation": [ 0.930438, 0.004936, -0.111772, 0.348952] }, { "keytime": 5307.668457, "rotation": [ 0.930428, 0.004902, -0.111812, 0.348965] }, { "keytime": 5341.001953, "rotation": [ 0.930423, 0.004882, -0.111833, 0.348973] }, { "keytime": 5407.668945, "rotation": [ 0.930412, 0.004842, -0.111870, 0.348990] }, { "keytime": 5507.669434, "rotation": [ 0.930395, 0.004776, -0.111921, 0.349022] }, { "keytime": 5574.336426, "rotation": [ 0.930382, 0.004729, -0.111951, 0.349046] }, { "keytime": 5674.336914, "rotation": [ 0.930363, 0.004655, -0.111990, 0.349087] }, { "keytime": 5774.337402, "rotation": [ 0.930344, 0.004580, -0.112022, 0.349129] }, { "keytime": 5841.004395, "rotation": [ 0.930331, 0.004530, -0.112040, 0.349157] }, { "keytime": 5941.004883, "rotation": [ 0.930313, 0.004457, -0.112061, 0.349200] }, { "keytime": 6074.338867, "rotation": [ 0.930290, 0.004368, -0.112081, 0.349255] }, { "keytime": 6141.005859, "rotation": [ 0.930280, 0.004329, -0.112088, 0.349280] }, { "keytime": 6241.006348, "rotation": [ 0.930267, 0.004278, -0.112096, 0.349312] }, { "keytime": 6341.006836, "rotation": [ 0.930257, 0.004237, -0.112100, 0.349339] }, { "keytime": 6374.340332, "rotation": [ 0.930255, 0.004225, -0.112100, 0.349346] }, { "keytime": 6441.007324, "rotation": [ 0.930250, 0.004207, -0.112102, 0.349358] }, { "keytime": 6541.007812, "rotation": [ 0.930245, 0.004187, -0.112102, 0.349370] }, { "keytime": 6607.674805, "rotation": [ 0.930243, 0.004181, -0.112103, 0.349375] } ] }, { "boneId": "Bone_009", "keyframes": [ { "keytime": 41.000000, "rotation": [ 0.941757, 0.116163, 0.193957, -0.248960] }, { "keytime": 74.333328, "rotation": [ 0.941757, 0.116164, 0.193955, -0.248959] }, { "keytime": 107.666664, "rotation": [ 0.941758, 0.116166, 0.193949, -0.248958] }, { "keytime": 141.000000, "rotation": [ 0.941760, 0.116169, 0.193940, -0.248956] }, { "keytime": 174.333328, "rotation": [ 0.941763, 0.116174, 0.193928, -0.248954] }, { "keytime": 207.666656, "rotation": [ 0.941766, 0.116179, 0.193913, -0.248950] }, { "keytime": 240.999985, "rotation": [ 0.941771, 0.116186, 0.193893, -0.248946] }, { "keytime": 274.333313, "rotation": [ 0.941776, 0.116195, 0.193868, -0.248941] }, { "keytime": 307.666656, "rotation": [ 0.941782, 0.116205, 0.193842, -0.248936] }, { "keytime": 341.000000, "rotation": [ 0.941788, 0.116216, 0.193811, -0.248929] }, { "keytime": 374.333344, "rotation": [ 0.941796, 0.116228, 0.193777, -0.248922] }, { "keytime": 407.666687, "rotation": [ 0.941804, 0.116241, 0.193739, -0.248914] }, { "keytime": 441.000031, "rotation": [ 0.941813, 0.116256, 0.193697, -0.248906] }, { "keytime": 474.333374, "rotation": [ 0.941823, 0.116272, 0.193652, -0.248896] }, { "keytime": 507.666718, "rotation": [ 0.941833, 0.116290, 0.193604, -0.248886] }, { "keytime": 541.000061, "rotation": [ 0.941844, 0.116308, 0.193552, -0.248876] }, { "keytime": 574.333374, "rotation": [ 0.941857, 0.116328, 0.193497, -0.248864] }, { "keytime": 607.666687, "rotation": [ 0.941869, 0.116349, 0.193439, -0.248852] }, { "keytime": 674.333313, "rotation": [ 0.941896, 0.116394, 0.193312, -0.248826] }, { "keytime": 707.666626, "rotation": [ 0.941911, 0.116418, 0.193246, -0.248812] }, { "keytime": 740.999939, "rotation": [ 0.941926, 0.116443, 0.193176, -0.248798] }, { "keytime": 807.666565, "rotation": [ 0.941958, 0.116496, 0.193027, -0.248766] }, { "keytime": 840.999878, "rotation": [ 0.941974, 0.116524, 0.192950, -0.248751] }, { "keytime": 907.666504, "rotation": [ 0.942009, 0.116582, 0.192788, -0.248717] }, { "keytime": 940.999817, "rotation": [ 0.942027, 0.116612, 0.192705, -0.248700] }, { "keytime": 1040.999756, "rotation": [ 0.942083, 0.116704, 0.192446, -0.248645] }, { "keytime": 1074.333130, "rotation": [ 0.942102, 0.116737, 0.192355, -0.248627] }, { "keytime": 1140.999878, "rotation": [ 0.942140, 0.116800, 0.192178, -0.248590] }, { "keytime": 1174.333252, "rotation": [ 0.942160, 0.116833, 0.192086, -0.248571] }, { "keytime": 1207.666626, "rotation": [ 0.942179, 0.116864, 0.191998, -0.248553] }, { "keytime": 1241.000000, "rotation": [ 0.942198, 0.116897, 0.191907, -0.248534] }, { "keytime": 1307.666748, "rotation": [ 0.942236, 0.116960, 0.191731, -0.248498] }, { "keytime": 1341.000122, "rotation": [ 0.942255, 0.116992, 0.191642, -0.248480] }, { "keytime": 1374.333496, "rotation": [ 0.942273, 0.117023, 0.191557, -0.248462] }, { "keytime": 1441.000244, "rotation": [ 0.942309, 0.117082, 0.191389, -0.248427] }, { "keytime": 1541.000366, "rotation": [ 0.942359, 0.117168, 0.191152, -0.248378] }, { "keytime": 1574.333740, "rotation": [ 0.942375, 0.117194, 0.191079, -0.248362] }, { "keytime": 1641.000488, "rotation": [ 0.942405, 0.117244, 0.190938, -0.248333] }, { "keytime": 1674.333862, "rotation": [ 0.942419, 0.117268, 0.190872, -0.248319] }, { "keytime": 1707.667236, "rotation": [ 0.942432, 0.117290, 0.190809, -0.248307] }, { "keytime": 1741.000610, "rotation": [ 0.942445, 0.117312, 0.190748, -0.248293] }, { "keytime": 1774.333984, "rotation": [ 0.942457, 0.117332, 0.190692, -0.248282] }, { "keytime": 1841.000732, "rotation": [ 0.942480, 0.117369, 0.190588, -0.248260] }, { "keytime": 1874.334106, "rotation": [ 0.942490, 0.117386, 0.190541, -0.248250] }, { "keytime": 1907.667480, "rotation": [ 0.942499, 0.117401, 0.190499, -0.248241] }, { "keytime": 1941.000854, "rotation": [ 0.942507, 0.117416, 0.190458, -0.248233] }, { "keytime": 1974.334229, "rotation": [ 0.942515, 0.117428, 0.190422, -0.248225] }, { "keytime": 2007.667603, "rotation": [ 0.942522, 0.117440, 0.190390, -0.248218] }, { "keytime": 2041.000977, "rotation": [ 0.942528, 0.117451, 0.190360, -0.248212] }, { "keytime": 2074.334473, "rotation": [ 0.942533, 0.117460, 0.190335, -0.248207] }, { "keytime": 2107.667725, "rotation": [ 0.942538, 0.117467, 0.190314, -0.248203] }, { "keytime": 2141.000977, "rotation": [ 0.942542, 0.117474, 0.190296, -0.248199] }, { "keytime": 2174.334229, "rotation": [ 0.942545, 0.117479, 0.190281, -0.248196] }, { "keytime": 2207.667480, "rotation": [ 0.942547, 0.117483, 0.190270, -0.248193] }, { "keytime": 2241.000732, "rotation": [ 0.942548, 0.117486, 0.190263, -0.248193] }, { "keytime": 2274.333984, "rotation": [ 0.942549, 0.117487, 0.190260, -0.248192] }, { "keytime": 2307.667236, "rotation": [ 0.942549, 0.117487, 0.190259, -0.248191] }, { "keytime": 2341.000488, "rotation": [ 0.942549, 0.117485, 0.190261, -0.248192] }, { "keytime": 2374.333740, "rotation": [ 0.942548, 0.117483, 0.190266, -0.248193] }, { "keytime": 2407.666992, "rotation": [ 0.942546, 0.117479, 0.190273, -0.248196] }, { "keytime": 2474.333496, "rotation": [ 0.942542, 0.117466, 0.190295, -0.248202] }, { "keytime": 2507.666748, "rotation": [ 0.942539, 0.117458, 0.190309, -0.248206] }, { "keytime": 2541.000000, "rotation": [ 0.942535, 0.117449, 0.190326, -0.248211] }, { "keytime": 2574.333252, "rotation": [ 0.942531, 0.117438, 0.190345, -0.248217] }, { "keytime": 2607.666504, "rotation": [ 0.942527, 0.117425, 0.190366, -0.248224] }, { "keytime": 2640.999756, "rotation": [ 0.942522, 0.117412, 0.190390, -0.248231] }, { "keytime": 2707.666260, "rotation": [ 0.942510, 0.117380, 0.190445, -0.248247] }, { "keytime": 2740.999512, "rotation": [ 0.942504, 0.117362, 0.190476, -0.248257] }, { "keytime": 2807.666016, "rotation": [ 0.942489, 0.117323, 0.190546, -0.248278] }, { "keytime": 2840.999268, "rotation": [ 0.942481, 0.117301, 0.190583, -0.248289] }, { "keytime": 2907.665771, "rotation": [ 0.942464, 0.117253, 0.190666, -0.248315] }, { "keytime": 2940.999023, "rotation": [ 0.942454, 0.117228, 0.190711, -0.248328] }, { "keytime": 3007.665527, "rotation": [ 0.942434, 0.117173, 0.190807, -0.248357] }, { "keytime": 3040.998779, "rotation": [ 0.942423, 0.117144, 0.190857, -0.248373] }, { "keytime": 3107.665283, "rotation": [ 0.942400, 0.117082, 0.190966, -0.248406] }, { "keytime": 3140.998535, "rotation": [ 0.942389, 0.117050, 0.191022, -0.248423] }, { "keytime": 3207.665039, "rotation": [ 0.942364, 0.116982, 0.191140, -0.248459] }, { "keytime": 3240.998291, "rotation": [ 0.942351, 0.116946, 0.191202, -0.248477] }, { "keytime": 3340.998047, "rotation": [ 0.942310, 0.116836, 0.191395, -0.248535] }, { "keytime": 3374.331299, "rotation": [ 0.942295, 0.116796, 0.191464, -0.248556] }, { "keytime": 3440.997803, "rotation": [ 0.942267, 0.116719, 0.191598, -0.248597] }, { "keytime": 3540.997559, "rotation": [ 0.942222, 0.116598, 0.191809, -0.248661] }, { "keytime": 3574.330811, "rotation": [ 0.942206, 0.116557, 0.191882, -0.248683] }, { "keytime": 3640.997314, "rotation": [ 0.942177, 0.116476, 0.192022, -0.248725] }, { "keytime": 3674.330566, "rotation": [ 0.942161, 0.116434, 0.192095, -0.248747] }, { "keytime": 3740.997070, "rotation": [ 0.942131, 0.116353, 0.192236, -0.248789] }, { "keytime": 3774.330322, "rotation": [ 0.942116, 0.116312, 0.192308, -0.248811] }, { "keytime": 3874.330078, "rotation": [ 0.942071, 0.116191, 0.192518, -0.248875] }, { "keytime": 3974.329834, "rotation": [ 0.942028, 0.116076, 0.192720, -0.248935] }, { "keytime": 4074.329590, "rotation": [ 0.941987, 0.115966, 0.192910, -0.248993] }, { "keytime": 4174.329590, "rotation": [ 0.941949, 0.115865, 0.193087, -0.249046] }, { "keytime": 4207.663086, "rotation": [ 0.941938, 0.115834, 0.193142, -0.249062] }, { "keytime": 4274.330078, "rotation": [ 0.941915, 0.115773, 0.193247, -0.249094] }, { "keytime": 4340.997070, "rotation": [ 0.941894, 0.115718, 0.193343, -0.249124] }, { "keytime": 4374.330566, "rotation": [ 0.941885, 0.115691, 0.193389, -0.249138] }, { "keytime": 4407.664062, "rotation": [ 0.941876, 0.115667, 0.193432, -0.249150] }, { "keytime": 4474.331055, "rotation": [ 0.941858, 0.115621, 0.193512, -0.249175] }, { "keytime": 4507.664551, "rotation": [ 0.941851, 0.115600, 0.193548, -0.249185] }, { "keytime": 4574.331543, "rotation": [ 0.941836, 0.115563, 0.193614, -0.249206] }, { "keytime": 4607.665039, "rotation": [ 0.941830, 0.115546, 0.193643, -0.249214] }, { "keytime": 4674.332031, "rotation": [ 0.941819, 0.115516, 0.193695, -0.249230] }, { "keytime": 4707.665527, "rotation": [ 0.941814, 0.115503, 0.193717, -0.249237] }, { "keytime": 4774.332520, "rotation": [ 0.941806, 0.115482, 0.193754, -0.249248] }, { "keytime": 4807.666016, "rotation": [ 0.941803, 0.115474, 0.193769, -0.249252] }, { "keytime": 4874.333008, "rotation": [ 0.941798, 0.115460, 0.193792, -0.249259] }, { "keytime": 4907.666504, "rotation": [ 0.941796, 0.115456, 0.193799, -0.249262] }, { "keytime": 4941.000000, "rotation": [ 0.941795, 0.115453, 0.193805, -0.249263] }, { "keytime": 5007.666992, "rotation": [ 0.941795, 0.115451, 0.193809, -0.249264] }, { "keytime": 5074.333984, "rotation": [ 0.941794, 0.115454, 0.193810, -0.249263] }, { "keytime": 5141.000977, "rotation": [ 0.941794, 0.115462, 0.193811, -0.249259] }, { "keytime": 5207.667969, "rotation": [ 0.941793, 0.115475, 0.193814, -0.249254] }, { "keytime": 5307.668457, "rotation": [ 0.941791, 0.115505, 0.193821, -0.249241] }, { "keytime": 5374.335449, "rotation": [ 0.941790, 0.115531, 0.193826, -0.249230] }, { "keytime": 5441.002441, "rotation": [ 0.941788, 0.115561, 0.193832, -0.249217] }, { "keytime": 5541.002930, "rotation": [ 0.941785, 0.115615, 0.193844, -0.249194] }, { "keytime": 5607.669922, "rotation": [ 0.941784, 0.115655, 0.193852, -0.249177] }, { "keytime": 5707.670410, "rotation": [ 0.941780, 0.115720, 0.193866, -0.249148] }, { "keytime": 5941.004883, "rotation": [ 0.941771, 0.115882, 0.193899, -0.249081] }, { "keytime": 6041.005371, "rotation": [ 0.941768, 0.115948, 0.193911, -0.249052] }, { "keytime": 6141.005859, "rotation": [ 0.941765, 0.116008, 0.193924, -0.249026] }, { "keytime": 6241.006348, "rotation": [ 0.941762, 0.116061, 0.193935, -0.249004] }, { "keytime": 6341.006836, "rotation": [ 0.941760, 0.116103, 0.193944, -0.248986] }, { "keytime": 6407.673828, "rotation": [ 0.941759, 0.116125, 0.193949, -0.248976] }, { "keytime": 6474.340820, "rotation": [ 0.941758, 0.116142, 0.193952, -0.248969] }, { "keytime": 6541.007812, "rotation": [ 0.941757, 0.116154, 0.193955, -0.248964] }, { "keytime": 6607.674805, "rotation": [ 0.941757, 0.116161, 0.193956, -0.248961] } ] }, { "boneId": "Bone_010", "keyframes": [ { "keytime": 41.000000, "rotation": [-0.028916, 0.119078, -0.050256, 0.991191] }, { "keytime": 107.666664, "rotation": [-0.028916, 0.119074, -0.050257, 0.991191] }, { "keytime": 174.333328, "rotation": [-0.028917, 0.119062, -0.050258, 0.991192] }, { "keytime": 207.666656, "rotation": [-0.028918, 0.119054, -0.050259, 0.991193] }, { "keytime": 240.999985, "rotation": [-0.028919, 0.119043, -0.050259, 0.991194] }, { "keytime": 307.666656, "rotation": [-0.028921, 0.119016, -0.050261, 0.991198] }, { "keytime": 374.333344, "rotation": [-0.028923, 0.118981, -0.050263, 0.991202] }, { "keytime": 407.666687, "rotation": [-0.028924, 0.118961, -0.050265, 0.991204] }, { "keytime": 474.333374, "rotation": [-0.028927, 0.118915, -0.050270, 0.991209] }, { "keytime": 507.666718, "rotation": [-0.028929, 0.118889, -0.050272, 0.991212] }, { "keytime": 574.333374, "rotation": [-0.028932, 0.118832, -0.050277, 0.991219] }, { "keytime": 607.666687, "rotation": [-0.028934, 0.118801, -0.050280, 0.991222] }, { "keytime": 674.333313, "rotation": [-0.028938, 0.118733, -0.050285, 0.991230] }, { "keytime": 740.999939, "rotation": [-0.028943, 0.118660, -0.050291, 0.991238] }, { "keytime": 840.999878, "rotation": [-0.028950, 0.118540, -0.050300, 0.991252] }, { "keytime": 940.999817, "rotation": [-0.028958, 0.118408, -0.050310, 0.991267] }, { "keytime": 1040.999756, "rotation": [-0.028966, 0.118270, -0.050319, 0.991283] }, { "keytime": 1341.000122, "rotation": [-0.028992, 0.117841, -0.050349, 0.991331] }, { "keytime": 1441.000244, "rotation": [-0.029000, 0.117706, -0.050359, 0.991347] }, { "keytime": 1541.000366, "rotation": [-0.029008, 0.117579, -0.050367, 0.991361] }, { "keytime": 1641.000488, "rotation": [-0.029015, 0.117464, -0.050374, 0.991374] }, { "keytime": 1707.667236, "rotation": [-0.029020, 0.117395, -0.050379, 0.991382] }, { "keytime": 1741.000610, "rotation": [-0.029022, 0.117363, -0.050381, 0.991386] }, { "keytime": 1807.667358, "rotation": [-0.029025, 0.117304, -0.050384, 0.991392] }, { "keytime": 1841.000732, "rotation": [-0.029027, 0.117277, -0.050386, 0.991395] }, { "keytime": 1874.334106, "rotation": [-0.029029, 0.117252, -0.050388, 0.991398] }, { "keytime": 1941.000854, "rotation": [-0.029032, 0.117208, -0.050391, 0.991403] }, { "keytime": 2007.667603, "rotation": [-0.029034, 0.117171, -0.050394, 0.991407] }, { "keytime": 2041.000977, "rotation": [-0.029035, 0.117155, -0.050395, 0.991409] }, { "keytime": 2107.667725, "rotation": [-0.029037, 0.117131, -0.050398, 0.991412] }, { "keytime": 2141.000977, "rotation": [-0.029038, 0.117121, -0.050399, 0.991413] }, { "keytime": 2207.667480, "rotation": [-0.029039, 0.117107, -0.050401, 0.991414] }, { "keytime": 2274.333984, "rotation": [-0.029039, 0.117102, -0.050402, 0.991415] }, { "keytime": 2341.000488, "rotation": [-0.029040, 0.117103, -0.050403, 0.991415] }, { "keytime": 2407.666992, "rotation": [-0.029039, 0.117111, -0.050400, 0.991414] }, { "keytime": 2474.333496, "rotation": [-0.029036, 0.117125, -0.050397, 0.991413] }, { "keytime": 2541.000000, "rotation": [-0.029034, 0.117145, -0.050391, 0.991410] }, { "keytime": 2607.666504, "rotation": [-0.029031, 0.117172, -0.050383, 0.991408] }, { "keytime": 2640.999756, "rotation": [-0.029030, 0.117188, -0.050378, 0.991406] }, { "keytime": 2707.666260, "rotation": [-0.029027, 0.117224, -0.050369, 0.991403] }, { "keytime": 2740.999512, "rotation": [-0.029025, 0.117244, -0.050362, 0.991401] }, { "keytime": 2807.666016, "rotation": [-0.029022, 0.117290, -0.050349, 0.991396] }, { "keytime": 2840.999268, "rotation": [-0.029020, 0.117315, -0.050342, 0.991393] }, { "keytime": 2907.665771, "rotation": [-0.029017, 0.117370, -0.050326, 0.991388] }, { "keytime": 2940.999023, "rotation": [-0.029014, 0.117399, -0.050317, 0.991385] }, { "keytime": 3040.998779, "rotation": [-0.029004, 0.117495, -0.050289, 0.991375] }, { "keytime": 3140.998535, "rotation": [-0.028993, 0.117603, -0.050259, 0.991364] }, { "keytime": 3240.998291, "rotation": [-0.028983, 0.117722, -0.050224, 0.991352] }, { "keytime": 3340.998047, "rotation": [-0.028972, 0.117849, -0.050187, 0.991339] }, { "keytime": 3440.997803, "rotation": [-0.028961, 0.117983, -0.050148, 0.991326] }, { "keytime": 3540.997559, "rotation": [-0.028949, 0.118121, -0.050108, 0.991311] }, { "keytime": 3774.330322, "rotation": [-0.028923, 0.118451, -0.050015, 0.991278] }, { "keytime": 3907.663330, "rotation": [-0.028908, 0.118633, -0.049963, 0.991259] }, { "keytime": 4007.663086, "rotation": [-0.028897, 0.118763, -0.049924, 0.991246] }, { "keytime": 4074.329590, "rotation": [-0.028890, 0.118846, -0.049899, 0.991237] }, { "keytime": 4174.329590, "rotation": [-0.028879, 0.118962, -0.049866, 0.991225] }, { "keytime": 4274.330078, "rotation": [-0.028870, 0.119068, -0.049835, 0.991214] }, { "keytime": 4374.330566, "rotation": [-0.028863, 0.119162, -0.049808, 0.991205] }, { "keytime": 4474.331055, "rotation": [-0.028857, 0.119242, -0.049785, 0.991196] }, { "keytime": 4540.998047, "rotation": [-0.028854, 0.119288, -0.049771, 0.991192] }, { "keytime": 4574.331543, "rotation": [-0.028852, 0.119309, -0.049765, 0.991189] }, { "keytime": 4640.998535, "rotation": [-0.028848, 0.119346, -0.049754, 0.991186] }, { "keytime": 4707.665527, "rotation": [-0.028845, 0.119377, -0.049746, 0.991182] }, { "keytime": 4774.332520, "rotation": [-0.028841, 0.119402, -0.049738, 0.991180] }, { "keytime": 4840.999512, "rotation": [-0.028839, 0.119420, -0.049734, 0.991178] }, { "keytime": 4874.333008, "rotation": [-0.028839, 0.119427, -0.049731, 0.991177] }, { "keytime": 4941.000000, "rotation": [-0.028839, 0.119435, -0.049729, 0.991176] }, { "keytime": 5007.666992, "rotation": [-0.028840, 0.119438, -0.049728, 0.991176] }, { "keytime": 5041.000488, "rotation": [-0.028840, 0.119437, -0.049728, 0.991176] }, { "keytime": 5141.000977, "rotation": [-0.028840, 0.119431, -0.049736, 0.991176] }, { "keytime": 5207.667969, "rotation": [-0.028840, 0.119425, -0.049746, 0.991177] }, { "keytime": 5307.668457, "rotation": [-0.028844, 0.119410, -0.049768, 0.991177] }, { "keytime": 5374.335449, "rotation": [-0.028847, 0.119397, -0.049787, 0.991178] }, { "keytime": 5474.335938, "rotation": [-0.028851, 0.119373, -0.049822, 0.991179] }, { "keytime": 5541.002930, "rotation": [-0.028857, 0.119354, -0.049849, 0.991180] }, { "keytime": 5674.336914, "rotation": [-0.028866, 0.119312, -0.049911, 0.991181] }, { "keytime": 5974.338379, "rotation": [-0.028887, 0.119209, -0.050064, 0.991185] }, { "keytime": 6074.338867, "rotation": [-0.028894, 0.119177, -0.050112, 0.991187] }, { "keytime": 6141.005859, "rotation": [-0.028898, 0.119156, -0.050141, 0.991187] }, { "keytime": 6241.006348, "rotation": [-0.028903, 0.119130, -0.050180, 0.991189] }, { "keytime": 6341.006836, "rotation": [-0.028908, 0.119108, -0.050211, 0.991189] }, { "keytime": 6441.007324, "rotation": [-0.028912, 0.119093, -0.050234, 0.991190] }, { "keytime": 6507.674316, "rotation": [-0.028913, 0.119085, -0.050245, 0.991190] }, { "keytime": 6574.341309, "rotation": [-0.028914, 0.119080, -0.050252, 0.991190] }, { "keytime": 6607.674805, "rotation": [-0.028914, 0.119079, -0.050254, 0.991191] } ] }, { "boneId": "Bone_006", "keyframes": [ { "keytime": 41.000000, "rotation": [ 0.946508, -0.094656, -0.076917, -0.298741] }, { "keytime": 74.333328, "rotation": [ 0.946508, -0.094659, -0.076921, -0.298740] }, { "keytime": 107.666664, "rotation": [ 0.946507, -0.094663, -0.076931, -0.298740] }, { "keytime": 141.000000, "rotation": [ 0.946504, -0.094671, -0.076948, -0.298741] }, { "keytime": 174.333328, "rotation": [ 0.946501, -0.094681, -0.076971, -0.298741] }, { "keytime": 207.666656, "rotation": [ 0.946498, -0.094694, -0.077001, -0.298741] }, { "keytime": 240.999985, "rotation": [ 0.946493, -0.094712, -0.077039, -0.298741] }, { "keytime": 274.333313, "rotation": [ 0.946487, -0.094732, -0.077084, -0.298742] }, { "keytime": 307.666656, "rotation": [ 0.946480, -0.094755, -0.077135, -0.298743] }, { "keytime": 341.000000, "rotation": [ 0.946472, -0.094781, -0.077194, -0.298744] }, { "keytime": 374.333344, "rotation": [ 0.946464, -0.094809, -0.077257, -0.298746] }, { "keytime": 407.666687, "rotation": [ 0.946454, -0.094842, -0.077329, -0.298746] }, { "keytime": 441.000031, "rotation": [ 0.946444, -0.094878, -0.077409, -0.298747] }, { "keytime": 474.333374, "rotation": [ 0.946433, -0.094916, -0.077494, -0.298748] }, { "keytime": 507.666718, "rotation": [ 0.946421, -0.094957, -0.077584, -0.298750] }, { "keytime": 541.000061, "rotation": [ 0.946408, -0.095001, -0.077683, -0.298751] }, { "keytime": 574.333374, "rotation": [ 0.946394, -0.095048, -0.077787, -0.298753] }, { "keytime": 607.666687, "rotation": [ 0.946380, -0.095097, -0.077897, -0.298755] }, { "keytime": 674.333313, "rotation": [ 0.946348, -0.095205, -0.078136, -0.298758] }, { "keytime": 707.666626, "rotation": [ 0.946331, -0.095261, -0.078262, -0.298760] }, { "keytime": 740.999939, "rotation": [ 0.946314, -0.095321, -0.078394, -0.298762] }, { "keytime": 807.666565, "rotation": [ 0.946276, -0.095447, -0.078676, -0.298766] }, { "keytime": 840.999878, "rotation": [ 0.946257, -0.095513, -0.078821, -0.298768] }, { "keytime": 907.666504, "rotation": [ 0.946216, -0.095651, -0.079128, -0.298772] }, { "keytime": 940.999817, "rotation": [ 0.946195, -0.095722, -0.079285, -0.298774] }, { "keytime": 974.333130, "rotation": [ 0.946173, -0.095795, -0.079449, -0.298777] }, { "keytime": 1040.999756, "rotation": [ 0.946129, -0.095942, -0.079775, -0.298782] }, { "keytime": 1074.333130, "rotation": [ 0.946106, -0.096019, -0.079945, -0.298785] }, { "keytime": 1140.999878, "rotation": [ 0.946061, -0.096169, -0.080280, -0.298790] }, { "keytime": 1174.333252, "rotation": [ 0.946037, -0.096246, -0.080453, -0.298793] }, { "keytime": 1207.666626, "rotation": [ 0.946015, -0.096322, -0.080621, -0.298796] }, { "keytime": 1241.000000, "rotation": [ 0.945991, -0.096399, -0.080794, -0.298799] }, { "keytime": 1307.666748, "rotation": [ 0.945946, -0.096548, -0.081125, -0.298804] }, { "keytime": 1341.000122, "rotation": [ 0.945923, -0.096624, -0.081293, -0.298806] }, { "keytime": 1374.333496, "rotation": [ 0.945901, -0.096696, -0.081455, -0.298809] }, { "keytime": 1441.000244, "rotation": [ 0.945857, -0.096839, -0.081772, -0.298813] }, { "keytime": 1474.333618, "rotation": [ 0.945837, -0.096907, -0.081923, -0.298815] }, { "keytime": 1541.000366, "rotation": [ 0.945796, -0.097040, -0.082219, -0.298819] }, { "keytime": 1574.333740, "rotation": [ 0.945777, -0.097102, -0.082358, -0.298820] }, { "keytime": 1641.000488, "rotation": [ 0.945741, -0.097222, -0.082624, -0.298822] }, { "keytime": 1674.333862, "rotation": [ 0.945724, -0.097277, -0.082749, -0.298823] }, { "keytime": 1707.667236, "rotation": [ 0.945708, -0.097331, -0.082867, -0.298825] }, { "keytime": 1741.000610, "rotation": [ 0.945692, -0.097382, -0.082982, -0.298827] }, { "keytime": 1774.333984, "rotation": [ 0.945677, -0.097430, -0.083088, -0.298829] }, { "keytime": 1807.667358, "rotation": [ 0.945663, -0.097475, -0.083188, -0.298830] }, { "keytime": 1841.000732, "rotation": [ 0.945650, -0.097519, -0.083286, -0.298831] }, { "keytime": 1874.334106, "rotation": [ 0.945638, -0.097559, -0.083374, -0.298832] }, { "keytime": 1907.667480, "rotation": [ 0.945627, -0.097594, -0.083454, -0.298832] }, { "keytime": 1941.000854, "rotation": [ 0.945616, -0.097629, -0.083531, -0.298833] }, { "keytime": 1974.334229, "rotation": [ 0.945607, -0.097659, -0.083598, -0.298835] }, { "keytime": 2007.667603, "rotation": [ 0.945598, -0.097687, -0.083660, -0.298836] }, { "keytime": 2041.000977, "rotation": [ 0.945590, -0.097713, -0.083716, -0.298836] }, { "keytime": 2074.334473, "rotation": [ 0.945584, -0.097733, -0.083763, -0.298837] }, { "keytime": 2107.667725, "rotation": [ 0.945578, -0.097751, -0.083803, -0.298837] }, { "keytime": 2141.000977, "rotation": [ 0.945574, -0.097767, -0.083838, -0.298837] }, { "keytime": 2174.334229, "rotation": [ 0.945570, -0.097779, -0.083865, -0.298838] }, { "keytime": 2207.667480, "rotation": [ 0.945567, -0.097789, -0.083886, -0.298838] }, { "keytime": 2241.000732, "rotation": [ 0.945565, -0.097794, -0.083899, -0.298838] }, { "keytime": 2274.333984, "rotation": [ 0.945564, -0.097797, -0.083906, -0.298838] }, { "keytime": 2307.667236, "rotation": [ 0.945564, -0.097797, -0.083906, -0.298838] }, { "keytime": 2341.000488, "rotation": [ 0.945565, -0.097793, -0.083899, -0.298839] }, { "keytime": 2374.333740, "rotation": [ 0.945567, -0.097785, -0.083886, -0.298839] }, { "keytime": 2407.666992, "rotation": [ 0.945570, -0.097771, -0.083864, -0.298840] }, { "keytime": 2441.000244, "rotation": [ 0.945574, -0.097752, -0.083835, -0.298841] }, { "keytime": 2474.333496, "rotation": [ 0.945579, -0.097730, -0.083801, -0.298842] }, { "keytime": 2507.666748, "rotation": [ 0.945585, -0.097703, -0.083759, -0.298844] }, { "keytime": 2541.000000, "rotation": [ 0.945592, -0.097671, -0.083710, -0.298846] }, { "keytime": 2574.333252, "rotation": [ 0.945600, -0.097634, -0.083653, -0.298849] }, { "keytime": 2607.666504, "rotation": [ 0.945609, -0.097594, -0.083590, -0.298851] }, { "keytime": 2640.999756, "rotation": [ 0.945619, -0.097549, -0.083520, -0.298854] }, { "keytime": 2674.333008, "rotation": [ 0.945630, -0.097498, -0.083441, -0.298857] }, { "keytime": 2707.666260, "rotation": [ 0.945642, -0.097444, -0.083358, -0.298860] }, { "keytime": 2740.999512, "rotation": [ 0.945655, -0.097385, -0.083266, -0.298864] }, { "keytime": 2774.332764, "rotation": [ 0.945669, -0.097320, -0.083165, -0.298868] }, { "keytime": 2807.666016, "rotation": [ 0.945684, -0.097253, -0.083061, -0.298872] }, { "keytime": 2840.999268, "rotation": [ 0.945700, -0.097181, -0.082950, -0.298876] }, { "keytime": 2874.332520, "rotation": [ 0.945717, -0.097103, -0.082829, -0.298881] }, { "keytime": 2907.665771, "rotation": [ 0.945734, -0.097023, -0.082704, -0.298886] }, { "keytime": 2940.999023, "rotation": [ 0.945753, -0.096938, -0.082573, -0.298891] }, { "keytime": 3007.665527, "rotation": [ 0.945793, -0.096755, -0.082290, -0.298903] }, { "keytime": 3040.998779, "rotation": [ 0.945814, -0.096660, -0.082141, -0.298908] }, { "keytime": 3107.665283, "rotation": [ 0.945859, -0.096453, -0.081821, -0.298921] }, { "keytime": 3140.998535, "rotation": [ 0.945882, -0.096346, -0.081655, -0.298927] }, { "keytime": 3207.665039, "rotation": [ 0.945930, -0.096120, -0.081305, -0.298942] }, { "keytime": 3240.998291, "rotation": [ 0.945956, -0.096004, -0.081124, -0.298948] }, { "keytime": 3307.664795, "rotation": [ 0.946008, -0.095760, -0.080746, -0.298963] }, { "keytime": 3340.998047, "rotation": [ 0.946035, -0.095636, -0.080555, -0.298971] }, { "keytime": 3374.331299, "rotation": [ 0.946062, -0.095506, -0.080354, -0.298978] }, { "keytime": 3407.664551, "rotation": [ 0.946090, -0.095378, -0.080155, -0.298986] }, { "keytime": 3440.997803, "rotation": [ 0.946117, -0.095248, -0.079954, -0.298994] }, { "keytime": 3474.331055, "rotation": [ 0.946146, -0.095113, -0.079744, -0.299002] }, { "keytime": 3540.997559, "rotation": [ 0.946202, -0.094847, -0.079332, -0.299017] }, { "keytime": 3574.330811, "rotation": [ 0.946232, -0.094709, -0.079118, -0.299025] }, { "keytime": 3640.997314, "rotation": [ 0.946289, -0.094440, -0.078700, -0.299040] }, { "keytime": 3674.330566, "rotation": [ 0.946318, -0.094301, -0.078484, -0.299048] }, { "keytime": 3740.997070, "rotation": [ 0.946375, -0.094031, -0.078066, -0.299063] }, { "keytime": 3774.330322, "rotation": [ 0.946404, -0.093893, -0.077852, -0.299071] }, { "keytime": 3840.996826, "rotation": [ 0.946458, -0.093629, -0.077442, -0.299087] }, { "keytime": 3874.330078, "rotation": [ 0.946486, -0.093494, -0.077234, -0.299095] }, { "keytime": 3907.663330, "rotation": [ 0.946512, -0.093366, -0.077035, -0.299104] }, { "keytime": 3940.996582, "rotation": [ 0.946538, -0.093240, -0.076838, -0.299111] }, { "keytime": 3974.329834, "rotation": [ 0.946565, -0.093111, -0.076640, -0.299118] }, { "keytime": 4007.663086, "rotation": [ 0.946590, -0.092989, -0.076450, -0.299125] }, { "keytime": 4074.329590, "rotation": [ 0.946639, -0.092748, -0.076078, -0.299139] }, { "keytime": 4107.663086, "rotation": [ 0.946663, -0.092634, -0.075901, -0.299145] }, { "keytime": 4174.329590, "rotation": [ 0.946708, -0.092412, -0.075556, -0.299158] }, { "keytime": 4207.663086, "rotation": [ 0.946729, -0.092307, -0.075394, -0.299164] }, { "keytime": 4274.330078, "rotation": [ 0.946770, -0.092107, -0.075083, -0.299175] }, { "keytime": 4307.663574, "rotation": [ 0.946789, -0.092013, -0.074938, -0.299181] }, { "keytime": 4340.997070, "rotation": [ 0.946807, -0.091923, -0.074799, -0.299186] }, { "keytime": 4374.330566, "rotation": [ 0.946825, -0.091835, -0.074662, -0.299190] }, { "keytime": 4407.664062, "rotation": [ 0.946841, -0.091754, -0.074536, -0.299195] }, { "keytime": 4440.997559, "rotation": [ 0.946856, -0.091677, -0.074417, -0.299199] }, { "keytime": 4474.331055, "rotation": [ 0.946872, -0.091601, -0.074300, -0.299204] }, { "keytime": 4507.664551, "rotation": [ 0.946885, -0.091532, -0.074193, -0.299208] }, { "keytime": 4540.998047, "rotation": [ 0.946899, -0.091467, -0.074093, -0.299211] }, { "keytime": 4574.331543, "rotation": [ 0.946911, -0.091406, -0.073998, -0.299215] }, { "keytime": 4607.665039, "rotation": [ 0.946922, -0.091351, -0.073912, -0.299218] }, { "keytime": 4640.998535, "rotation": [ 0.946932, -0.091300, -0.073833, -0.299220] }, { "keytime": 4674.332031, "rotation": [ 0.946942, -0.091252, -0.073759, -0.299223] }, { "keytime": 4707.665527, "rotation": [ 0.946950, -0.091209, -0.073693, -0.299225] }, { "keytime": 4740.999023, "rotation": [ 0.946957, -0.091173, -0.073636, -0.299228] }, { "keytime": 4774.332520, "rotation": [ 0.946964, -0.091139, -0.073584, -0.299229] }, { "keytime": 4807.666016, "rotation": [ 0.946970, -0.091111, -0.073540, -0.299231] }, { "keytime": 4840.999512, "rotation": [ 0.946974, -0.091087, -0.073502, -0.299232] }, { "keytime": 4874.333008, "rotation": [ 0.946979, -0.091066, -0.073471, -0.299233] }, { "keytime": 4907.666504, "rotation": [ 0.946981, -0.091052, -0.073449, -0.299234] }, { "keytime": 4941.000000, "rotation": [ 0.946983, -0.091042, -0.073434, -0.299235] }, { "keytime": 4974.333496, "rotation": [ 0.946984, -0.091036, -0.073425, -0.299235] }, { "keytime": 5007.666992, "rotation": [ 0.946985, -0.091035, -0.073422, -0.299235] }, { "keytime": 5041.000488, "rotation": [ 0.946984, -0.091039, -0.073426, -0.299235] }, { "keytime": 5074.333984, "rotation": [ 0.946983, -0.091051, -0.073438, -0.299233] }, { "keytime": 5107.667480, "rotation": [ 0.946980, -0.091069, -0.073455, -0.299231] }, { "keytime": 5141.000977, "rotation": [ 0.946977, -0.091093, -0.073479, -0.299227] }, { "keytime": 5174.334473, "rotation": [ 0.946973, -0.091123, -0.073507, -0.299223] }, { "keytime": 5207.667969, "rotation": [ 0.946969, -0.091159, -0.073542, -0.299218] }, { "keytime": 5241.001465, "rotation": [ 0.946963, -0.091204, -0.073586, -0.299212] }, { "keytime": 5274.334961, "rotation": [ 0.946957, -0.091254, -0.073634, -0.299206] }, { "keytime": 5307.668457, "rotation": [ 0.946949, -0.091310, -0.073688, -0.299198] }, { "keytime": 5341.001953, "rotation": [ 0.946941, -0.091373, -0.073749, -0.299189] }, { "keytime": 5374.335449, "rotation": [ 0.946933, -0.091441, -0.073813, -0.299180] }, { "keytime": 5407.668945, "rotation": [ 0.946923, -0.091515, -0.073885, -0.299170] }, { "keytime": 5441.002441, "rotation": [ 0.946912, -0.091597, -0.073964, -0.299159] }, { "keytime": 5474.335938, "rotation": [ 0.946901, -0.091682, -0.074046, -0.299148] }, { "keytime": 5507.669434, "rotation": [ 0.946890, -0.091771, -0.074133, -0.299135] }, { "keytime": 5541.002930, "rotation": [ 0.946877, -0.091868, -0.074226, -0.299122] }, { "keytime": 5574.336426, "rotation": [ 0.946865, -0.091968, -0.074322, -0.299108] }, { "keytime": 5607.669922, "rotation": [ 0.946851, -0.092071, -0.074422, -0.299094] }, { "keytime": 5674.336914, "rotation": [ 0.946822, -0.092291, -0.074634, -0.299064] }, { "keytime": 5707.670410, "rotation": [ 0.946808, -0.092403, -0.074742, -0.299049] }, { "keytime": 5807.670898, "rotation": [ 0.946762, -0.092755, -0.075081, -0.299001] }, { "keytime": 5841.004395, "rotation": [ 0.946746, -0.092875, -0.075198, -0.298985] }, { "keytime": 5907.671387, "rotation": [ 0.946715, -0.093109, -0.075424, -0.298954] }, { "keytime": 5941.004883, "rotation": [ 0.946699, -0.093228, -0.075538, -0.298938] }, { "keytime": 5974.338379, "rotation": [ 0.946684, -0.093342, -0.075648, -0.298922] }, { "keytime": 6041.005371, "rotation": [ 0.946654, -0.093565, -0.075863, -0.298891] }, { "keytime": 6074.338867, "rotation": [ 0.946641, -0.093669, -0.075964, -0.298876] }, { "keytime": 6141.005859, "rotation": [ 0.946614, -0.093870, -0.076158, -0.298849] }, { "keytime": 6174.339355, "rotation": [ 0.946602, -0.093963, -0.076248, -0.298836] }, { "keytime": 6207.672852, "rotation": [ 0.946590, -0.094051, -0.076332, -0.298824] }, { "keytime": 6241.006348, "rotation": [ 0.946579, -0.094135, -0.076414, -0.298812] }, { "keytime": 6274.339844, "rotation": [ 0.946568, -0.094211, -0.076487, -0.298802] }, { "keytime": 6307.673340, "rotation": [ 0.946559, -0.094282, -0.076556, -0.298792] }, { "keytime": 6341.006836, "rotation": [ 0.946550, -0.094349, -0.076621, -0.298783] }, { "keytime": 6374.340332, "rotation": [ 0.946542, -0.094409, -0.076678, -0.298775] }, { "keytime": 6407.673828, "rotation": [ 0.946535, -0.094461, -0.076728, -0.298767] }, { "keytime": 6441.007324, "rotation": [ 0.946528, -0.094508, -0.076774, -0.298761] }, { "keytime": 6474.340820, "rotation": [ 0.946523, -0.094548, -0.076813, -0.298755] }, { "keytime": 6507.674316, "rotation": [ 0.946518, -0.094582, -0.076845, -0.298751] }, { "keytime": 6541.007812, "rotation": [ 0.946514, -0.094611, -0.076873, -0.298747] }, { "keytime": 6574.341309, "rotation": [ 0.946512, -0.094631, -0.076892, -0.298744] }, { "keytime": 6607.674805, "rotation": [ 0.946510, -0.094645, -0.076906, -0.298742] } ] }, { "boneId": "Bone_012", "keyframes": [ { "keytime": 41.000000, "rotation": [ 0.890821, 0.018866, 0.049021, -0.451308] }, { "keytime": 74.333328, "rotation": [ 0.890820, 0.018855, 0.049020, -0.451310] }, { "keytime": 107.666664, "rotation": [ 0.890819, 0.018826, 0.049017, -0.451315] }, { "keytime": 141.000000, "rotation": [ 0.890816, 0.018779, 0.049012, -0.451322] }, { "keytime": 174.333328, "rotation": [ 0.890813, 0.018715, 0.049005, -0.451331] }, { "keytime": 207.666656, "rotation": [ 0.890809, 0.018634, 0.048995, -0.451344] }, { "keytime": 240.999985, "rotation": [ 0.890804, 0.018529, 0.048984, -0.451360] }, { "keytime": 274.333313, "rotation": [ 0.890798, 0.018403, 0.048970, -0.451379] }, { "keytime": 307.666656, "rotation": [ 0.890791, 0.018263, 0.048954, -0.451400] }, { "keytime": 341.000000, "rotation": [ 0.890782, 0.018101, 0.048936, -0.451425] }, { "keytime": 374.333344, "rotation": [ 0.890773, 0.017925, 0.048917, -0.451451] }, { "keytime": 407.666687, "rotation": [ 0.890763, 0.017727, 0.048895, -0.451481] }, { "keytime": 441.000031, "rotation": [ 0.890752, 0.017505, 0.048870, -0.451515] }, { "keytime": 474.333374, "rotation": [ 0.890740, 0.017272, 0.048844, -0.451550] }, { "keytime": 507.666718, "rotation": [ 0.890727, 0.017023, 0.048817, -0.451588] }, { "keytime": 541.000061, "rotation": [ 0.890713, 0.016749, 0.048786, -0.451630] }, { "keytime": 574.333374, "rotation": [ 0.890698, 0.016462, 0.048754, -0.451673] }, { "keytime": 607.666687, "rotation": [ 0.890683, 0.016159, 0.048720, -0.451719] }, { "keytime": 641.000000, "rotation": [ 0.890665, 0.015831, 0.048684, -0.451768] }, { "keytime": 674.333313, "rotation": [ 0.890648, 0.015498, 0.048647, -0.451818] }, { "keytime": 707.666626, "rotation": [ 0.890629, 0.015150, 0.048608, -0.451871] }, { "keytime": 740.999939, "rotation": [ 0.890610, 0.014785, 0.048568, -0.451926] }, { "keytime": 807.666565, "rotation": [ 0.890568, 0.014006, 0.048481, -0.452042] }, { "keytime": 840.999878, "rotation": [ 0.890546, 0.013605, 0.048436, -0.452102] }, { "keytime": 907.666504, "rotation": [ 0.890499, 0.012756, 0.048342, -0.452229] }, { "keytime": 940.999817, "rotation": [ 0.890475, 0.012323, 0.048294, -0.452294] }, { "keytime": 974.333130, "rotation": [ 0.890450, 0.011869, 0.048243, -0.452362] }, { "keytime": 1007.666443, "rotation": [ 0.890424, 0.011422, 0.048193, -0.452429] }, { "keytime": 1040.999756, "rotation": [ 0.890399, 0.010969, 0.048143, -0.452496] }, { "keytime": 1074.333130, "rotation": [ 0.890371, 0.010496, 0.048090, -0.452566] }, { "keytime": 1140.999878, "rotation": [ 0.890318, 0.009571, 0.047986, -0.452702] }, { "keytime": 1174.333252, "rotation": [ 0.890290, 0.009092, 0.047934, -0.452773] }, { "keytime": 1207.666626, "rotation": [ 0.890263, 0.008628, 0.047882, -0.452841] }, { "keytime": 1241.000000, "rotation": [ 0.890234, 0.008151, 0.047829, -0.452912] }, { "keytime": 1274.333374, "rotation": [ 0.890207, 0.007691, 0.047777, -0.452979] }, { "keytime": 1307.666748, "rotation": [ 0.890179, 0.007235, 0.047726, -0.453046] }, { "keytime": 1341.000122, "rotation": [ 0.890151, 0.006770, 0.047674, -0.453115] }, { "keytime": 1374.333496, "rotation": [ 0.890124, 0.006325, 0.047625, -0.453180] }, { "keytime": 1407.666870, "rotation": [ 0.890097, 0.005889, 0.047576, -0.453244] }, { "keytime": 1441.000244, "rotation": [ 0.890069, 0.005448, 0.047527, -0.453308] }, { "keytime": 1474.333618, "rotation": [ 0.890043, 0.005029, 0.047480, -0.453369] }, { "keytime": 1541.000366, "rotation": [ 0.889992, 0.004210, 0.047389, -0.453488] }, { "keytime": 1574.333740, "rotation": [ 0.889967, 0.003828, 0.047346, -0.453544] }, { "keytime": 1607.667114, "rotation": [ 0.889944, 0.003458, 0.047304, -0.453597] }, { "keytime": 1641.000488, "rotation": [ 0.889920, 0.003090, 0.047263, -0.453650] }, { "keytime": 1674.333862, "rotation": [ 0.889898, 0.002748, 0.047225, -0.453700] }, { "keytime": 1707.667236, "rotation": [ 0.889877, 0.002419, 0.047188, -0.453748] }, { "keytime": 1741.000610, "rotation": [ 0.889856, 0.002101, 0.047153, -0.453793] }, { "keytime": 1774.333984, "rotation": [ 0.889837, 0.001808, 0.047120, -0.453836] }, { "keytime": 1807.667358, "rotation": [ 0.889819, 0.001531, 0.047089, -0.453876] }, { "keytime": 1841.000732, "rotation": [ 0.889801, 0.001262, 0.047059, -0.453914] }, { "keytime": 1874.334106, "rotation": [ 0.889785, 0.001018, 0.047032, -0.453949] }, { "keytime": 1907.667480, "rotation": [ 0.889770, 0.000796, 0.047007, -0.453981] }, { "keytime": 1941.000854, "rotation": [ 0.889756, 0.000586, 0.046983, -0.454011] }, { "keytime": 1974.334229, "rotation": [ 0.889744, 0.000398, 0.046962, -0.454038] }, { "keytime": 2007.667603, "rotation": [ 0.889732, 0.000228, 0.046943, -0.454063] }, { "keytime": 2041.000977, "rotation": [ 0.889722, 0.000072, 0.046926, -0.454085] }, { "keytime": 2074.334473, "rotation": [ 0.889713, -0.000057, 0.046911, -0.454104] }, { "keytime": 2107.667725, "rotation": [ 0.889706, -0.000168, 0.046899, -0.454120] }, { "keytime": 2141.000977, "rotation": [ 0.889699, -0.000264, 0.046888, -0.454133] }, { "keytime": 2174.334229, "rotation": [ 0.889694, -0.000340, 0.046879, -0.454144] }, { "keytime": 2207.667480, "rotation": [ 0.889690, -0.000398, 0.046873, -0.454152] }, { "keytime": 2241.000732, "rotation": [ 0.889688, -0.000434, 0.046869, -0.454158] }, { "keytime": 2274.333984, "rotation": [ 0.889686, -0.000452, 0.046867, -0.454160] }, { "keytime": 2307.667236, "rotation": [ 0.889686, -0.000452, 0.046867, -0.454160] }, { "keytime": 2341.000488, "rotation": [ 0.889687, -0.000435, 0.046871, -0.454158] }, { "keytime": 2374.333740, "rotation": [ 0.889689, -0.000400, 0.046878, -0.454153] }, { "keytime": 2407.666992, "rotation": [ 0.889693, -0.000343, 0.046890, -0.454145] }, { "keytime": 2441.000244, "rotation": [ 0.889697, -0.000267, 0.046906, -0.454135] }, { "keytime": 2474.333496, "rotation": [ 0.889703, -0.000175, 0.046925, -0.454122] }, { "keytime": 2507.666748, "rotation": [ 0.889709, -0.000066, 0.046948, -0.454107] }, { "keytime": 2541.000000, "rotation": [ 0.889717, 0.000065, 0.046975, -0.454089] }, { "keytime": 2574.333252, "rotation": [ 0.889726, 0.000216, 0.047006, -0.454068] }, { "keytime": 2607.666504, "rotation": [ 0.889736, 0.000383, 0.047041, -0.454045] }, { "keytime": 2640.999756, "rotation": [ 0.889747, 0.000568, 0.047080, -0.454019] }, { "keytime": 2674.333008, "rotation": [ 0.889759, 0.000776, 0.047123, -0.453990] }, { "keytime": 2707.666260, "rotation": [ 0.889772, 0.000996, 0.047169, -0.453959] }, { "keytime": 2740.999512, "rotation": [ 0.889787, 0.001238, 0.047219, -0.453926] }, { "keytime": 2774.332764, "rotation": [ 0.889802, 0.001505, 0.047275, -0.453889] }, { "keytime": 2807.666016, "rotation": [ 0.889818, 0.001781, 0.047332, -0.453850] }, { "keytime": 2840.999268, "rotation": [ 0.889835, 0.002074, 0.047393, -0.453809] }, { "keytime": 2874.332520, "rotation": [ 0.889854, 0.002393, 0.047460, -0.453765] }, { "keytime": 2907.665771, "rotation": [ 0.889873, 0.002723, 0.047528, -0.453719] }, { "keytime": 2940.999023, "rotation": [ 0.889892, 0.003070, 0.047600, -0.453670] }, { "keytime": 2974.332275, "rotation": [ 0.889913, 0.003443, 0.047678, -0.453618] }, { "keytime": 3007.665527, "rotation": [ 0.889935, 0.003819, 0.047756, -0.453565] }, { "keytime": 3040.998779, "rotation": [ 0.889956, 0.004212, 0.047838, -0.453510] }, { "keytime": 3107.665283, "rotation": [ 0.890003, 0.005059, 0.048014, -0.453391] }, { "keytime": 3140.998535, "rotation": [ 0.890027, 0.005496, 0.048105, -0.453329] }, { "keytime": 3207.665039, "rotation": [ 0.890077, 0.006422, 0.048298, -0.453198] }, { "keytime": 3240.998291, "rotation": [ 0.890103, 0.006899, 0.048397, -0.453130] }, { "keytime": 3274.331543, "rotation": [ 0.890129, 0.007402, 0.048501, -0.453059] }, { "keytime": 3307.664795, "rotation": [ 0.890155, 0.007899, 0.048605, -0.452988] }, { "keytime": 3340.998047, "rotation": [ 0.890182, 0.008406, 0.048710, -0.452916] }, { "keytime": 3374.331299, "rotation": [ 0.890209, 0.008937, 0.048820, -0.452840] }, { "keytime": 3407.664551, "rotation": [ 0.890236, 0.009462, 0.048929, -0.452765] }, { "keytime": 3440.997803, "rotation": [ 0.890263, 0.009994, 0.049040, -0.452689] }, { "keytime": 3474.331055, "rotation": [ 0.890290, 0.010547, 0.049155, -0.452610] }, { "keytime": 3507.664307, "rotation": [ 0.890317, 0.011090, 0.049267, -0.452532] }, { "keytime": 3540.997559, "rotation": [ 0.890344, 0.011636, 0.049381, -0.452452] }, { "keytime": 3574.330811, "rotation": [ 0.890372, 0.012203, 0.049499, -0.452371] }, { "keytime": 3640.997314, "rotation": [ 0.890424, 0.013309, 0.049728, -0.452211] }, { "keytime": 3674.330566, "rotation": [ 0.890451, 0.013879, 0.049846, -0.452128] }, { "keytime": 3707.663818, "rotation": [ 0.890476, 0.014432, 0.049961, -0.452048] }, { "keytime": 3740.997070, "rotation": [ 0.890501, 0.014983, 0.050075, -0.451968] }, { "keytime": 3774.330322, "rotation": [ 0.890527, 0.015547, 0.050192, -0.451886] }, { "keytime": 3807.663574, "rotation": [ 0.890551, 0.016091, 0.050305, -0.451806] }, { "keytime": 3840.996826, "rotation": [ 0.890575, 0.016630, 0.050417, -0.451727] }, { "keytime": 3874.330078, "rotation": [ 0.890599, 0.017181, 0.050531, -0.451647] }, { "keytime": 3907.663330, "rotation": [ 0.890622, 0.017706, 0.050640, -0.451569] }, { "keytime": 3940.996582, "rotation": [ 0.890644, 0.018224, 0.050748, -0.451493] }, { "keytime": 3974.329834, "rotation": [ 0.890666, 0.018749, 0.050856, -0.451415] }, { "keytime": 4007.663086, "rotation": [ 0.890687, 0.019250, 0.050960, -0.451341] }, { "keytime": 4074.329590, "rotation": [ 0.890727, 0.020234, 0.051164, -0.451196] }, { "keytime": 4107.663086, "rotation": [ 0.890746, 0.020700, 0.051261, -0.451127] }, { "keytime": 4174.329590, "rotation": [ 0.890782, 0.021611, 0.051449, -0.450991] }, { "keytime": 4207.663086, "rotation": [ 0.890799, 0.022040, 0.051538, -0.450927] }, { "keytime": 4240.996582, "rotation": [ 0.890815, 0.022451, 0.051623, -0.450866] }, { "keytime": 4274.330078, "rotation": [ 0.890830, 0.022860, 0.051708, -0.450805] }, { "keytime": 4307.663574, "rotation": [ 0.890845, 0.023243, 0.051787, -0.450747] }, { "keytime": 4340.997070, "rotation": [ 0.890859, 0.023610, 0.051863, -0.450692] }, { "keytime": 4374.330566, "rotation": [ 0.890872, 0.023973, 0.051938, -0.450638] }, { "keytime": 4407.664062, "rotation": [ 0.890884, 0.024304, 0.052007, -0.450588] }, { "keytime": 4440.997559, "rotation": [ 0.890896, 0.024619, 0.052072, -0.450541] }, { "keytime": 4474.331055, "rotation": [ 0.890907, 0.024928, 0.052136, -0.450494] }, { "keytime": 4507.664551, "rotation": [ 0.890917, 0.025210, 0.052194, -0.450452] }, { "keytime": 4540.998047, "rotation": [ 0.890927, 0.025475, 0.052249, -0.450412] }, { "keytime": 4574.331543, "rotation": [ 0.890935, 0.025726, 0.052301, -0.450374] }, { "keytime": 4607.665039, "rotation": [ 0.890943, 0.025952, 0.052348, -0.450340] }, { "keytime": 4640.998535, "rotation": [ 0.890951, 0.026160, 0.052391, -0.450308] }, { "keytime": 4674.332031, "rotation": [ 0.890958, 0.026358, 0.052432, -0.450278] }, { "keytime": 4707.665527, "rotation": [ 0.890964, 0.026531, 0.052468, -0.450252] }, { "keytime": 4740.999023, "rotation": [ 0.890969, 0.026682, 0.052499, -0.450229] }, { "keytime": 4774.332520, "rotation": [ 0.890974, 0.026819, 0.052527, -0.450209] }, { "keytime": 4807.666016, "rotation": [ 0.890978, 0.026935, 0.052551, -0.450191] }, { "keytime": 4840.999512, "rotation": [ 0.890981, 0.027033, 0.052572, -0.450176] }, { "keytime": 4874.333008, "rotation": [ 0.890984, 0.027116, 0.052589, -0.450164] }, { "keytime": 4907.666504, "rotation": [ 0.890986, 0.027174, 0.052601, -0.450155] }, { "keytime": 4941.000000, "rotation": [ 0.890987, 0.027215, 0.052609, -0.450149] }, { "keytime": 4974.333496, "rotation": [ 0.890988, 0.027238, 0.052614, -0.450145] }, { "keytime": 5007.666992, "rotation": [ 0.890988, 0.027245, 0.052615, -0.450144] }, { "keytime": 5041.000488, "rotation": [ 0.890988, 0.027235, 0.052611, -0.450145] }, { "keytime": 5074.333984, "rotation": [ 0.890987, 0.027208, 0.052599, -0.450149] }, { "keytime": 5107.667480, "rotation": [ 0.890987, 0.027167, 0.052582, -0.450155] }, { "keytime": 5141.000977, "rotation": [ 0.890986, 0.027110, 0.052557, -0.450163] }, { "keytime": 5174.334473, "rotation": [ 0.890985, 0.027041, 0.052528, -0.450173] }, { "keytime": 5207.667969, "rotation": [ 0.890984, 0.026958, 0.052492, -0.450185] }, { "keytime": 5241.001465, "rotation": [ 0.890982, 0.026853, 0.052447, -0.450199] }, { "keytime": 5274.334961, "rotation": [ 0.890980, 0.026738, 0.052398, -0.450216] }, { "keytime": 5307.668457, "rotation": [ 0.890978, 0.026609, 0.052342, -0.450234] }, { "keytime": 5341.001953, "rotation": [ 0.890976, 0.026463, 0.052280, -0.450254] }, { "keytime": 5374.335449, "rotation": [ 0.890973, 0.026307, 0.052213, -0.450276] }, { "keytime": 5407.668945, "rotation": [ 0.890970, 0.026135, 0.052139, -0.450301] }, { "keytime": 5441.002441, "rotation": [ 0.890967, 0.025945, 0.052058, -0.450327] }, { "keytime": 5474.335938, "rotation": [ 0.890964, 0.025749, 0.051974, -0.450355] }, { "keytime": 5507.669434, "rotation": [ 0.890960, 0.025542, 0.051885, -0.450384] }, { "keytime": 5541.002930, "rotation": [ 0.890956, 0.025318, 0.051789, -0.450415] }, { "keytime": 5574.336426, "rotation": [ 0.890952, 0.025087, 0.051690, -0.450448] }, { "keytime": 5607.669922, "rotation": [ 0.890948, 0.024849, 0.051588, -0.450481] }, { "keytime": 5674.336914, "rotation": [ 0.890938, 0.024341, 0.051370, -0.450553] }, { "keytime": 5707.670410, "rotation": [ 0.890934, 0.024081, 0.051258, -0.450588] }, { "keytime": 5741.003906, "rotation": [ 0.890928, 0.023808, 0.051141, -0.450627] }, { "keytime": 5774.337402, "rotation": [ 0.890923, 0.023539, 0.051026, -0.450664] }, { "keytime": 5807.670898, "rotation": [ 0.890918, 0.023268, 0.050910, -0.450702] }, { "keytime": 5841.004395, "rotation": [ 0.890912, 0.022988, 0.050790, -0.450740] }, { "keytime": 5874.337891, "rotation": [ 0.890907, 0.022716, 0.050673, -0.450778] }, { "keytime": 5907.671387, "rotation": [ 0.890902, 0.022447, 0.050557, -0.450816] }, { "keytime": 5941.004883, "rotation": [ 0.890896, 0.022172, 0.050439, -0.450853] }, { "keytime": 5974.338379, "rotation": [ 0.890890, 0.021909, 0.050327, -0.450890] }, { "keytime": 6041.005371, "rotation": [ 0.890879, 0.021392, 0.050105, -0.450961] }, { "keytime": 6074.338867, "rotation": [ 0.890874, 0.021150, 0.050001, -0.450995] }, { "keytime": 6107.672363, "rotation": [ 0.890869, 0.020917, 0.049901, -0.451027] }, { "keytime": 6141.005859, "rotation": [ 0.890864, 0.020686, 0.049802, -0.451059] }, { "keytime": 6174.339355, "rotation": [ 0.890859, 0.020471, 0.049710, -0.451088] }, { "keytime": 6207.672852, "rotation": [ 0.890854, 0.020268, 0.049623, -0.451116] }, { "keytime": 6241.006348, "rotation": [ 0.890850, 0.020073, 0.049539, -0.451143] }, { "keytime": 6274.339844, "rotation": [ 0.890845, 0.019897, 0.049463, -0.451167] }, { "keytime": 6307.673340, "rotation": [ 0.890842, 0.019732, 0.049393, -0.451190] }, { "keytime": 6341.006836, "rotation": [ 0.890838, 0.019577, 0.049326, -0.451211] }, { "keytime": 6374.340332, "rotation": [ 0.890835, 0.019439, 0.049267, -0.451230] }, { "keytime": 6407.673828, "rotation": [ 0.890832, 0.019318, 0.049215, -0.451247] }, { "keytime": 6441.007324, "rotation": [ 0.890829, 0.019209, 0.049168, -0.451262] }, { "keytime": 6474.340820, "rotation": [ 0.890827, 0.019116, 0.049128, -0.451274] }, { "keytime": 6507.674316, "rotation": [ 0.890825, 0.019037, 0.049095, -0.451285] }, { "keytime": 6541.007812, "rotation": [ 0.890823, 0.018971, 0.049066, -0.451294] }, { "keytime": 6574.341309, "rotation": [ 0.890822, 0.018925, 0.049046, -0.451301] }, { "keytime": 6607.674805, "rotation": [ 0.890821, 0.018892, 0.049032, -0.451305] } ] }, { "boneId": "Bone_005", "keyframes": [ { "keytime": 41.000000, "rotation": [ 0.037465, 0.144803, -0.157657, 0.976101] }, { "keytime": 74.333328, "rotation": [ 0.037467, 0.144810, -0.157657, 0.976100] }, { "keytime": 107.666664, "rotation": [ 0.037471, 0.144826, -0.157659, 0.976097] }, { "keytime": 141.000000, "rotation": [ 0.037477, 0.144854, -0.157662, 0.976092] }, { "keytime": 174.333328, "rotation": [ 0.037485, 0.144890, -0.157665, 0.976086] }, { "keytime": 207.666656, "rotation": [ 0.037494, 0.144937, -0.157669, 0.976078] }, { "keytime": 240.999985, "rotation": [ 0.037508, 0.144997, -0.157674, 0.976068] }, { "keytime": 274.333313, "rotation": [ 0.037523, 0.145070, -0.157680, 0.976055] }, { "keytime": 307.666656, "rotation": [ 0.037541, 0.145151, -0.157687, 0.976041] }, { "keytime": 341.000000, "rotation": [ 0.037560, 0.145244, -0.157695, 0.976025] }, { "keytime": 374.333344, "rotation": [ 0.037583, 0.145345, -0.157704, 0.976008] }, { "keytime": 407.666687, "rotation": [ 0.037607, 0.145460, -0.157714, 0.975989] }, { "keytime": 441.000031, "rotation": [ 0.037635, 0.145588, -0.157725, 0.975967] }, { "keytime": 474.333374, "rotation": [ 0.037663, 0.145722, -0.157737, 0.975944] }, { "keytime": 507.666718, "rotation": [ 0.037695, 0.145865, -0.157749, 0.975919] }, { "keytime": 541.000061, "rotation": [ 0.037729, 0.146023, -0.157763, 0.975892] }, { "keytime": 574.333374, "rotation": [ 0.037764, 0.146189, -0.157777, 0.975863] }, { "keytime": 607.666687, "rotation": [ 0.037802, 0.146363, -0.157792, 0.975833] }, { "keytime": 641.000000, "rotation": [ 0.037843, 0.146552, -0.157808, 0.975801] }, { "keytime": 674.333313, "rotation": [ 0.037884, 0.146744, -0.157824, 0.975768] }, { "keytime": 707.666626, "rotation": [ 0.037927, 0.146944, -0.157842, 0.975733] }, { "keytime": 740.999939, "rotation": [ 0.037973, 0.147155, -0.157860, 0.975697] }, { "keytime": 807.666565, "rotation": [ 0.038070, 0.147603, -0.157899, 0.975619] }, { "keytime": 840.999878, "rotation": [ 0.038119, 0.147835, -0.157918, 0.975579] }, { "keytime": 907.666504, "rotation": [ 0.038225, 0.148324, -0.157961, 0.975493] }, { "keytime": 940.999817, "rotation": [ 0.038279, 0.148573, -0.157982, 0.975450] }, { "keytime": 974.333130, "rotation": [ 0.038335, 0.148834, -0.158004, 0.975404] }, { "keytime": 1007.666443, "rotation": [ 0.038391, 0.149092, -0.158027, 0.975359] }, { "keytime": 1040.999756, "rotation": [ 0.038447, 0.149353, -0.158050, 0.975313] }, { "keytime": 1074.333130, "rotation": [ 0.038506, 0.149625, -0.158073, 0.975265] }, { "keytime": 1140.999878, "rotation": [ 0.038620, 0.150158, -0.158118, 0.975172] }, { "keytime": 1174.333252, "rotation": [ 0.038679, 0.150433, -0.158141, 0.975123] }, { "keytime": 1207.666626, "rotation": [ 0.038736, 0.150700, -0.158164, 0.975076] }, { "keytime": 1241.000000, "rotation": [ 0.038795, 0.150975, -0.158187, 0.975027] }, { "keytime": 1274.333374, "rotation": [ 0.038852, 0.151240, -0.158209, 0.974980] }, { "keytime": 1307.666748, "rotation": [ 0.038908, 0.151503, -0.158232, 0.974934] }, { "keytime": 1341.000122, "rotation": [ 0.038965, 0.151770, -0.158255, 0.974886] }, { "keytime": 1374.333496, "rotation": [ 0.039020, 0.152027, -0.158276, 0.974841] }, { "keytime": 1407.666870, "rotation": [ 0.039074, 0.152278, -0.158297, 0.974796] }, { "keytime": 1441.000244, "rotation": [ 0.039129, 0.152531, -0.158319, 0.974750] }, { "keytime": 1474.333618, "rotation": [ 0.039181, 0.152772, -0.158340, 0.974707] }, { "keytime": 1541.000366, "rotation": [ 0.039284, 0.153243, -0.158381, 0.974622] }, { "keytime": 1574.333740, "rotation": [ 0.039330, 0.153463, -0.158399, 0.974583] }, { "keytime": 1641.000488, "rotation": [ 0.039422, 0.153888, -0.158435, 0.974506] }, { "keytime": 1674.333862, "rotation": [ 0.039464, 0.154085, -0.158451, 0.974471] }, { "keytime": 1707.667236, "rotation": [ 0.039506, 0.154274, -0.158468, 0.974437] }, { "keytime": 1741.000610, "rotation": [ 0.039545, 0.154457, -0.158483, 0.974404] }, { "keytime": 1774.333984, "rotation": [ 0.039581, 0.154626, -0.158498, 0.974373] }, { "keytime": 1807.667358, "rotation": [ 0.039615, 0.154785, -0.158511, 0.974344] }, { "keytime": 1841.000732, "rotation": [ 0.039649, 0.154939, -0.158524, 0.974316] }, { "keytime": 1874.334106, "rotation": [ 0.039679, 0.155080, -0.158536, 0.974290] }, { "keytime": 1907.667480, "rotation": [ 0.039706, 0.155208, -0.158547, 0.974267] }, { "keytime": 1941.000854, "rotation": [ 0.039733, 0.155329, -0.158557, 0.974245] }, { "keytime": 1974.334229, "rotation": [ 0.039756, 0.155436, -0.158566, 0.974226] }, { "keytime": 2007.667603, "rotation": [ 0.039777, 0.155534, -0.158574, 0.974208] }, { "keytime": 2041.000977, "rotation": [ 0.039796, 0.155624, -0.158583, 0.974191] }, { "keytime": 2074.334473, "rotation": [ 0.039812, 0.155698, -0.158588, 0.974178] }, { "keytime": 2107.667725, "rotation": [ 0.039826, 0.155762, -0.158594, 0.974166] }, { "keytime": 2141.000977, "rotation": [ 0.039838, 0.155818, -0.158599, 0.974156] }, { "keytime": 2174.334229, "rotation": [ 0.039847, 0.155861, -0.158602, 0.974148] }, { "keytime": 2207.667480, "rotation": [ 0.039855, 0.155895, -0.158606, 0.974142] }, { "keytime": 2241.000732, "rotation": [ 0.039859, 0.155915, -0.158607, 0.974138] }, { "keytime": 2274.333984, "rotation": [ 0.039861, 0.155925, -0.158608, 0.974136] }, { "keytime": 2307.667236, "rotation": [ 0.039862, 0.155926, -0.158608, 0.974136] }, { "keytime": 2341.000488, "rotation": [ 0.039861, 0.155915, -0.158605, 0.974139] }, { "keytime": 2374.333740, "rotation": [ 0.039858, 0.155895, -0.158601, 0.974143] }, { "keytime": 2407.666992, "rotation": [ 0.039853, 0.155861, -0.158593, 0.974150] }, { "keytime": 2441.000244, "rotation": [ 0.039847, 0.155815, -0.158583, 0.974159] }, { "keytime": 2474.333496, "rotation": [ 0.039839, 0.155760, -0.158571, 0.974170] }, { "keytime": 2507.666748, "rotation": [ 0.039830, 0.155695, -0.158556, 0.974183] }, { "keytime": 2541.000000, "rotation": [ 0.039819, 0.155617, -0.158539, 0.974199] }, { "keytime": 2574.333252, "rotation": [ 0.039806, 0.155527, -0.158518, 0.974217] }, { "keytime": 2607.666504, "rotation": [ 0.039792, 0.155428, -0.158496, 0.974237] }, { "keytime": 2640.999756, "rotation": [ 0.039777, 0.155318, -0.158471, 0.974259] }, { "keytime": 2674.333008, "rotation": [ 0.039759, 0.155193, -0.158443, 0.974284] }, { "keytime": 2707.666260, "rotation": [ 0.039741, 0.155062, -0.158414, 0.974311] }, { "keytime": 2740.999512, "rotation": [ 0.039720, 0.154918, -0.158381, 0.974340] }, { "keytime": 2774.332764, "rotation": [ 0.039698, 0.154759, -0.158345, 0.974372] }, { "keytime": 2807.666016, "rotation": [ 0.039675, 0.154594, -0.158308, 0.974405] }, { "keytime": 2840.999268, "rotation": [ 0.039650, 0.154420, -0.158269, 0.974440] }, { "keytime": 2874.332520, "rotation": [ 0.039624, 0.154230, -0.158227, 0.974478] }, { "keytime": 2907.665771, "rotation": [ 0.039596, 0.154033, -0.158182, 0.974518] }, { "keytime": 2940.999023, "rotation": [ 0.039566, 0.153826, -0.158136, 0.974559] }, { "keytime": 2974.332275, "rotation": [ 0.039535, 0.153604, -0.158086, 0.974603] }, { "keytime": 3007.665527, "rotation": [ 0.039503, 0.153379, -0.158035, 0.974648] }, { "keytime": 3040.998779, "rotation": [ 0.039470, 0.153146, -0.157982, 0.974695] }, { "keytime": 3107.665283, "rotation": [ 0.039398, 0.152641, -0.157868, 0.974795] }, { "keytime": 3140.998535, "rotation": [ 0.039361, 0.152380, -0.157810, 0.974847] }, { "keytime": 3207.665039, "rotation": [ 0.039282, 0.151828, -0.157685, 0.974957] }, { "keytime": 3240.998291, "rotation": [ 0.039241, 0.151543, -0.157621, 0.975013] }, { "keytime": 3274.331543, "rotation": [ 0.039198, 0.151244, -0.157553, 0.975072] }, { "keytime": 3307.664795, "rotation": [ 0.039156, 0.150947, -0.157486, 0.975131] }, { "keytime": 3340.998047, "rotation": [ 0.039113, 0.150645, -0.157418, 0.975190] }, { "keytime": 3374.331299, "rotation": [ 0.039067, 0.150329, -0.157347, 0.975252] }, { "keytime": 3407.664551, "rotation": [ 0.039022, 0.150016, -0.157276, 0.975314] }, { "keytime": 3440.997803, "rotation": [ 0.038976, 0.149699, -0.157204, 0.975376] }, { "keytime": 3474.331055, "rotation": [ 0.038928, 0.149369, -0.157129, 0.975440] }, { "keytime": 3507.664307, "rotation": [ 0.038881, 0.149045, -0.157056, 0.975504] }, { "keytime": 3540.997559, "rotation": [ 0.038833, 0.148720, -0.156982, 0.975567] }, { "keytime": 3574.330811, "rotation": [ 0.038784, 0.148381, -0.156905, 0.975633] }, { "keytime": 3640.997314, "rotation": [ 0.038688, 0.147722, -0.156756, 0.975761] }, { "keytime": 3674.330566, "rotation": [ 0.038639, 0.147382, -0.156679, 0.975826] }, { "keytime": 3740.997070, "rotation": [ 0.038543, 0.146724, -0.156530, 0.975953] }, { "keytime": 3774.330322, "rotation": [ 0.038493, 0.146387, -0.156454, 0.976018] }, { "keytime": 3807.663574, "rotation": [ 0.038445, 0.146063, -0.156380, 0.976080] }, { "keytime": 3840.996826, "rotation": [ 0.038397, 0.145742, -0.156307, 0.976142] }, { "keytime": 3874.330078, "rotation": [ 0.038349, 0.145413, -0.156233, 0.976205] }, { "keytime": 3907.663330, "rotation": [ 0.038303, 0.145100, -0.156161, 0.976265] }, { "keytime": 3940.996582, "rotation": [ 0.038256, 0.144791, -0.156090, 0.976324] }, { "keytime": 3974.329834, "rotation": [ 0.038209, 0.144478, -0.156019, 0.976383] }, { "keytime": 4007.663086, "rotation": [ 0.038164, 0.144179, -0.155951, 0.976440] }, { "keytime": 4074.329590, "rotation": [ 0.038075, 0.143593, -0.155817, 0.976551] }, { "keytime": 4107.663086, "rotation": [ 0.038033, 0.143315, -0.155753, 0.976604] }, { "keytime": 4174.329590, "rotation": [ 0.037950, 0.142772, -0.155629, 0.976706] }, { "keytime": 4207.663086, "rotation": [ 0.037910, 0.142517, -0.155571, 0.976755] }, { "keytime": 4274.330078, "rotation": [ 0.037834, 0.142027, -0.155459, 0.976847] }, { "keytime": 4307.663574, "rotation": [ 0.037798, 0.141800, -0.155406, 0.976889] }, { "keytime": 4340.997070, "rotation": [ 0.037763, 0.141580, -0.155356, 0.976931] }, { "keytime": 4374.330566, "rotation": [ 0.037728, 0.141365, -0.155306, 0.976971] }, { "keytime": 4407.664062, "rotation": [ 0.037697, 0.141167, -0.155261, 0.977008] }, { "keytime": 4440.997559, "rotation": [ 0.037666, 0.140980, -0.155217, 0.977043] }, { "keytime": 4474.331055, "rotation": [ 0.037635, 0.140796, -0.155175, 0.977078] }, { "keytime": 4507.664551, "rotation": [ 0.037607, 0.140628, -0.155136, 0.977109] }, { "keytime": 4540.998047, "rotation": [ 0.037580, 0.140470, -0.155099, 0.977139] }, { "keytime": 4574.331543, "rotation": [ 0.037554, 0.140321, -0.155065, 0.977167] }, { "keytime": 4607.665039, "rotation": [ 0.037530, 0.140187, -0.155033, 0.977192] }, { "keytime": 4640.998535, "rotation": [ 0.037508, 0.140063, -0.155004, 0.977215] }, { "keytime": 4674.332031, "rotation": [ 0.037486, 0.139946, -0.154977, 0.977237] }, { "keytime": 4707.665527, "rotation": [ 0.037466, 0.139843, -0.154953, 0.977256] }, { "keytime": 4740.999023, "rotation": [ 0.037449, 0.139754, -0.154931, 0.977273] }, { "keytime": 4774.332520, "rotation": [ 0.037432, 0.139673, -0.154912, 0.977288] }, { "keytime": 4807.666016, "rotation": [ 0.037417, 0.139604, -0.154895, 0.977301] }, { "keytime": 4840.999512, "rotation": [ 0.037403, 0.139546, -0.154881, 0.977312] }, { "keytime": 4874.333008, "rotation": [ 0.037390, 0.139498, -0.154869, 0.977322] }, { "keytime": 4907.666504, "rotation": [ 0.037380, 0.139464, -0.154861, 0.977328] }, { "keytime": 4941.000000, "rotation": [ 0.037371, 0.139440, -0.154854, 0.977333] }, { "keytime": 4974.333496, "rotation": [ 0.037363, 0.139428, -0.154850, 0.977336] }, { "keytime": 5007.666992, "rotation": [ 0.037357, 0.139425, -0.154849, 0.977337] }, { "keytime": 5041.000488, "rotation": [ 0.037351, 0.139432, -0.154851, 0.977336] }, { "keytime": 5074.333984, "rotation": [ 0.037346, 0.139450, -0.154860, 0.977332] }, { "keytime": 5107.667480, "rotation": [ 0.037342, 0.139477, -0.154873, 0.977326] }, { "keytime": 5141.000977, "rotation": [ 0.037338, 0.139514, -0.154891, 0.977318] }, { "keytime": 5174.334473, "rotation": [ 0.037334, 0.139560, -0.154913, 0.977308] }, { "keytime": 5207.667969, "rotation": [ 0.037331, 0.139614, -0.154941, 0.977296] }, { "keytime": 5241.001465, "rotation": [ 0.037329, 0.139681, -0.154975, 0.977281] }, { "keytime": 5274.334961, "rotation": [ 0.037327, 0.139756, -0.155014, 0.977264] }, { "keytime": 5307.668457, "rotation": [ 0.037326, 0.139839, -0.155056, 0.977246] }, { "keytime": 5341.001953, "rotation": [ 0.037325, 0.139934, -0.155105, 0.977225] }, { "keytime": 5374.335449, "rotation": [ 0.037325, 0.140034, -0.155157, 0.977202] }, { "keytime": 5407.668945, "rotation": [ 0.037326, 0.140145, -0.155214, 0.977177] }, { "keytime": 5441.002441, "rotation": [ 0.037326, 0.140267, -0.155278, 0.977149] }, { "keytime": 5474.335938, "rotation": [ 0.037328, 0.140393, -0.155343, 0.977121] }, { "keytime": 5507.669434, "rotation": [ 0.037330, 0.140526, -0.155413, 0.977091] }, { "keytime": 5541.002930, "rotation": [ 0.037332, 0.140670, -0.155488, 0.977058] }, { "keytime": 5574.336426, "rotation": [ 0.037335, 0.140818, -0.155565, 0.977024] }, { "keytime": 5607.669922, "rotation": [ 0.037338, 0.140972, -0.155645, 0.976989] }, { "keytime": 5674.336914, "rotation": [ 0.037345, 0.141297, -0.155815, 0.976914] }, { "keytime": 5707.670410, "rotation": [ 0.037349, 0.141464, -0.155903, 0.976876] }, { "keytime": 5741.003906, "rotation": [ 0.037354, 0.141639, -0.155994, 0.976836] }, { "keytime": 5807.670898, "rotation": [ 0.037364, 0.141985, -0.156176, 0.976756] }, { "keytime": 5841.004395, "rotation": [ 0.037370, 0.142165, -0.156270, 0.976715] }, { "keytime": 5907.671387, "rotation": [ 0.037381, 0.142512, -0.156452, 0.976635] }, { "keytime": 5941.004883, "rotation": [ 0.037387, 0.142688, -0.156545, 0.976594] }, { "keytime": 5974.338379, "rotation": [ 0.037393, 0.142856, -0.156633, 0.976555] }, { "keytime": 6041.005371, "rotation": [ 0.037405, 0.143187, -0.156807, 0.976478] }, { "keytime": 6074.338867, "rotation": [ 0.037410, 0.143342, -0.156888, 0.976442] }, { "keytime": 6141.005859, "rotation": [ 0.037420, 0.143639, -0.157044, 0.976373] }, { "keytime": 6174.339355, "rotation": [ 0.037425, 0.143777, -0.157117, 0.976341] }, { "keytime": 6207.672852, "rotation": [ 0.037430, 0.143907, -0.157185, 0.976311] }, { "keytime": 6241.006348, "rotation": [ 0.037435, 0.144031, -0.157251, 0.976282] }, { "keytime": 6274.339844, "rotation": [ 0.037439, 0.144144, -0.157310, 0.976255] }, { "keytime": 6307.673340, "rotation": [ 0.037443, 0.144249, -0.157365, 0.976231] }, { "keytime": 6341.006836, "rotation": [ 0.037447, 0.144349, -0.157418, 0.976207] }, { "keytime": 6374.340332, "rotation": [ 0.037451, 0.144437, -0.157464, 0.976187] }, { "keytime": 6407.673828, "rotation": [ 0.037454, 0.144514, -0.157505, 0.976169] }, { "keytime": 6441.007324, "rotation": [ 0.037456, 0.144584, -0.157542, 0.976152] }, { "keytime": 6474.340820, "rotation": [ 0.037459, 0.144644, -0.157573, 0.976138] }, { "keytime": 6507.674316, "rotation": [ 0.037461, 0.144694, -0.157599, 0.976126] }, { "keytime": 6541.007812, "rotation": [ 0.037462, 0.144737, -0.157622, 0.976116] }, { "keytime": 6574.341309, "rotation": [ 0.037464, 0.144766, -0.157637, 0.976110] }, { "keytime": 6607.674805, "rotation": [ 0.037464, 0.144787, -0.157648, 0.976105] } ] }, { "boneId": "Bone_004", "keyframes": [ { "keytime": 41.000000, "rotation": [ 0.120534, 0.132313, -0.020722, 0.983634] }, { "keytime": 74.333328, "rotation": [ 0.120537, 0.132322, -0.020721, 0.983632] }, { "keytime": 107.666664, "rotation": [ 0.120543, 0.132344, -0.020720, 0.983629] }, { "keytime": 141.000000, "rotation": [ 0.120554, 0.132380, -0.020717, 0.983622] }, { "keytime": 174.333328, "rotation": [ 0.120568, 0.132429, -0.020714, 0.983614] }, { "keytime": 207.666656, "rotation": [ 0.120585, 0.132491, -0.020710, 0.983604] }, { "keytime": 240.999985, "rotation": [ 0.120608, 0.132570, -0.020705, 0.983590] }, { "keytime": 274.333313, "rotation": [ 0.120636, 0.132666, -0.020698, 0.983574] }, { "keytime": 307.666656, "rotation": [ 0.120667, 0.132772, -0.020691, 0.983556] }, { "keytime": 341.000000, "rotation": [ 0.120702, 0.132896, -0.020683, 0.983535] }, { "keytime": 374.333344, "rotation": [ 0.120741, 0.133030, -0.020675, 0.983513] }, { "keytime": 407.666687, "rotation": [ 0.120784, 0.133181, -0.020665, 0.983487] }, { "keytime": 441.000031, "rotation": [ 0.120833, 0.133350, -0.020654, 0.983459] }, { "keytime": 474.333374, "rotation": [ 0.120884, 0.133527, -0.020642, 0.983428] }, { "keytime": 507.666718, "rotation": [ 0.120939, 0.133717, -0.020629, 0.983396] }, { "keytime": 541.000061, "rotation": [ 0.120999, 0.133925, -0.020616, 0.983361] }, { "keytime": 574.333374, "rotation": [ 0.121062, 0.134144, -0.020601, 0.983323] }, { "keytime": 607.666687, "rotation": [ 0.121128, 0.134375, -0.020586, 0.983284] }, { "keytime": 641.000000, "rotation": [ 0.121200, 0.134624, -0.020570, 0.983241] }, { "keytime": 674.333313, "rotation": [ 0.121273, 0.134878, -0.020553, 0.983198] }, { "keytime": 707.666626, "rotation": [ 0.121349, 0.135142, -0.020536, 0.983153] }, { "keytime": 740.999939, "rotation": [ 0.121429, 0.135420, -0.020518, 0.983105] }, { "keytime": 807.666565, "rotation": [ 0.121599, 0.136013, -0.020479, 0.983003] }, { "keytime": 840.999878, "rotation": [ 0.121687, 0.136318, -0.020459, 0.982950] }, { "keytime": 907.666504, "rotation": [ 0.121873, 0.136965, -0.020416, 0.982838] }, { "keytime": 940.999817, "rotation": [ 0.121968, 0.137294, -0.020394, 0.982781] }, { "keytime": 974.333130, "rotation": [ 0.122067, 0.137639, -0.020372, 0.982721] }, { "keytime": 1007.666443, "rotation": [ 0.122165, 0.137980, -0.020349, 0.982661] }, { "keytime": 1040.999756, "rotation": [ 0.122264, 0.138324, -0.020326, 0.982601] }, { "keytime": 1074.333130, "rotation": [ 0.122367, 0.138684, -0.020303, 0.982538] }, { "keytime": 1140.999878, "rotation": [ 0.122570, 0.139387, -0.020257, 0.982414] }, { "keytime": 1174.333252, "rotation": [ 0.122674, 0.139751, -0.020233, 0.982350] }, { "keytime": 1207.666626, "rotation": [ 0.122775, 0.140105, -0.020210, 0.982287] }, { "keytime": 1241.000000, "rotation": [ 0.122879, 0.140467, -0.020186, 0.982223] }, { "keytime": 1274.333374, "rotation": [ 0.122980, 0.140817, -0.020163, 0.982161] }, { "keytime": 1307.666748, "rotation": [ 0.123080, 0.141164, -0.020140, 0.982099] }, { "keytime": 1341.000122, "rotation": [ 0.123181, 0.141517, -0.020117, 0.982036] }, { "keytime": 1374.333496, "rotation": [ 0.123279, 0.141856, -0.020094, 0.981975] }, { "keytime": 1407.666870, "rotation": [ 0.123374, 0.142187, -0.020072, 0.981916] }, { "keytime": 1441.000244, "rotation": [ 0.123470, 0.142522, -0.020050, 0.981856] }, { "keytime": 1474.333618, "rotation": [ 0.123561, 0.142841, -0.020029, 0.981798] }, { "keytime": 1541.000366, "rotation": [ 0.123740, 0.143463, -0.019988, 0.981686] }, { "keytime": 1574.333740, "rotation": [ 0.123823, 0.143754, -0.019969, 0.981633] }, { "keytime": 1641.000488, "rotation": [ 0.123984, 0.144314, -0.019932, 0.981532] }, { "keytime": 1674.333862, "rotation": [ 0.124059, 0.144575, -0.019915, 0.981484] }, { "keytime": 1707.667236, "rotation": [ 0.124131, 0.144824, -0.019898, 0.981439] }, { "keytime": 1741.000610, "rotation": [ 0.124200, 0.145066, -0.019882, 0.981394] }, { "keytime": 1774.333984, "rotation": [ 0.124264, 0.145288, -0.019868, 0.981354] }, { "keytime": 1807.667358, "rotation": [ 0.124324, 0.145499, -0.019854, 0.981315] }, { "keytime": 1841.000732, "rotation": [ 0.124383, 0.145703, -0.019840, 0.981278] }, { "keytime": 1874.334106, "rotation": [ 0.124436, 0.145889, -0.019828, 0.981244] }, { "keytime": 1907.667480, "rotation": [ 0.124484, 0.146057, -0.019817, 0.981213] }, { "keytime": 1941.000854, "rotation": [ 0.124530, 0.146217, -0.019806, 0.981183] }, { "keytime": 1974.334229, "rotation": [ 0.124571, 0.146360, -0.019797, 0.981157] }, { "keytime": 2007.667603, "rotation": [ 0.124608, 0.146489, -0.019788, 0.981133] }, { "keytime": 2041.000977, "rotation": [ 0.124642, 0.146608, -0.019781, 0.981111] }, { "keytime": 2074.334473, "rotation": [ 0.124670, 0.146705, -0.019774, 0.981093] }, { "keytime": 2107.667725, "rotation": [ 0.124694, 0.146790, -0.019769, 0.981078] }, { "keytime": 2141.000977, "rotation": [ 0.124715, 0.146863, -0.019764, 0.981064] }, { "keytime": 2174.334229, "rotation": [ 0.124732, 0.146921, -0.019760, 0.981053] }, { "keytime": 2207.667480, "rotation": [ 0.124744, 0.146965, -0.019757, 0.981045] }, { "keytime": 2241.000732, "rotation": [ 0.124752, 0.146992, -0.019755, 0.981040] }, { "keytime": 2274.333984, "rotation": [ 0.124756, 0.147005, -0.019754, 0.981038] }, { "keytime": 2307.667236, "rotation": [ 0.124756, 0.147006, -0.019754, 0.981038] }, { "keytime": 2341.000488, "rotation": [ 0.124753, 0.146993, -0.019754, 0.981040] }, { "keytime": 2374.333740, "rotation": [ 0.124748, 0.146969, -0.019754, 0.981044] }, { "keytime": 2407.666992, "rotation": [ 0.124738, 0.146929, -0.019753, 0.981052] }, { "keytime": 2441.000244, "rotation": [ 0.124725, 0.146874, -0.019752, 0.981061] }, { "keytime": 2474.333496, "rotation": [ 0.124710, 0.146809, -0.019751, 0.981073] }, { "keytime": 2507.666748, "rotation": [ 0.124692, 0.146731, -0.019750, 0.981087] }, { "keytime": 2541.000000, "rotation": [ 0.124670, 0.146638, -0.019749, 0.981104] }, { "keytime": 2574.333252, "rotation": [ 0.124645, 0.146531, -0.019747, 0.981123] }, { "keytime": 2607.666504, "rotation": [ 0.124617, 0.146412, -0.019746, 0.981144] }, { "keytime": 2640.999756, "rotation": [ 0.124586, 0.146281, -0.019744, 0.981168] }, { "keytime": 2674.333008, "rotation": [ 0.124551, 0.146133, -0.019742, 0.981194] }, { "keytime": 2707.666260, "rotation": [ 0.124514, 0.145977, -0.019739, 0.981222] }, { "keytime": 2740.999512, "rotation": [ 0.124474, 0.145805, -0.019737, 0.981253] }, { "keytime": 2774.332764, "rotation": [ 0.124429, 0.145615, -0.019734, 0.981287] }, { "keytime": 2807.666016, "rotation": [ 0.124383, 0.145419, -0.019731, 0.981322] }, { "keytime": 2840.999268, "rotation": [ 0.124334, 0.145211, -0.019728, 0.981359] }, { "keytime": 2874.332520, "rotation": [ 0.124281, 0.144984, -0.019725, 0.981399] }, { "keytime": 2907.665771, "rotation": [ 0.124226, 0.144749, -0.019722, 0.981441] }, { "keytime": 2940.999023, "rotation": [ 0.124168, 0.144503, -0.019718, 0.981485] }, { "keytime": 2974.332275, "rotation": [ 0.124105, 0.144238, -0.019714, 0.981532] }, { "keytime": 3007.665527, "rotation": [ 0.124042, 0.143970, -0.019711, 0.981579] }, { "keytime": 3040.998779, "rotation": [ 0.123977, 0.143691, -0.019707, 0.981628] }, { "keytime": 3107.665283, "rotation": [ 0.123835, 0.143089, -0.019698, 0.981734] }, { "keytime": 3140.998535, "rotation": [ 0.123762, 0.142778, -0.019694, 0.981789] }, { "keytime": 3207.665039, "rotation": [ 0.123607, 0.142120, -0.019684, 0.981904] }, { "keytime": 3240.998291, "rotation": [ 0.123527, 0.141780, -0.019679, 0.981963] }, { "keytime": 3274.331543, "rotation": [ 0.123443, 0.141423, -0.019674, 0.982026] }, { "keytime": 3307.664795, "rotation": [ 0.123359, 0.141069, -0.019669, 0.982087] }, { "keytime": 3340.998047, "rotation": [ 0.123275, 0.140709, -0.019664, 0.982149] }, { "keytime": 3374.331299, "rotation": [ 0.123185, 0.140331, -0.019658, 0.982215] }, { "keytime": 3407.664551, "rotation": [ 0.123097, 0.139958, -0.019653, 0.982279] }, { "keytime": 3440.997803, "rotation": [ 0.123008, 0.139580, -0.019648, 0.982344] }, { "keytime": 3474.331055, "rotation": [ 0.122915, 0.139186, -0.019642, 0.982412] }, { "keytime": 3507.664307, "rotation": [ 0.122824, 0.138800, -0.019637, 0.982478] }, { "keytime": 3540.997559, "rotation": [ 0.122732, 0.138411, -0.019631, 0.982545] }, { "keytime": 3574.330811, "rotation": [ 0.122637, 0.138008, -0.019625, 0.982613] }, { "keytime": 3640.997314, "rotation": [ 0.122452, 0.137221, -0.019614, 0.982747] }, { "keytime": 3674.330566, "rotation": [ 0.122356, 0.136815, -0.019608, 0.982815] }, { "keytime": 3740.997070, "rotation": [ 0.122171, 0.136030, -0.019596, 0.982948] }, { "keytime": 3774.330322, "rotation": [ 0.122076, 0.135628, -0.019590, 0.983015] }, { "keytime": 3807.663574, "rotation": [ 0.121985, 0.135241, -0.019584, 0.983080] }, { "keytime": 3840.996826, "rotation": [ 0.121894, 0.134857, -0.019579, 0.983144] }, { "keytime": 3874.330078, "rotation": [ 0.121801, 0.134465, -0.019573, 0.983209] }, { "keytime": 3907.663330, "rotation": [ 0.121713, 0.134091, -0.019568, 0.983271] }, { "keytime": 3940.996582, "rotation": [ 0.121626, 0.133722, -0.019562, 0.983333] }, { "keytime": 3974.329834, "rotation": [ 0.121537, 0.133348, -0.019557, 0.983394] }, { "keytime": 4007.663086, "rotation": [ 0.121453, 0.132991, -0.019552, 0.983453] }, { "keytime": 4074.329590, "rotation": [ 0.121287, 0.132291, -0.019542, 0.983568] }, { "keytime": 4107.663086, "rotation": [ 0.121209, 0.131959, -0.019537, 0.983623] }, { "keytime": 4174.329590, "rotation": [ 0.121056, 0.131311, -0.019528, 0.983728] }, { "keytime": 4207.663086, "rotation": [ 0.120983, 0.131005, -0.019523, 0.983778] }, { "keytime": 4274.330078, "rotation": [ 0.120845, 0.130420, -0.019515, 0.983873] }, { "keytime": 4307.663574, "rotation": [ 0.120780, 0.130148, -0.019511, 0.983917] }, { "keytime": 4340.997070, "rotation": [ 0.120718, 0.129886, -0.019507, 0.983959] }, { "keytime": 4374.330566, "rotation": [ 0.120657, 0.129628, -0.019503, 0.984001] }, { "keytime": 4407.664062, "rotation": [ 0.120601, 0.129392, -0.019500, 0.984039] }, { "keytime": 4440.997559, "rotation": [ 0.120548, 0.129167, -0.019496, 0.984075] }, { "keytime": 4474.331055, "rotation": [ 0.120496, 0.128947, -0.019493, 0.984110] }, { "keytime": 4507.664551, "rotation": [ 0.120449, 0.128746, -0.019490, 0.984143] }, { "keytime": 4540.998047, "rotation": [ 0.120404, 0.128557, -0.019487, 0.984173] }, { "keytime": 4574.331543, "rotation": [ 0.120361, 0.128378, -0.019485, 0.984201] }, { "keytime": 4607.665039, "rotation": [ 0.120323, 0.128218, -0.019483, 0.984227] }, { "keytime": 4640.998535, "rotation": [ 0.120288, 0.128069, -0.019480, 0.984251] }, { "keytime": 4674.332031, "rotation": [ 0.120255, 0.127928, -0.019478, 0.984273] }, { "keytime": 4707.665527, "rotation": [ 0.120226, 0.127804, -0.019477, 0.984293] }, { "keytime": 4740.999023, "rotation": [ 0.120200, 0.127697, -0.019475, 0.984310] }, { "keytime": 4774.332520, "rotation": [ 0.120177, 0.127599, -0.019474, 0.984326] }, { "keytime": 4807.666016, "rotation": [ 0.120157, 0.127517, -0.019472, 0.984339] }, { "keytime": 4840.999512, "rotation": [ 0.120141, 0.127446, -0.019471, 0.984350] }, { "keytime": 4874.333008, "rotation": [ 0.120127, 0.127387, -0.019470, 0.984359] }, { "keytime": 4907.666504, "rotation": [ 0.120117, 0.127346, -0.019470, 0.984366] }, { "keytime": 4941.000000, "rotation": [ 0.120110, 0.127317, -0.019469, 0.984370] }, { "keytime": 4974.333496, "rotation": [ 0.120106, 0.127300, -0.019469, 0.984373] }, { "keytime": 5007.666992, "rotation": [ 0.120105, 0.127295, -0.019470, 0.984374] }, { "keytime": 5041.000488, "rotation": [ 0.120106, 0.127301, -0.019472, 0.984373] }, { "keytime": 5074.333984, "rotation": [ 0.120107, 0.127317, -0.019475, 0.984371] }, { "keytime": 5107.667480, "rotation": [ 0.120109, 0.127342, -0.019482, 0.984367] }, { "keytime": 5141.000977, "rotation": [ 0.120112, 0.127376, -0.019490, 0.984362] }, { "keytime": 5174.334473, "rotation": [ 0.120115, 0.127417, -0.019500, 0.984356] }, { "keytime": 5207.667969, "rotation": [ 0.120120, 0.127467, -0.019513, 0.984349] }, { "keytime": 5241.001465, "rotation": [ 0.120125, 0.127530, -0.019528, 0.984340] }, { "keytime": 5274.334961, "rotation": [ 0.120131, 0.127599, -0.019546, 0.984330] }, { "keytime": 5307.668457, "rotation": [ 0.120138, 0.127676, -0.019565, 0.984318] }, { "keytime": 5341.001953, "rotation": [ 0.120145, 0.127764, -0.019586, 0.984306] }, { "keytime": 5374.335449, "rotation": [ 0.120154, 0.127857, -0.019610, 0.984292] }, { "keytime": 5407.668945, "rotation": [ 0.120162, 0.127960, -0.019635, 0.984277] }, { "keytime": 5441.002441, "rotation": [ 0.120172, 0.128074, -0.019664, 0.984261] }, { "keytime": 5474.335938, "rotation": [ 0.120182, 0.128191, -0.019693, 0.984244] }, { "keytime": 5507.669434, "rotation": [ 0.120192, 0.128315, -0.019724, 0.984226] }, { "keytime": 5541.002930, "rotation": [ 0.120205, 0.128450, -0.019758, 0.984206] }, { "keytime": 5574.336426, "rotation": [ 0.120216, 0.128588, -0.019792, 0.984186] }, { "keytime": 5607.669922, "rotation": [ 0.120228, 0.128731, -0.019828, 0.984165] }, { "keytime": 5674.336914, "rotation": [ 0.120255, 0.129035, -0.019904, 0.984120] }, { "keytime": 5707.670410, "rotation": [ 0.120268, 0.129190, -0.019943, 0.984097] }, { "keytime": 5741.003906, "rotation": [ 0.120282, 0.129354, -0.019984, 0.984073] }, { "keytime": 5807.670898, "rotation": [ 0.120309, 0.129678, -0.020064, 0.984026] }, { "keytime": 5841.004395, "rotation": [ 0.120323, 0.129845, -0.020106, 0.984001] }, { "keytime": 5907.671387, "rotation": [ 0.120350, 0.130170, -0.020186, 0.983953] }, { "keytime": 5941.004883, "rotation": [ 0.120364, 0.130334, -0.020227, 0.983929] }, { "keytime": 5974.338379, "rotation": [ 0.120378, 0.130492, -0.020267, 0.983906] }, { "keytime": 6041.005371, "rotation": [ 0.120405, 0.130801, -0.020343, 0.983860] }, { "keytime": 6074.338867, "rotation": [ 0.120417, 0.130946, -0.020380, 0.983838] }, { "keytime": 6141.005859, "rotation": [ 0.120441, 0.131224, -0.020449, 0.983797] }, { "keytime": 6174.339355, "rotation": [ 0.120452, 0.131353, -0.020482, 0.983778] }, { "keytime": 6207.672852, "rotation": [ 0.120462, 0.131475, -0.020511, 0.983759] }, { "keytime": 6241.006348, "rotation": [ 0.120473, 0.131591, -0.020541, 0.983742] }, { "keytime": 6274.339844, "rotation": [ 0.120481, 0.131697, -0.020567, 0.983726] }, { "keytime": 6307.673340, "rotation": [ 0.120490, 0.131795, -0.020592, 0.983711] }, { "keytime": 6341.006836, "rotation": [ 0.120498, 0.131888, -0.020615, 0.983697] }, { "keytime": 6374.340332, "rotation": [ 0.120505, 0.131971, -0.020635, 0.983685] }, { "keytime": 6407.673828, "rotation": [ 0.120511, 0.132043, -0.020654, 0.983674] }, { "keytime": 6441.007324, "rotation": [ 0.120517, 0.132108, -0.020670, 0.983665] }, { "keytime": 6474.340820, "rotation": [ 0.120521, 0.132164, -0.020684, 0.983656] }, { "keytime": 6507.674316, "rotation": [ 0.120526, 0.132211, -0.020696, 0.983649] }, { "keytime": 6541.007812, "rotation": [ 0.120528, 0.132251, -0.020705, 0.983643] }, { "keytime": 6574.341309, "rotation": [ 0.120531, 0.132278, -0.020713, 0.983639] }, { "keytime": 6607.674805, "rotation": [ 0.120533, 0.132298, -0.020717, 0.983636] } ] }, { "boneId": "Bone_001", "keyframes": [ { "keytime": 41.000000, "rotation": [ 0.330465, -0.069968, -0.091285, 0.936784] }, { "keytime": 74.333328, "rotation": [ 0.330455, -0.069973, -0.091273, 0.936788] }, { "keytime": 107.666664, "rotation": [ 0.330432, -0.069984, -0.091244, 0.936799] }, { "keytime": 141.000000, "rotation": [ 0.330393, -0.070003, -0.091195, 0.936816] }, { "keytime": 174.333328, "rotation": [ 0.330341, -0.070029, -0.091129, 0.936838] }, { "keytime": 207.666656, "rotation": [ 0.330275, -0.070062, -0.091046, 0.936867] }, { "keytime": 240.999985, "rotation": [ 0.330189, -0.070105, -0.090939, 0.936905] }, { "keytime": 274.333313, "rotation": [ 0.330086, -0.070156, -0.090810, 0.936950] }, { "keytime": 307.666656, "rotation": [ 0.329972, -0.070214, -0.090666, 0.937000] }, { "keytime": 341.000000, "rotation": [ 0.329839, -0.070280, -0.090500, 0.937057] }, { "keytime": 374.333344, "rotation": [ 0.329695, -0.070352, -0.090320, 0.937120] }, { "keytime": 407.666687, "rotation": [ 0.329533, -0.070434, -0.090117, 0.937191] }, { "keytime": 441.000031, "rotation": [ 0.329351, -0.070525, -0.089890, 0.937269] }, { "keytime": 474.333374, "rotation": [ 0.329160, -0.070621, -0.089652, 0.937352] }, { "keytime": 507.666718, "rotation": [ 0.328956, -0.070725, -0.089397, 0.937440] }, { "keytime": 541.000061, "rotation": [ 0.328731, -0.070838, -0.089116, 0.937537] }, { "keytime": 574.333374, "rotation": [ 0.328494, -0.070958, -0.088822, 0.937639] }, { "keytime": 607.666687, "rotation": [ 0.328245, -0.071085, -0.088513, 0.937746] }, { "keytime": 641.000000, "rotation": [ 0.327975, -0.071222, -0.088178, 0.937862] }, { "keytime": 674.333313, "rotation": [ 0.327701, -0.071362, -0.087838, 0.937979] }, { "keytime": 707.666626, "rotation": [ 0.327414, -0.071508, -0.087483, 0.938101] }, { "keytime": 740.999939, "rotation": [ 0.327113, -0.071662, -0.087111, 0.938229] }, { "keytime": 807.666565, "rotation": [ 0.326468, -0.071993, -0.086317, 0.938501] }, { "keytime": 840.999878, "rotation": [ 0.326136, -0.072164, -0.085908, 0.938641] }, { "keytime": 907.666504, "rotation": [ 0.325431, -0.072529, -0.085044, 0.938936] }, { "keytime": 940.999817, "rotation": [ 0.325071, -0.072717, -0.084604, 0.939086] }, { "keytime": 974.333130, "rotation": [ 0.324694, -0.072914, -0.084143, 0.939243] }, { "keytime": 1007.666443, "rotation": [ 0.324321, -0.073109, -0.083689, 0.939397] }, { "keytime": 1040.999756, "rotation": [ 0.323943, -0.073308, -0.083229, 0.939553] }, { "keytime": 1074.333130, "rotation": [ 0.323548, -0.073517, -0.082751, 0.939715] }, { "keytime": 1107.666504, "rotation": [ 0.323161, -0.073721, -0.082283, 0.939873] }, { "keytime": 1140.999878, "rotation": [ 0.322772, -0.073929, -0.081814, 0.940032] }, { "keytime": 1174.333252, "rotation": [ 0.322369, -0.074144, -0.081331, 0.940195] }, { "keytime": 1207.666626, "rotation": [ 0.321979, -0.074354, -0.080862, 0.940352] }, { "keytime": 1241.000000, "rotation": [ 0.321576, -0.074571, -0.080381, 0.940514] }, { "keytime": 1274.333374, "rotation": [ 0.321187, -0.074783, -0.079918, 0.940670] }, { "keytime": 1307.666748, "rotation": [ 0.320801, -0.074994, -0.079460, 0.940823] }, { "keytime": 1341.000122, "rotation": [ 0.320406, -0.075211, -0.078993, 0.940980] }, { "keytime": 1374.333496, "rotation": [ 0.320027, -0.075421, -0.078547, 0.941130] }, { "keytime": 1407.666870, "rotation": [ 0.319655, -0.075629, -0.078111, 0.941276] }, { "keytime": 1441.000244, "rotation": [ 0.319277, -0.075841, -0.077671, 0.941423] }, { "keytime": 1474.333618, "rotation": [ 0.318918, -0.076045, -0.077254, 0.941563] }, { "keytime": 1507.666992, "rotation": [ 0.318566, -0.076247, -0.076848, 0.941699] }, { "keytime": 1541.000366, "rotation": [ 0.318211, -0.076451, -0.076441, 0.941835] }, { "keytime": 1574.333740, "rotation": [ 0.317879, -0.076646, -0.076063, 0.941962] }, { "keytime": 1607.667114, "rotation": [ 0.317557, -0.076837, -0.075698, 0.942085] }, { "keytime": 1641.000488, "rotation": [ 0.317235, -0.077029, -0.075338, 0.942206] }, { "keytime": 1674.333862, "rotation": [ 0.316934, -0.077212, -0.075002, 0.942319] }, { "keytime": 1707.667236, "rotation": [ 0.316644, -0.077390, -0.074682, 0.942428] }, { "keytime": 1741.000610, "rotation": [ 0.316361, -0.077568, -0.074374, 0.942533] }, { "keytime": 1774.333984, "rotation": [ 0.316099, -0.077735, -0.074091, 0.942629] }, { "keytime": 1807.667358, "rotation": [ 0.315849, -0.077898, -0.073826, 0.942720] }, { "keytime": 1841.000732, "rotation": [ 0.315605, -0.078060, -0.073570, 0.942808] }, { "keytime": 1874.334106, "rotation": [ 0.315381, -0.078212, -0.073340, 0.942889] }, { "keytime": 1907.667480, "rotation": [ 0.315175, -0.078356, -0.073133, 0.942962] }, { "keytime": 1941.000854, "rotation": [ 0.314977, -0.078500, -0.072938, 0.943031] }, { "keytime": 1974.334229, "rotation": [ 0.314799, -0.078633, -0.072768, 0.943093] }, { "keytime": 2007.667603, "rotation": [ 0.314634, -0.078760, -0.072616, 0.943149] }, { "keytime": 2041.000977, "rotation": [ 0.314479, -0.078886, -0.072478, 0.943200] }, { "keytime": 2074.334473, "rotation": [ 0.314347, -0.078999, -0.072370, 0.943243] }, { "keytime": 2107.667725, "rotation": [ 0.314230, -0.079107, -0.072280, 0.943280] }, { "keytime": 2141.000977, "rotation": [ 0.314123, -0.079212, -0.072206, 0.943312] }, { "keytime": 2174.334229, "rotation": [ 0.314034, -0.079308, -0.072153, 0.943338] }, { "keytime": 2207.667480, "rotation": [ 0.313959, -0.079398, -0.072119, 0.943358] }, { "keytime": 2241.000732, "rotation": [ 0.313901, -0.079482, -0.072109, 0.943371] }, { "keytime": 2274.333984, "rotation": [ 0.313858, -0.079558, -0.072117, 0.943378] }, { "keytime": 2307.667236, "rotation": [ 0.313826, -0.079629, -0.072143, 0.943381] }, { "keytime": 2341.000488, "rotation": [ 0.313798, -0.079698, -0.072185, 0.943381] }, { "keytime": 2374.333740, "rotation": [ 0.313772, -0.079764, -0.072240, 0.943380] }, { "keytime": 2407.666992, "rotation": [ 0.313747, -0.079826, -0.072314, 0.943378] }, { "keytime": 2441.000244, "rotation": [ 0.313723, -0.079888, -0.072405, 0.943373] }, { "keytime": 2474.333496, "rotation": [ 0.313700, -0.079946, -0.072508, 0.943368] }, { "keytime": 2507.666748, "rotation": [ 0.313679, -0.080001, -0.072625, 0.943361] }, { "keytime": 2541.000000, "rotation": [ 0.313658, -0.080056, -0.072761, 0.943353] }, { "keytime": 2574.333252, "rotation": [ 0.313640, -0.080106, -0.072912, 0.943343] }, { "keytime": 2607.666504, "rotation": [ 0.313623, -0.080154, -0.073077, 0.943332] }, { "keytime": 2640.999756, "rotation": [ 0.313606, -0.080199, -0.073256, 0.943320] }, { "keytime": 2674.333008, "rotation": [ 0.313591, -0.080243, -0.073456, 0.943306] }, { "keytime": 2707.666260, "rotation": [ 0.313577, -0.080283, -0.073664, 0.943291] }, { "keytime": 2740.999512, "rotation": [ 0.313565, -0.080320, -0.073891, 0.943274] }, { "keytime": 2774.332764, "rotation": [ 0.313553, -0.080356, -0.074139, 0.943255] }, { "keytime": 2807.666016, "rotation": [ 0.313543, -0.080388, -0.074394, 0.943236] }, { "keytime": 2840.999268, "rotation": [ 0.313534, -0.080418, -0.074661, 0.943215] }, { "keytime": 2874.332520, "rotation": [ 0.313527, -0.080446, -0.074952, 0.943192] }, { "keytime": 2907.665771, "rotation": [ 0.313520, -0.080470, -0.075251, 0.943169] }, { "keytime": 2940.999023, "rotation": [ 0.313515, -0.080491, -0.075563, 0.943143] }, { "keytime": 2974.332275, "rotation": [ 0.313511, -0.080511, -0.075898, 0.943116] }, { "keytime": 3007.665527, "rotation": [ 0.313509, -0.080528, -0.076235, 0.943089] }, { "keytime": 3040.998779, "rotation": [ 0.313507, -0.080542, -0.076584, 0.943060] }, { "keytime": 3074.332031, "rotation": [ 0.313507, -0.080553, -0.076959, 0.943028] }, { "keytime": 3107.665283, "rotation": [ 0.313507, -0.080562, -0.077334, 0.942996] }, { "keytime": 3140.998535, "rotation": [ 0.313509, -0.080568, -0.077720, 0.942963] }, { "keytime": 3174.331787, "rotation": [ 0.313512, -0.080573, -0.078128, 0.942928] }, { "keytime": 3207.665039, "rotation": [ 0.313516, -0.080575, -0.078534, 0.942893] }, { "keytime": 3240.998291, "rotation": [ 0.313522, -0.080574, -0.078952, 0.942857] }, { "keytime": 3274.331543, "rotation": [ 0.313528, -0.080570, -0.079391, 0.942818] }, { "keytime": 3307.664795, "rotation": [ 0.313535, -0.080565, -0.079826, 0.942780] }, { "keytime": 3340.998047, "rotation": [ 0.313543, -0.080558, -0.080267, 0.942740] }, { "keytime": 3374.331299, "rotation": [ 0.313551, -0.080548, -0.080729, 0.942699] }, { "keytime": 3407.664551, "rotation": [ 0.313561, -0.080537, -0.081185, 0.942657] }, { "keytime": 3440.997803, "rotation": [ 0.313571, -0.080523, -0.081645, 0.942615] }, { "keytime": 3474.331055, "rotation": [ 0.313582, -0.080507, -0.082125, 0.942571] }, { "keytime": 3507.664307, "rotation": [ 0.313594, -0.080490, -0.082594, 0.942528] }, { "keytime": 3540.997559, "rotation": [ 0.313606, -0.080472, -0.083066, 0.942484] }, { "keytime": 3574.330811, "rotation": [ 0.313620, -0.080451, -0.083555, 0.942438] }, { "keytime": 3640.997314, "rotation": [ 0.313647, -0.080406, -0.084507, 0.942348] }, { "keytime": 3674.330566, "rotation": [ 0.313661, -0.080382, -0.084997, 0.942301] }, { "keytime": 3707.663818, "rotation": [ 0.313676, -0.080356, -0.085472, 0.942255] }, { "keytime": 3740.997070, "rotation": [ 0.313690, -0.080330, -0.085944, 0.942210] }, { "keytime": 3774.330322, "rotation": [ 0.313706, -0.080302, -0.086428, 0.942163] }, { "keytime": 3807.663574, "rotation": [ 0.313721, -0.080274, -0.086894, 0.942117] }, { "keytime": 3840.996826, "rotation": [ 0.313736, -0.080246, -0.087355, 0.942072] }, { "keytime": 3874.330078, "rotation": [ 0.313753, -0.080215, -0.087826, 0.942025] }, { "keytime": 3907.663330, "rotation": [ 0.313769, -0.080185, -0.088275, 0.941980] }, { "keytime": 3940.996582, "rotation": [ 0.313785, -0.080155, -0.088718, 0.941936] }, { "keytime": 3974.329834, "rotation": [ 0.313801, -0.080124, -0.089166, 0.941891] }, { "keytime": 4007.663086, "rotation": [ 0.313817, -0.080093, -0.089593, 0.941848] }, { "keytime": 4074.329590, "rotation": [ 0.313848, -0.080032, -0.090432, 0.941762] }, { "keytime": 4107.663086, "rotation": [ 0.313864, -0.080002, -0.090829, 0.941721] }, { "keytime": 4174.329590, "rotation": [ 0.313894, -0.079941, -0.091603, 0.941642] }, { "keytime": 4207.663086, "rotation": [ 0.313908, -0.079912, -0.091968, 0.941604] }, { "keytime": 4274.330078, "rotation": [ 0.313936, -0.079855, -0.092665, 0.941531] }, { "keytime": 4307.663574, "rotation": [ 0.313949, -0.079828, -0.092990, 0.941497] }, { "keytime": 4340.997070, "rotation": [ 0.313962, -0.079802, -0.093302, 0.941464] }, { "keytime": 4374.330566, "rotation": [ 0.313975, -0.079776, -0.093609, 0.941431] }, { "keytime": 4407.664062, "rotation": [ 0.313986, -0.079751, -0.093890, 0.941402] }, { "keytime": 4440.997559, "rotation": [ 0.313998, -0.079728, -0.094158, 0.941373] }, { "keytime": 4474.331055, "rotation": [ 0.314009, -0.079705, -0.094419, 0.941345] }, { "keytime": 4507.664551, "rotation": [ 0.314019, -0.079684, -0.094658, 0.941320] }, { "keytime": 4540.998047, "rotation": [ 0.314029, -0.079663, -0.094882, 0.941295] }, { "keytime": 4574.331543, "rotation": [ 0.314037, -0.079644, -0.095095, 0.941273] }, { "keytime": 4607.665039, "rotation": [ 0.314046, -0.079626, -0.095286, 0.941252] }, { "keytime": 4640.998535, "rotation": [ 0.314054, -0.079610, -0.095462, 0.941233] }, { "keytime": 4674.332031, "rotation": [ 0.314061, -0.079595, -0.095629, 0.941215] }, { "keytime": 4707.665527, "rotation": [ 0.314068, -0.079581, -0.095776, 0.941199] }, { "keytime": 4740.999023, "rotation": [ 0.314073, -0.079569, -0.095903, 0.941185] }, { "keytime": 4774.332520, "rotation": [ 0.314078, -0.079558, -0.096019, 0.941173] }, { "keytime": 4807.666016, "rotation": [ 0.314082, -0.079548, -0.096117, 0.941162] }, { "keytime": 4840.999512, "rotation": [ 0.314087, -0.079540, -0.096200, 0.941153] }, { "keytime": 4874.333008, "rotation": [ 0.314090, -0.079533, -0.096270, 0.941145] }, { "keytime": 4907.666504, "rotation": [ 0.314092, -0.079528, -0.096319, 0.941140] }, { "keytime": 4941.000000, "rotation": [ 0.314094, -0.079525, -0.096354, 0.941136] }, { "keytime": 4974.333496, "rotation": [ 0.314095, -0.079523, -0.096373, 0.941134] }, { "keytime": 5007.666992, "rotation": [ 0.314099, -0.079520, -0.096379, 0.941132] }, { "keytime": 5041.000488, "rotation": [ 0.314118, -0.079509, -0.096374, 0.941127] }, { "keytime": 5074.333984, "rotation": [ 0.314172, -0.079478, -0.096357, 0.941114] }, { "keytime": 5107.667480, "rotation": [ 0.314252, -0.079431, -0.096332, 0.941093] }, { "keytime": 5141.000977, "rotation": [ 0.314364, -0.079366, -0.096298, 0.941065] }, { "keytime": 5174.334473, "rotation": [ 0.314499, -0.079288, -0.096256, 0.941031] }, { "keytime": 5207.667969, "rotation": [ 0.314662, -0.079193, -0.096205, 0.940989] }, { "keytime": 5241.001465, "rotation": [ 0.314867, -0.079074, -0.096142, 0.940937] }, { "keytime": 5274.334961, "rotation": [ 0.315093, -0.078943, -0.096072, 0.940880] }, { "keytime": 5307.668457, "rotation": [ 0.315345, -0.078796, -0.095994, 0.940815] }, { "keytime": 5341.001953, "rotation": [ 0.315633, -0.078629, -0.095905, 0.940742] }, { "keytime": 5374.335449, "rotation": [ 0.315937, -0.078452, -0.095811, 0.940664] }, { "keytime": 5407.668945, "rotation": [ 0.316275, -0.078256, -0.095707, 0.940578] }, { "keytime": 5441.002441, "rotation": [ 0.316646, -0.078040, -0.095592, 0.940482] }, { "keytime": 5474.335938, "rotation": [ 0.317030, -0.077817, -0.095473, 0.940384] }, { "keytime": 5507.669434, "rotation": [ 0.317436, -0.077581, -0.095347, 0.940279] }, { "keytime": 5541.002930, "rotation": [ 0.317875, -0.077326, -0.095211, 0.940166] }, { "keytime": 5574.336426, "rotation": [ 0.318326, -0.077063, -0.095071, 0.940049] }, { "keytime": 5607.669922, "rotation": [ 0.318793, -0.076791, -0.094926, 0.939927] }, { "keytime": 5674.336914, "rotation": [ 0.319786, -0.076212, -0.094618, 0.939668] }, { "keytime": 5707.670410, "rotation": [ 0.320294, -0.075917, -0.094460, 0.939535] }, { "keytime": 5741.003906, "rotation": [ 0.320829, -0.075605, -0.094294, 0.939394] }, { "keytime": 5774.337402, "rotation": [ 0.321354, -0.075299, -0.094130, 0.939256] }, { "keytime": 5807.670898, "rotation": [ 0.321883, -0.074990, -0.093966, 0.939116] }, { "keytime": 5841.004395, "rotation": [ 0.322430, -0.074671, -0.093795, 0.938970] }, { "keytime": 5874.337891, "rotation": [ 0.322961, -0.074361, -0.093630, 0.938829] }, { "keytime": 5907.671387, "rotation": [ 0.323488, -0.074053, -0.093466, 0.938688] }, { "keytime": 5941.004883, "rotation": [ 0.324025, -0.073740, -0.093299, 0.938545] }, { "keytime": 5974.338379, "rotation": [ 0.324537, -0.073440, -0.093139, 0.938407] }, { "keytime": 6007.671875, "rotation": [ 0.325040, -0.073146, -0.092982, 0.938271] }, { "keytime": 6041.005371, "rotation": [ 0.325545, -0.072850, -0.092824, 0.938135] }, { "keytime": 6074.338867, "rotation": [ 0.326017, -0.072574, -0.092677, 0.938007] }, { "keytime": 6107.672363, "rotation": [ 0.326472, -0.072308, -0.092535, 0.937883] }, { "keytime": 6141.005859, "rotation": [ 0.326923, -0.072044, -0.092394, 0.937760] }, { "keytime": 6174.339355, "rotation": [ 0.327340, -0.071800, -0.092263, 0.937646] }, { "keytime": 6207.672852, "rotation": [ 0.327737, -0.071567, -0.092139, 0.937538] }, { "keytime": 6241.006348, "rotation": [ 0.328116, -0.071345, -0.092021, 0.937434] }, { "keytime": 6274.339844, "rotation": [ 0.328460, -0.071144, -0.091913, 0.937339] }, { "keytime": 6307.673340, "rotation": [ 0.328779, -0.070956, -0.091813, 0.937251] }, { "keytime": 6341.006836, "rotation": [ 0.329083, -0.070779, -0.091718, 0.937167] }, { "keytime": 6374.340332, "rotation": [ 0.329351, -0.070621, -0.091634, 0.937093] }, { "keytime": 6407.673828, "rotation": [ 0.329585, -0.070484, -0.091560, 0.937028] }, { "keytime": 6441.007324, "rotation": [ 0.329799, -0.070359, -0.091493, 0.936969] }, { "keytime": 6474.340820, "rotation": [ 0.329979, -0.070253, -0.091437, 0.936919] }, { "keytime": 6507.674316, "rotation": [ 0.330132, -0.070163, -0.091389, 0.936877] }, { "keytime": 6541.007812, "rotation": [ 0.330262, -0.070087, -0.091348, 0.936841] }, { "keytime": 6574.341309, "rotation": [ 0.330351, -0.070034, -0.091320, 0.936816] }, { "keytime": 6607.674805, "rotation": [ 0.330414, -0.069998, -0.091301, 0.936798] } ] }, { "boneId": "Bone_002", "keyframes": [ { "keytime": 41.000000, "rotation": [-0.293120, 0.037612, 0.099744, 0.950114] }, { "keytime": 74.333328, "rotation": [-0.293146, 0.037614, 0.099760, 0.950104] }, { "keytime": 107.666664, "rotation": [-0.293210, 0.037619, 0.099801, 0.950080] }, { "keytime": 141.000000, "rotation": [-0.293317, 0.037627, 0.099868, 0.950040] }, { "keytime": 174.333328, "rotation": [-0.293459, 0.037638, 0.099958, 0.949986] }, { "keytime": 207.666656, "rotation": [-0.293642, 0.037652, 0.100073, 0.949917] }, { "keytime": 240.999985, "rotation": [-0.293876, 0.037670, 0.100220, 0.949828] }, { "keytime": 274.333313, "rotation": [-0.294158, 0.037691, 0.100398, 0.949721] }, { "keytime": 307.666656, "rotation": [-0.294471, 0.037715, 0.100596, 0.949602] }, { "keytime": 341.000000, "rotation": [-0.294835, 0.037743, 0.100825, 0.949464] }, { "keytime": 374.333344, "rotation": [-0.295228, 0.037773, 0.101073, 0.949314] }, { "keytime": 407.666687, "rotation": [-0.295672, 0.037807, 0.101353, 0.949145] }, { "keytime": 441.000031, "rotation": [-0.296169, 0.037846, 0.101666, 0.948955] }, { "keytime": 474.333374, "rotation": [-0.296690, 0.037886, 0.101994, 0.948756] }, { "keytime": 507.666718, "rotation": [-0.297247, 0.037929, 0.102345, 0.948542] }, { "keytime": 541.000061, "rotation": [-0.297860, 0.037977, 0.102732, 0.948305] }, { "keytime": 574.333374, "rotation": [-0.298504, 0.038028, 0.103137, 0.948057] }, { "keytime": 607.666687, "rotation": [-0.299181, 0.038081, 0.103564, 0.947795] }, { "keytime": 641.000000, "rotation": [-0.299914, 0.038139, 0.104025, 0.947510] }, { "keytime": 674.333313, "rotation": [-0.300658, 0.038198, 0.104494, 0.947221] }, { "keytime": 707.666626, "rotation": [-0.301434, 0.038260, 0.104983, 0.946917] }, { "keytime": 740.999939, "rotation": [-0.302249, 0.038326, 0.105497, 0.946598] }, { "keytime": 807.666565, "rotation": [-0.303989, 0.038467, 0.106592, 0.945912] }, { "keytime": 840.999878, "rotation": [-0.304884, 0.038540, 0.107155, 0.945557] }, { "keytime": 907.666504, "rotation": [-0.306778, 0.038697, 0.108348, 0.944802] }, { "keytime": 940.999817, "rotation": [-0.307743, 0.038777, 0.108955, 0.944415] }, { "keytime": 974.333130, "rotation": [-0.308754, 0.038862, 0.109591, 0.944008] }, { "keytime": 1007.666443, "rotation": [-0.309750, 0.038946, 0.110217, 0.943605] }, { "keytime": 1040.999756, "rotation": [-0.310758, 0.039032, 0.110852, 0.943196] }, { "keytime": 1074.333130, "rotation": [-0.311809, 0.039123, 0.111513, 0.942767] }, { "keytime": 1107.666504, "rotation": [-0.312836, 0.039212, 0.112159, 0.942346] }, { "keytime": 1140.999878, "rotation": [-0.313867, 0.039302, 0.112806, 0.941922] }, { "keytime": 1174.333252, "rotation": [-0.314931, 0.039396, 0.113475, 0.941483] }, { "keytime": 1207.666626, "rotation": [-0.315963, 0.039489, 0.114123, 0.941055] }, { "keytime": 1241.000000, "rotation": [-0.317021, 0.039584, 0.114787, 0.940614] }, { "keytime": 1274.333374, "rotation": [-0.318042, 0.039678, 0.115428, 0.940187] }, { "keytime": 1307.666748, "rotation": [-0.319054, 0.039772, 0.116062, 0.939762] }, { "keytime": 1341.000122, "rotation": [-0.320084, 0.039869, 0.116709, 0.939327] }, { "keytime": 1374.333496, "rotation": [-0.321072, 0.039962, 0.117327, 0.938909] }, { "keytime": 1407.666870, "rotation": [-0.322038, 0.040056, 0.117932, 0.938498] }, { "keytime": 1441.000244, "rotation": [-0.323015, 0.040152, 0.118543, 0.938081] }, { "keytime": 1474.333618, "rotation": [-0.323942, 0.040245, 0.119123, 0.937684] }, { "keytime": 1507.666992, "rotation": [-0.324847, 0.040337, 0.119688, 0.937295] }, { "keytime": 1541.000366, "rotation": [-0.325755, 0.040431, 0.120255, 0.936903] }, { "keytime": 1574.333740, "rotation": [-0.326601, 0.040521, 0.120782, 0.936537] }, { "keytime": 1607.667114, "rotation": [-0.327419, 0.040610, 0.121291, 0.936182] }, { "keytime": 1641.000488, "rotation": [-0.328232, 0.040701, 0.121796, 0.935827] }, { "keytime": 1674.333862, "rotation": [-0.328990, 0.040787, 0.122267, 0.935496] }, { "keytime": 1707.667236, "rotation": [-0.329717, 0.040872, 0.122716, 0.935178] }, { "keytime": 1741.000610, "rotation": [-0.330420, 0.040958, 0.123151, 0.934868] }, { "keytime": 1774.333984, "rotation": [-0.331068, 0.041039, 0.123550, 0.934583] }, { "keytime": 1807.667358, "rotation": [-0.331681, 0.041119, 0.123927, 0.934312] }, { "keytime": 1841.000732, "rotation": [-0.332276, 0.041200, 0.124291, 0.934049] }, { "keytime": 1874.334106, "rotation": [-0.332816, 0.041276, 0.124621, 0.933809] }, { "keytime": 1907.667480, "rotation": [-0.333307, 0.041350, 0.124920, 0.933591] }, { "keytime": 1941.000854, "rotation": [-0.333774, 0.041424, 0.125202, 0.933383] }, { "keytime": 1974.334229, "rotation": [-0.334189, 0.041494, 0.125451, 0.933198] }, { "keytime": 2007.667603, "rotation": [-0.334567, 0.041561, 0.125676, 0.933029] }, { "keytime": 2041.000977, "rotation": [-0.334915, 0.041629, 0.125882, 0.932873] }, { "keytime": 2074.334473, "rotation": [-0.335201, 0.041692, 0.126049, 0.932745] }, { "keytime": 2107.667725, "rotation": [-0.335450, 0.041753, 0.126191, 0.932634] }, { "keytime": 2141.000977, "rotation": [-0.335666, 0.041814, 0.126311, 0.932537] }, { "keytime": 2174.334229, "rotation": [-0.335837, 0.041871, 0.126403, 0.932461] }, { "keytime": 2207.667480, "rotation": [-0.335969, 0.041925, 0.126470, 0.932402] }, { "keytime": 2241.000732, "rotation": [-0.336053, 0.041978, 0.126506, 0.932364] }, { "keytime": 2274.333984, "rotation": [-0.336096, 0.042028, 0.126516, 0.932345] }, { "keytime": 2307.667236, "rotation": [-0.336112, 0.042078, 0.126509, 0.932338] }, { "keytime": 2341.000488, "rotation": [-0.336111, 0.042132, 0.126491, 0.932338] }, { "keytime": 2374.333740, "rotation": [-0.336104, 0.042190, 0.126471, 0.932341] }, { "keytime": 2407.666992, "rotation": [-0.336088, 0.042254, 0.126447, 0.932347] }, { "keytime": 2441.000244, "rotation": [-0.336066, 0.042326, 0.126419, 0.932355] }, { "keytime": 2474.333496, "rotation": [-0.336038, 0.042401, 0.126390, 0.932366] }, { "keytime": 2507.666748, "rotation": [-0.336004, 0.042481, 0.126357, 0.932379] }, { "keytime": 2541.000000, "rotation": [-0.335961, 0.042569, 0.126320, 0.932395] }, { "keytime": 2574.333252, "rotation": [-0.335911, 0.042661, 0.126280, 0.932415] }, { "keytime": 2607.666504, "rotation": [-0.335854, 0.042758, 0.126236, 0.932437] }, { "keytime": 2640.999756, "rotation": [-0.335790, 0.042860, 0.126190, 0.932461] }, { "keytime": 2674.333008, "rotation": [-0.335717, 0.042970, 0.126138, 0.932489] }, { "keytime": 2707.666260, "rotation": [-0.335639, 0.043083, 0.126085, 0.932520] }, { "keytime": 2740.999512, "rotation": [-0.335552, 0.043201, 0.126027, 0.932553] }, { "keytime": 2774.332764, "rotation": [-0.335454, 0.043328, 0.125963, 0.932591] }, { "keytime": 2807.666016, "rotation": [-0.335352, 0.043457, 0.125898, 0.932631] }, { "keytime": 2840.999268, "rotation": [-0.335243, 0.043589, 0.125829, 0.932673] }, { "keytime": 2874.332520, "rotation": [-0.335122, 0.043731, 0.125754, 0.932720] }, { "keytime": 2907.665771, "rotation": [-0.334995, 0.043875, 0.125677, 0.932770] }, { "keytime": 2940.999023, "rotation": [-0.334860, 0.044022, 0.125595, 0.932822] }, { "keytime": 2974.332275, "rotation": [-0.334713, 0.044178, 0.125508, 0.932879] }, { "keytime": 3007.665527, "rotation": [-0.334563, 0.044334, 0.125418, 0.932937] }, { "keytime": 3040.998779, "rotation": [-0.334405, 0.044494, 0.125325, 0.932999] }, { "keytime": 3074.332031, "rotation": [-0.334232, 0.044663, 0.125224, 0.933066] }, { "keytime": 3107.665283, "rotation": [-0.334057, 0.044832, 0.125122, 0.933135] }, { "keytime": 3140.998535, "rotation": [-0.333874, 0.045003, 0.125015, 0.933206] }, { "keytime": 3207.665039, "rotation": [-0.333478, 0.045360, 0.124787, 0.933361] }, { "keytime": 3240.998291, "rotation": [-0.333269, 0.045540, 0.124667, 0.933443] }, { "keytime": 3274.331543, "rotation": [-0.333047, 0.045729, 0.124539, 0.933530] }, { "keytime": 3307.664795, "rotation": [-0.332823, 0.045914, 0.124411, 0.933618] }, { "keytime": 3340.998047, "rotation": [-0.332593, 0.046100, 0.124279, 0.933708] }, { "keytime": 3374.331299, "rotation": [-0.332347, 0.046294, 0.124139, 0.933805] }, { "keytime": 3407.664551, "rotation": [-0.332100, 0.046485, 0.123998, 0.933902] }, { "keytime": 3440.997803, "rotation": [-0.331845, 0.046676, 0.123853, 0.934003] }, { "keytime": 3474.331055, "rotation": [-0.331576, 0.046874, 0.123699, 0.934109] }, { "keytime": 3507.664307, "rotation": [-0.331308, 0.047066, 0.123546, 0.934214] }, { "keytime": 3540.997559, "rotation": [-0.331034, 0.047258, 0.123389, 0.934323] }, { "keytime": 3574.330811, "rotation": [-0.330743, 0.047456, 0.123222, 0.934438] }, { "keytime": 3607.664062, "rotation": [-0.330454, 0.047647, 0.123056, 0.934552] }, { "keytime": 3640.997314, "rotation": [-0.330159, 0.047837, 0.122887, 0.934669] }, { "keytime": 3674.330566, "rotation": [-0.329850, 0.048032, 0.122709, 0.934791] }, { "keytime": 3707.663818, "rotation": [-0.329544, 0.048220, 0.122532, 0.934913] }, { "keytime": 3740.997070, "rotation": [-0.329231, 0.048405, 0.122352, 0.935037] }, { "keytime": 3774.330322, "rotation": [-0.328904, 0.048594, 0.122162, 0.935167] }, { "keytime": 3807.663574, "rotation": [-0.328582, 0.048774, 0.121975, 0.935295] }, { "keytime": 3840.996826, "rotation": [-0.328255, 0.048952, 0.121785, 0.935425] }, { "keytime": 3874.330078, "rotation": [-0.327914, 0.049133, 0.121586, 0.935561] }, { "keytime": 3907.663330, "rotation": [-0.327578, 0.049303, 0.121389, 0.935696] }, { "keytime": 3940.996582, "rotation": [-0.327238, 0.049470, 0.121189, 0.935832] }, { "keytime": 3974.329834, "rotation": [-0.326885, 0.049638, 0.120980, 0.935973] }, { "keytime": 4007.663086, "rotation": [-0.326539, 0.049797, 0.120775, 0.936112] }, { "keytime": 4040.996338, "rotation": [-0.326190, 0.049952, 0.120568, 0.936252] }, { "keytime": 4074.329590, "rotation": [-0.325826, 0.050105, 0.120352, 0.936399] }, { "keytime": 4107.663086, "rotation": [-0.325472, 0.050249, 0.120140, 0.936541] }, { "keytime": 4140.996094, "rotation": [-0.325115, 0.050388, 0.119926, 0.936685] }, { "keytime": 4174.329590, "rotation": [-0.324745, 0.050526, 0.119703, 0.936835] }, { "keytime": 4207.663086, "rotation": [-0.324384, 0.050654, 0.119485, 0.936980] }, { "keytime": 4240.996582, "rotation": [-0.324023, 0.050776, 0.119265, 0.937127] }, { "keytime": 4274.330078, "rotation": [-0.323649, 0.050895, 0.119036, 0.937279] }, { "keytime": 4307.663574, "rotation": [-0.323285, 0.051005, 0.118813, 0.937427] }, { "keytime": 4340.997070, "rotation": [-0.322920, 0.051110, 0.118589, 0.937575] }, { "keytime": 4374.330566, "rotation": [-0.322545, 0.051211, 0.118356, 0.937728] }, { "keytime": 4407.664062, "rotation": [-0.322179, 0.051301, 0.118129, 0.937877] }, { "keytime": 4440.997559, "rotation": [-0.321814, 0.051386, 0.117901, 0.938027] }, { "keytime": 4474.331055, "rotation": [-0.321437, 0.051466, 0.117665, 0.938181] }, { "keytime": 4507.664551, "rotation": [-0.321073, 0.051538, 0.117435, 0.938331] }, { "keytime": 4540.998047, "rotation": [-0.320708, 0.051604, 0.117204, 0.938481] }, { "keytime": 4574.331543, "rotation": [-0.320333, 0.051663, 0.116966, 0.938635] }, { "keytime": 4607.665039, "rotation": [-0.319971, 0.051714, 0.116734, 0.938785] }, { "keytime": 4640.998535, "rotation": [-0.319609, 0.051759, 0.116502, 0.938935] }, { "keytime": 4674.332031, "rotation": [-0.319237, 0.051798, 0.116262, 0.939089] }, { "keytime": 4707.665527, "rotation": [-0.318878, 0.051830, 0.116029, 0.939238] }, { "keytime": 4740.999023, "rotation": [-0.318520, 0.051854, 0.115796, 0.939387] }, { "keytime": 4774.332520, "rotation": [-0.318153, 0.051871, 0.115555, 0.939540] }, { "keytime": 4807.666016, "rotation": [-0.317799, 0.051882, 0.115322, 0.939688] }, { "keytime": 4840.999512, "rotation": [-0.317446, 0.051887, 0.115088, 0.939835] }, { "keytime": 4874.333008, "rotation": [-0.317084, 0.051886, 0.114848, 0.939987] }, { "keytime": 4907.666504, "rotation": [-0.316735, 0.051876, 0.114614, 0.940134] }, { "keytime": 4941.000000, "rotation": [-0.316378, 0.051859, 0.114374, 0.940284] }, { "keytime": 4974.333496, "rotation": [-0.316033, 0.051837, 0.114141, 0.940430] }, { "keytime": 5007.666992, "rotation": [-0.315687, 0.051807, 0.113906, 0.940576] }, { "keytime": 5041.000488, "rotation": [-0.315321, 0.051761, 0.113659, 0.940731] }, { "keytime": 5074.333984, "rotation": [-0.314940, 0.051688, 0.113403, 0.940894] }, { "keytime": 5107.667480, "rotation": [-0.314539, 0.051593, 0.113137, 0.941065] }, { "keytime": 5141.000977, "rotation": [-0.314107, 0.051472, 0.112851, 0.941250] }, { "keytime": 5174.334473, "rotation": [-0.313669, 0.051333, 0.112562, 0.941439] }, { "keytime": 5207.667969, "rotation": [-0.313211, 0.051171, 0.112262, 0.941636] }, { "keytime": 5241.001465, "rotation": [-0.312715, 0.050975, 0.111939, 0.941850] }, { "keytime": 5274.334961, "rotation": [-0.312215, 0.050763, 0.111615, 0.942065] }, { "keytime": 5307.668457, "rotation": [-0.311698, 0.050530, 0.111281, 0.942289] }, { "keytime": 5341.001953, "rotation": [-0.311148, 0.050269, 0.110927, 0.942526] }, { "keytime": 5374.335449, "rotation": [-0.310597, 0.049994, 0.110574, 0.942764] }, { "keytime": 5407.668945, "rotation": [-0.310027, 0.049693, 0.110210, 0.943010] }, { "keytime": 5441.002441, "rotation": [-0.309426, 0.049363, 0.109827, 0.943269] }, { "keytime": 5474.335938, "rotation": [-0.308830, 0.049025, 0.109449, 0.943526] }, { "keytime": 5507.669434, "rotation": [-0.308222, 0.048670, 0.109065, 0.943788] }, { "keytime": 5541.002930, "rotation": [-0.307585, 0.048287, 0.108663, 0.944062] }, { "keytime": 5574.336426, "rotation": [-0.306955, 0.047896, 0.108268, 0.944332] }, { "keytime": 5607.669922, "rotation": [-0.306319, 0.047492, 0.107868, 0.944604] }, { "keytime": 5641.003418, "rotation": [-0.305659, 0.047064, 0.107454, 0.944887] }, { "keytime": 5674.336914, "rotation": [-0.305015, 0.046638, 0.107052, 0.945162] }, { "keytime": 5707.670410, "rotation": [-0.304369, 0.046202, 0.106649, 0.945437] }, { "keytime": 5741.003906, "rotation": [-0.303705, 0.045745, 0.106236, 0.945719] }, { "keytime": 5774.337402, "rotation": [-0.303064, 0.045298, 0.105838, 0.945991] }, { "keytime": 5807.670898, "rotation": [-0.302428, 0.044847, 0.105444, 0.946260] }, { "keytime": 5841.004395, "rotation": [-0.301780, 0.044382, 0.105043, 0.946533] }, { "keytime": 5874.337891, "rotation": [-0.301160, 0.043931, 0.104660, 0.946794] }, { "keytime": 5907.671387, "rotation": [-0.300556, 0.043484, 0.104287, 0.947048] }, { "keytime": 5941.004883, "rotation": [-0.299947, 0.043030, 0.103912, 0.947303] }, { "keytime": 5974.338379, "rotation": [-0.299371, 0.042597, 0.103558, 0.947543] }, { "keytime": 6007.671875, "rotation": [-0.298812, 0.042172, 0.103215, 0.947776] }, { "keytime": 6041.005371, "rotation": [-0.298256, 0.041745, 0.102874, 0.948007] }, { "keytime": 6074.338867, "rotation": [-0.297743, 0.041348, 0.102559, 0.948220] }, { "keytime": 6107.672363, "rotation": [-0.297252, 0.040964, 0.102259, 0.948423] }, { "keytime": 6141.005859, "rotation": [-0.296770, 0.040585, 0.101964, 0.948622] }, { "keytime": 6174.339355, "rotation": [-0.296327, 0.040233, 0.101693, 0.948805] }, { "keytime": 6207.672852, "rotation": [-0.295908, 0.039900, 0.101438, 0.948977] }, { "keytime": 6241.006348, "rotation": [-0.295512, 0.039581, 0.101196, 0.949139] }, { "keytime": 6274.339844, "rotation": [-0.295155, 0.039293, 0.100979, 0.949286] }, { "keytime": 6307.673340, "rotation": [-0.294824, 0.039024, 0.100778, 0.949421] }, { "keytime": 6341.006836, "rotation": [-0.294513, 0.038770, 0.100588, 0.949548] }, { "keytime": 6374.340332, "rotation": [-0.294238, 0.038545, 0.100422, 0.949660] }, { "keytime": 6407.673828, "rotation": [-0.294001, 0.038349, 0.100278, 0.949756] }, { "keytime": 6441.007324, "rotation": [-0.293785, 0.038170, 0.100147, 0.949844] }, { "keytime": 6474.340820, "rotation": [-0.293604, 0.038019, 0.100037, 0.949918] }, { "keytime": 6507.674316, "rotation": [-0.293450, 0.037890, 0.099944, 0.949980] }, { "keytime": 6541.007812, "rotation": [-0.293321, 0.037782, 0.099865, 0.950033] }, { "keytime": 6574.341309, "rotation": [-0.293232, 0.037707, 0.099812, 0.950069] }, { "keytime": 6607.674805, "rotation": [-0.293170, 0.037655, 0.099774, 0.950094] } ] }, { "boneId": "Bone_003", "keyframes": [ { "keytime": 41.000000, "rotation": [ 0.531192, -0.470676, 0.576916, -0.404311] }, { "keytime": 74.333328, "rotation": [ 0.531183, -0.470680, 0.576922, -0.404310] }, { "keytime": 107.666664, "rotation": [ 0.531162, -0.470690, 0.576937, -0.404305] }, { "keytime": 141.000000, "rotation": [ 0.531127, -0.470706, 0.576961, -0.404297] }, { "keytime": 174.333328, "rotation": [ 0.531080, -0.470728, 0.576994, -0.404286] }, { "keytime": 207.666656, "rotation": [ 0.531020, -0.470756, 0.577037, -0.404272] }, { "keytime": 240.999985, "rotation": [ 0.530943, -0.470792, 0.577091, -0.404254] }, { "keytime": 274.333313, "rotation": [ 0.530850, -0.470835, 0.577156, -0.404232] }, { "keytime": 307.666656, "rotation": [ 0.530747, -0.470883, 0.577229, -0.404208] }, { "keytime": 341.000000, "rotation": [ 0.530627, -0.470939, 0.577313, -0.404180] }, { "keytime": 374.333344, "rotation": [ 0.530497, -0.470999, 0.577404, -0.404150] }, { "keytime": 407.666687, "rotation": [ 0.530351, -0.471067, 0.577507, -0.404116] }, { "keytime": 441.000031, "rotation": [ 0.530187, -0.471143, 0.577622, -0.404078] }, { "keytime": 474.333374, "rotation": [ 0.530015, -0.471223, 0.577743, -0.404038] }, { "keytime": 507.666718, "rotation": [ 0.529831, -0.471308, 0.577872, -0.403996] }, { "keytime": 541.000061, "rotation": [ 0.529628, -0.471402, 0.578014, -0.403949] }, { "keytime": 574.333374, "rotation": [ 0.529415, -0.471500, 0.578163, -0.403899] }, { "keytime": 607.666687, "rotation": [ 0.529191, -0.471604, 0.578320, -0.403847] }, { "keytime": 641.000000, "rotation": [ 0.528949, -0.471716, 0.578490, -0.403791] }, { "keytime": 674.333313, "rotation": [ 0.528703, -0.471830, 0.578662, -0.403733] }, { "keytime": 707.666626, "rotation": [ 0.528446, -0.471949, 0.578842, -0.403673] }, { "keytime": 740.999939, "rotation": [ 0.528175, -0.472073, 0.579030, -0.403610] }, { "keytime": 807.666565, "rotation": [ 0.527599, -0.472339, 0.579433, -0.403476] }, { "keytime": 840.999878, "rotation": [ 0.527302, -0.472476, 0.579640, -0.403406] }, { "keytime": 907.666504, "rotation": [ 0.526672, -0.472766, 0.580079, -0.403259] }, { "keytime": 940.999817, "rotation": [ 0.526351, -0.472913, 0.580302, -0.403184] }, { "keytime": 974.333130, "rotation": [ 0.526015, -0.473067, 0.580536, -0.403105] }, { "keytime": 1007.666443, "rotation": [ 0.525683, -0.473219, 0.580766, -0.403028] }, { "keytime": 1040.999756, "rotation": [ 0.525347, -0.473373, 0.580999, -0.402949] }, { "keytime": 1074.333130, "rotation": [ 0.524997, -0.473534, 0.581243, -0.402866] }, { "keytime": 1140.999878, "rotation": [ 0.524309, -0.473848, 0.581718, -0.402706] }, { "keytime": 1174.333252, "rotation": [ 0.523954, -0.474011, 0.581964, -0.402622] }, { "keytime": 1207.666626, "rotation": [ 0.523609, -0.474168, 0.582203, -0.402540] }, { "keytime": 1241.000000, "rotation": [ 0.523254, -0.474329, 0.582448, -0.402457] }, { "keytime": 1274.333374, "rotation": [ 0.522913, -0.474484, 0.582684, -0.402376] }, { "keytime": 1307.666748, "rotation": [ 0.522574, -0.474639, 0.582918, -0.402296] }, { "keytime": 1341.000122, "rotation": [ 0.522228, -0.474796, 0.583156, -0.402214] }, { "keytime": 1374.333496, "rotation": [ 0.521896, -0.474946, 0.583384, -0.402136] }, { "keytime": 1407.666870, "rotation": [ 0.521571, -0.475093, 0.583607, -0.402060] }, { "keytime": 1441.000244, "rotation": [ 0.521243, -0.475242, 0.583833, -0.401982] }, { "keytime": 1474.333618, "rotation": [ 0.520931, -0.475383, 0.584047, -0.401908] }, { "keytime": 1541.000366, "rotation": [ 0.520321, -0.475659, 0.584466, -0.401763] }, { "keytime": 1574.333740, "rotation": [ 0.520036, -0.475788, 0.584661, -0.401696] }, { "keytime": 1641.000488, "rotation": [ 0.519486, -0.476036, 0.585038, -0.401565] }, { "keytime": 1674.333862, "rotation": [ 0.519230, -0.476151, 0.585213, -0.401505] }, { "keytime": 1707.667236, "rotation": [ 0.518985, -0.476261, 0.585380, -0.401446] }, { "keytime": 1741.000610, "rotation": [ 0.518748, -0.476368, 0.585543, -0.401390] }, { "keytime": 1774.333984, "rotation": [ 0.518529, -0.476467, 0.585692, -0.401338] }, { "keytime": 1807.667358, "rotation": [ 0.518322, -0.476559, 0.585833, -0.401289] }, { "keytime": 1841.000732, "rotation": [ 0.518122, -0.476650, 0.585970, -0.401241] }, { "keytime": 1874.334106, "rotation": [ 0.517939, -0.476731, 0.586094, -0.401198] }, { "keytime": 1907.667480, "rotation": [ 0.517774, -0.476806, 0.586207, -0.401158] }, { "keytime": 1941.000854, "rotation": [ 0.517616, -0.476876, 0.586314, -0.401121] }, { "keytime": 1974.334229, "rotation": [ 0.517476, -0.476939, 0.586410, -0.401087] }, { "keytime": 2007.667603, "rotation": [ 0.517349, -0.476996, 0.586496, -0.401057] }, { "keytime": 2041.000977, "rotation": [ 0.517232, -0.477048, 0.586576, -0.401029] }, { "keytime": 2074.334473, "rotation": [ 0.517136, -0.477091, 0.586641, -0.401006] }, { "keytime": 2107.667725, "rotation": [ 0.517053, -0.477129, 0.586698, -0.400986] }, { "keytime": 2141.000977, "rotation": [ 0.516981, -0.477161, 0.586747, -0.400969] }, { "keytime": 2174.334229, "rotation": [ 0.516924, -0.477186, 0.586785, -0.400956] }, { "keytime": 2207.667480, "rotation": [ 0.516881, -0.477206, 0.586815, -0.400945] }, { "keytime": 2241.000732, "rotation": [ 0.516854, -0.477218, 0.586833, -0.400939] }, { "keytime": 2274.333984, "rotation": [ 0.516841, -0.477224, 0.586842, -0.400936] }, { "keytime": 2307.667236, "rotation": [ 0.516840, -0.477224, 0.586843, -0.400935] }, { "keytime": 2341.000488, "rotation": [ 0.516850, -0.477220, 0.586836, -0.400938] }, { "keytime": 2374.333740, "rotation": [ 0.516870, -0.477210, 0.586822, -0.400943] }, { "keytime": 2407.666992, "rotation": [ 0.516903, -0.477196, 0.586799, -0.400952] }, { "keytime": 2441.000244, "rotation": [ 0.516948, -0.477175, 0.586768, -0.400964] }, { "keytime": 2474.333496, "rotation": [ 0.517001, -0.477151, 0.586731, -0.400978] }, { "keytime": 2507.666748, "rotation": [ 0.517065, -0.477123, 0.586687, -0.400994] }, { "keytime": 2541.000000, "rotation": [ 0.517141, -0.477088, 0.586634, -0.401014] }, { "keytime": 2574.333252, "rotation": [ 0.517229, -0.477049, 0.586573, -0.401037] }, { "keytime": 2607.666504, "rotation": [ 0.517326, -0.477005, 0.586506, -0.401063] }, { "keytime": 2640.999756, "rotation": [ 0.517434, -0.476956, 0.586431, -0.401091] }, { "keytime": 2674.333008, "rotation": [ 0.517555, -0.476901, 0.586347, -0.401123] }, { "keytime": 2707.666260, "rotation": [ 0.517683, -0.476843, 0.586258, -0.401156] }, { "keytime": 2740.999512, "rotation": [ 0.517824, -0.476780, 0.586160, -0.401193] }, { "keytime": 2774.332764, "rotation": [ 0.517979, -0.476709, 0.586052, -0.401234] }, { "keytime": 2807.666016, "rotation": [ 0.518140, -0.476637, 0.585940, -0.401276] }, { "keytime": 2840.999268, "rotation": [ 0.518310, -0.476560, 0.585822, -0.401320] }, { "keytime": 2874.332520, "rotation": [ 0.518496, -0.476476, 0.585693, -0.401369] }, { "keytime": 2907.665771, "rotation": [ 0.518688, -0.476389, 0.585559, -0.401419] }, { "keytime": 2940.999023, "rotation": [ 0.518890, -0.476297, 0.585419, -0.401472] }, { "keytime": 2974.332275, "rotation": [ 0.519106, -0.476199, 0.585268, -0.401528] }, { "keytime": 3007.665527, "rotation": [ 0.519325, -0.476099, 0.585115, -0.401585] }, { "keytime": 3040.998779, "rotation": [ 0.519553, -0.475996, 0.584956, -0.401645] }, { "keytime": 3107.665283, "rotation": [ 0.520045, -0.475772, 0.584613, -0.401773] }, { "keytime": 3140.998535, "rotation": [ 0.520299, -0.475657, 0.584435, -0.401839] }, { "keytime": 3207.665039, "rotation": [ 0.520837, -0.475412, 0.584059, -0.401979] }, { "keytime": 3240.998291, "rotation": [ 0.521114, -0.475285, 0.583865, -0.402051] }, { "keytime": 3274.331543, "rotation": [ 0.521405, -0.475152, 0.583661, -0.402127] }, { "keytime": 3307.664795, "rotation": [ 0.521694, -0.475021, 0.583459, -0.402202] }, { "keytime": 3340.998047, "rotation": [ 0.521988, -0.474886, 0.583253, -0.402278] }, { "keytime": 3374.331299, "rotation": [ 0.522296, -0.474745, 0.583037, -0.402358] }, { "keytime": 3407.664551, "rotation": [ 0.522600, -0.474606, 0.582823, -0.402437] }, { "keytime": 3440.997803, "rotation": [ 0.522908, -0.474465, 0.582607, -0.402517] }, { "keytime": 3474.331055, "rotation": [ 0.523229, -0.474318, 0.582381, -0.402600] }, { "keytime": 3507.664307, "rotation": [ 0.523543, -0.474173, 0.582160, -0.402682] }, { "keytime": 3540.997559, "rotation": [ 0.523859, -0.474028, 0.581937, -0.402763] }, { "keytime": 3574.330811, "rotation": [ 0.524187, -0.473877, 0.581706, -0.402848] }, { "keytime": 3640.997314, "rotation": [ 0.524827, -0.473583, 0.581254, -0.403014] }, { "keytime": 3674.330566, "rotation": [ 0.525156, -0.473431, 0.581021, -0.403099] }, { "keytime": 3740.997070, "rotation": [ 0.525794, -0.473136, 0.580570, -0.403264] }, { "keytime": 3774.330322, "rotation": [ 0.526120, -0.472985, 0.580339, -0.403348] }, { "keytime": 3807.663574, "rotation": [ 0.526434, -0.472840, 0.580116, -0.403429] }, { "keytime": 3840.996826, "rotation": [ 0.526745, -0.472696, 0.579895, -0.403509] }, { "keytime": 3874.330078, "rotation": [ 0.527063, -0.472549, 0.579670, -0.403590] }, { "keytime": 3907.663330, "rotation": [ 0.527367, -0.472408, 0.579454, -0.403668] }, { "keytime": 3940.996582, "rotation": [ 0.527665, -0.472269, 0.579242, -0.403745] }, { "keytime": 3974.329834, "rotation": [ 0.527968, -0.472128, 0.579026, -0.403823] }, { "keytime": 4007.663086, "rotation": [ 0.528257, -0.471994, 0.578821, -0.403897] }, { "keytime": 4074.329590, "rotation": [ 0.528824, -0.471730, 0.578417, -0.404043] }, { "keytime": 4107.663086, "rotation": [ 0.529093, -0.471605, 0.578225, -0.404111] }, { "keytime": 4174.329590, "rotation": [ 0.529617, -0.471360, 0.577850, -0.404246] }, { "keytime": 4207.663086, "rotation": [ 0.529864, -0.471244, 0.577674, -0.404309] }, { "keytime": 4274.330078, "rotation": [ 0.530336, -0.471024, 0.577336, -0.404430] }, { "keytime": 4307.663574, "rotation": [ 0.530556, -0.470921, 0.577179, -0.404486] }, { "keytime": 4340.997070, "rotation": [ 0.530768, -0.470821, 0.577027, -0.404540] }, { "keytime": 4374.330566, "rotation": [ 0.530976, -0.470724, 0.576878, -0.404593] }, { "keytime": 4407.664062, "rotation": [ 0.531167, -0.470634, 0.576741, -0.404642] }, { "keytime": 4440.997559, "rotation": [ 0.531348, -0.470549, 0.576611, -0.404688] }, { "keytime": 4474.331055, "rotation": [ 0.531525, -0.470466, 0.576484, -0.404733] }, { "keytime": 4507.664551, "rotation": [ 0.531687, -0.470390, 0.576367, -0.404775] }, { "keytime": 4540.998047, "rotation": [ 0.531840, -0.470318, 0.576258, -0.404814] }, { "keytime": 4574.331543, "rotation": [ 0.531984, -0.470251, 0.576154, -0.404850] }, { "keytime": 4607.665039, "rotation": [ 0.532113, -0.470190, 0.576061, -0.404883] }, { "keytime": 4640.998535, "rotation": [ 0.532233, -0.470133, 0.575975, -0.404914] }, { "keytime": 4674.332031, "rotation": [ 0.532347, -0.470080, 0.575893, -0.404943] }, { "keytime": 4707.665527, "rotation": [ 0.532446, -0.470033, 0.575822, -0.404968] }, { "keytime": 4740.999023, "rotation": [ 0.532533, -0.469992, 0.575759, -0.404990] }, { "keytime": 4774.332520, "rotation": [ 0.532612, -0.469955, 0.575703, -0.405010] }, { "keytime": 4807.666016, "rotation": [ 0.532678, -0.469924, 0.575655, -0.405027] }, { "keytime": 4840.999512, "rotation": [ 0.532735, -0.469897, 0.575614, -0.405042] }, { "keytime": 4874.333008, "rotation": [ 0.532782, -0.469875, 0.575580, -0.405054] }, { "keytime": 4907.666504, "rotation": [ 0.532816, -0.469859, 0.575556, -0.405062] }, { "keytime": 4941.000000, "rotation": [ 0.532839, -0.469848, 0.575539, -0.405068] }, { "keytime": 4974.333496, "rotation": [ 0.532852, -0.469842, 0.575529, -0.405072] }, { "keytime": 5007.666992, "rotation": [ 0.532857, -0.469840, 0.575526, -0.405073] }, { "keytime": 5041.000488, "rotation": [ 0.532855, -0.469841, 0.575528, -0.405072] }, { "keytime": 5074.333984, "rotation": [ 0.532849, -0.469844, 0.575532, -0.405070] }, { "keytime": 5107.667480, "rotation": [ 0.532841, -0.469848, 0.575539, -0.405066] }, { "keytime": 5141.000977, "rotation": [ 0.532830, -0.469854, 0.575548, -0.405061] }, { "keytime": 5174.334473, "rotation": [ 0.532816, -0.469860, 0.575560, -0.405055] }, { "keytime": 5207.667969, "rotation": [ 0.532800, -0.469868, 0.575574, -0.405047] }, { "keytime": 5241.001465, "rotation": [ 0.532779, -0.469879, 0.575591, -0.405037] }, { "keytime": 5274.334961, "rotation": [ 0.532756, -0.469891, 0.575610, -0.405027] }, { "keytime": 5307.668457, "rotation": [ 0.532730, -0.469904, 0.575631, -0.405016] }, { "keytime": 5374.335449, "rotation": [ 0.532671, -0.469933, 0.575682, -0.404988] }, { "keytime": 5407.668945, "rotation": [ 0.532636, -0.469951, 0.575710, -0.404972] }, { "keytime": 5474.335938, "rotation": [ 0.532560, -0.469990, 0.575774, -0.404937] }, { "keytime": 5507.669434, "rotation": [ 0.532519, -0.470010, 0.575809, -0.404918] }, { "keytime": 5574.336426, "rotation": [ 0.532428, -0.470056, 0.575884, -0.404877] }, { "keytime": 5607.669922, "rotation": [ 0.532381, -0.470079, 0.575924, -0.404856] }, { "keytime": 5707.670410, "rotation": [ 0.532228, -0.470156, 0.576051, -0.404786] }, { "keytime": 5807.670898, "rotation": [ 0.532067, -0.470237, 0.576187, -0.404711] }, { "keytime": 5941.004883, "rotation": [ 0.531850, -0.470345, 0.576369, -0.404611] }, { "keytime": 6041.005371, "rotation": [ 0.531696, -0.470422, 0.576499, -0.404539] }, { "keytime": 6141.005859, "rotation": [ 0.531554, -0.470493, 0.576615, -0.404476] }, { "keytime": 6207.672852, "rotation": [ 0.531470, -0.470536, 0.576684, -0.404439] }, { "keytime": 6241.006348, "rotation": [ 0.531432, -0.470555, 0.576716, -0.404421] }, { "keytime": 6274.339844, "rotation": [ 0.531397, -0.470573, 0.576746, -0.404405] }, { "keytime": 6341.006836, "rotation": [ 0.531333, -0.470605, 0.576798, -0.404376] }, { "keytime": 6374.340332, "rotation": [ 0.531306, -0.470619, 0.576821, -0.404364] }, { "keytime": 6441.007324, "rotation": [ 0.531260, -0.470641, 0.576860, -0.404342] }, { "keytime": 6474.340820, "rotation": [ 0.531242, -0.470650, 0.576875, -0.404334] }, { "keytime": 6507.674316, "rotation": [ 0.531226, -0.470658, 0.576888, -0.404327] }, { "keytime": 6541.007812, "rotation": [ 0.531212, -0.470665, 0.576899, -0.404321] }, { "keytime": 6574.341309, "rotation": [ 0.531204, -0.470670, 0.576906, -0.404317] }, { "keytime": 6607.674805, "rotation": [ 0.531197, -0.470673, 0.576912, -0.404314] } ] }, { "boneId": "Bone_018", "keyframes": [ { "keytime": 41.000000, "rotation": [ 0.029072, 0.144451, 0.060785, 0.987215] }, { "keytime": 107.666664, "rotation": [ 0.029073, 0.144450, 0.060788, 0.987215] }, { "keytime": 174.333328, "rotation": [ 0.029075, 0.144449, 0.060798, 0.987215] }, { "keytime": 207.666656, "rotation": [ 0.029077, 0.144449, 0.060806, 0.987214] }, { "keytime": 274.333313, "rotation": [ 0.029082, 0.144449, 0.060827, 0.987213] }, { "keytime": 307.666656, "rotation": [ 0.029085, 0.144449, 0.060839, 0.987212] }, { "keytime": 374.333344, "rotation": [ 0.029092, 0.144449, 0.060870, 0.987210] }, { "keytime": 441.000031, "rotation": [ 0.029101, 0.144450, 0.060908, 0.987207] }, { "keytime": 507.666718, "rotation": [ 0.029111, 0.144451, 0.060951, 0.987204] }, { "keytime": 574.333374, "rotation": [ 0.029122, 0.144452, 0.061002, 0.987200] }, { "keytime": 607.666687, "rotation": [ 0.029129, 0.144453, 0.061030, 0.987198] }, { "keytime": 707.666626, "rotation": [ 0.029151, 0.144456, 0.061121, 0.987191] }, { "keytime": 740.999939, "rotation": [ 0.029158, 0.144457, 0.061154, 0.987189] }, { "keytime": 840.999878, "rotation": [ 0.029183, 0.144461, 0.061260, 0.987181] }, { "keytime": 940.999817, "rotation": [ 0.029209, 0.144465, 0.061377, 0.987172] }, { "keytime": 1040.999756, "rotation": [ 0.029238, 0.144470, 0.061499, 0.987163] }, { "keytime": 1241.000000, "rotation": [ 0.029295, 0.144480, 0.061754, 0.987144] }, { "keytime": 1374.333496, "rotation": [ 0.029332, 0.144486, 0.061919, 0.987132] }, { "keytime": 1441.000244, "rotation": [ 0.029352, 0.144490, 0.061998, 0.987126] }, { "keytime": 1541.000366, "rotation": [ 0.029378, 0.144497, 0.062110, 0.987117] }, { "keytime": 1641.000488, "rotation": [ 0.029401, 0.144504, 0.062211, 0.987109] }, { "keytime": 1741.000610, "rotation": [ 0.029422, 0.144510, 0.062301, 0.987102] }, { "keytime": 1841.000732, "rotation": [ 0.029439, 0.144515, 0.062377, 0.987096] }, { "keytime": 1907.667480, "rotation": [ 0.029449, 0.144518, 0.062419, 0.987092] }, { "keytime": 1941.000854, "rotation": [ 0.029453, 0.144519, 0.062438, 0.987091] }, { "keytime": 2007.667603, "rotation": [ 0.029460, 0.144524, 0.062470, 0.987088] }, { "keytime": 2041.000977, "rotation": [ 0.029464, 0.144526, 0.062485, 0.987086] }, { "keytime": 2107.667725, "rotation": [ 0.029468, 0.144531, 0.062506, 0.987084] }, { "keytime": 2174.334229, "rotation": [ 0.029471, 0.144535, 0.062522, 0.987083] }, { "keytime": 2241.000732, "rotation": [ 0.029473, 0.144539, 0.062531, 0.987081] }, { "keytime": 2307.667236, "rotation": [ 0.029474, 0.144543, 0.062532, 0.987081] }, { "keytime": 2374.333740, "rotation": [ 0.029473, 0.144546, 0.062528, 0.987081] }, { "keytime": 2441.000244, "rotation": [ 0.029469, 0.144550, 0.062518, 0.987081] }, { "keytime": 2507.666748, "rotation": [ 0.029465, 0.144556, 0.062502, 0.987081] }, { "keytime": 2574.333252, "rotation": [ 0.029459, 0.144562, 0.062479, 0.987082] }, { "keytime": 2640.999756, "rotation": [ 0.029452, 0.144567, 0.062451, 0.987083] }, { "keytime": 2707.666260, "rotation": [ 0.029443, 0.144572, 0.062416, 0.987085] }, { "keytime": 2740.999512, "rotation": [ 0.029437, 0.144575, 0.062397, 0.987086] }, { "keytime": 2807.666016, "rotation": [ 0.029426, 0.144582, 0.062353, 0.987088] }, { "keytime": 2840.999268, "rotation": [ 0.029420, 0.144586, 0.062329, 0.987089] }, { "keytime": 2907.665771, "rotation": [ 0.029406, 0.144592, 0.062277, 0.987092] }, { "keytime": 2940.999023, "rotation": [ 0.029399, 0.144596, 0.062249, 0.987093] }, { "keytime": 3040.998779, "rotation": [ 0.029375, 0.144605, 0.062157, 0.987098] }, { "keytime": 3140.998535, "rotation": [ 0.029349, 0.144617, 0.062054, 0.987104] }, { "keytime": 3207.665039, "rotation": [ 0.029330, 0.144626, 0.061979, 0.987108] }, { "keytime": 3307.664795, "rotation": [ 0.029299, 0.144637, 0.061859, 0.987114] }, { "keytime": 3440.997803, "rotation": [ 0.029256, 0.144652, 0.061691, 0.987124] }, { "keytime": 3874.330078, "rotation": [ 0.029109, 0.144700, 0.061111, 0.987158] }, { "keytime": 3974.329834, "rotation": [ 0.029077, 0.144709, 0.060984, 0.987165] }, { "keytime": 4074.329590, "rotation": [ 0.029046, 0.144718, 0.060865, 0.987172] }, { "keytime": 4174.329590, "rotation": [ 0.029018, 0.144726, 0.060753, 0.987178] }, { "keytime": 4274.330078, "rotation": [ 0.028993, 0.144736, 0.060652, 0.987184] }, { "keytime": 4374.330566, "rotation": [ 0.028970, 0.144742, 0.060562, 0.987189] }, { "keytime": 4474.331055, "rotation": [ 0.028950, 0.144748, 0.060485, 0.987194] }, { "keytime": 4540.998047, "rotation": [ 0.028938, 0.144752, 0.060441, 0.987196] }, { "keytime": 4574.331543, "rotation": [ 0.028933, 0.144753, 0.060421, 0.987197] }, { "keytime": 4640.998535, "rotation": [ 0.028924, 0.144755, 0.060386, 0.987200] }, { "keytime": 4707.665527, "rotation": [ 0.028917, 0.144757, 0.060356, 0.987201] }, { "keytime": 4774.332520, "rotation": [ 0.028911, 0.144759, 0.060333, 0.987203] }, { "keytime": 4840.999512, "rotation": [ 0.028907, 0.144760, 0.060315, 0.987204] }, { "keytime": 4907.666504, "rotation": [ 0.028904, 0.144760, 0.060304, 0.987204] }, { "keytime": 4974.333496, "rotation": [ 0.028902, 0.144761, 0.060299, 0.987205] }, { "keytime": 5041.000488, "rotation": [ 0.028902, 0.144762, 0.060299, 0.987205] }, { "keytime": 5141.000977, "rotation": [ 0.028905, 0.144757, 0.060306, 0.987205] }, { "keytime": 5207.667969, "rotation": [ 0.028908, 0.144751, 0.060315, 0.987205] }, { "keytime": 5307.668457, "rotation": [ 0.028915, 0.144738, 0.060335, 0.987205] }, { "keytime": 5374.335449, "rotation": [ 0.028921, 0.144727, 0.060353, 0.987206] }, { "keytime": 5474.335938, "rotation": [ 0.028933, 0.144706, 0.060385, 0.987207] }, { "keytime": 5541.002930, "rotation": [ 0.028942, 0.144690, 0.060410, 0.987207] }, { "keytime": 5674.336914, "rotation": [ 0.028962, 0.144654, 0.060467, 0.987208] }, { "keytime": 6041.005371, "rotation": [ 0.029020, 0.144546, 0.060637, 0.987212] }, { "keytime": 6141.005859, "rotation": [ 0.029033, 0.144519, 0.060679, 0.987213] }, { "keytime": 6207.672852, "rotation": [ 0.029042, 0.144503, 0.060703, 0.987214] }, { "keytime": 6341.006836, "rotation": [ 0.029056, 0.144478, 0.060743, 0.987214] }, { "keytime": 6441.007324, "rotation": [ 0.029064, 0.144464, 0.060764, 0.987215] }, { "keytime": 6507.674316, "rotation": [ 0.029068, 0.144458, 0.060775, 0.987215] }, { "keytime": 6574.341309, "rotation": [ 0.029070, 0.144453, 0.060781, 0.987215] }, { "keytime": 6607.674805, "rotation": [ 0.029070, 0.144452, 0.060783, 0.987215] } ] }, { "boneId": "Bone_024", "keyframes": [ { "keytime": 41.000000, "rotation": [-0.018797, 0.111843, 0.071235, 0.990991] }, { "keytime": 74.333328, "rotation": [-0.018802, 0.111849, 0.071248, 0.990989] }, { "keytime": 107.666664, "rotation": [-0.018816, 0.111865, 0.071280, 0.990985] }, { "keytime": 141.000000, "rotation": [-0.018839, 0.111892, 0.071333, 0.990978] }, { "keytime": 174.333328, "rotation": [-0.018869, 0.111927, 0.071405, 0.990968] }, { "keytime": 207.666656, "rotation": [-0.018908, 0.111973, 0.071496, 0.990956] }, { "keytime": 240.999985, "rotation": [-0.018959, 0.112031, 0.071613, 0.990940] }, { "keytime": 274.333313, "rotation": [-0.019019, 0.112101, 0.071753, 0.990920] }, { "keytime": 307.666656, "rotation": [-0.019086, 0.112180, 0.071910, 0.990899] }, { "keytime": 341.000000, "rotation": [-0.019164, 0.112270, 0.072092, 0.990874] }, { "keytime": 374.333344, "rotation": [-0.019248, 0.112368, 0.072288, 0.990847] }, { "keytime": 407.666687, "rotation": [-0.019344, 0.112479, 0.072510, 0.990816] }, { "keytime": 441.000031, "rotation": [-0.019450, 0.112603, 0.072758, 0.990782] }, { "keytime": 474.333374, "rotation": [-0.019562, 0.112733, 0.073018, 0.990746] }, { "keytime": 507.666718, "rotation": [-0.019682, 0.112872, 0.073297, 0.990707] }, { "keytime": 541.000061, "rotation": [-0.019813, 0.113025, 0.073603, 0.990664] }, { "keytime": 574.333374, "rotation": [-0.019951, 0.113186, 0.073925, 0.990619] }, { "keytime": 607.666687, "rotation": [-0.020097, 0.113355, 0.074264, 0.990571] }, { "keytime": 641.000000, "rotation": [-0.020254, 0.113537, 0.074630, 0.990520] }, { "keytime": 674.333313, "rotation": [-0.020414, 0.113723, 0.075002, 0.990467] }, { "keytime": 707.666626, "rotation": [-0.020581, 0.113917, 0.075391, 0.990412] }, { "keytime": 740.999939, "rotation": [-0.020756, 0.114121, 0.075799, 0.990354] }, { "keytime": 807.666565, "rotation": [-0.021130, 0.114555, 0.076670, 0.990228] }, { "keytime": 840.999878, "rotation": [-0.021322, 0.114779, 0.077118, 0.990164] }, { "keytime": 907.666504, "rotation": [-0.021730, 0.115252, 0.078068, 0.990025] }, { "keytime": 940.999817, "rotation": [-0.021938, 0.115494, 0.078552, 0.989954] }, { "keytime": 974.333130, "rotation": [-0.022155, 0.115746, 0.079059, 0.989880] }, { "keytime": 1007.666443, "rotation": [-0.022370, 0.115995, 0.079559, 0.989806] }, { "keytime": 1040.999756, "rotation": [-0.022587, 0.116248, 0.080065, 0.989730] }, { "keytime": 1074.333130, "rotation": [-0.022815, 0.116511, 0.080593, 0.989651] }, { "keytime": 1107.666504, "rotation": [-0.023036, 0.116768, 0.081109, 0.989574] }, { "keytime": 1140.999878, "rotation": [-0.023258, 0.117026, 0.081626, 0.989495] }, { "keytime": 1174.333252, "rotation": [-0.023487, 0.117292, 0.082161, 0.989414] }, { "keytime": 1207.666626, "rotation": [-0.023710, 0.117550, 0.082680, 0.989335] }, { "keytime": 1241.000000, "rotation": [-0.023939, 0.117816, 0.083213, 0.989253] }, { "keytime": 1274.333374, "rotation": [-0.024160, 0.118072, 0.083726, 0.989174] }, { "keytime": 1307.666748, "rotation": [-0.024378, 0.118326, 0.084236, 0.989095] }, { "keytime": 1341.000122, "rotation": [-0.024601, 0.118584, 0.084755, 0.989014] }, { "keytime": 1374.333496, "rotation": [-0.024815, 0.118832, 0.085252, 0.988936] }, { "keytime": 1407.666870, "rotation": [-0.025024, 0.119074, 0.085739, 0.988860] }, { "keytime": 1441.000244, "rotation": [-0.025236, 0.119319, 0.086231, 0.988782] }, { "keytime": 1474.333618, "rotation": [-0.025436, 0.119552, 0.086699, 0.988708] }, { "keytime": 1541.000366, "rotation": [-0.025829, 0.120007, 0.087613, 0.988562] }, { "keytime": 1574.333740, "rotation": [-0.026012, 0.120219, 0.088040, 0.988494] }, { "keytime": 1607.667114, "rotation": [-0.026190, 0.120424, 0.088453, 0.988427] }, { "keytime": 1641.000488, "rotation": [-0.026366, 0.120628, 0.088863, 0.988361] }, { "keytime": 1674.333862, "rotation": [-0.026530, 0.120819, 0.089245, 0.988299] }, { "keytime": 1707.667236, "rotation": [-0.026688, 0.121001, 0.089612, 0.988239] }, { "keytime": 1741.000610, "rotation": [-0.026840, 0.121178, 0.089967, 0.988181] }, { "keytime": 1774.333984, "rotation": [-0.026981, 0.121340, 0.090294, 0.988127] }, { "keytime": 1807.667358, "rotation": [-0.027113, 0.121494, 0.090603, 0.988077] }, { "keytime": 1841.000732, "rotation": [-0.027242, 0.121643, 0.090903, 0.988027] }, { "keytime": 1874.334106, "rotation": [-0.027359, 0.121778, 0.091175, 0.987982] }, { "keytime": 1907.667480, "rotation": [-0.027465, 0.121901, 0.091422, 0.987941] }, { "keytime": 1941.000854, "rotation": [-0.027567, 0.122018, 0.091658, 0.987902] }, { "keytime": 1974.334229, "rotation": [-0.027656, 0.122122, 0.091867, 0.987867] }, { "keytime": 2007.667603, "rotation": [-0.027738, 0.122216, 0.092056, 0.987836] }, { "keytime": 2041.000977, "rotation": [-0.027813, 0.122303, 0.092231, 0.987807] }, { "keytime": 2074.334473, "rotation": [-0.027874, 0.122374, 0.092374, 0.987783] }, { "keytime": 2107.667725, "rotation": [-0.027928, 0.122436, 0.092498, 0.987762] }, { "keytime": 2141.000977, "rotation": [-0.027974, 0.122489, 0.092606, 0.987744] }, { "keytime": 2174.334229, "rotation": [-0.028010, 0.122532, 0.092690, 0.987730] }, { "keytime": 2207.667480, "rotation": [-0.028038, 0.122564, 0.092755, 0.987719] }, { "keytime": 2241.000732, "rotation": [-0.028055, 0.122584, 0.092796, 0.987712] }, { "keytime": 2274.333984, "rotation": [-0.028064, 0.122593, 0.092815, 0.987709] }, { "keytime": 2307.667236, "rotation": [-0.028065, 0.122595, 0.092817, 0.987708] }, { "keytime": 2341.000488, "rotation": [-0.028059, 0.122589, 0.092804, 0.987710] }, { "keytime": 2374.333740, "rotation": [-0.028047, 0.122578, 0.092779, 0.987715] }, { "keytime": 2407.666992, "rotation": [-0.028028, 0.122559, 0.092736, 0.987722] }, { "keytime": 2441.000244, "rotation": [-0.028003, 0.122533, 0.092679, 0.987731] }, { "keytime": 2474.333496, "rotation": [-0.027972, 0.122503, 0.092611, 0.987742] }, { "keytime": 2507.666748, "rotation": [-0.027935, 0.122466, 0.092529, 0.987755] }, { "keytime": 2541.000000, "rotation": [-0.027892, 0.122423, 0.092432, 0.987771] }, { "keytime": 2574.333252, "rotation": [-0.027841, 0.122373, 0.092320, 0.987789] }, { "keytime": 2607.666504, "rotation": [-0.027785, 0.122317, 0.092195, 0.987809] }, { "keytime": 2640.999756, "rotation": [-0.027724, 0.122255, 0.092057, 0.987831] }, { "keytime": 2674.333008, "rotation": [-0.027654, 0.122185, 0.091902, 0.987856] }, { "keytime": 2707.666260, "rotation": [-0.027581, 0.122112, 0.091738, 0.987883] }, { "keytime": 2740.999512, "rotation": [-0.027500, 0.122031, 0.091557, 0.987912] }, { "keytime": 2774.332764, "rotation": [-0.027410, 0.121941, 0.091358, 0.987944] }, { "keytime": 2807.666016, "rotation": [-0.027318, 0.121849, 0.091151, 0.987977] }, { "keytime": 2840.999268, "rotation": [-0.027220, 0.121750, 0.090933, 0.988012] }, { "keytime": 2874.332520, "rotation": [-0.027114, 0.121643, 0.090695, 0.988050] }, { "keytime": 2907.665771, "rotation": [-0.027003, 0.121532, 0.090447, 0.988089] }, { "keytime": 2940.999023, "rotation": [-0.026887, 0.121415, 0.090188, 0.988130] }, { "keytime": 2974.332275, "rotation": [-0.026762, 0.121290, 0.089910, 0.988174] }, { "keytime": 3007.665527, "rotation": [-0.026636, 0.121162, 0.089628, 0.988219] }, { "keytime": 3040.998779, "rotation": [-0.026505, 0.121030, 0.089334, 0.988265] }, { "keytime": 3107.665283, "rotation": [-0.026222, 0.120743, 0.088700, 0.988365] }, { "keytime": 3140.998535, "rotation": [-0.026076, 0.120595, 0.088372, 0.988417] }, { "keytime": 3207.665039, "rotation": [-0.025766, 0.120280, 0.087678, 0.988525] }, { "keytime": 3240.998291, "rotation": [-0.025606, 0.120117, 0.087320, 0.988581] }, { "keytime": 3274.331543, "rotation": [-0.025438, 0.119946, 0.086943, 0.988639] }, { "keytime": 3307.664795, "rotation": [-0.025272, 0.119775, 0.086569, 0.988697] }, { "keytime": 3340.998047, "rotation": [-0.025103, 0.119602, 0.086189, 0.988755] }, { "keytime": 3374.331299, "rotation": [-0.024925, 0.119420, 0.085790, 0.988816] }, { "keytime": 3407.664551, "rotation": [-0.024749, 0.119239, 0.085395, 0.988877] }, { "keytime": 3440.997803, "rotation": [-0.024571, 0.119056, 0.084995, 0.988938] }, { "keytime": 3474.331055, "rotation": [-0.024386, 0.118865, 0.084578, 0.989001] }, { "keytime": 3507.664307, "rotation": [-0.024204, 0.118677, 0.084169, 0.989063] }, { "keytime": 3540.997559, "rotation": [-0.024022, 0.118487, 0.083757, 0.989125] }, { "keytime": 3574.330811, "rotation": [-0.023832, 0.118290, 0.083329, 0.989189] }, { "keytime": 3640.997314, "rotation": [-0.023462, 0.117904, 0.082494, 0.989314] }, { "keytime": 3674.330566, "rotation": [-0.023271, 0.117704, 0.082064, 0.989378] }, { "keytime": 3740.997070, "rotation": [-0.022902, 0.117317, 0.081228, 0.989502] }, { "keytime": 3774.330322, "rotation": [-0.022714, 0.117117, 0.080800, 0.989565] }, { "keytime": 3807.663574, "rotation": [-0.022532, 0.116923, 0.080387, 0.989626] }, { "keytime": 3840.996826, "rotation": [-0.022351, 0.116731, 0.079977, 0.989686] }, { "keytime": 3874.330078, "rotation": [-0.022167, 0.116535, 0.079559, 0.989747] }, { "keytime": 3907.663330, "rotation": [-0.021991, 0.116346, 0.079159, 0.989805] }, { "keytime": 3940.996582, "rotation": [-0.021818, 0.116159, 0.078764, 0.989862] }, { "keytime": 3974.329834, "rotation": [-0.021642, 0.115969, 0.078363, 0.989920] }, { "keytime": 4007.663086, "rotation": [-0.021474, 0.115787, 0.077980, 0.989975] }, { "keytime": 4074.329590, "rotation": [-0.021145, 0.115426, 0.077227, 0.990084] }, { "keytime": 4107.663086, "rotation": [-0.020989, 0.115254, 0.076869, 0.990135] }, { "keytime": 4174.329590, "rotation": [-0.020684, 0.114914, 0.076168, 0.990235] }, { "keytime": 4207.663086, "rotation": [-0.020540, 0.114753, 0.075837, 0.990282] }, { "keytime": 4274.330078, "rotation": [-0.020266, 0.114440, 0.075200, 0.990373] }, { "keytime": 4307.663574, "rotation": [-0.020138, 0.114292, 0.074903, 0.990415] }, { "keytime": 4340.997070, "rotation": [-0.020015, 0.114148, 0.074616, 0.990455] }, { "keytime": 4374.330566, "rotation": [-0.019893, 0.114006, 0.074332, 0.990496] }, { "keytime": 4407.664062, "rotation": [-0.019782, 0.113873, 0.074071, 0.990533] }, { "keytime": 4440.997559, "rotation": [-0.019677, 0.113746, 0.073823, 0.990568] }, { "keytime": 4474.331055, "rotation": [-0.019573, 0.113620, 0.073578, 0.990603] }, { "keytime": 4507.664551, "rotation": [-0.019479, 0.113502, 0.073354, 0.990635] }, { "keytime": 4540.998047, "rotation": [-0.019390, 0.113390, 0.073141, 0.990665] }, { "keytime": 4574.331543, "rotation": [-0.019306, 0.113281, 0.072939, 0.990694] }, { "keytime": 4607.665039, "rotation": [-0.019231, 0.113181, 0.072755, 0.990720] }, { "keytime": 4640.998535, "rotation": [-0.019161, 0.113086, 0.072584, 0.990745] }, { "keytime": 4674.332031, "rotation": [-0.019095, 0.112994, 0.072421, 0.990769] }, { "keytime": 4707.665527, "rotation": [-0.019036, 0.112910, 0.072276, 0.990790] }, { "keytime": 4740.999023, "rotation": [-0.018986, 0.112834, 0.072147, 0.990809] }, { "keytime": 4774.332520, "rotation": [-0.018940, 0.112760, 0.072028, 0.990827] }, { "keytime": 4807.666016, "rotation": [-0.018901, 0.112694, 0.071925, 0.990843] }, { "keytime": 4840.999512, "rotation": [-0.018868, 0.112634, 0.071834, 0.990857] }, { "keytime": 4874.333008, "rotation": [-0.018841, 0.112577, 0.071755, 0.990870] }, { "keytime": 4907.666504, "rotation": [-0.018821, 0.112530, 0.071695, 0.990880] }, { "keytime": 4941.000000, "rotation": [-0.018807, 0.112486, 0.071646, 0.990888] }, { "keytime": 4974.333496, "rotation": [-0.018800, 0.112450, 0.071611, 0.990895] }, { "keytime": 5007.666992, "rotation": [-0.018797, 0.112418, 0.071586, 0.990901] }, { "keytime": 5074.333984, "rotation": [-0.018797, 0.112359, 0.071551, 0.990910] }, { "keytime": 5174.334473, "rotation": [-0.018795, 0.112277, 0.071501, 0.990923] }, { "keytime": 5241.001465, "rotation": [-0.018794, 0.112225, 0.071469, 0.990931] }, { "keytime": 5341.001953, "rotation": [-0.018794, 0.112154, 0.071425, 0.990942] }, { "keytime": 5441.002441, "rotation": [-0.018795, 0.112090, 0.071386, 0.990952] }, { "keytime": 5541.002930, "rotation": [-0.018797, 0.112034, 0.071352, 0.990961] }, { "keytime": 5641.003418, "rotation": [-0.018795, 0.111986, 0.071322, 0.990969] }, { "keytime": 5741.003906, "rotation": [-0.018795, 0.111945, 0.071298, 0.990975] }, { "keytime": 5841.004395, "rotation": [-0.018796, 0.111914, 0.071279, 0.990980] }, { "keytime": 5941.004883, "rotation": [-0.018796, 0.111889, 0.071264, 0.990984] }, { "keytime": 6074.338867, "rotation": [-0.018794, 0.111867, 0.071250, 0.990987] }, { "keytime": 6207.672852, "rotation": [-0.018794, 0.111853, 0.071242, 0.990990] }, { "keytime": 6341.006836, "rotation": [-0.018794, 0.111847, 0.071238, 0.990991] }, { "keytime": 6607.674805, "rotation": [-0.018796, 0.111844, 0.071236, 0.990991] } ] }, { "boneId": "Bone_011", "keyframes": [ { "keytime": 41.000000, "rotation": [-0.257462, -0.526275, -0.294907, 0.754836] }, { "keytime": 74.333328, "rotation": [-0.257492, -0.526281, -0.294880, 0.754833] }, { "keytime": 107.666664, "rotation": [-0.257568, -0.526295, -0.294814, 0.754823] }, { "keytime": 141.000000, "rotation": [-0.257694, -0.526318, -0.294703, 0.754807] }, { "keytime": 174.333328, "rotation": [-0.257862, -0.526349, -0.294556, 0.754785] }, { "keytime": 207.666656, "rotation": [-0.258077, -0.526390, -0.294367, 0.754757] }, { "keytime": 240.999985, "rotation": [-0.258354, -0.526441, -0.294124, 0.754721] }, { "keytime": 274.333313, "rotation": [-0.258686, -0.526503, -0.293832, 0.754678] }, { "keytime": 307.666656, "rotation": [-0.259056, -0.526571, -0.293507, 0.754630] }, { "keytime": 341.000000, "rotation": [-0.259486, -0.526651, -0.293130, 0.754573] }, { "keytime": 374.333344, "rotation": [-0.259950, -0.526737, -0.292722, 0.754512] }, { "keytime": 407.666687, "rotation": [-0.260474, -0.526833, -0.292261, 0.754443] }, { "keytime": 441.000031, "rotation": [-0.261060, -0.526940, -0.291745, 0.754365] }, { "keytime": 474.333374, "rotation": [-0.261675, -0.527053, -0.291204, 0.754282] }, { "keytime": 507.666718, "rotation": [-0.262332, -0.527173, -0.290624, 0.754193] }, { "keytime": 541.000061, "rotation": [-0.263056, -0.527305, -0.289987, 0.754094] }, { "keytime": 574.333374, "rotation": [-0.263815, -0.527442, -0.289317, 0.753991] }, { "keytime": 607.666687, "rotation": [-0.264614, -0.527586, -0.288611, 0.753881] }, { "keytime": 641.000000, "rotation": [-0.265478, -0.527742, -0.287846, 0.753760] }, { "keytime": 674.333313, "rotation": [-0.266356, -0.527899, -0.287070, 0.753636] }, { "keytime": 707.666626, "rotation": [-0.267271, -0.528064, -0.286259, 0.753506] }, { "keytime": 740.999939, "rotation": [-0.268233, -0.528234, -0.285406, 0.753368] }, { "keytime": 774.333252, "rotation": [-0.269257, -0.528414, -0.284497, 0.753220] }, { "keytime": 807.666565, "rotation": [-0.270283, -0.528594, -0.283585, 0.753070] }, { "keytime": 840.999878, "rotation": [-0.271338, -0.528779, -0.282647, 0.752914] }, { "keytime": 874.333191, "rotation": [-0.272454, -0.528974, -0.281653, 0.752746] }, { "keytime": 907.666504, "rotation": [-0.273570, -0.529166, -0.280657, 0.752578] }, { "keytime": 940.999817, "rotation": [-0.274707, -0.529361, -0.279642, 0.752405] }, { "keytime": 974.333130, "rotation": [-0.275898, -0.529564, -0.278577, 0.752221] }, { "keytime": 1007.666443, "rotation": [-0.277070, -0.529764, -0.277528, 0.752037] }, { "keytime": 1040.999756, "rotation": [-0.278257, -0.529966, -0.276464, 0.751849] }, { "keytime": 1074.333130, "rotation": [-0.279495, -0.530172, -0.275353, 0.751652] }, { "keytime": 1107.666504, "rotation": [-0.280704, -0.530372, -0.274266, 0.751457] }, { "keytime": 1140.999878, "rotation": [-0.281917, -0.530573, -0.273175, 0.751259] }, { "keytime": 1174.333252, "rotation": [-0.283168, -0.530780, -0.272048, 0.751052] }, { "keytime": 1207.666626, "rotation": [-0.284382, -0.530979, -0.270953, 0.750848] }, { "keytime": 1241.000000, "rotation": [-0.285627, -0.531180, -0.269828, 0.750639] }, { "keytime": 1274.333374, "rotation": [-0.286827, -0.531372, -0.268742, 0.750435] }, { "keytime": 1307.666748, "rotation": [-0.288016, -0.531562, -0.267665, 0.750229] }, { "keytime": 1341.000122, "rotation": [-0.289227, -0.531756, -0.266567, 0.750017] }, { "keytime": 1374.333496, "rotation": [-0.290386, -0.531940, -0.265514, 0.749812] }, { "keytime": 1407.666870, "rotation": [-0.291521, -0.532116, -0.264481, 0.749611] }, { "keytime": 1441.000244, "rotation": [-0.292668, -0.532294, -0.263437, 0.749406] }, { "keytime": 1474.333618, "rotation": [-0.293755, -0.532463, -0.262445, 0.749209] }, { "keytime": 1507.666992, "rotation": [-0.294817, -0.532627, -0.261476, 0.749014] }, { "keytime": 1541.000366, "rotation": [-0.295882, -0.532791, -0.260504, 0.748816] }, { "keytime": 1574.333740, "rotation": [-0.296874, -0.532940, -0.259596, 0.748633] }, { "keytime": 1607.667114, "rotation": [-0.297833, -0.533084, -0.258718, 0.748453] }, { "keytime": 1641.000488, "rotation": [-0.298785, -0.533227, -0.257845, 0.748273] }, { "keytime": 1674.333862, "rotation": [-0.299673, -0.533360, -0.257030, 0.748103] }, { "keytime": 1707.667236, "rotation": [-0.300523, -0.533487, -0.256249, 0.747940] }, { "keytime": 1741.000610, "rotation": [-0.301346, -0.533608, -0.255492, 0.747782] }, { "keytime": 1774.333984, "rotation": [-0.302103, -0.533719, -0.254795, 0.747635] }, { "keytime": 1807.667358, "rotation": [-0.302820, -0.533823, -0.254136, 0.747494] }, { "keytime": 1841.000732, "rotation": [-0.303514, -0.533925, -0.253496, 0.747358] }, { "keytime": 1874.334106, "rotation": [-0.304144, -0.534016, -0.252914, 0.747233] }, { "keytime": 1907.667480, "rotation": [-0.304717, -0.534099, -0.252386, 0.747119] }, { "keytime": 1941.000854, "rotation": [-0.305261, -0.534177, -0.251883, 0.747011] }, { "keytime": 1974.334229, "rotation": [-0.305744, -0.534246, -0.251437, 0.746915] }, { "keytime": 2007.667603, "rotation": [-0.306183, -0.534309, -0.251031, 0.746826] }, { "keytime": 2041.000977, "rotation": [-0.306587, -0.534367, -0.250657, 0.746745] }, { "keytime": 2074.334473, "rotation": [-0.306918, -0.534414, -0.250350, 0.746678] }, { "keytime": 2107.667725, "rotation": [-0.307205, -0.534454, -0.250085, 0.746620] }, { "keytime": 2141.000977, "rotation": [-0.307454, -0.534490, -0.249855, 0.746569] }, { "keytime": 2174.334229, "rotation": [-0.307649, -0.534517, -0.249674, 0.746529] }, { "keytime": 2207.667480, "rotation": [-0.307799, -0.534539, -0.249535, 0.746499] }, { "keytime": 2241.000732, "rotation": [-0.307893, -0.534552, -0.249448, 0.746480] }, { "keytime": 2274.333984, "rotation": [-0.307938, -0.534558, -0.249406, 0.746471] }, { "keytime": 2307.667236, "rotation": [-0.307934, -0.534555, -0.249410, 0.746473] }, { "keytime": 2341.000488, "rotation": [-0.307872, -0.534537, -0.249467, 0.746492] }, { "keytime": 2374.333740, "rotation": [-0.307750, -0.534503, -0.249581, 0.746529] }, { "keytime": 2407.666992, "rotation": [-0.307546, -0.534446, -0.249770, 0.746591] }, { "keytime": 2441.000244, "rotation": [-0.307272, -0.534369, -0.250024, 0.746674] }, { "keytime": 2474.333496, "rotation": [-0.306943, -0.534277, -0.250329, 0.746773] }, { "keytime": 2507.666748, "rotation": [-0.306553, -0.534167, -0.250691, 0.746890] }, { "keytime": 2541.000000, "rotation": [-0.306084, -0.534035, -0.251125, 0.747031] }, { "keytime": 2574.333252, "rotation": [-0.305545, -0.533883, -0.251624, 0.747192] }, { "keytime": 2607.666504, "rotation": [-0.304945, -0.533713, -0.252179, 0.747372] }, { "keytime": 2640.999756, "rotation": [-0.304283, -0.533526, -0.252792, 0.747569] }, { "keytime": 2674.333008, "rotation": [-0.303535, -0.533314, -0.253482, 0.747790] }, { "keytime": 2707.666260, "rotation": [-0.302745, -0.533090, -0.254212, 0.748022] }, { "keytime": 2740.999512, "rotation": [-0.301875, -0.532841, -0.255014, 0.748278] }, { "keytime": 2774.332764, "rotation": [-0.300914, -0.532566, -0.255899, 0.748558] }, { "keytime": 2807.666016, "rotation": [-0.299920, -0.532281, -0.256813, 0.748847] }, { "keytime": 2840.999268, "rotation": [-0.298866, -0.531978, -0.257782, 0.749150] }, { "keytime": 2874.332520, "rotation": [-0.297716, -0.531648, -0.258838, 0.749479] }, { "keytime": 2907.665771, "rotation": [-0.296522, -0.531300, -0.259932, 0.749820] }, { "keytime": 2940.999023, "rotation": [-0.295271, -0.530935, -0.261077, 0.750174] }, { "keytime": 2974.332275, "rotation": [-0.293923, -0.530542, -0.262309, 0.750552] }, { "keytime": 3007.665527, "rotation": [-0.292558, -0.530143, -0.263554, 0.750931] }, { "keytime": 3040.998779, "rotation": [-0.291137, -0.529727, -0.264850, 0.751321] }, { "keytime": 3074.332031, "rotation": [-0.289604, -0.529271, -0.266244, 0.751742] }, { "keytime": 3107.665283, "rotation": [-0.288063, -0.528812, -0.267642, 0.752160] }, { "keytime": 3140.998535, "rotation": [-0.286474, -0.528338, -0.269082, 0.752587] }, { "keytime": 3174.331787, "rotation": [-0.284786, -0.527833, -0.270609, 0.753034] }, { "keytime": 3207.665039, "rotation": [-0.283100, -0.527329, -0.272131, 0.753474] }, { "keytime": 3240.998291, "rotation": [-0.281360, -0.526799, -0.273697, 0.753929] }, { "keytime": 3274.331543, "rotation": [-0.279527, -0.526239, -0.275346, 0.754402] }, { "keytime": 3307.664795, "rotation": [-0.277708, -0.525683, -0.276978, 0.754864] }, { "keytime": 3340.998047, "rotation": [-0.275853, -0.525115, -0.278639, 0.755328] }, { "keytime": 3374.331299, "rotation": [-0.273905, -0.524517, -0.280379, 0.755808] }, { "keytime": 3407.664551, "rotation": [-0.271980, -0.523914, -0.282095, 0.756283] }, { "keytime": 3440.997803, "rotation": [-0.270028, -0.523302, -0.283830, 0.756757] }, { "keytime": 3474.331055, "rotation": [-0.267992, -0.522663, -0.285636, 0.757242] }, { "keytime": 3507.664307, "rotation": [-0.265995, -0.522035, -0.287405, 0.757710] }, { "keytime": 3540.997559, "rotation": [-0.263978, -0.521398, -0.289187, 0.758176] }, { "keytime": 3574.330811, "rotation": [-0.261888, -0.520727, -0.291028, 0.758657] }, { "keytime": 3607.664062, "rotation": [-0.259849, -0.520070, -0.292820, 0.759119] }, { "keytime": 3640.997314, "rotation": [-0.257803, -0.519410, -0.294614, 0.759574] }, { "keytime": 3674.330566, "rotation": [-0.255691, -0.518728, -0.296463, 0.760035] }, { "keytime": 3707.663818, "rotation": [-0.253640, -0.518063, -0.298253, 0.760475] }, { "keytime": 3740.997070, "rotation": [-0.251601, -0.517390, -0.300029, 0.760912] }, { "keytime": 3774.330322, "rotation": [-0.249508, -0.516698, -0.301847, 0.761352] }, { "keytime": 3807.663574, "rotation": [-0.247487, -0.516029, -0.303599, 0.761769] }, { "keytime": 3840.996826, "rotation": [-0.245479, -0.515364, -0.305335, 0.762175] }, { "keytime": 3874.330078, "rotation": [-0.243430, -0.514682, -0.307104, 0.762582] }, { "keytime": 3907.663330, "rotation": [-0.241475, -0.514020, -0.308786, 0.762970] }, { "keytime": 3940.996582, "rotation": [-0.239545, -0.513366, -0.310444, 0.763346] }, { "keytime": 3974.329834, "rotation": [-0.237585, -0.512702, -0.312124, 0.763721] }, { "keytime": 4007.663086, "rotation": [-0.235713, -0.512066, -0.313725, 0.764071] }, { "keytime": 4040.996338, "rotation": [-0.233876, -0.511440, -0.315293, 0.764409] }, { "keytime": 4074.329590, "rotation": [-0.232037, -0.510805, -0.316858, 0.764747] }, { "keytime": 4107.663086, "rotation": [-0.230294, -0.510201, -0.318340, 0.765061] }, { "keytime": 4140.996094, "rotation": [-0.228592, -0.509612, -0.319784, 0.765363] }, { "keytime": 4174.329590, "rotation": [-0.226885, -0.509019, -0.321229, 0.765659] }, { "keytime": 4207.663086, "rotation": [-0.225277, -0.508460, -0.322588, 0.765935] }, { "keytime": 4240.996582, "rotation": [-0.223736, -0.507917, -0.323887, 0.766198] }, { "keytime": 4274.330078, "rotation": [-0.222202, -0.507376, -0.325179, 0.766456] }, { "keytime": 4307.663574, "rotation": [-0.220767, -0.506870, -0.326385, 0.766692] }, { "keytime": 4340.997070, "rotation": [-0.219386, -0.506382, -0.327545, 0.766917] }, { "keytime": 4374.330566, "rotation": [-0.218024, -0.505900, -0.328686, 0.767135] }, { "keytime": 4407.664062, "rotation": [-0.216781, -0.505455, -0.329726, 0.767334] }, { "keytime": 4440.997559, "rotation": [-0.215596, -0.505031, -0.330716, 0.767521] }, { "keytime": 4474.331055, "rotation": [-0.214438, -0.504617, -0.331682, 0.767701] }, { "keytime": 4507.664551, "rotation": [-0.213376, -0.504236, -0.332567, 0.767864] }, { "keytime": 4540.998047, "rotation": [-0.212379, -0.503878, -0.333398, 0.768016] }, { "keytime": 4574.331543, "rotation": [-0.211436, -0.503537, -0.334182, 0.768158] }, { "keytime": 4607.665039, "rotation": [-0.210587, -0.503230, -0.334887, 0.768286] }, { "keytime": 4640.998535, "rotation": [-0.209801, -0.502946, -0.335539, 0.768402] }, { "keytime": 4674.332031, "rotation": [-0.209059, -0.502677, -0.336155, 0.768511] }, { "keytime": 4707.665527, "rotation": [-0.208406, -0.502440, -0.336696, 0.768607] }, { "keytime": 4740.999023, "rotation": [-0.207839, -0.502234, -0.337166, 0.768690] }, { "keytime": 4774.332520, "rotation": [-0.207322, -0.502045, -0.337594, 0.768764] }, { "keytime": 4807.666016, "rotation": [-0.206886, -0.501887, -0.337954, 0.768827] }, { "keytime": 4840.999512, "rotation": [-0.206515, -0.501752, -0.338261, 0.768880] }, { "keytime": 4874.333008, "rotation": [-0.206203, -0.501638, -0.338519, 0.768925] }, { "keytime": 4907.666504, "rotation": [-0.205986, -0.501558, -0.338697, 0.768956] }, { "keytime": 4941.000000, "rotation": [-0.205830, -0.501501, -0.338827, 0.768978] }, { "keytime": 4974.333496, "rotation": [-0.205743, -0.501470, -0.338898, 0.768990] }, { "keytime": 5007.666992, "rotation": [-0.205724, -0.501464, -0.338914, 0.768992] }, { "keytime": 5041.000488, "rotation": [-0.205782, -0.501494, -0.338866, 0.768978] }, { "keytime": 5074.333984, "rotation": [-0.205954, -0.501579, -0.338725, 0.768939] }, { "keytime": 5107.667480, "rotation": [-0.206211, -0.501708, -0.338513, 0.768879] }, { "keytime": 5141.000977, "rotation": [-0.206565, -0.501885, -0.338221, 0.768797] }, { "keytime": 5174.334473, "rotation": [-0.206996, -0.502100, -0.337865, 0.768697] }, { "keytime": 5207.667969, "rotation": [-0.207515, -0.502359, -0.337437, 0.768576] }, { "keytime": 5241.001465, "rotation": [-0.208166, -0.502684, -0.336899, 0.768424] }, { "keytime": 5274.334961, "rotation": [-0.208886, -0.503042, -0.336304, 0.768255] }, { "keytime": 5307.668457, "rotation": [-0.209689, -0.503441, -0.335640, 0.768065] }, { "keytime": 5341.001953, "rotation": [-0.210602, -0.503895, -0.334883, 0.767847] }, { "keytime": 5374.335449, "rotation": [-0.211571, -0.504377, -0.334080, 0.767615] }, { "keytime": 5407.668945, "rotation": [-0.212644, -0.504907, -0.333189, 0.767357] }, { "keytime": 5441.002441, "rotation": [-0.213826, -0.505491, -0.332205, 0.767070] }, { "keytime": 5474.335938, "rotation": [-0.215046, -0.506093, -0.331189, 0.766772] }, { "keytime": 5507.669434, "rotation": [-0.216333, -0.506727, -0.330116, 0.766453] }, { "keytime": 5541.002930, "rotation": [-0.217727, -0.507414, -0.328952, 0.766105] }, { "keytime": 5574.336426, "rotation": [-0.219161, -0.508115, -0.327751, 0.765746] }, { "keytime": 5607.669922, "rotation": [-0.220646, -0.508840, -0.326506, 0.765370] }, { "keytime": 5641.003418, "rotation": [-0.222224, -0.509609, -0.325181, 0.764966] }, { "keytime": 5674.336914, "rotation": [-0.223796, -0.510376, -0.323858, 0.764557] }, { "keytime": 5707.670410, "rotation": [-0.225403, -0.511159, -0.322503, 0.764135] }, { "keytime": 5741.003906, "rotation": [-0.227100, -0.511977, -0.321070, 0.763688] }, { "keytime": 5774.337402, "rotation": [-0.228764, -0.512778, -0.319660, 0.763245] }, { "keytime": 5807.670898, "rotation": [-0.230439, -0.513584, -0.318239, 0.762793] }, { "keytime": 5841.004395, "rotation": [-0.232170, -0.514416, -0.316768, 0.762319] }, { "keytime": 5874.337891, "rotation": [-0.233847, -0.515222, -0.315340, 0.761855] }, { "keytime": 5907.671387, "rotation": [-0.235514, -0.516014, -0.313917, 0.761393] }, { "keytime": 5941.004883, "rotation": [-0.237209, -0.516819, -0.312466, 0.760917] }, { "keytime": 5974.338379, "rotation": [-0.238827, -0.517587, -0.311080, 0.760457] }, { "keytime": 6007.671875, "rotation": [-0.240412, -0.518339, -0.309718, 0.760001] }, { "keytime": 6041.005371, "rotation": [-0.242005, -0.519093, -0.308348, 0.759538] }, { "keytime": 6074.338867, "rotation": [-0.243493, -0.519790, -0.307065, 0.759105] }, { "keytime": 6107.672363, "rotation": [-0.244927, -0.520462, -0.305826, 0.758683] }, { "keytime": 6141.005859, "rotation": [-0.246345, -0.521126, -0.304600, 0.758262] }, { "keytime": 6174.339355, "rotation": [-0.247658, -0.521741, -0.303462, 0.757867] }, { "keytime": 6207.672852, "rotation": [-0.248905, -0.522324, -0.302380, 0.757490] }, { "keytime": 6241.006348, "rotation": [-0.250096, -0.522876, -0.301344, 0.757129] }, { "keytime": 6274.339844, "rotation": [-0.251176, -0.523376, -0.300404, 0.756800] }, { "keytime": 6307.673340, "rotation": [-0.252180, -0.523841, -0.299529, 0.756491] }, { "keytime": 6341.006836, "rotation": [-0.253131, -0.524282, -0.298699, 0.756196] }, { "keytime": 6374.340332, "rotation": [-0.253973, -0.524671, -0.297963, 0.755934] }, { "keytime": 6407.673828, "rotation": [-0.254707, -0.525009, -0.297321, 0.755705] }, { "keytime": 6441.007324, "rotation": [-0.255376, -0.525317, -0.296735, 0.755495] }, { "keytime": 6474.340820, "rotation": [-0.255941, -0.525577, -0.296241, 0.755318] }, { "keytime": 6507.674316, "rotation": [-0.256421, -0.525798, -0.295820, 0.755166] }, { "keytime": 6541.007812, "rotation": [-0.256827, -0.525984, -0.295464, 0.755038] }, { "keytime": 6574.341309, "rotation": [-0.257107, -0.526112, -0.295218, 0.754949] }, { "keytime": 6607.674805, "rotation": [-0.257304, -0.526203, -0.295045, 0.754887] } ] }, { "boneId": "Bone_013", "keyframes": [ { "keytime": 41.000000, "rotation": [ 0.972828, -0.077793, -0.211695, 0.052333] }, { "keytime": 74.333328, "rotation": [ 0.972828, -0.077775, -0.211701, 0.052335] }, { "keytime": 107.666664, "rotation": [ 0.972828, -0.077730, -0.211716, 0.052341] }, { "keytime": 141.000000, "rotation": [ 0.972829, -0.077655, -0.211739, 0.052350] }, { "keytime": 174.333328, "rotation": [ 0.972829, -0.077555, -0.211771, 0.052363] }, { "keytime": 207.666656, "rotation": [ 0.972829, -0.077427, -0.211812, 0.052379] }, { "keytime": 240.999985, "rotation": [ 0.972830, -0.077263, -0.211864, 0.052399] }, { "keytime": 274.333313, "rotation": [ 0.972831, -0.077065, -0.211927, 0.052424] }, { "keytime": 307.666656, "rotation": [ 0.972831, -0.076845, -0.211997, 0.052452] }, { "keytime": 341.000000, "rotation": [ 0.972832, -0.076590, -0.212079, 0.052483] }, { "keytime": 374.333344, "rotation": [ 0.972833, -0.076314, -0.212166, 0.052518] }, { "keytime": 407.666687, "rotation": [ 0.972833, -0.076002, -0.212266, 0.052557] }, { "keytime": 441.000031, "rotation": [ 0.972834, -0.075653, -0.212377, 0.052600] }, { "keytime": 474.333374, "rotation": [ 0.972835, -0.075287, -0.212493, 0.052646] }, { "keytime": 507.666718, "rotation": [ 0.972835, -0.074895, -0.212617, 0.052695] }, { "keytime": 541.000061, "rotation": [ 0.972835, -0.074464, -0.212754, 0.052748] }, { "keytime": 574.333374, "rotation": [ 0.972835, -0.074012, -0.212898, 0.052805] }, { "keytime": 607.666687, "rotation": [ 0.972835, -0.073535, -0.213049, 0.052864] }, { "keytime": 641.000000, "rotation": [ 0.972835, -0.073020, -0.213213, 0.052928] }, { "keytime": 674.333313, "rotation": [ 0.972834, -0.072496, -0.213379, 0.052993] }, { "keytime": 707.666626, "rotation": [ 0.972833, -0.071949, -0.213552, 0.053061] }, { "keytime": 740.999939, "rotation": [ 0.972831, -0.071375, -0.213734, 0.053133] }, { "keytime": 807.666565, "rotation": [ 0.972826, -0.070149, -0.214122, 0.053285] }, { "keytime": 840.999878, "rotation": [ 0.972824, -0.069518, -0.214322, 0.053363] }, { "keytime": 907.666504, "rotation": [ 0.972816, -0.068182, -0.214745, 0.053530] }, { "keytime": 940.999817, "rotation": [ 0.972811, -0.067501, -0.214960, 0.053614] }, { "keytime": 974.333130, "rotation": [ 0.972806, -0.066786, -0.215185, 0.053702] }, { "keytime": 1007.666443, "rotation": [ 0.972800, -0.066083, -0.215407, 0.053790] }, { "keytime": 1040.999756, "rotation": [ 0.972793, -0.065370, -0.215632, 0.053878] }, { "keytime": 1074.333130, "rotation": [ 0.972786, -0.064626, -0.215867, 0.053970] }, { "keytime": 1107.666504, "rotation": [ 0.972778, -0.063899, -0.216096, 0.054060] }, { "keytime": 1140.999878, "rotation": [ 0.972770, -0.063170, -0.216325, 0.054151] }, { "keytime": 1174.333252, "rotation": [ 0.972760, -0.062416, -0.216562, 0.054244] }, { "keytime": 1207.666626, "rotation": [ 0.972751, -0.061685, -0.216791, 0.054334] }, { "keytime": 1241.000000, "rotation": [ 0.972740, -0.060934, -0.217028, 0.054427] }, { "keytime": 1274.333374, "rotation": [ 0.972730, -0.060210, -0.217255, 0.054517] }, { "keytime": 1307.666748, "rotation": [ 0.972718, -0.059492, -0.217480, 0.054606] }, { "keytime": 1341.000122, "rotation": [ 0.972706, -0.058761, -0.217710, 0.054696] }, { "keytime": 1374.333496, "rotation": [ 0.972695, -0.058059, -0.217930, 0.054783] }, { "keytime": 1407.666870, "rotation": [ 0.972682, -0.057373, -0.218145, 0.054868] }, { "keytime": 1441.000244, "rotation": [ 0.972669, -0.056679, -0.218362, 0.054953] }, { "keytime": 1474.333618, "rotation": [ 0.972657, -0.056019, -0.218568, 0.055035] }, { "keytime": 1541.000366, "rotation": [ 0.972630, -0.054730, -0.218971, 0.055194] }, { "keytime": 1574.333740, "rotation": [ 0.972618, -0.054128, -0.219159, 0.055268] }, { "keytime": 1607.667114, "rotation": [ 0.972605, -0.053545, -0.219341, 0.055339] }, { "keytime": 1641.000488, "rotation": [ 0.972592, -0.052966, -0.219522, 0.055410] }, { "keytime": 1674.333862, "rotation": [ 0.972579, -0.052426, -0.219690, 0.055477] }, { "keytime": 1707.667236, "rotation": [ 0.972567, -0.051909, -0.219852, 0.055541] }, { "keytime": 1741.000610, "rotation": [ 0.972554, -0.051408, -0.220008, 0.055602] }, { "keytime": 1774.333984, "rotation": [ 0.972543, -0.050947, -0.220152, 0.055659] }, { "keytime": 1807.667358, "rotation": [ 0.972532, -0.050510, -0.220287, 0.055713] }, { "keytime": 1841.000732, "rotation": [ 0.972521, -0.050087, -0.220419, 0.055765] }, { "keytime": 1874.334106, "rotation": [ 0.972511, -0.049702, -0.220539, 0.055812] }, { "keytime": 1907.667480, "rotation": [ 0.972502, -0.049353, -0.220647, 0.055855] }, { "keytime": 1941.000854, "rotation": [ 0.972493, -0.049021, -0.220751, 0.055896] }, { "keytime": 1974.334229, "rotation": [ 0.972484, -0.048726, -0.220842, 0.055932] }, { "keytime": 2007.667603, "rotation": [ 0.972477, -0.048458, -0.220926, 0.055965] }, { "keytime": 2041.000977, "rotation": [ 0.972470, -0.048212, -0.221002, 0.055995] }, { "keytime": 2074.334473, "rotation": [ 0.972464, -0.048009, -0.221065, 0.056020] }, { "keytime": 2107.667725, "rotation": [ 0.972459, -0.047834, -0.221120, 0.056041] }, { "keytime": 2141.000977, "rotation": [ 0.972455, -0.047682, -0.221167, 0.056060] }, { "keytime": 2174.334229, "rotation": [ 0.972452, -0.047563, -0.221204, 0.056075] }, { "keytime": 2207.667480, "rotation": [ 0.972449, -0.047471, -0.221232, 0.056086] }, { "keytime": 2241.000732, "rotation": [ 0.972447, -0.047414, -0.221250, 0.056093] }, { "keytime": 2274.333984, "rotation": [ 0.972447, -0.047387, -0.221258, 0.056096] }, { "keytime": 2307.667236, "rotation": [ 0.972446, -0.047389, -0.221259, 0.056096] }, { "keytime": 2341.000488, "rotation": [ 0.972446, -0.047426, -0.221252, 0.056091] }, { "keytime": 2374.333740, "rotation": [ 0.972447, -0.047497, -0.221239, 0.056082] }, { "keytime": 2407.666992, "rotation": [ 0.972447, -0.047615, -0.221216, 0.056067] }, { "keytime": 2441.000244, "rotation": [ 0.972447, -0.047775, -0.221185, 0.056046] }, { "keytime": 2474.333496, "rotation": [ 0.972447, -0.047966, -0.221149, 0.056021] }, { "keytime": 2507.666748, "rotation": [ 0.972448, -0.048193, -0.221105, 0.055992] }, { "keytime": 2541.000000, "rotation": [ 0.972448, -0.048465, -0.221053, 0.055957] }, { "keytime": 2574.333252, "rotation": [ 0.972448, -0.048777, -0.220993, 0.055917] }, { "keytime": 2607.666504, "rotation": [ 0.972449, -0.049125, -0.220927, 0.055872] }, { "keytime": 2640.999756, "rotation": [ 0.972449, -0.049509, -0.220853, 0.055822] }, { "keytime": 2674.333008, "rotation": [ 0.972449, -0.049942, -0.220770, 0.055766] }, { "keytime": 2707.666260, "rotation": [ 0.972448, -0.050399, -0.220682, 0.055707] }, { "keytime": 2740.999512, "rotation": [ 0.972448, -0.050903, -0.220585, 0.055642] }, { "keytime": 2774.332764, "rotation": [ 0.972447, -0.051458, -0.220479, 0.055570] }, { "keytime": 2807.666016, "rotation": [ 0.972446, -0.052032, -0.220368, 0.055496] }, { "keytime": 2840.999268, "rotation": [ 0.972444, -0.052640, -0.220251, 0.055417] }, { "keytime": 2874.332520, "rotation": [ 0.972442, -0.053303, -0.220123, 0.055331] }, { "keytime": 2907.665771, "rotation": [ 0.972439, -0.053990, -0.219990, 0.055242] }, { "keytime": 2940.999023, "rotation": [ 0.972436, -0.054710, -0.219851, 0.055149] }, { "keytime": 2974.332275, "rotation": [ 0.972431, -0.055485, -0.219701, 0.055048] }, { "keytime": 3007.665527, "rotation": [ 0.972426, -0.056269, -0.219549, 0.054947] }, { "keytime": 3040.998779, "rotation": [ 0.972420, -0.057084, -0.219391, 0.054841] }, { "keytime": 3074.332031, "rotation": [ 0.972413, -0.057963, -0.219220, 0.054727] }, { "keytime": 3107.665283, "rotation": [ 0.972406, -0.058844, -0.219048, 0.054613] }, { "keytime": 3140.998535, "rotation": [ 0.972397, -0.059753, -0.218871, 0.054495] }, { "keytime": 3174.331787, "rotation": [ 0.972386, -0.060717, -0.218684, 0.054370] }, { "keytime": 3207.665039, "rotation": [ 0.972375, -0.061678, -0.218496, 0.054245] }, { "keytime": 3240.998291, "rotation": [ 0.972362, -0.062669, -0.218302, 0.054116] }, { "keytime": 3274.331543, "rotation": [ 0.972348, -0.063713, -0.218097, 0.053980] }, { "keytime": 3307.664795, "rotation": [ 0.972333, -0.064747, -0.217894, 0.053846] }, { "keytime": 3340.998047, "rotation": [ 0.972316, -0.065800, -0.217687, 0.053708] }, { "keytime": 3374.331299, "rotation": [ 0.972297, -0.066903, -0.217470, 0.053565] }, { "keytime": 3407.664551, "rotation": [ 0.972277, -0.067994, -0.217255, 0.053423] }, { "keytime": 3440.997803, "rotation": [ 0.972256, -0.069099, -0.217037, 0.053278] }, { "keytime": 3474.331055, "rotation": [ 0.972233, -0.070249, -0.216809, 0.053128] }, { "keytime": 3507.664307, "rotation": [ 0.972208, -0.071375, -0.216586, 0.052981] }, { "keytime": 3540.997559, "rotation": [ 0.972183, -0.072511, -0.216360, 0.052832] }, { "keytime": 3574.330811, "rotation": [ 0.972155, -0.073689, -0.216126, 0.052679] }, { "keytime": 3640.997314, "rotation": [ 0.972096, -0.075985, -0.215667, 0.052378] }, { "keytime": 3674.330566, "rotation": [ 0.972063, -0.077169, -0.215431, 0.052223] }, { "keytime": 3707.663818, "rotation": [ 0.972031, -0.078317, -0.215201, 0.052072] }, { "keytime": 3740.997070, "rotation": [ 0.971997, -0.079460, -0.214971, 0.051923] }, { "keytime": 3774.330322, "rotation": [ 0.971961, -0.080631, -0.214735, 0.051770] }, { "keytime": 3807.663574, "rotation": [ 0.971924, -0.081760, -0.214507, 0.051622] }, { "keytime": 3840.996826, "rotation": [ 0.971887, -0.082880, -0.214281, 0.051475] }, { "keytime": 3874.330078, "rotation": [ 0.971848, -0.084021, -0.214050, 0.051325] }, { "keytime": 3907.663330, "rotation": [ 0.971810, -0.085111, -0.213829, 0.051182] }, { "keytime": 3940.996582, "rotation": [ 0.971770, -0.086186, -0.213610, 0.051040] }, { "keytime": 3974.329834, "rotation": [ 0.971729, -0.087276, -0.213388, 0.050897] }, { "keytime": 4007.663086, "rotation": [ 0.971689, -0.088315, -0.213176, 0.050760] }, { "keytime": 4074.329590, "rotation": [ 0.971607, -0.090355, -0.212758, 0.050492] }, { "keytime": 4107.663086, "rotation": [ 0.971567, -0.091322, -0.212559, 0.050365] }, { "keytime": 4174.329590, "rotation": [ 0.971486, -0.093209, -0.212170, 0.050116] }, { "keytime": 4207.663086, "rotation": [ 0.971446, -0.094098, -0.211986, 0.049999] }, { "keytime": 4240.996582, "rotation": [ 0.971408, -0.094951, -0.211809, 0.049886] }, { "keytime": 4274.330078, "rotation": [ 0.971369, -0.095799, -0.211632, 0.049774] }, { "keytime": 4307.663574, "rotation": [ 0.971331, -0.096591, -0.211467, 0.049670] }, { "keytime": 4340.997070, "rotation": [ 0.971295, -0.097353, -0.211308, 0.049569] }, { "keytime": 4374.330566, "rotation": [ 0.971259, -0.098104, -0.211150, 0.049470] }, { "keytime": 4407.664062, "rotation": [ 0.971225, -0.098790, -0.211005, 0.049380] }, { "keytime": 4440.997559, "rotation": [ 0.971193, -0.099443, -0.210867, 0.049293] }, { "keytime": 4474.331055, "rotation": [ 0.971161, -0.100081, -0.210732, 0.049209] }, { "keytime": 4507.664551, "rotation": [ 0.971132, -0.100666, -0.210608, 0.049132] }, { "keytime": 4540.998047, "rotation": [ 0.971104, -0.101215, -0.210490, 0.049060] }, { "keytime": 4574.331543, "rotation": [ 0.971077, -0.101734, -0.210379, 0.048991] }, { "keytime": 4607.665039, "rotation": [ 0.971053, -0.102201, -0.210278, 0.048930] }, { "keytime": 4640.998535, "rotation": [ 0.971031, -0.102634, -0.210184, 0.048873] }, { "keytime": 4674.332031, "rotation": [ 0.971009, -0.103041, -0.210095, 0.048819] }, { "keytime": 4707.665527, "rotation": [ 0.970991, -0.103400, -0.210015, 0.048772] }, { "keytime": 4740.999023, "rotation": [ 0.970975, -0.103712, -0.209946, 0.048730] }, { "keytime": 4774.332520, "rotation": [ 0.970960, -0.103996, -0.209881, 0.048693] }, { "keytime": 4807.666016, "rotation": [ 0.970948, -0.104236, -0.209826, 0.048662] }, { "keytime": 4840.999512, "rotation": [ 0.970938, -0.104439, -0.209778, 0.048635] }, { "keytime": 4874.333008, "rotation": [ 0.970929, -0.104611, -0.209737, 0.048613] }, { "keytime": 4907.666504, "rotation": [ 0.970924, -0.104729, -0.209706, 0.048598] }, { "keytime": 4941.000000, "rotation": [ 0.970921, -0.104815, -0.209682, 0.048587] }, { "keytime": 4974.333496, "rotation": [ 0.970919, -0.104862, -0.209666, 0.048581] }, { "keytime": 5007.666992, "rotation": [ 0.970920, -0.104873, -0.209656, 0.048580] }, { "keytime": 5041.000488, "rotation": [ 0.970924, -0.104842, -0.209652, 0.048585] }, { "keytime": 5074.333984, "rotation": [ 0.970933, -0.104753, -0.209653, 0.048597] }, { "keytime": 5107.667480, "rotation": [ 0.970945, -0.104620, -0.209658, 0.048617] }, { "keytime": 5141.000977, "rotation": [ 0.970962, -0.104437, -0.209667, 0.048643] }, { "keytime": 5174.334473, "rotation": [ 0.970981, -0.104213, -0.209680, 0.048674] }, { "keytime": 5207.667969, "rotation": [ 0.971005, -0.103945, -0.209697, 0.048712] }, { "keytime": 5241.001465, "rotation": [ 0.971034, -0.103607, -0.209719, 0.048759] }, { "keytime": 5274.334961, "rotation": [ 0.971065, -0.103235, -0.209744, 0.048811] }, { "keytime": 5307.668457, "rotation": [ 0.971100, -0.102819, -0.209774, 0.048869] }, { "keytime": 5341.001953, "rotation": [ 0.971139, -0.102346, -0.209807, 0.048936] }, { "keytime": 5374.335449, "rotation": [ 0.971181, -0.101843, -0.209844, 0.049006] }, { "keytime": 5407.668945, "rotation": [ 0.971226, -0.101287, -0.209885, 0.049083] }, { "keytime": 5441.002441, "rotation": [ 0.971276, -0.100674, -0.209931, 0.049169] }, { "keytime": 5474.335938, "rotation": [ 0.971326, -0.100041, -0.209978, 0.049257] }, { "keytime": 5507.669434, "rotation": [ 0.971379, -0.099373, -0.210029, 0.049350] }, { "keytime": 5541.002930, "rotation": [ 0.971436, -0.098648, -0.210084, 0.049451] }, { "keytime": 5574.336426, "rotation": [ 0.971494, -0.097903, -0.210141, 0.049555] }, { "keytime": 5607.669922, "rotation": [ 0.971553, -0.097132, -0.210200, 0.049662] }, { "keytime": 5674.336914, "rotation": [ 0.971676, -0.095491, -0.210327, 0.049890] }, { "keytime": 5707.670410, "rotation": [ 0.971738, -0.094653, -0.210392, 0.050006] }, { "keytime": 5741.003906, "rotation": [ 0.971803, -0.093769, -0.210460, 0.050129] }, { "keytime": 5774.337402, "rotation": [ 0.971866, -0.092900, -0.210528, 0.050248] }, { "keytime": 5807.670898, "rotation": [ 0.971928, -0.092025, -0.210596, 0.050369] }, { "keytime": 5841.004395, "rotation": [ 0.971991, -0.091120, -0.210666, 0.050495] }, { "keytime": 5874.337891, "rotation": [ 0.972052, -0.090241, -0.210734, 0.050617] }, { "keytime": 5907.671387, "rotation": [ 0.972112, -0.089369, -0.210802, 0.050738] }, { "keytime": 5941.004883, "rotation": [ 0.972172, -0.088481, -0.210871, 0.050861] }, { "keytime": 5974.338379, "rotation": [ 0.972228, -0.087632, -0.210936, 0.050978] }, { "keytime": 6007.671875, "rotation": [ 0.972283, -0.086798, -0.211001, 0.051093] }, { "keytime": 6041.005371, "rotation": [ 0.972337, -0.085960, -0.211066, 0.051209] }, { "keytime": 6074.338867, "rotation": [ 0.972387, -0.085178, -0.211126, 0.051316] }, { "keytime": 6107.672363, "rotation": [ 0.972435, -0.084423, -0.211185, 0.051421] }, { "keytime": 6141.005859, "rotation": [ 0.972481, -0.083676, -0.211242, 0.051524] }, { "keytime": 6174.339355, "rotation": [ 0.972524, -0.082983, -0.211296, 0.051619] }, { "keytime": 6207.672852, "rotation": [ 0.972564, -0.082324, -0.211347, 0.051710] }, { "keytime": 6241.006348, "rotation": [ 0.972602, -0.081695, -0.211395, 0.051796] }, { "keytime": 6274.339844, "rotation": [ 0.972636, -0.081125, -0.211439, 0.051875] }, { "keytime": 6307.673340, "rotation": [ 0.972668, -0.080594, -0.211480, 0.051948] }, { "keytime": 6341.006836, "rotation": [ 0.972697, -0.080090, -0.211519, 0.052018] }, { "keytime": 6374.340332, "rotation": [ 0.972723, -0.079644, -0.211553, 0.052079] }, { "keytime": 6407.673828, "rotation": [ 0.972745, -0.079255, -0.211583, 0.052132] }, { "keytime": 6441.007324, "rotation": [ 0.972766, -0.078900, -0.211610, 0.052181] }, { "keytime": 6474.340820, "rotation": [ 0.972783, -0.078601, -0.211633, 0.052222] }, { "keytime": 6507.674316, "rotation": [ 0.972797, -0.078346, -0.211653, 0.052257] }, { "keytime": 6541.007812, "rotation": [ 0.972809, -0.078130, -0.211670, 0.052287] }, { "keytime": 6574.341309, "rotation": [ 0.972818, -0.077982, -0.211681, 0.052307] }, { "keytime": 6607.674805, "rotation": [ 0.972823, -0.077877, -0.211689, 0.052322] } ] }, { "boneId": "Bone_014", "keyframes": [ { "keytime": 41.000000, "rotation": [ 0.067216, -0.167213, 0.028384, 0.983217] }, { "keytime": 74.333328, "rotation": [ 0.067231, -0.167212, 0.028338, 0.983218] }, { "keytime": 107.666664, "rotation": [ 0.067268, -0.167209, 0.028223, 0.983219] }, { "keytime": 141.000000, "rotation": [ 0.067328, -0.167204, 0.028031, 0.983221] }, { "keytime": 174.333328, "rotation": [ 0.067410, -0.167198, 0.027774, 0.983224] }, { "keytime": 207.666656, "rotation": [ 0.067514, -0.167190, 0.027446, 0.983227] }, { "keytime": 240.999985, "rotation": [ 0.067648, -0.167179, 0.027024, 0.983232] }, { "keytime": 274.333313, "rotation": [ 0.067809, -0.167167, 0.026517, 0.983236] }, { "keytime": 307.666656, "rotation": [ 0.067989, -0.167153, 0.025953, 0.983242] }, { "keytime": 341.000000, "rotation": [ 0.068198, -0.167136, 0.025297, 0.983247] }, { "keytime": 374.333344, "rotation": [ 0.068424, -0.167118, 0.024590, 0.983252] }, { "keytime": 407.666687, "rotation": [ 0.068680, -0.167098, 0.023790, 0.983258] }, { "keytime": 441.000031, "rotation": [ 0.068967, -0.167075, 0.022895, 0.983263] }, { "keytime": 474.333374, "rotation": [ 0.069268, -0.167051, 0.021957, 0.983267] }, { "keytime": 507.666718, "rotation": [ 0.069591, -0.167025, 0.020953, 0.983270] }, { "keytime": 541.000061, "rotation": [ 0.069947, -0.166996, 0.019847, 0.983273] }, { "keytime": 574.333374, "rotation": [ 0.070321, -0.166965, 0.018688, 0.983274] }, { "keytime": 607.666687, "rotation": [ 0.070715, -0.166933, 0.017467, 0.983274] }, { "keytime": 641.000000, "rotation": [ 0.071143, -0.166897, 0.016145, 0.983272] }, { "keytime": 674.333313, "rotation": [ 0.071579, -0.166861, 0.014803, 0.983267] }, { "keytime": 707.666626, "rotation": [ 0.072034, -0.166823, 0.013402, 0.983261] }, { "keytime": 740.999939, "rotation": [ 0.072514, -0.166781, 0.011930, 0.983251] }, { "keytime": 774.333252, "rotation": [ 0.073026, -0.166737, 0.010361, 0.983239] }, { "keytime": 807.666565, "rotation": [ 0.073541, -0.166693, 0.008790, 0.983223] }, { "keytime": 840.999878, "rotation": [ 0.074071, -0.166646, 0.007173, 0.983204] }, { "keytime": 907.666504, "rotation": [ 0.075200, -0.166546, 0.003750, 0.983155] }, { "keytime": 940.999817, "rotation": [ 0.075777, -0.166494, 0.002006, 0.983124] }, { "keytime": 974.333130, "rotation": [ 0.076385, -0.166439, 0.000178, 0.983089] }, { "keytime": 1007.666443, "rotation": [ 0.076985, -0.166385, -0.001623, 0.983050] }, { "keytime": 1040.999756, "rotation": [ 0.077595, -0.166329, -0.003447, 0.983007] }, { "keytime": 1074.333130, "rotation": [ 0.078234, -0.166269, -0.005350, 0.982958] }, { "keytime": 1107.666504, "rotation": [ 0.078861, -0.166210, -0.007208, 0.982906] }, { "keytime": 1140.999878, "rotation": [ 0.079493, -0.166150, -0.009073, 0.982849] }, { "keytime": 1174.333252, "rotation": [ 0.080148, -0.166087, -0.010999, 0.982787] }, { "keytime": 1207.666626, "rotation": [ 0.080786, -0.166026, -0.012868, 0.982722] }, { "keytime": 1241.000000, "rotation": [ 0.081446, -0.165962, -0.014784, 0.982652] }, { "keytime": 1274.333374, "rotation": [ 0.082086, -0.165900, -0.016632, 0.982580] }, { "keytime": 1307.666748, "rotation": [ 0.082723, -0.165837, -0.018463, 0.982504] }, { "keytime": 1341.000122, "rotation": [ 0.083377, -0.165773, -0.020329, 0.982423] }, { "keytime": 1374.333496, "rotation": [ 0.084007, -0.165711, -0.022117, 0.982341] }, { "keytime": 1407.666870, "rotation": [ 0.084630, -0.165648, -0.023866, 0.982257] }, { "keytime": 1441.000244, "rotation": [ 0.085264, -0.165585, -0.025632, 0.982168] }, { "keytime": 1474.333618, "rotation": [ 0.085870, -0.165524, -0.027309, 0.982081] }, { "keytime": 1507.666992, "rotation": [ 0.086468, -0.165464, -0.028946, 0.981991] }, { "keytime": 1541.000366, "rotation": [ 0.087073, -0.165403, -0.030586, 0.981898] }, { "keytime": 1574.333740, "rotation": [ 0.087644, -0.165345, -0.032114, 0.981809] }, { "keytime": 1607.667114, "rotation": [ 0.088203, -0.165289, -0.033591, 0.981719] }, { "keytime": 1641.000488, "rotation": [ 0.088765, -0.165232, -0.035057, 0.981626] }, { "keytime": 1674.333862, "rotation": [ 0.089297, -0.165179, -0.036423, 0.981537] }, { "keytime": 1707.667236, "rotation": [ 0.089813, -0.165128, -0.037730, 0.981449] }, { "keytime": 1741.000610, "rotation": [ 0.090323, -0.165077, -0.038994, 0.981362] }, { "keytime": 1774.333984, "rotation": [ 0.090802, -0.165029, -0.040157, 0.981279] }, { "keytime": 1807.667358, "rotation": [ 0.091264, -0.164984, -0.041255, 0.981198] }, { "keytime": 1841.000732, "rotation": [ 0.091722, -0.164940, -0.042317, 0.981117] }, { "keytime": 1874.334106, "rotation": [ 0.092149, -0.164899, -0.043281, 0.981042] }, { "keytime": 1907.667480, "rotation": [ 0.092551, -0.164861, -0.044153, 0.980972] }, { "keytime": 1941.000854, "rotation": [ 0.092946, -0.164825, -0.044981, 0.980903] }, { "keytime": 1974.334229, "rotation": [ 0.093311, -0.164792, -0.045713, 0.980840] }, { "keytime": 2007.667603, "rotation": [ 0.093657, -0.164762, -0.046376, 0.980781] }, { "keytime": 2041.000977, "rotation": [ 0.093993, -0.164733, -0.046983, 0.980725] }, { "keytime": 2074.334473, "rotation": [ 0.094293, -0.164709, -0.047477, 0.980676] }, { "keytime": 2107.667725, "rotation": [ 0.094574, -0.164687, -0.047901, 0.980632] }, { "keytime": 2141.000977, "rotation": [ 0.094844, -0.164667, -0.048263, 0.980592] }, { "keytime": 2174.334229, "rotation": [ 0.095086, -0.164651, -0.048543, 0.980557] }, { "keytime": 2207.667480, "rotation": [ 0.095308, -0.164637, -0.048752, 0.980528] }, { "keytime": 2241.000732, "rotation": [ 0.095510, -0.164627, -0.048871, 0.980504] }, { "keytime": 2274.333984, "rotation": [ 0.095687, -0.164619, -0.048914, 0.980486] }, { "keytime": 2307.667236, "rotation": [ 0.095847, -0.164604, -0.048888, 0.980474] }, { "keytime": 2341.000488, "rotation": [ 0.095996, -0.164570, -0.048788, 0.980470] }, { "keytime": 2374.333740, "rotation": [ 0.096128, -0.164509, -0.048620, 0.980476] }, { "keytime": 2407.666992, "rotation": [ 0.096244, -0.164410, -0.048357, 0.980494] }, { "keytime": 2441.000244, "rotation": [ 0.096351, -0.164279, -0.048013, 0.980522] }, { "keytime": 2474.333496, "rotation": [ 0.096442, -0.164123, -0.047607, 0.980559] }, { "keytime": 2507.666748, "rotation": [ 0.096520, -0.163938, -0.047129, 0.980605] }, { "keytime": 2541.000000, "rotation": [ 0.096587, -0.163718, -0.046561, 0.980663] }, { "keytime": 2574.333252, "rotation": [ 0.096635, -0.163465, -0.045914, 0.980731] }, { "keytime": 2607.666504, "rotation": [ 0.096670, -0.163185, -0.045195, 0.980807] }, { "keytime": 2640.999756, "rotation": [ 0.096692, -0.162875, -0.044406, 0.980893] }, { "keytime": 2674.333008, "rotation": [ 0.096702, -0.162527, -0.043517, 0.980989] }, { "keytime": 2707.666260, "rotation": [ 0.096697, -0.162159, -0.042582, 0.981092] }, { "keytime": 2740.999512, "rotation": [ 0.096676, -0.161755, -0.041554, 0.981205] }, { "keytime": 2774.332764, "rotation": [ 0.096641, -0.161309, -0.040423, 0.981329] }, { "keytime": 2807.666016, "rotation": [ 0.096594, -0.160847, -0.039255, 0.981456] }, { "keytime": 2840.999268, "rotation": [ 0.096534, -0.160359, -0.038019, 0.981591] }, { "keytime": 2874.332520, "rotation": [ 0.096459, -0.159826, -0.036673, 0.981736] }, { "keytime": 2907.665771, "rotation": [ 0.096369, -0.159273, -0.035278, 0.981886] }, { "keytime": 2940.999023, "rotation": [ 0.096266, -0.158694, -0.033819, 0.982041] }, { "keytime": 2974.332275, "rotation": [ 0.096148, -0.158071, -0.032249, 0.982206] }, { "keytime": 3007.665527, "rotation": [ 0.096020, -0.157440, -0.030663, 0.982371] }, { "keytime": 3040.998779, "rotation": [ 0.095880, -0.156784, -0.029014, 0.982540] }, { "keytime": 3074.332031, "rotation": [ 0.095721, -0.156075, -0.027236, 0.982719] }, { "keytime": 3107.665283, "rotation": [ 0.095554, -0.155364, -0.025453, 0.982896] }, { "keytime": 3140.998535, "rotation": [ 0.095376, -0.154630, -0.023617, 0.983074] }, { "keytime": 3174.331787, "rotation": [ 0.095180, -0.153852, -0.021670, 0.983260] }, { "keytime": 3207.665039, "rotation": [ 0.094979, -0.153075, -0.019728, 0.983442] }, { "keytime": 3240.998291, "rotation": [ 0.094766, -0.152272, -0.017726, 0.983625] }, { "keytime": 3274.331543, "rotation": [ 0.094535, -0.151427, -0.015618, 0.983814] }, { "keytime": 3307.664795, "rotation": [ 0.094302, -0.150589, -0.013531, 0.983996] }, { "keytime": 3340.998047, "rotation": [ 0.094059, -0.149735, -0.011406, 0.984176] }, { "keytime": 3374.331299, "rotation": [ 0.093799, -0.148839, -0.009179, 0.984360] }, { "keytime": 3407.664551, "rotation": [ 0.093537, -0.147951, -0.006976, 0.984537] }, { "keytime": 3440.997803, "rotation": [ 0.093268, -0.147052, -0.004748, 0.984710] }, { "keytime": 3474.331055, "rotation": [ 0.092983, -0.146115, -0.002427, 0.984885] }, { "keytime": 3507.664307, "rotation": [ 0.092700, -0.145196, -0.000154, 0.985051] }, { "keytime": 3540.997559, "rotation": [ 0.092410, -0.144270, 0.002136, 0.985212] }, { "keytime": 3574.330811, "rotation": [ 0.092106, -0.143307, 0.004512, 0.985373] }, { "keytime": 3607.664062, "rotation": [ 0.091806, -0.142369, 0.006826, 0.985523] }, { "keytime": 3640.997314, "rotation": [ 0.091502, -0.141428, 0.009143, 0.985668] }, { "keytime": 3674.330566, "rotation": [ 0.091185, -0.140458, 0.011531, 0.985811] }, { "keytime": 3707.663818, "rotation": [ 0.090874, -0.139516, 0.013846, 0.985944] }, { "keytime": 3740.997070, "rotation": [ 0.090562, -0.138578, 0.016150, 0.986070] }, { "keytime": 3774.330322, "rotation": [ 0.090239, -0.137615, 0.018511, 0.986193] }, { "keytime": 3807.663574, "rotation": [ 0.089925, -0.136686, 0.020786, 0.986305] }, { "keytime": 3840.996826, "rotation": [ 0.089611, -0.135764, 0.023043, 0.986411] }, { "keytime": 3874.330078, "rotation": [ 0.089288, -0.134824, 0.025343, 0.986513] }, { "keytime": 3907.663330, "rotation": [ 0.088978, -0.133924, 0.027539, 0.986605] }, { "keytime": 3940.996582, "rotation": [ 0.088669, -0.133037, 0.029704, 0.986690] }, { "keytime": 3974.329834, "rotation": [ 0.088354, -0.132137, 0.031899, 0.986770] }, { "keytime": 4007.663086, "rotation": [ 0.088052, -0.131278, 0.033992, 0.986842] }, { "keytime": 4040.996338, "rotation": [ 0.087753, -0.130435, 0.036044, 0.986908] }, { "keytime": 4074.329590, "rotation": [ 0.087453, -0.129590, 0.038098, 0.986969] }, { "keytime": 4107.663086, "rotation": [ 0.087166, -0.128789, 0.040044, 0.987022] }, { "keytime": 4140.996094, "rotation": [ 0.086885, -0.128007, 0.041940, 0.987069] }, { "keytime": 4174.329590, "rotation": [ 0.086602, -0.127224, 0.043840, 0.987113] }, { "keytime": 4207.663086, "rotation": [ 0.086335, -0.126487, 0.045629, 0.987150] }, { "keytime": 4240.996582, "rotation": [ 0.086077, -0.125779, 0.047342, 0.987182] }, { "keytime": 4274.330078, "rotation": [ 0.085819, -0.125074, 0.049047, 0.987211] }, { "keytime": 4307.663574, "rotation": [ 0.085577, -0.124416, 0.050640, 0.987235] }, { "keytime": 4340.997070, "rotation": [ 0.085344, -0.123782, 0.052171, 0.987255] }, { "keytime": 4374.330566, "rotation": [ 0.085112, -0.123158, 0.053680, 0.987272] }, { "keytime": 4407.664062, "rotation": [ 0.084900, -0.122587, 0.055058, 0.987286] }, { "keytime": 4440.997559, "rotation": [ 0.084698, -0.122043, 0.056369, 0.987296] }, { "keytime": 4474.331055, "rotation": [ 0.084499, -0.121512, 0.057650, 0.987305] }, { "keytime": 4507.664551, "rotation": [ 0.084317, -0.121026, 0.058823, 0.987311] }, { "keytime": 4540.998047, "rotation": [ 0.084144, -0.120568, 0.059925, 0.987316] }, { "keytime": 4574.331543, "rotation": [ 0.083981, -0.120136, 0.060966, 0.987318] }, { "keytime": 4607.665039, "rotation": [ 0.083834, -0.119747, 0.061903, 0.987320] }, { "keytime": 4640.998535, "rotation": [ 0.083697, -0.119387, 0.062770, 0.987320] }, { "keytime": 4674.332031, "rotation": [ 0.083568, -0.119048, 0.063588, 0.987320] }, { "keytime": 4707.665527, "rotation": [ 0.083454, -0.118749, 0.064307, 0.987319] }, { "keytime": 4740.999023, "rotation": [ 0.083354, -0.118489, 0.064932, 0.987318] }, { "keytime": 4774.332520, "rotation": [ 0.083263, -0.118253, 0.065502, 0.987316] }, { "keytime": 4807.666016, "rotation": [ 0.083186, -0.118054, 0.065981, 0.987314] }, { "keytime": 4840.999512, "rotation": [ 0.083121, -0.117885, 0.066388, 0.987313] }, { "keytime": 4874.333008, "rotation": [ 0.083066, -0.117743, 0.066731, 0.987311] }, { "keytime": 4907.666504, "rotation": [ 0.083027, -0.117645, 0.066969, 0.987310] }, { "keytime": 4941.000000, "rotation": [ 0.082999, -0.117574, 0.067140, 0.987309] }, { "keytime": 4974.333496, "rotation": [ 0.082983, -0.117536, 0.067234, 0.987309] }, { "keytime": 5007.666992, "rotation": [ 0.082973, -0.117535, 0.067259, 0.987308] }, { "keytime": 5041.000488, "rotation": [ 0.082955, -0.117592, 0.067215, 0.987306] }, { "keytime": 5074.333984, "rotation": [ 0.082904, -0.117757, 0.067087, 0.987299] }, { "keytime": 5107.667480, "rotation": [ 0.082827, -0.118003, 0.066896, 0.987289] }, { "keytime": 5141.000977, "rotation": [ 0.082721, -0.118343, 0.066633, 0.987275] }, { "keytime": 5174.334473, "rotation": [ 0.082592, -0.118755, 0.066312, 0.987258] }, { "keytime": 5207.667969, "rotation": [ 0.082437, -0.119252, 0.065927, 0.987237] }, { "keytime": 5241.001465, "rotation": [ 0.082242, -0.119875, 0.065444, 0.987210] }, { "keytime": 5274.334961, "rotation": [ 0.082027, -0.120563, 0.064909, 0.987179] }, { "keytime": 5307.668457, "rotation": [ 0.081787, -0.121330, 0.064314, 0.987144] }, { "keytime": 5341.001953, "rotation": [ 0.081514, -0.122203, 0.063635, 0.987103] }, { "keytime": 5374.335449, "rotation": [ 0.081224, -0.123129, 0.062915, 0.987058] }, { "keytime": 5407.668945, "rotation": [ 0.080903, -0.124155, 0.062118, 0.987006] }, { "keytime": 5441.002441, "rotation": [ 0.080549, -0.125285, 0.061239, 0.986947] }, { "keytime": 5474.335938, "rotation": [ 0.080183, -0.126452, 0.060331, 0.986884] }, { "keytime": 5507.669434, "rotation": [ 0.079796, -0.127683, 0.059373, 0.986815] }, { "keytime": 5541.002930, "rotation": [ 0.079376, -0.129018, 0.058333, 0.986738] }, { "keytime": 5574.336426, "rotation": [ 0.078945, -0.130389, 0.057265, 0.986654] }, { "keytime": 5607.669922, "rotation": [ 0.078498, -0.131809, 0.056158, 0.986565] }, { "keytime": 5641.003418, "rotation": [ 0.078022, -0.133320, 0.054980, 0.986466] }, { "keytime": 5674.336914, "rotation": [ 0.077547, -0.134826, 0.053805, 0.986364] }, { "keytime": 5707.670410, "rotation": [ 0.077060, -0.136368, 0.052601, 0.986255] }, { "keytime": 5741.003906, "rotation": [ 0.076546, -0.137992, 0.051332, 0.986136] }, { "keytime": 5774.337402, "rotation": [ 0.076042, -0.139588, 0.050086, 0.986014] }, { "keytime": 5807.670898, "rotation": [ 0.075533, -0.141195, 0.048830, 0.985888] }, { "keytime": 5841.004395, "rotation": [ 0.075006, -0.142856, 0.047530, 0.985752] }, { "keytime": 5874.337891, "rotation": [ 0.074494, -0.144467, 0.046268, 0.985616] }, { "keytime": 5907.671387, "rotation": [ 0.073987, -0.146066, 0.045015, 0.985477] }, { "keytime": 5941.004883, "rotation": [ 0.073469, -0.147694, 0.043739, 0.985330] }, { "keytime": 5974.338379, "rotation": [ 0.072974, -0.149250, 0.042520, 0.985186] }, { "keytime": 6007.671875, "rotation": [ 0.072487, -0.150775, 0.041323, 0.985041] }, { "keytime": 6041.005371, "rotation": [ 0.071997, -0.152309, 0.040119, 0.984890] }, { "keytime": 6074.338867, "rotation": [ 0.071541, -0.153739, 0.038995, 0.984746] }, { "keytime": 6107.672363, "rotation": [ 0.071100, -0.155120, 0.037911, 0.984604] }, { "keytime": 6141.005859, "rotation": [ 0.070663, -0.156485, 0.036837, 0.984460] }, { "keytime": 6174.339355, "rotation": [ 0.070257, -0.157751, 0.035841, 0.984324] }, { "keytime": 6207.672852, "rotation": [ 0.069872, -0.158954, 0.034895, 0.984192] }, { "keytime": 6241.006348, "rotation": [ 0.069504, -0.160102, 0.033991, 0.984064] }, { "keytime": 6274.339844, "rotation": [ 0.069170, -0.161143, 0.033171, 0.983945] }, { "keytime": 6307.673340, "rotation": [ 0.068858, -0.162111, 0.032408, 0.983833] }, { "keytime": 6341.006836, "rotation": [ 0.068563, -0.163030, 0.031684, 0.983726] }, { "keytime": 6374.340332, "rotation": [ 0.068302, -0.163843, 0.031043, 0.983629] }, { "keytime": 6407.673828, "rotation": [ 0.068074, -0.164551, 0.030485, 0.983544] }, { "keytime": 6441.007324, "rotation": [ 0.067866, -0.165198, 0.029974, 0.983466] }, { "keytime": 6474.340820, "rotation": [ 0.067690, -0.165743, 0.029544, 0.983399] }, { "keytime": 6507.674316, "rotation": [ 0.067541, -0.166207, 0.029178, 0.983342] }, { "keytime": 6541.007812, "rotation": [ 0.067414, -0.166599, 0.028869, 0.983294] }, { "keytime": 6574.341309, "rotation": [ 0.067327, -0.166870, 0.028655, 0.983260] }, { "keytime": 6607.674805, "rotation": [ 0.067266, -0.167060, 0.028505, 0.983236] } ] }, { "boneId": "Bone_025", "keyframes": [ { "keytime": 41.000000, "rotation": [-0.041422, -0.091947, -0.032720, 0.994364] }, { "keytime": 74.333328, "rotation": [-0.041419, -0.091941, -0.032712, 0.994365] }, { "keytime": 107.666664, "rotation": [-0.041411, -0.091927, -0.032691, 0.994367] }, { "keytime": 141.000000, "rotation": [-0.041397, -0.091902, -0.032656, 0.994371] }, { "keytime": 174.333328, "rotation": [-0.041378, -0.091870, -0.032609, 0.994376] }, { "keytime": 207.666656, "rotation": [-0.041353, -0.091828, -0.032548, 0.994383] }, { "keytime": 240.999985, "rotation": [-0.041321, -0.091774, -0.032469, 0.994392] }, { "keytime": 274.333313, "rotation": [-0.041282, -0.091708, -0.032372, 0.994403] }, { "keytime": 307.666656, "rotation": [-0.041237, -0.091635, -0.032262, 0.994415] }, { "keytime": 341.000000, "rotation": [-0.041185, -0.091550, -0.032133, 0.994429] }, { "keytime": 374.333344, "rotation": [-0.041128, -0.091458, -0.031992, 0.994445] }, { "keytime": 407.666687, "rotation": [-0.041062, -0.091353, -0.031829, 0.994462] }, { "keytime": 441.000031, "rotation": [-0.040987, -0.091235, -0.031644, 0.994482] }, { "keytime": 474.333374, "rotation": [-0.040907, -0.091111, -0.031447, 0.994503] }, { "keytime": 507.666718, "rotation": [-0.040821, -0.090977, -0.031233, 0.994526] }, { "keytime": 541.000061, "rotation": [-0.040724, -0.090829, -0.030993, 0.994551] }, { "keytime": 574.333374, "rotation": [-0.040619, -0.090673, -0.030736, 0.994577] }, { "keytime": 607.666687, "rotation": [-0.040508, -0.090508, -0.030461, 0.994605] }, { "keytime": 641.000000, "rotation": [-0.040384, -0.090327, -0.030157, 0.994636] }, { "keytime": 674.333313, "rotation": [-0.040257, -0.090143, -0.029843, 0.994667] }, { "keytime": 707.666626, "rotation": [-0.040121, -0.089950, -0.029510, 0.994700] }, { "keytime": 740.999939, "rotation": [-0.039975, -0.089744, -0.029150, 0.994735] }, { "keytime": 774.333252, "rotation": [-0.039816, -0.089524, -0.028758, 0.994773] }, { "keytime": 807.666565, "rotation": [-0.039653, -0.089302, -0.028358, 0.994811] }, { "keytime": 840.999878, "rotation": [-0.039482, -0.089072, -0.027937, 0.994850] }, { "keytime": 874.333191, "rotation": [-0.039297, -0.088826, -0.027482, 0.994892] }, { "keytime": 907.666504, "rotation": [-0.039106, -0.088577, -0.027012, 0.994935] }, { "keytime": 940.999817, "rotation": [-0.038906, -0.088321, -0.026523, 0.994978] }, { "keytime": 974.333130, "rotation": [-0.038692, -0.088050, -0.025997, 0.995025] }, { "keytime": 1007.666443, "rotation": [-0.038476, -0.087781, -0.025466, 0.995071] }, { "keytime": 1040.999756, "rotation": [-0.038250, -0.087506, -0.024914, 0.995118] }, { "keytime": 1074.333130, "rotation": [-0.038007, -0.087214, -0.024318, 0.995167] }, { "keytime": 1107.666504, "rotation": [-0.037763, -0.086926, -0.023719, 0.995216] }, { "keytime": 1140.999878, "rotation": [-0.037510, -0.086633, -0.023101, 0.995266] }, { "keytime": 1174.333252, "rotation": [-0.037242, -0.086327, -0.022444, 0.995318] }, { "keytime": 1207.666626, "rotation": [-0.036973, -0.086026, -0.021787, 0.995368] }, { "keytime": 1241.000000, "rotation": [-0.036686, -0.085711, -0.021084, 0.995421] }, { "keytime": 1274.333374, "rotation": [-0.036399, -0.085404, -0.020384, 0.995473] }, { "keytime": 1307.666748, "rotation": [-0.036105, -0.085093, -0.019666, 0.995524] }, { "keytime": 1341.000122, "rotation": [-0.035795, -0.084772, -0.018908, 0.995578] }, { "keytime": 1374.333496, "rotation": [-0.035487, -0.084459, -0.018156, 0.995629] }, { "keytime": 1407.666870, "rotation": [-0.035170, -0.084145, -0.017383, 0.995681] }, { "keytime": 1441.000244, "rotation": [-0.034837, -0.083821, -0.016570, 0.995734] }, { "keytime": 1474.333618, "rotation": [-0.034507, -0.083508, -0.015767, 0.995785] }, { "keytime": 1507.666992, "rotation": [-0.034172, -0.083196, -0.014949, 0.995835] }, { "keytime": 1541.000366, "rotation": [-0.033820, -0.082873, -0.014093, 0.995886] }, { "keytime": 1574.333740, "rotation": [-0.033471, -0.082564, -0.013244, 0.995935] }, { "keytime": 1607.667114, "rotation": [-0.033118, -0.082256, -0.012384, 0.995984] }, { "keytime": 1641.000488, "rotation": [-0.032748, -0.081942, -0.011486, 0.996033] }, { "keytime": 1674.333862, "rotation": [-0.032385, -0.081640, -0.010603, 0.996079] }, { "keytime": 1707.667236, "rotation": [-0.032018, -0.081341, -0.009710, 0.996125] }, { "keytime": 1741.000610, "rotation": [-0.031634, -0.081038, -0.008777, 0.996170] }, { "keytime": 1774.333984, "rotation": [-0.031257, -0.080747, -0.007863, 0.996213] }, { "keytime": 1807.667358, "rotation": [-0.030877, -0.080461, -0.006941, 0.996255] }, { "keytime": 1841.000732, "rotation": [-0.030482, -0.080170, -0.005983, 0.996297] }, { "keytime": 1874.334106, "rotation": [-0.030096, -0.079893, -0.005046, 0.996336] }, { "keytime": 1907.667480, "rotation": [-0.029706, -0.079622, -0.004100, 0.996374] }, { "keytime": 1941.000854, "rotation": [-0.029301, -0.079348, -0.003120, 0.996411] }, { "keytime": 1974.334229, "rotation": [-0.028906, -0.079088, -0.002164, 0.996446] }, { "keytime": 2007.667603, "rotation": [-0.028509, -0.078832, -0.001203, 0.996479] }, { "keytime": 2041.000977, "rotation": [-0.028098, -0.078575, -0.000208, 0.996512] }, { "keytime": 2074.334473, "rotation": [-0.027696, -0.078332, 0.000763, 0.996542] }, { "keytime": 2107.667725, "rotation": [-0.027293, -0.078096, 0.001737, 0.996571] }, { "keytime": 2141.000977, "rotation": [-0.026877, -0.077858, 0.002744, 0.996598] }, { "keytime": 2174.334229, "rotation": [-0.026471, -0.077633, 0.003723, 0.996624] }, { "keytime": 2207.667480, "rotation": [-0.026065, -0.077414, 0.004705, 0.996647] }, { "keytime": 2241.000732, "rotation": [-0.025644, -0.077197, 0.005718, 0.996670] }, { "keytime": 2274.333984, "rotation": [-0.025236, -0.076992, 0.006704, 0.996690] }, { "keytime": 2307.667236, "rotation": [-0.024822, -0.076790, 0.007703, 0.996709] }, { "keytime": 2341.000488, "rotation": [-0.024383, -0.076582, 0.008760, 0.996727] }, { "keytime": 2374.333740, "rotation": [-0.023941, -0.076377, 0.009826, 0.996743] }, { "keytime": 2407.666992, "rotation": [-0.023476, -0.076169, 0.010945, 0.996758] }, { "keytime": 2441.000244, "rotation": [-0.022981, -0.075951, 0.012139, 0.996773] }, { "keytime": 2474.333496, "rotation": [-0.022483, -0.075737, 0.013338, 0.996785] }, { "keytime": 2507.666748, "rotation": [-0.021969, -0.075520, 0.014575, 0.996796] }, { "keytime": 2541.000000, "rotation": [-0.021422, -0.075293, 0.015892, 0.996805] }, { "keytime": 2574.333252, "rotation": [-0.020869, -0.075070, 0.017222, 0.996811] }, { "keytime": 2607.666504, "rotation": [-0.020300, -0.074844, 0.018590, 0.996815] }, { "keytime": 2640.999756, "rotation": [-0.019715, -0.074615, 0.019996, 0.996817] }, { "keytime": 2674.333008, "rotation": [-0.019097, -0.074377, 0.021484, 0.996816] }, { "keytime": 2707.666260, "rotation": [-0.018480, -0.074143, 0.022967, 0.996812] }, { "keytime": 2740.999512, "rotation": [-0.017843, -0.073906, 0.024497, 0.996805] }, { "keytime": 2774.332764, "rotation": [-0.017171, -0.073660, 0.026111, 0.996794] }, { "keytime": 2807.666016, "rotation": [-0.016504, -0.073419, 0.027712, 0.996780] }, { "keytime": 2840.999268, "rotation": [-0.015823, -0.073175, 0.029348, 0.996762] }, { "keytime": 2874.332520, "rotation": [-0.015107, -0.072922, 0.031069, 0.996739] }, { "keytime": 2907.665771, "rotation": [-0.014393, -0.072674, 0.032782, 0.996713] }, { "keytime": 2940.999023, "rotation": [-0.013666, -0.072424, 0.034526, 0.996682] }, { "keytime": 2974.332275, "rotation": [-0.012905, -0.072165, 0.036353, 0.996646] }, { "keytime": 3007.665527, "rotation": [-0.012153, -0.071913, 0.038155, 0.996607] }, { "keytime": 3040.998779, "rotation": [-0.011391, -0.071657, 0.039985, 0.996562] }, { "keytime": 3074.332031, "rotation": [-0.010590, -0.071394, 0.041904, 0.996511] }, { "keytime": 3107.665283, "rotation": [-0.009803, -0.071137, 0.043791, 0.996457] }, { "keytime": 3140.998535, "rotation": [-0.009006, -0.070879, 0.045700, 0.996397] }, { "keytime": 3174.331787, "rotation": [-0.008177, -0.070613, 0.047688, 0.996330] }, { "keytime": 3207.665039, "rotation": [-0.007363, -0.070354, 0.049636, 0.996259] }, { "keytime": 3240.998291, "rotation": [-0.006541, -0.070095, 0.051606, 0.996183] }, { "keytime": 3274.331543, "rotation": [-0.005688, -0.069829, 0.053649, 0.996099] }, { "keytime": 3307.664795, "rotation": [-0.004854, -0.069570, 0.055644, 0.996012] }, { "keytime": 3340.998047, "rotation": [-0.004017, -0.069311, 0.057649, 0.995920] }, { "keytime": 3374.331299, "rotation": [-0.003150, -0.069046, 0.059722, 0.995819] }, { "keytime": 3440.997803, "rotation": [-0.001462, -0.068535, 0.063761, 0.995608] }, { "keytime": 3474.331055, "rotation": [-0.000592, -0.068273, 0.065843, 0.995491] }, { "keytime": 3507.664307, "rotation": [ 0.000252, -0.068021, 0.067861, 0.995373] }, { "keytime": 3540.997559, "rotation": [ 0.001094, -0.067771, 0.069874, 0.995251] }, { "keytime": 3574.330811, "rotation": [ 0.001957, -0.067516, 0.071937, 0.995120] }, { "keytime": 3607.664062, "rotation": [ 0.002791, -0.067272, 0.073928, 0.994988] }, { "keytime": 3640.997314, "rotation": [ 0.003618, -0.067030, 0.075906, 0.994853] }, { "keytime": 3674.330566, "rotation": [ 0.004465, -0.066784, 0.077927, 0.994710] }, { "keytime": 3707.663818, "rotation": [ 0.005278, -0.066548, 0.079871, 0.994567] }, { "keytime": 3740.997070, "rotation": [ 0.006081, -0.066317, 0.081787, 0.994422] }, { "keytime": 3774.330322, "rotation": [ 0.006898, -0.066083, 0.083737, 0.994270] }, { "keytime": 3807.663574, "rotation": [ 0.007680, -0.065859, 0.085604, 0.994120] }, { "keytime": 3840.996826, "rotation": [ 0.008450, -0.065640, 0.087443, 0.993969] }, { "keytime": 3874.330078, "rotation": [ 0.009231, -0.065418, 0.089305, 0.993811] }, { "keytime": 3907.663330, "rotation": [ 0.009971, -0.065210, 0.091070, 0.993657] }, { "keytime": 3940.996582, "rotation": [ 0.010696, -0.065006, 0.092800, 0.993503] }, { "keytime": 3974.329834, "rotation": [ 0.011428, -0.064800, 0.094545, 0.993344] }, { "keytime": 4007.663086, "rotation": [ 0.012121, -0.064606, 0.096199, 0.993189] }, { "keytime": 4040.996338, "rotation": [ 0.012798, -0.064417, 0.097812, 0.993035] }, { "keytime": 4074.329590, "rotation": [ 0.013472, -0.064231, 0.099418, 0.992879] }, { "keytime": 4107.663086, "rotation": [ 0.014107, -0.064055, 0.100932, 0.992729] }, { "keytime": 4140.996094, "rotation": [ 0.014723, -0.063885, 0.102401, 0.992580] }, { "keytime": 4174.329590, "rotation": [ 0.015338, -0.063715, 0.103866, 0.992430] }, { "keytime": 4207.663086, "rotation": [ 0.015914, -0.063557, 0.105239, 0.992286] }, { "keytime": 4240.996582, "rotation": [ 0.016464, -0.063406, 0.106549, 0.992147] }, { "keytime": 4274.330078, "rotation": [ 0.017009, -0.063258, 0.107847, 0.992007] }, { "keytime": 4307.663574, "rotation": [ 0.017516, -0.063119, 0.109055, 0.991875] }, { "keytime": 4340.997070, "rotation": [ 0.018002, -0.062987, 0.110212, 0.991747] }, { "keytime": 4374.330566, "rotation": [ 0.018479, -0.062858, 0.111348, 0.991619] }, { "keytime": 4407.664062, "rotation": [ 0.018913, -0.062741, 0.112382, 0.991502] }, { "keytime": 4440.997559, "rotation": [ 0.019325, -0.062629, 0.113362, 0.991389] }, { "keytime": 4474.331055, "rotation": [ 0.019726, -0.062521, 0.114317, 0.991279] }, { "keytime": 4507.664551, "rotation": [ 0.020093, -0.062423, 0.115190, 0.991177] }, { "keytime": 4540.998047, "rotation": [ 0.020436, -0.062331, 0.116006, 0.991080] }, { "keytime": 4574.331543, "rotation": [ 0.020759, -0.062244, 0.116775, 0.990988] }, { "keytime": 4607.665039, "rotation": [ 0.021050, -0.062167, 0.117466, 0.990906] }, { "keytime": 4640.998535, "rotation": [ 0.021317, -0.062096, 0.118103, 0.990829] }, { "keytime": 4674.332031, "rotation": [ 0.021569, -0.062029, 0.118702, 0.990756] }, { "keytime": 4707.665527, "rotation": [ 0.021791, -0.061970, 0.119229, 0.990691] }, { "keytime": 4740.999023, "rotation": [ 0.021982, -0.061919, 0.119685, 0.990635] }, { "keytime": 4774.332520, "rotation": [ 0.022156, -0.061873, 0.120099, 0.990584] }, { "keytime": 4807.666016, "rotation": [ 0.022303, -0.061835, 0.120448, 0.990541] }, { "keytime": 4840.999512, "rotation": [ 0.022427, -0.061802, 0.120743, 0.990504] }, { "keytime": 4874.333008, "rotation": [ 0.022532, -0.061774, 0.120992, 0.990473] }, { "keytime": 4907.666504, "rotation": [ 0.022604, -0.061755, 0.121164, 0.990452] }, { "keytime": 4941.000000, "rotation": [ 0.022656, -0.061742, 0.121288, 0.990436] }, { "keytime": 4974.333496, "rotation": [ 0.022685, -0.061734, 0.121356, 0.990428] }, { "keytime": 5007.666992, "rotation": [ 0.022679, -0.061739, 0.121343, 0.990429] }, { "keytime": 5041.000488, "rotation": [ 0.022608, -0.061774, 0.121173, 0.990449] }, { "keytime": 5074.333984, "rotation": [ 0.022399, -0.061876, 0.120673, 0.990509] }, { "keytime": 5107.667480, "rotation": [ 0.022086, -0.062029, 0.119925, 0.990597] }, { "keytime": 5141.000977, "rotation": [ 0.021653, -0.062240, 0.118892, 0.990718] }, { "keytime": 5174.334473, "rotation": [ 0.021127, -0.062496, 0.117635, 0.990863] }, { "keytime": 5207.667969, "rotation": [ 0.020493, -0.062804, 0.116120, 0.991036] }, { "keytime": 5241.001465, "rotation": [ 0.019697, -0.063192, 0.114218, 0.991248] }, { "keytime": 5274.334961, "rotation": [ 0.018817, -0.063620, 0.112114, 0.991478] }, { "keytime": 5307.668457, "rotation": [ 0.017835, -0.064097, 0.109766, 0.991728] }, { "keytime": 5341.001953, "rotation": [ 0.016715, -0.064639, 0.107090, 0.992005] }, { "keytime": 5374.335449, "rotation": [ 0.015527, -0.065214, 0.104249, 0.992289] }, { "keytime": 5407.668945, "rotation": [ 0.014211, -0.065851, 0.101100, 0.992593] }, { "keytime": 5441.002441, "rotation": [ 0.012759, -0.066553, 0.097626, 0.992913] }, { "keytime": 5474.335938, "rotation": [ 0.011259, -0.067276, 0.094036, 0.993229] }, { "keytime": 5507.669434, "rotation": [ 0.009674, -0.068039, 0.090241, 0.993546] }, { "keytime": 5541.002930, "rotation": [ 0.007955, -0.068864, 0.086125, 0.993870] }, { "keytime": 5574.336426, "rotation": [ 0.006188, -0.069713, 0.081891, 0.994181] }, { "keytime": 5607.669922, "rotation": [ 0.004357, -0.070591, 0.077500, 0.994481] }, { "keytime": 5641.003418, "rotation": [ 0.002407, -0.071523, 0.072826, 0.994774] }, { "keytime": 5674.336914, "rotation": [ 0.000461, -0.072449, 0.068159, 0.995040] }, { "keytime": 5707.670410, "rotation": [-0.001533, -0.073396, 0.063378, 0.995286] }, { "keytime": 5741.003906, "rotation": [-0.003633, -0.074395, 0.058335, 0.995515] }, { "keytime": 5774.337402, "rotation": [-0.005696, -0.075373, 0.053380, 0.995709] }, { "keytime": 5807.670898, "rotation": [-0.007775, -0.076356, 0.048385, 0.995876] }, { "keytime": 5841.004395, "rotation": [-0.009927, -0.077369, 0.043216, 0.996016] }, { "keytime": 5874.337891, "rotation": [-0.012015, -0.078349, 0.038198, 0.996121] }, { "keytime": 5907.671387, "rotation": [-0.014085, -0.079323, 0.033218, 0.996196] }, { "keytime": 5941.004883, "rotation": [-0.016193, -0.080312, 0.028144, 0.996241] }, { "keytime": 5974.338379, "rotation": [-0.018207, -0.081253, 0.023295, 0.996255] }, { "keytime": 6007.671875, "rotation": [-0.020183, -0.082173, 0.018538, 0.996241] }, { "keytime": 6041.005371, "rotation": [-0.022170, -0.083095, 0.013754, 0.996200] }, { "keytime": 6074.338867, "rotation": [-0.024021, -0.083956, 0.009292, 0.996137] }, { "keytime": 6107.672363, "rotation": [-0.025807, -0.084785, 0.004985, 0.996053] }, { "keytime": 6141.005859, "rotation": [-0.027574, -0.085601, 0.000725, 0.995948] }, { "keytime": 6174.339355, "rotation": [-0.029212, -0.086356, -0.003225, 0.995831] }, { "keytime": 6207.672852, "rotation": [-0.030767, -0.087071, -0.006977, 0.995702] }, { "keytime": 6241.006348, "rotation": [-0.032250, -0.087755, -0.010558, 0.995564] }, { "keytime": 6274.339844, "rotation": [-0.033594, -0.088372, -0.013804, 0.995425] }, { "keytime": 6307.673340, "rotation": [-0.034845, -0.088945, -0.016824, 0.995285] }, { "keytime": 6341.006836, "rotation": [-0.036030, -0.089488, -0.019687, 0.995141] }, { "keytime": 6374.340332, "rotation": [-0.037080, -0.089967, -0.022222, 0.995006] }, { "keytime": 6407.673828, "rotation": [-0.037993, -0.090385, -0.024429, 0.994882] }, { "keytime": 6441.007324, "rotation": [-0.038827, -0.090765, -0.026444, 0.994764] }, { "keytime": 6474.340820, "rotation": [-0.039529, -0.091085, -0.028142, 0.994660] }, { "keytime": 6507.674316, "rotation": [-0.040127, -0.091358, -0.029589, 0.994569] }, { "keytime": 6541.007812, "rotation": [-0.040632, -0.091587, -0.030809, 0.994491] }, { "keytime": 6574.341309, "rotation": [-0.040981, -0.091746, -0.031652, 0.994435] }, { "keytime": 6607.674805, "rotation": [-0.041226, -0.091858, -0.032245, 0.994396] } ] }, { "boneId": "Bone_015", "keyframes": [ { "keytime": 41.000000, "rotation": [-0.330449, 0.523340, -0.137150, 0.773375] }, { "keytime": 74.333328, "rotation": [-0.330446, 0.523341, -0.137148, 0.773376] }, { "keytime": 107.666664, "rotation": [-0.330440, 0.523343, -0.137144, 0.773377] }, { "keytime": 141.000000, "rotation": [-0.330429, 0.523348, -0.137138, 0.773380] }, { "keytime": 174.333328, "rotation": [-0.330415, 0.523353, -0.137130, 0.773384] }, { "keytime": 207.666656, "rotation": [-0.330396, 0.523361, -0.137120, 0.773388] }, { "keytime": 240.999985, "rotation": [-0.330373, 0.523371, -0.137107, 0.773394] }, { "keytime": 274.333313, "rotation": [-0.330344, 0.523382, -0.137091, 0.773401] }, { "keytime": 307.666656, "rotation": [-0.330313, 0.523395, -0.137074, 0.773409] }, { "keytime": 341.000000, "rotation": [-0.330276, 0.523410, -0.137053, 0.773418] }, { "keytime": 374.333344, "rotation": [-0.330236, 0.523426, -0.137031, 0.773428] }, { "keytime": 407.666687, "rotation": [-0.330192, 0.523445, -0.137006, 0.773440] }, { "keytime": 441.000031, "rotation": [-0.330141, 0.523465, -0.136978, 0.773452] }, { "keytime": 474.333374, "rotation": [-0.330089, 0.523486, -0.136949, 0.773465] }, { "keytime": 507.666718, "rotation": [-0.330032, 0.523509, -0.136917, 0.773479] }, { "keytime": 541.000061, "rotation": [-0.329971, 0.523535, -0.136883, 0.773495] }, { "keytime": 574.333374, "rotation": [-0.329906, 0.523561, -0.136847, 0.773511] }, { "keytime": 607.666687, "rotation": [-0.329837, 0.523589, -0.136808, 0.773528] }, { "keytime": 674.333313, "rotation": [-0.329688, 0.523650, -0.136725, 0.773565] }, { "keytime": 707.666626, "rotation": [-0.329609, 0.523682, -0.136681, 0.773585] }, { "keytime": 740.999939, "rotation": [-0.329527, 0.523716, -0.136635, 0.773605] }, { "keytime": 807.666565, "rotation": [-0.329351, 0.523788, -0.136537, 0.773649] }, { "keytime": 840.999878, "rotation": [-0.329260, 0.523825, -0.136487, 0.773671] }, { "keytime": 907.666504, "rotation": [-0.329068, 0.523903, -0.136380, 0.773719] }, { "keytime": 940.999817, "rotation": [-0.328970, 0.523943, -0.136325, 0.773743] }, { "keytime": 1040.999756, "rotation": [-0.328664, 0.524068, -0.136154, 0.773819] }, { "keytime": 1074.333130, "rotation": [-0.328557, 0.524111, -0.136095, 0.773845] }, { "keytime": 1140.999878, "rotation": [-0.328347, 0.524197, -0.135979, 0.773896] }, { "keytime": 1174.333252, "rotation": [-0.328239, 0.524241, -0.135919, 0.773923] }, { "keytime": 1207.666626, "rotation": [-0.328135, 0.524284, -0.135861, 0.773948] }, { "keytime": 1241.000000, "rotation": [-0.328027, 0.524328, -0.135801, 0.773975] }, { "keytime": 1341.000122, "rotation": [-0.327713, 0.524456, -0.135627, 0.774051] }, { "keytime": 1374.333496, "rotation": [-0.327612, 0.524497, -0.135571, 0.774076] }, { "keytime": 1441.000244, "rotation": [-0.327414, 0.524579, -0.135461, 0.774124] }, { "keytime": 1474.333618, "rotation": [-0.327319, 0.524617, -0.135408, 0.774147] }, { "keytime": 1541.000366, "rotation": [-0.327133, 0.524693, -0.135305, 0.774192] }, { "keytime": 1574.333740, "rotation": [-0.327047, 0.524729, -0.135257, 0.774213] }, { "keytime": 1641.000488, "rotation": [-0.326880, 0.524797, -0.135164, 0.774253] }, { "keytime": 1674.333862, "rotation": [-0.326802, 0.524829, -0.135121, 0.774272] }, { "keytime": 1707.667236, "rotation": [-0.326728, 0.524860, -0.135080, 0.774290] }, { "keytime": 1741.000610, "rotation": [-0.326656, 0.524890, -0.135040, 0.774307] }, { "keytime": 1774.333984, "rotation": [-0.326589, 0.524917, -0.135003, 0.774323] }, { "keytime": 1841.000732, "rotation": [-0.326465, 0.524968, -0.134935, 0.774352] }, { "keytime": 1874.334106, "rotation": [-0.326410, 0.524991, -0.134905, 0.774365] }, { "keytime": 1907.667480, "rotation": [-0.326360, 0.525012, -0.134877, 0.774377] }, { "keytime": 1941.000854, "rotation": [-0.326312, 0.525032, -0.134851, 0.774388] }, { "keytime": 1974.334229, "rotation": [-0.326269, 0.525050, -0.134827, 0.774398] }, { "keytime": 2007.667603, "rotation": [-0.326231, 0.525067, -0.134806, 0.774407] }, { "keytime": 2041.000977, "rotation": [-0.326195, 0.525082, -0.134787, 0.774415] }, { "keytime": 2074.334473, "rotation": [-0.326166, 0.525094, -0.134771, 0.774422] }, { "keytime": 2107.667725, "rotation": [-0.326140, 0.525105, -0.134757, 0.774427] }, { "keytime": 2141.000977, "rotation": [-0.326118, 0.525115, -0.134745, 0.774432] }, { "keytime": 2174.334229, "rotation": [-0.326101, 0.525123, -0.134736, 0.774435] }, { "keytime": 2207.667480, "rotation": [-0.326088, 0.525129, -0.134729, 0.774438] }, { "keytime": 2241.000732, "rotation": [-0.326079, 0.525133, -0.134725, 0.774439] }, { "keytime": 2274.333984, "rotation": [-0.326075, 0.525136, -0.134723, 0.774440] }, { "keytime": 2307.667236, "rotation": [-0.326075, 0.525137, -0.134724, 0.774439] }, { "keytime": 2341.000488, "rotation": [-0.326078, 0.525137, -0.134726, 0.774437] }, { "keytime": 2374.333740, "rotation": [-0.326085, 0.525135, -0.134731, 0.774435] }, { "keytime": 2407.666992, "rotation": [-0.326097, 0.525133, -0.134738, 0.774430] }, { "keytime": 2441.000244, "rotation": [-0.326112, 0.525129, -0.134747, 0.774425] }, { "keytime": 2474.333496, "rotation": [-0.326130, 0.525125, -0.134759, 0.774418] }, { "keytime": 2507.666748, "rotation": [-0.326152, 0.525119, -0.134772, 0.774410] }, { "keytime": 2541.000000, "rotation": [-0.326179, 0.525112, -0.134788, 0.774401] }, { "keytime": 2574.333252, "rotation": [-0.326209, 0.525104, -0.134807, 0.774391] }, { "keytime": 2607.666504, "rotation": [-0.326243, 0.525095, -0.134827, 0.774379] }, { "keytime": 2640.999756, "rotation": [-0.326280, 0.525084, -0.134849, 0.774366] }, { "keytime": 2674.333008, "rotation": [-0.326322, 0.525073, -0.134875, 0.774352] }, { "keytime": 2707.666260, "rotation": [-0.326367, 0.525060, -0.134901, 0.774337] }, { "keytime": 2740.999512, "rotation": [-0.326416, 0.525047, -0.134931, 0.774321] }, { "keytime": 2807.666016, "rotation": [-0.326526, 0.525016, -0.134996, 0.774284] }, { "keytime": 2840.999268, "rotation": [-0.326585, 0.524999, -0.135032, 0.774264] }, { "keytime": 2874.332520, "rotation": [-0.326649, 0.524981, -0.135070, 0.774243] }, { "keytime": 2907.665771, "rotation": [-0.326716, 0.524961, -0.135110, 0.774220] }, { "keytime": 2940.999023, "rotation": [-0.326786, 0.524941, -0.135152, 0.774197] }, { "keytime": 3007.665527, "rotation": [-0.326938, 0.524898, -0.135242, 0.774147] }, { "keytime": 3040.998779, "rotation": [-0.327017, 0.524875, -0.135290, 0.774121] }, { "keytime": 3107.665283, "rotation": [-0.327189, 0.524825, -0.135392, 0.774064] }, { "keytime": 3140.998535, "rotation": [-0.327277, 0.524800, -0.135444, 0.774035] }, { "keytime": 3207.665039, "rotation": [-0.327465, 0.524745, -0.135556, 0.773973] }, { "keytime": 3240.998291, "rotation": [-0.327561, 0.524717, -0.135613, 0.773941] }, { "keytime": 3340.998047, "rotation": [-0.327866, 0.524629, -0.135794, 0.773840] }, { "keytime": 3440.997803, "rotation": [-0.328188, 0.524534, -0.135984, 0.773734] }, { "keytime": 3474.331055, "rotation": [-0.328300, 0.524501, -0.136051, 0.773697] }, { "keytime": 3540.997559, "rotation": [-0.328520, 0.524437, -0.136182, 0.773625] }, { "keytime": 3574.330811, "rotation": [-0.328635, 0.524403, -0.136250, 0.773587] }, { "keytime": 3640.997314, "rotation": [-0.328859, 0.524337, -0.136382, 0.773513] }, { "keytime": 3674.330566, "rotation": [-0.328974, 0.524303, -0.136450, 0.773475] }, { "keytime": 3740.997070, "rotation": [-0.329197, 0.524237, -0.136582, 0.773402] }, { "keytime": 3774.330322, "rotation": [-0.329311, 0.524203, -0.136650, 0.773364] }, { "keytime": 3874.330078, "rotation": [-0.329641, 0.524106, -0.136846, 0.773255] }, { "keytime": 3907.663330, "rotation": [-0.329748, 0.524074, -0.136909, 0.773220] }, { "keytime": 3974.329834, "rotation": [-0.329959, 0.524011, -0.137034, 0.773150] }, { "keytime": 4007.663086, "rotation": [-0.330060, 0.523981, -0.137094, 0.773116] }, { "keytime": 4074.329590, "rotation": [-0.330259, 0.523922, -0.137212, 0.773051] }, { "keytime": 4107.663086, "rotation": [-0.330354, 0.523894, -0.137268, 0.773019] }, { "keytime": 4174.329590, "rotation": [-0.330538, 0.523839, -0.137377, 0.772958] }, { "keytime": 4207.663086, "rotation": [-0.330624, 0.523814, -0.137428, 0.772930] }, { "keytime": 4274.330078, "rotation": [-0.330790, 0.523764, -0.137527, 0.772875] }, { "keytime": 4307.663574, "rotation": [-0.330868, 0.523741, -0.137572, 0.772849] }, { "keytime": 4374.330566, "rotation": [-0.331015, 0.523697, -0.137660, 0.772800] }, { "keytime": 4407.664062, "rotation": [-0.331082, 0.523677, -0.137699, 0.772778] }, { "keytime": 4474.331055, "rotation": [-0.331208, 0.523639, -0.137774, 0.772736] }, { "keytime": 4507.664551, "rotation": [-0.331266, 0.523622, -0.137808, 0.772717] }, { "keytime": 4540.998047, "rotation": [-0.331319, 0.523606, -0.137839, 0.772699] }, { "keytime": 4574.331543, "rotation": [-0.331370, 0.523591, -0.137869, 0.772683] }, { "keytime": 4607.665039, "rotation": [-0.331416, 0.523577, -0.137896, 0.772668] }, { "keytime": 4640.998535, "rotation": [-0.331458, 0.523565, -0.137921, 0.772653] }, { "keytime": 4674.332031, "rotation": [-0.331498, 0.523553, -0.137945, 0.772640] }, { "keytime": 4707.665527, "rotation": [-0.331533, 0.523542, -0.137966, 0.772629] }, { "keytime": 4740.999023, "rotation": [-0.331563, 0.523533, -0.137984, 0.772619] }, { "keytime": 4774.332520, "rotation": [-0.331591, 0.523525, -0.138000, 0.772609] }, { "keytime": 4807.666016, "rotation": [-0.331614, 0.523518, -0.138014, 0.772602] }, { "keytime": 4840.999512, "rotation": [-0.331634, 0.523512, -0.138026, 0.772595] }, { "keytime": 4874.333008, "rotation": [-0.331651, 0.523507, -0.138036, 0.772589] }, { "keytime": 4907.666504, "rotation": [-0.331663, 0.523503, -0.138043, 0.772586] }, { "keytime": 4941.000000, "rotation": [-0.331671, 0.523501, -0.138048, 0.772583] }, { "keytime": 4974.333496, "rotation": [-0.331676, 0.523499, -0.138050, 0.772581] }, { "keytime": 5007.666992, "rotation": [-0.331677, 0.523499, -0.138051, 0.772581] }, { "keytime": 5041.000488, "rotation": [-0.331676, 0.523499, -0.138050, 0.772582] }, { "keytime": 5074.333984, "rotation": [-0.331672, 0.523498, -0.138047, 0.772584] }, { "keytime": 5107.667480, "rotation": [-0.331666, 0.523497, -0.138043, 0.772588] }, { "keytime": 5174.334473, "rotation": [-0.331647, 0.523495, -0.138029, 0.772600] }, { "keytime": 5207.667969, "rotation": [-0.331635, 0.523493, -0.138020, 0.772608] }, { "keytime": 5274.334961, "rotation": [-0.331603, 0.523489, -0.137997, 0.772629] }, { "keytime": 5307.668457, "rotation": [-0.331584, 0.523487, -0.137983, 0.772641] }, { "keytime": 5374.335449, "rotation": [-0.331540, 0.523481, -0.137950, 0.772670] }, { "keytime": 5407.668945, "rotation": [-0.331515, 0.523478, -0.137932, 0.772686] }, { "keytime": 5474.335938, "rotation": [-0.331458, 0.523470, -0.137890, 0.772723] }, { "keytime": 5507.669434, "rotation": [-0.331428, 0.523467, -0.137868, 0.772742] }, { "keytime": 5574.336426, "rotation": [-0.331361, 0.523458, -0.137819, 0.772786] }, { "keytime": 5607.669922, "rotation": [-0.331326, 0.523453, -0.137793, 0.772808] }, { "keytime": 5707.670410, "rotation": [-0.331214, 0.523439, -0.137710, 0.772881] }, { "keytime": 5974.338379, "rotation": [-0.330896, 0.523397, -0.137478, 0.773087] }, { "keytime": 6041.005371, "rotation": [-0.330820, 0.523387, -0.137422, 0.773136] }, { "keytime": 6141.005859, "rotation": [-0.330716, 0.523374, -0.137345, 0.773203] }, { "keytime": 6207.672852, "rotation": [-0.330654, 0.523366, -0.137300, 0.773242] }, { "keytime": 6241.006348, "rotation": [-0.330626, 0.523363, -0.137279, 0.773261] }, { "keytime": 6307.673340, "rotation": [-0.330576, 0.523356, -0.137243, 0.773293] }, { "keytime": 6341.006836, "rotation": [-0.330553, 0.523353, -0.137226, 0.773308] }, { "keytime": 6374.340332, "rotation": [-0.330533, 0.523350, -0.137211, 0.773321] }, { "keytime": 6441.007324, "rotation": [-0.330499, 0.523346, -0.137186, 0.773343] }, { "keytime": 6474.340820, "rotation": [-0.330486, 0.523344, -0.137176, 0.773352] }, { "keytime": 6541.007812, "rotation": [-0.330464, 0.523342, -0.137161, 0.773365] }, { "keytime": 6607.674805, "rotation": [-0.330453, 0.523340, -0.137152, 0.773373] } ] }, { "boneId": "Bone_016", "keyframes": [ { "keytime": 41.000000, "rotation": [ 0.011480, 0.074558, 0.092250, 0.992874] }, { "keytime": 74.333328, "rotation": [ 0.011481, 0.074559, 0.092252, 0.992874] }, { "keytime": 107.666664, "rotation": [ 0.011484, 0.074560, 0.092257, 0.992873] }, { "keytime": 141.000000, "rotation": [ 0.011489, 0.074561, 0.092265, 0.992872] }, { "keytime": 174.333328, "rotation": [ 0.011496, 0.074563, 0.092277, 0.992871] }, { "keytime": 207.666656, "rotation": [ 0.011504, 0.074564, 0.092291, 0.992870] }, { "keytime": 240.999985, "rotation": [ 0.011515, 0.074566, 0.092310, 0.992868] }, { "keytime": 274.333313, "rotation": [ 0.011528, 0.074568, 0.092332, 0.992865] }, { "keytime": 307.666656, "rotation": [ 0.011543, 0.074571, 0.092357, 0.992863] }, { "keytime": 341.000000, "rotation": [ 0.011560, 0.074574, 0.092386, 0.992859] }, { "keytime": 374.333344, "rotation": [ 0.011578, 0.074577, 0.092418, 0.992856] }, { "keytime": 407.666687, "rotation": [ 0.011598, 0.074580, 0.092453, 0.992852] }, { "keytime": 474.333374, "rotation": [ 0.011646, 0.074587, 0.092534, 0.992844] }, { "keytime": 507.666718, "rotation": [ 0.011672, 0.074591, 0.092579, 0.992839] }, { "keytime": 541.000061, "rotation": [ 0.011700, 0.074595, 0.092628, 0.992834] }, { "keytime": 574.333374, "rotation": [ 0.011730, 0.074600, 0.092679, 0.992828] }, { "keytime": 607.666687, "rotation": [ 0.011762, 0.074604, 0.092733, 0.992822] }, { "keytime": 674.333313, "rotation": [ 0.011831, 0.074614, 0.092851, 0.992810] }, { "keytime": 707.666626, "rotation": [ 0.011867, 0.074619, 0.092913, 0.992803] }, { "keytime": 740.999939, "rotation": [ 0.011905, 0.074625, 0.092979, 0.992796] }, { "keytime": 807.666565, "rotation": [ 0.011986, 0.074636, 0.093118, 0.992781] }, { "keytime": 840.999878, "rotation": [ 0.012028, 0.074642, 0.093189, 0.992774] }, { "keytime": 940.999817, "rotation": [ 0.012162, 0.074661, 0.093419, 0.992749] }, { "keytime": 1040.999756, "rotation": [ 0.012302, 0.074681, 0.093661, 0.992723] }, { "keytime": 1140.999878, "rotation": [ 0.012448, 0.074703, 0.093910, 0.992696] }, { "keytime": 1174.333252, "rotation": [ 0.012498, 0.074712, 0.093996, 0.992687] }, { "keytime": 1207.666626, "rotation": [ 0.012545, 0.074720, 0.094078, 0.992678] }, { "keytime": 1241.000000, "rotation": [ 0.012595, 0.074729, 0.094164, 0.992668] }, { "keytime": 1307.666748, "rotation": [ 0.012690, 0.074746, 0.094327, 0.992650] }, { "keytime": 1341.000122, "rotation": [ 0.012738, 0.074754, 0.094410, 0.992641] }, { "keytime": 1374.333496, "rotation": [ 0.012785, 0.074763, 0.094490, 0.992632] }, { "keytime": 1441.000244, "rotation": [ 0.012876, 0.074779, 0.094646, 0.992615] }, { "keytime": 1541.000366, "rotation": [ 0.013004, 0.074803, 0.094868, 0.992590] }, { "keytime": 1574.333740, "rotation": [ 0.013044, 0.074810, 0.094936, 0.992583] }, { "keytime": 1641.000488, "rotation": [ 0.013120, 0.074825, 0.095068, 0.992568] }, { "keytime": 1674.333862, "rotation": [ 0.013156, 0.074832, 0.095129, 0.992561] }, { "keytime": 1741.000610, "rotation": [ 0.013223, 0.074846, 0.095244, 0.992548] }, { "keytime": 1774.333984, "rotation": [ 0.013253, 0.074854, 0.095297, 0.992542] }, { "keytime": 1841.000732, "rotation": [ 0.013309, 0.074869, 0.095394, 0.992531] }, { "keytime": 1874.334106, "rotation": [ 0.013334, 0.074876, 0.095438, 0.992526] }, { "keytime": 1941.000854, "rotation": [ 0.013379, 0.074889, 0.095515, 0.992517] }, { "keytime": 1974.334229, "rotation": [ 0.013398, 0.074895, 0.095549, 0.992513] }, { "keytime": 2007.667603, "rotation": [ 0.013415, 0.074901, 0.095579, 0.992509] }, { "keytime": 2041.000977, "rotation": [ 0.013431, 0.074907, 0.095607, 0.992506] }, { "keytime": 2074.334473, "rotation": [ 0.013444, 0.074913, 0.095630, 0.992503] }, { "keytime": 2107.667725, "rotation": [ 0.013456, 0.074918, 0.095650, 0.992501] }, { "keytime": 2141.000977, "rotation": [ 0.013465, 0.074923, 0.095667, 0.992498] }, { "keytime": 2174.334229, "rotation": [ 0.013473, 0.074927, 0.095681, 0.992497] }, { "keytime": 2207.667480, "rotation": [ 0.013479, 0.074932, 0.095691, 0.992495] }, { "keytime": 2241.000732, "rotation": [ 0.013482, 0.074936, 0.095698, 0.992494] }, { "keytime": 2274.333984, "rotation": [ 0.013483, 0.074940, 0.095701, 0.992494] }, { "keytime": 2307.667236, "rotation": [ 0.013483, 0.074943, 0.095701, 0.992493] }, { "keytime": 2341.000488, "rotation": [ 0.013481, 0.074947, 0.095698, 0.992493] }, { "keytime": 2374.333740, "rotation": [ 0.013478, 0.074952, 0.095693, 0.992494] }, { "keytime": 2407.666992, "rotation": [ 0.013472, 0.074956, 0.095684, 0.992494] }, { "keytime": 2441.000244, "rotation": [ 0.013464, 0.074961, 0.095672, 0.992495] }, { "keytime": 2474.333496, "rotation": [ 0.013455, 0.074964, 0.095657, 0.992496] }, { "keytime": 2507.666748, "rotation": [ 0.013444, 0.074968, 0.095640, 0.992498] }, { "keytime": 2541.000000, "rotation": [ 0.013432, 0.074972, 0.095619, 0.992500] }, { "keytime": 2574.333252, "rotation": [ 0.013417, 0.074976, 0.095595, 0.992502] }, { "keytime": 2607.666504, "rotation": [ 0.013401, 0.074981, 0.095568, 0.992504] }, { "keytime": 2640.999756, "rotation": [ 0.013383, 0.074985, 0.095539, 0.992507] }, { "keytime": 2707.666260, "rotation": [ 0.013342, 0.074993, 0.095471, 0.992514] }, { "keytime": 2740.999512, "rotation": [ 0.013318, 0.074996, 0.095432, 0.992517] }, { "keytime": 2807.666016, "rotation": [ 0.013266, 0.075005, 0.095346, 0.992526] }, { "keytime": 2840.999268, "rotation": [ 0.013238, 0.075009, 0.095299, 0.992530] }, { "keytime": 2907.665771, "rotation": [ 0.013176, 0.075018, 0.095196, 0.992540] }, { "keytime": 2940.999023, "rotation": [ 0.013142, 0.075021, 0.095140, 0.992546] }, { "keytime": 3007.665527, "rotation": [ 0.013071, 0.075028, 0.095021, 0.992558] }, { "keytime": 3040.998779, "rotation": [ 0.013033, 0.075031, 0.094959, 0.992564] }, { "keytime": 3107.665283, "rotation": [ 0.012952, 0.075040, 0.094824, 0.992577] }, { "keytime": 3140.998535, "rotation": [ 0.012911, 0.075044, 0.094754, 0.992584] }, { "keytime": 3207.665039, "rotation": [ 0.012822, 0.075051, 0.094606, 0.992599] }, { "keytime": 3240.998291, "rotation": [ 0.012777, 0.075055, 0.094530, 0.992606] }, { "keytime": 3340.998047, "rotation": [ 0.012633, 0.075064, 0.094290, 0.992630] }, { "keytime": 3440.997803, "rotation": [ 0.012482, 0.075073, 0.094037, 0.992656] }, { "keytime": 3540.997559, "rotation": [ 0.012325, 0.075082, 0.093776, 0.992682] }, { "keytime": 3574.330811, "rotation": [ 0.012271, 0.075085, 0.093685, 0.992691] }, { "keytime": 3640.997314, "rotation": [ 0.012166, 0.075090, 0.093509, 0.992708] }, { "keytime": 3674.330566, "rotation": [ 0.012112, 0.075093, 0.093419, 0.992717] }, { "keytime": 3740.997070, "rotation": [ 0.012007, 0.075098, 0.093243, 0.992734] }, { "keytime": 3774.330322, "rotation": [ 0.011954, 0.075101, 0.093153, 0.992743] }, { "keytime": 3840.996826, "rotation": [ 0.011851, 0.075105, 0.092980, 0.992761] }, { "keytime": 3874.330078, "rotation": [ 0.011798, 0.075107, 0.092892, 0.992769] }, { "keytime": 3974.329834, "rotation": [ 0.011650, 0.075113, 0.092642, 0.992794] }, { "keytime": 4074.329590, "rotation": [ 0.011508, 0.075120, 0.092405, 0.992817] }, { "keytime": 4174.329590, "rotation": [ 0.011377, 0.075124, 0.092186, 0.992839] }, { "keytime": 4207.663086, "rotation": [ 0.011336, 0.075125, 0.092117, 0.992845] }, { "keytime": 4274.330078, "rotation": [ 0.011258, 0.075129, 0.091986, 0.992858] }, { "keytime": 4307.663574, "rotation": [ 0.011222, 0.075130, 0.091925, 0.992864] }, { "keytime": 4374.330566, "rotation": [ 0.011153, 0.075132, 0.091809, 0.992876] }, { "keytime": 4407.664062, "rotation": [ 0.011121, 0.075133, 0.091756, 0.992881] }, { "keytime": 4474.331055, "rotation": [ 0.011062, 0.075135, 0.091657, 0.992890] }, { "keytime": 4507.664551, "rotation": [ 0.011035, 0.075137, 0.091612, 0.992895] }, { "keytime": 4540.998047, "rotation": [ 0.011010, 0.075137, 0.091569, 0.992899] }, { "keytime": 4574.331543, "rotation": [ 0.010986, 0.075137, 0.091529, 0.992903] }, { "keytime": 4607.665039, "rotation": [ 0.010965, 0.075138, 0.091493, 0.992906] }, { "keytime": 4674.332031, "rotation": [ 0.010926, 0.075140, 0.091429, 0.992913] }, { "keytime": 4707.665527, "rotation": [ 0.010910, 0.075140, 0.091401, 0.992915] }, { "keytime": 4740.999023, "rotation": [ 0.010895, 0.075140, 0.091377, 0.992918] }, { "keytime": 4774.332520, "rotation": [ 0.010882, 0.075140, 0.091355, 0.992920] }, { "keytime": 4807.666016, "rotation": [ 0.010871, 0.075140, 0.091337, 0.992922] }, { "keytime": 4840.999512, "rotation": [ 0.010862, 0.075141, 0.091321, 0.992923] }, { "keytime": 4874.333008, "rotation": [ 0.010854, 0.075142, 0.091308, 0.992924] }, { "keytime": 4907.666504, "rotation": [ 0.010849, 0.075142, 0.091298, 0.992925] }, { "keytime": 4941.000000, "rotation": [ 0.010845, 0.075141, 0.091292, 0.992926] }, { "keytime": 4974.333496, "rotation": [ 0.010843, 0.075141, 0.091288, 0.992926] }, { "keytime": 5007.666992, "rotation": [ 0.010842, 0.075141, 0.091287, 0.992926] }, { "keytime": 5041.000488, "rotation": [ 0.010842, 0.075142, 0.091288, 0.992926] }, { "keytime": 5107.667480, "rotation": [ 0.010848, 0.075137, 0.091296, 0.992926] }, { "keytime": 5174.334473, "rotation": [ 0.010857, 0.075128, 0.091310, 0.992925] }, { "keytime": 5207.667969, "rotation": [ 0.010864, 0.075122, 0.091320, 0.992925] }, { "keytime": 5274.334961, "rotation": [ 0.010880, 0.075107, 0.091345, 0.992923] }, { "keytime": 5307.668457, "rotation": [ 0.010890, 0.075098, 0.091360, 0.992922] }, { "keytime": 5374.335449, "rotation": [ 0.010914, 0.075076, 0.091395, 0.992921] }, { "keytime": 5407.668945, "rotation": [ 0.010927, 0.075065, 0.091415, 0.992920] }, { "keytime": 5474.335938, "rotation": [ 0.010956, 0.075037, 0.091459, 0.992917] }, { "keytime": 5507.669434, "rotation": [ 0.010972, 0.075023, 0.091483, 0.992916] }, { "keytime": 5607.669922, "rotation": [ 0.011025, 0.074975, 0.091562, 0.992912] }, { "keytime": 5707.670410, "rotation": [ 0.011083, 0.074921, 0.091651, 0.992907] }, { "keytime": 5974.338379, "rotation": [ 0.011247, 0.074770, 0.091899, 0.992893] }, { "keytime": 6041.005371, "rotation": [ 0.011288, 0.074735, 0.091959, 0.992890] }, { "keytime": 6141.005859, "rotation": [ 0.011341, 0.074685, 0.092041, 0.992886] }, { "keytime": 6207.672852, "rotation": [ 0.011373, 0.074657, 0.092089, 0.992883] }, { "keytime": 6241.006348, "rotation": [ 0.011388, 0.074642, 0.092111, 0.992882] }, { "keytime": 6307.673340, "rotation": [ 0.011414, 0.074619, 0.092150, 0.992880] }, { "keytime": 6341.006836, "rotation": [ 0.011425, 0.074608, 0.092168, 0.992879] }, { "keytime": 6374.340332, "rotation": [ 0.011437, 0.074598, 0.092184, 0.992878] }, { "keytime": 6441.007324, "rotation": [ 0.011454, 0.074582, 0.092210, 0.992876] }, { "keytime": 6507.674316, "rotation": [ 0.011467, 0.074570, 0.092230, 0.992875] }, { "keytime": 6541.007812, "rotation": [ 0.011472, 0.074565, 0.092238, 0.992875] }, { "keytime": 6607.674805, "rotation": [ 0.011478, 0.074560, 0.092247, 0.992874] } ] }, { "boneId": "Bone_017", "keyframes": [ { "keytime": 41.000000, "rotation": [-0.035056, 0.213184, -0.054648, 0.974852] }, { "keytime": 74.333328, "rotation": [-0.035055, 0.213185, -0.054646, 0.974852] }, { "keytime": 107.666664, "rotation": [-0.035053, 0.213185, -0.054642, 0.974853] }, { "keytime": 141.000000, "rotation": [-0.035050, 0.213185, -0.054636, 0.974853] }, { "keytime": 174.333328, "rotation": [-0.035046, 0.213185, -0.054628, 0.974854] }, { "keytime": 207.666656, "rotation": [-0.035041, 0.213185, -0.054617, 0.974854] }, { "keytime": 240.999985, "rotation": [-0.035035, 0.213186, -0.054603, 0.974855] }, { "keytime": 307.666656, "rotation": [-0.035018, 0.213188, -0.054567, 0.974858] }, { "keytime": 374.333344, "rotation": [-0.034996, 0.213188, -0.054522, 0.974861] }, { "keytime": 407.666687, "rotation": [-0.034983, 0.213190, -0.054495, 0.974862] }, { "keytime": 474.333374, "rotation": [-0.034954, 0.213192, -0.054434, 0.974866] }, { "keytime": 507.666718, "rotation": [-0.034939, 0.213193, -0.054401, 0.974868] }, { "keytime": 574.333374, "rotation": [-0.034903, 0.213196, -0.054326, 0.974873] }, { "keytime": 607.666687, "rotation": [-0.034883, 0.213198, -0.054285, 0.974876] }, { "keytime": 674.333313, "rotation": [-0.034841, 0.213201, -0.054197, 0.974882] }, { "keytime": 707.666626, "rotation": [-0.034819, 0.213202, -0.054150, 0.974885] }, { "keytime": 740.999939, "rotation": [-0.034796, 0.213204, -0.054101, 0.974888] }, { "keytime": 807.666565, "rotation": [-0.034746, 0.213209, -0.053997, 0.974894] }, { "keytime": 840.999878, "rotation": [-0.034721, 0.213211, -0.053943, 0.974898] }, { "keytime": 940.999817, "rotation": [-0.034639, 0.213218, -0.053772, 0.974909] }, { "keytime": 1040.999756, "rotation": [-0.034552, 0.213227, -0.053590, 0.974920] }, { "keytime": 1274.333374, "rotation": [-0.034344, 0.213247, -0.053152, 0.974947] }, { "keytime": 1341.000122, "rotation": [-0.034285, 0.213253, -0.053029, 0.974954] }, { "keytime": 1374.333496, "rotation": [-0.034257, 0.213256, -0.052969, 0.974958] }, { "keytime": 1441.000244, "rotation": [-0.034201, 0.213262, -0.052851, 0.974965] }, { "keytime": 1541.000366, "rotation": [-0.034121, 0.213272, -0.052686, 0.974974] }, { "keytime": 1641.000488, "rotation": [-0.034050, 0.213281, -0.052536, 0.974983] }, { "keytime": 1707.667236, "rotation": [-0.034007, 0.213288, -0.052446, 0.974988] }, { "keytime": 1741.000610, "rotation": [-0.033986, 0.213292, -0.052404, 0.974990] }, { "keytime": 1774.333984, "rotation": [-0.033967, 0.213296, -0.052365, 0.974992] }, { "keytime": 1841.000732, "rotation": [-0.033932, 0.213304, -0.052292, 0.974995] }, { "keytime": 1874.334106, "rotation": [-0.033917, 0.213306, -0.052259, 0.974997] }, { "keytime": 1941.000854, "rotation": [-0.033889, 0.213313, -0.052201, 0.975000] }, { "keytime": 1974.334229, "rotation": [-0.033877, 0.213316, -0.052176, 0.975001] }, { "keytime": 2041.000977, "rotation": [-0.033856, 0.213323, -0.052133, 0.975002] }, { "keytime": 2074.334473, "rotation": [-0.033847, 0.213327, -0.052116, 0.975002] }, { "keytime": 2107.667725, "rotation": [-0.033840, 0.213330, -0.052101, 0.975003] }, { "keytime": 2141.000977, "rotation": [-0.033834, 0.213333, -0.052088, 0.975003] }, { "keytime": 2174.334229, "rotation": [-0.033829, 0.213336, -0.052078, 0.975003] }, { "keytime": 2207.667480, "rotation": [-0.033825, 0.213340, -0.052070, 0.975003] }, { "keytime": 2241.000732, "rotation": [-0.033822, 0.213343, -0.052066, 0.975003] }, { "keytime": 2274.333984, "rotation": [-0.033821, 0.213347, -0.052063, 0.975002] }, { "keytime": 2307.667236, "rotation": [-0.033821, 0.213350, -0.052063, 0.975001] }, { "keytime": 2374.333740, "rotation": [-0.033824, 0.213355, -0.052070, 0.975000] }, { "keytime": 2407.666992, "rotation": [-0.033827, 0.213358, -0.052077, 0.974998] }, { "keytime": 2474.333496, "rotation": [-0.033836, 0.213365, -0.052097, 0.974996] }, { "keytime": 2507.666748, "rotation": [-0.033843, 0.213368, -0.052110, 0.974994] }, { "keytime": 2541.000000, "rotation": [-0.033850, 0.213372, -0.052126, 0.974992] }, { "keytime": 2574.333252, "rotation": [-0.033859, 0.213376, -0.052144, 0.974990] }, { "keytime": 2607.666504, "rotation": [-0.033869, 0.213380, -0.052164, 0.974988] }, { "keytime": 2640.999756, "rotation": [-0.033879, 0.213384, -0.052186, 0.974985] }, { "keytime": 2707.666260, "rotation": [-0.033904, 0.213393, -0.052237, 0.974980] }, { "keytime": 2740.999512, "rotation": [-0.033918, 0.213397, -0.052266, 0.974977] }, { "keytime": 2807.666016, "rotation": [-0.033950, 0.213407, -0.052330, 0.974970] }, { "keytime": 2840.999268, "rotation": [-0.033967, 0.213413, -0.052365, 0.974966] }, { "keytime": 2907.665771, "rotation": [-0.034005, 0.213422, -0.052442, 0.974959] }, { "keytime": 2940.999023, "rotation": [-0.034025, 0.213426, -0.052484, 0.974955] }, { "keytime": 3007.665527, "rotation": [-0.034069, 0.213436, -0.052573, 0.974946] }, { "keytime": 3040.998779, "rotation": [-0.034092, 0.213440, -0.052619, 0.974942] }, { "keytime": 3107.665283, "rotation": [-0.034141, 0.213450, -0.052720, 0.974933] }, { "keytime": 3140.998535, "rotation": [-0.034167, 0.213455, -0.052772, 0.974928] }, { "keytime": 3207.665039, "rotation": [-0.034222, 0.213466, -0.052882, 0.974918] }, { "keytime": 3240.998291, "rotation": [-0.034249, 0.213472, -0.052939, 0.974912] }, { "keytime": 3340.998047, "rotation": [-0.034337, 0.213489, -0.053118, 0.974896] }, { "keytime": 3440.997803, "rotation": [-0.034430, 0.213506, -0.053307, 0.974878] }, { "keytime": 3540.997559, "rotation": [-0.034527, 0.213521, -0.053503, 0.974861] }, { "keytime": 3707.663818, "rotation": [-0.034691, 0.213546, -0.053834, 0.974832] }, { "keytime": 3874.330078, "rotation": [-0.034852, 0.213571, -0.054160, 0.974802] }, { "keytime": 3974.329834, "rotation": [-0.034944, 0.213585, -0.054347, 0.974786] }, { "keytime": 4074.329590, "rotation": [-0.035030, 0.213598, -0.054524, 0.974770] }, { "keytime": 4174.329590, "rotation": [-0.035112, 0.213610, -0.054687, 0.974755] }, { "keytime": 4207.663086, "rotation": [-0.035137, 0.213614, -0.054738, 0.974750] }, { "keytime": 4274.330078, "rotation": [-0.035185, 0.213621, -0.054835, 0.974742] }, { "keytime": 4374.330566, "rotation": [-0.035250, 0.213631, -0.054968, 0.974730] }, { "keytime": 4440.997559, "rotation": [-0.035288, 0.213637, -0.055044, 0.974723] }, { "keytime": 4474.331055, "rotation": [-0.035306, 0.213639, -0.055081, 0.974719] }, { "keytime": 4507.664551, "rotation": [-0.035323, 0.213642, -0.055114, 0.974716] }, { "keytime": 4574.331543, "rotation": [-0.035353, 0.213646, -0.055176, 0.974711] }, { "keytime": 4607.665039, "rotation": [-0.035366, 0.213648, -0.055203, 0.974708] }, { "keytime": 4674.332031, "rotation": [-0.035390, 0.213651, -0.055251, 0.974704] }, { "keytime": 4707.665527, "rotation": [-0.035401, 0.213652, -0.055271, 0.974702] }, { "keytime": 4774.332520, "rotation": [-0.035417, 0.213654, -0.055306, 0.974699] }, { "keytime": 4807.666016, "rotation": [-0.035424, 0.213655, -0.055319, 0.974698] }, { "keytime": 4874.333008, "rotation": [-0.035435, 0.213656, -0.055341, 0.974696] }, { "keytime": 4941.000000, "rotation": [-0.035441, 0.213656, -0.055353, 0.974696] }, { "keytime": 5007.666992, "rotation": [-0.035443, 0.213655, -0.055356, 0.974695] }, { "keytime": 5074.333984, "rotation": [-0.035441, 0.213654, -0.055353, 0.974696] }, { "keytime": 5141.000977, "rotation": [-0.035436, 0.213648, -0.055345, 0.974698] }, { "keytime": 5207.667969, "rotation": [-0.035429, 0.213639, -0.055332, 0.974701] }, { "keytime": 5274.334961, "rotation": [-0.035419, 0.213627, -0.055314, 0.974705] }, { "keytime": 5341.001953, "rotation": [-0.035406, 0.213612, -0.055290, 0.974710] }, { "keytime": 5407.668945, "rotation": [-0.035391, 0.213593, -0.055263, 0.974716] }, { "keytime": 5507.669434, "rotation": [-0.035364, 0.213560, -0.055212, 0.974727] }, { "keytime": 5607.669922, "rotation": [-0.035332, 0.213521, -0.055154, 0.974740] }, { "keytime": 5707.670410, "rotation": [-0.035296, 0.213477, -0.055089, 0.974755] }, { "keytime": 5974.338379, "rotation": [-0.035198, 0.213357, -0.054905, 0.974795] }, { "keytime": 6041.005371, "rotation": [-0.035173, 0.213326, -0.054861, 0.974805] }, { "keytime": 6141.005859, "rotation": [-0.035140, 0.213287, -0.054802, 0.974818] }, { "keytime": 6241.006348, "rotation": [-0.035112, 0.213252, -0.054750, 0.974830] }, { "keytime": 6341.006836, "rotation": [-0.035089, 0.213224, -0.054708, 0.974839] }, { "keytime": 6374.340332, "rotation": [-0.035082, 0.213217, -0.054696, 0.974842] }, { "keytime": 6441.007324, "rotation": [-0.035072, 0.213204, -0.054677, 0.974846] }, { "keytime": 6507.674316, "rotation": [-0.035064, 0.213194, -0.054662, 0.974849] }, { "keytime": 6574.341309, "rotation": [-0.035059, 0.213188, -0.054653, 0.974851] }, { "keytime": 6607.674805, "rotation": [-0.035058, 0.213186, -0.054650, 0.974852] } ] }, { "boneId": "Bone_027", "keyframes": [ { "keytime": 41.000000, "rotation": [-0.498921, 0.029187, 0.124588, 0.857149] }, { "keytime": 174.333328, "rotation": [-0.498919, 0.029185, 0.124596, 0.857149] }, { "keytime": 240.999985, "rotation": [-0.498919, 0.029181, 0.124604, 0.857148] }, { "keytime": 341.000000, "rotation": [-0.498916, 0.029173, 0.124623, 0.857147] }, { "keytime": 407.666687, "rotation": [-0.498913, 0.029165, 0.124639, 0.857147] }, { "keytime": 507.666718, "rotation": [-0.498909, 0.029150, 0.124669, 0.857145] }, { "keytime": 607.666687, "rotation": [-0.498905, 0.029130, 0.124706, 0.857143] }, { "keytime": 740.999939, "rotation": [-0.498896, 0.029100, 0.124764, 0.857141] }, { "keytime": 840.999878, "rotation": [-0.498888, 0.029074, 0.124814, 0.857139] }, { "keytime": 1040.999756, "rotation": [-0.498874, 0.029014, 0.124926, 0.857133] }, { "keytime": 1374.333496, "rotation": [-0.498850, 0.028910, 0.125122, 0.857121] }, { "keytime": 1541.000366, "rotation": [-0.498838, 0.028862, 0.125211, 0.857117] }, { "keytime": 1674.333862, "rotation": [-0.498828, 0.028830, 0.125273, 0.857115] }, { "keytime": 1774.333984, "rotation": [-0.498822, 0.028809, 0.125313, 0.857114] }, { "keytime": 1841.000732, "rotation": [-0.498819, 0.028797, 0.125336, 0.857112] }, { "keytime": 1941.000854, "rotation": [-0.498816, 0.028783, 0.125365, 0.857110] }, { "keytime": 2007.667603, "rotation": [-0.498813, 0.028775, 0.125380, 0.857110] }, { "keytime": 2074.334473, "rotation": [-0.498810, 0.028769, 0.125393, 0.857110] }, { "keytime": 2174.334229, "rotation": [-0.498810, 0.028764, 0.125405, 0.857108] }, { "keytime": 2274.333984, "rotation": [-0.498809, 0.028763, 0.125411, 0.857108] }, { "keytime": 2341.000488, "rotation": [-0.498809, 0.028764, 0.125411, 0.857108] }, { "keytime": 2474.333496, "rotation": [-0.498811, 0.028771, 0.125402, 0.857108] }, { "keytime": 2574.333252, "rotation": [-0.498814, 0.028782, 0.125389, 0.857108] }, { "keytime": 2674.333008, "rotation": [-0.498816, 0.028797, 0.125371, 0.857109] }, { "keytime": 2840.999268, "rotation": [-0.498823, 0.028830, 0.125325, 0.857110] }, { "keytime": 2940.999023, "rotation": [-0.498829, 0.028855, 0.125291, 0.857111] }, { "keytime": 3074.332031, "rotation": [-0.498837, 0.028896, 0.125238, 0.857113] }, { "keytime": 3240.998291, "rotation": [-0.498850, 0.028955, 0.125160, 0.857115] }, { "keytime": 3440.997803, "rotation": [-0.498867, 0.029033, 0.125053, 0.857117] }, { "keytime": 3874.330078, "rotation": [-0.498905, 0.029212, 0.124802, 0.857126] }, { "keytime": 4040.996338, "rotation": [-0.498917, 0.029277, 0.124713, 0.857130] }, { "keytime": 4174.329590, "rotation": [-0.498926, 0.029326, 0.124648, 0.857132] }, { "keytime": 4274.330078, "rotation": [-0.498933, 0.029359, 0.124605, 0.857133] }, { "keytime": 4407.664062, "rotation": [-0.498943, 0.029393, 0.124553, 0.857134] }, { "keytime": 4507.664551, "rotation": [-0.498948, 0.029415, 0.124520, 0.857135] }, { "keytime": 4607.665039, "rotation": [-0.498951, 0.029434, 0.124493, 0.857136] }, { "keytime": 4674.332031, "rotation": [-0.498953, 0.029444, 0.124479, 0.857137] }, { "keytime": 4740.999023, "rotation": [-0.498956, 0.029453, 0.124467, 0.857137] }, { "keytime": 4840.999512, "rotation": [-0.498959, 0.029460, 0.124452, 0.857137] }, { "keytime": 4941.000000, "rotation": [-0.498958, 0.029463, 0.124444, 0.857138] }, { "keytime": 5074.333984, "rotation": [-0.498958, 0.029462, 0.124442, 0.857139] }, { "keytime": 5207.667969, "rotation": [-0.498958, 0.029453, 0.124444, 0.857139] }, { "keytime": 5341.001953, "rotation": [-0.498955, 0.029436, 0.124452, 0.857140] }, { "keytime": 5507.669434, "rotation": [-0.498950, 0.029405, 0.124467, 0.857142] }, { "keytime": 6174.339355, "rotation": [-0.498930, 0.029240, 0.124559, 0.857146] }, { "keytime": 6274.339844, "rotation": [-0.498928, 0.029220, 0.124569, 0.857146] }, { "keytime": 6407.673828, "rotation": [-0.498926, 0.029202, 0.124580, 0.857146] }, { "keytime": 6541.007812, "rotation": [-0.498923, 0.029191, 0.124587, 0.857147] }, { "keytime": 6607.674805, "rotation": [-0.498922, 0.029189, 0.124588, 0.857148] } ] }, { "boneId": "Bone_019", "keyframes": [ { "keytime": 41.000000, "rotation": [ 0.444681, 0.540613, 0.151456, 0.697895] }, { "keytime": 74.333328, "rotation": [ 0.444686, 0.540602, 0.151456, 0.697900] }, { "keytime": 107.666664, "rotation": [ 0.444699, 0.540577, 0.151456, 0.697911] }, { "keytime": 141.000000, "rotation": [ 0.444721, 0.540534, 0.151455, 0.697931] }, { "keytime": 174.333328, "rotation": [ 0.444750, 0.540477, 0.151454, 0.697956] }, { "keytime": 207.666656, "rotation": [ 0.444788, 0.540404, 0.151453, 0.697989] }, { "keytime": 240.999985, "rotation": [ 0.444836, 0.540311, 0.151451, 0.698032] }, { "keytime": 274.333313, "rotation": [ 0.444893, 0.540198, 0.151449, 0.698082] }, { "keytime": 307.666656, "rotation": [ 0.444957, 0.540073, 0.151447, 0.698139] }, { "keytime": 341.000000, "rotation": [ 0.445032, 0.539927, 0.151444, 0.698205] }, { "keytime": 374.333344, "rotation": [ 0.445112, 0.539770, 0.151442, 0.698275] }, { "keytime": 407.666687, "rotation": [ 0.445203, 0.539593, 0.151438, 0.698355] }, { "keytime": 441.000031, "rotation": [ 0.445305, 0.539394, 0.151435, 0.698445] }, { "keytime": 474.333374, "rotation": [ 0.445411, 0.539185, 0.151431, 0.698539] }, { "keytime": 507.666718, "rotation": [ 0.445526, 0.538962, 0.151427, 0.698639] }, { "keytime": 541.000061, "rotation": [ 0.445651, 0.538716, 0.151422, 0.698750] }, { "keytime": 574.333374, "rotation": [ 0.445783, 0.538459, 0.151418, 0.698865] }, { "keytime": 607.666687, "rotation": [ 0.445922, 0.538187, 0.151413, 0.698987] }, { "keytime": 641.000000, "rotation": [ 0.446072, 0.537893, 0.151407, 0.699119] }, { "keytime": 674.333313, "rotation": [ 0.446224, 0.537595, 0.151402, 0.699252] }, { "keytime": 707.666626, "rotation": [ 0.446383, 0.537283, 0.151396, 0.699392] }, { "keytime": 740.999939, "rotation": [ 0.446550, 0.536955, 0.151389, 0.699538] }, { "keytime": 807.666565, "rotation": [ 0.446906, 0.536256, 0.151376, 0.699850] }, { "keytime": 840.999878, "rotation": [ 0.447090, 0.535896, 0.151369, 0.700010] }, { "keytime": 907.666504, "rotation": [ 0.447478, 0.535133, 0.151354, 0.700349] }, { "keytime": 940.999817, "rotation": [ 0.447676, 0.534744, 0.151346, 0.700521] }, { "keytime": 974.333130, "rotation": [ 0.447883, 0.534336, 0.151338, 0.700702] }, { "keytime": 1007.666443, "rotation": [ 0.448087, 0.533934, 0.151329, 0.700879] }, { "keytime": 1040.999756, "rotation": [ 0.448294, 0.533527, 0.151321, 0.701059] }, { "keytime": 1074.333130, "rotation": [ 0.448510, 0.533102, 0.151312, 0.701246] }, { "keytime": 1140.999878, "rotation": [ 0.448932, 0.532269, 0.151294, 0.701612] }, { "keytime": 1174.333252, "rotation": [ 0.449151, 0.531838, 0.151285, 0.701801] }, { "keytime": 1207.666626, "rotation": [ 0.449362, 0.531420, 0.151275, 0.701985] }, { "keytime": 1241.000000, "rotation": [ 0.449580, 0.530990, 0.151266, 0.702172] }, { "keytime": 1274.333374, "rotation": [ 0.449790, 0.530576, 0.151257, 0.702353] }, { "keytime": 1307.666748, "rotation": [ 0.449998, 0.530165, 0.151247, 0.702532] }, { "keytime": 1341.000122, "rotation": [ 0.450210, 0.529746, 0.151238, 0.702714] }, { "keytime": 1374.333496, "rotation": [ 0.450413, 0.529344, 0.151228, 0.702889] }, { "keytime": 1407.666870, "rotation": [ 0.450612, 0.528951, 0.151219, 0.703059] }, { "keytime": 1441.000244, "rotation": [ 0.450814, 0.528553, 0.151209, 0.703231] }, { "keytime": 1474.333618, "rotation": [ 0.451005, 0.528176, 0.151200, 0.703395] }, { "keytime": 1541.000366, "rotation": [ 0.451379, 0.527436, 0.151181, 0.703713] }, { "keytime": 1574.333740, "rotation": [ 0.451554, 0.527091, 0.151172, 0.703861] }, { "keytime": 1607.667114, "rotation": [ 0.451723, 0.526757, 0.151163, 0.704005] }, { "keytime": 1641.000488, "rotation": [ 0.451892, 0.526425, 0.151154, 0.704147] }, { "keytime": 1674.333862, "rotation": [ 0.452049, 0.526116, 0.151146, 0.704279] }, { "keytime": 1707.667236, "rotation": [ 0.452199, 0.525819, 0.151137, 0.704406] }, { "keytime": 1741.000610, "rotation": [ 0.452346, 0.525532, 0.151129, 0.704528] }, { "keytime": 1774.333984, "rotation": [ 0.452481, 0.525267, 0.151121, 0.704640] }, { "keytime": 1807.667358, "rotation": [ 0.452608, 0.525017, 0.151113, 0.704746] }, { "keytime": 1841.000732, "rotation": [ 0.452733, 0.524774, 0.151106, 0.704849] }, { "keytime": 1874.334106, "rotation": [ 0.452846, 0.524554, 0.151098, 0.704942] }, { "keytime": 1907.667480, "rotation": [ 0.452949, 0.524354, 0.151091, 0.705026] }, { "keytime": 1941.000854, "rotation": [ 0.453047, 0.524164, 0.151084, 0.705106] }, { "keytime": 1974.334229, "rotation": [ 0.453135, 0.523995, 0.151078, 0.705176] }, { "keytime": 2007.667603, "rotation": [ 0.453215, 0.523842, 0.151072, 0.705240] }, { "keytime": 2041.000977, "rotation": [ 0.453290, 0.523700, 0.151065, 0.705298] }, { "keytime": 2074.334473, "rotation": [ 0.453351, 0.523585, 0.151060, 0.705346] }, { "keytime": 2107.667725, "rotation": [ 0.453405, 0.523485, 0.151055, 0.705386] }, { "keytime": 2141.000977, "rotation": [ 0.453453, 0.523398, 0.151049, 0.705421] }, { "keytime": 2174.334229, "rotation": [ 0.453491, 0.523331, 0.151045, 0.705448] }, { "keytime": 2207.667480, "rotation": [ 0.453521, 0.523279, 0.151040, 0.705468] }, { "keytime": 2241.000732, "rotation": [ 0.453542, 0.523247, 0.151036, 0.705479] }, { "keytime": 2274.333984, "rotation": [ 0.453554, 0.523232, 0.151032, 0.705483] }, { "keytime": 2307.667236, "rotation": [ 0.453559, 0.523233, 0.151029, 0.705480] }, { "keytime": 2341.000488, "rotation": [ 0.453557, 0.523249, 0.151027, 0.705469] }, { "keytime": 2374.333740, "rotation": [ 0.453548, 0.523281, 0.151026, 0.705452] }, { "keytime": 2407.666992, "rotation": [ 0.453530, 0.523333, 0.151026, 0.705425] }, { "keytime": 2441.000244, "rotation": [ 0.453505, 0.523402, 0.151028, 0.705389] }, { "keytime": 2474.333496, "rotation": [ 0.453473, 0.523485, 0.151031, 0.705347] }, { "keytime": 2507.666748, "rotation": [ 0.453435, 0.523583, 0.151036, 0.705298] }, { "keytime": 2541.000000, "rotation": [ 0.453388, 0.523701, 0.151042, 0.705240] }, { "keytime": 2574.333252, "rotation": [ 0.453333, 0.523836, 0.151050, 0.705173] }, { "keytime": 2607.666504, "rotation": [ 0.453272, 0.523986, 0.151058, 0.705099] }, { "keytime": 2640.999756, "rotation": [ 0.453204, 0.524151, 0.151068, 0.705018] }, { "keytime": 2674.333008, "rotation": [ 0.453126, 0.524338, 0.151080, 0.704926] }, { "keytime": 2707.666260, "rotation": [ 0.453044, 0.524535, 0.151093, 0.704830] }, { "keytime": 2740.999512, "rotation": [ 0.452953, 0.524751, 0.151107, 0.704724] }, { "keytime": 2774.332764, "rotation": [ 0.452852, 0.524990, 0.151123, 0.704608] }, { "keytime": 2807.666016, "rotation": [ 0.452748, 0.525237, 0.151140, 0.704488] }, { "keytime": 2840.999268, "rotation": [ 0.452636, 0.525498, 0.151158, 0.704360] }, { "keytime": 2874.332520, "rotation": [ 0.452515, 0.525783, 0.151178, 0.704222] }, { "keytime": 2907.665771, "rotation": [ 0.452389, 0.526078, 0.151199, 0.704078] }, { "keytime": 2940.999023, "rotation": [ 0.452256, 0.526387, 0.151221, 0.703928] }, { "keytime": 2974.332275, "rotation": [ 0.452113, 0.526719, 0.151245, 0.703766] }, { "keytime": 3007.665527, "rotation": [ 0.451968, 0.527055, 0.151269, 0.703602] }, { "keytime": 3040.998779, "rotation": [ 0.451817, 0.527404, 0.151294, 0.703432] }, { "keytime": 3107.665283, "rotation": [ 0.451490, 0.528159, 0.151349, 0.703064] }, { "keytime": 3140.998535, "rotation": [ 0.451320, 0.528548, 0.151378, 0.702874] }, { "keytime": 3207.665039, "rotation": [ 0.450961, 0.529371, 0.151439, 0.702472] }, { "keytime": 3240.998291, "rotation": [ 0.450775, 0.529795, 0.151470, 0.702264] }, { "keytime": 3274.331543, "rotation": [ 0.450580, 0.530242, 0.151503, 0.702046] }, { "keytime": 3307.664795, "rotation": [ 0.450385, 0.530683, 0.151537, 0.701830] }, { "keytime": 3340.998047, "rotation": [ 0.450188, 0.531133, 0.151570, 0.701609] }, { "keytime": 3374.331299, "rotation": [ 0.449980, 0.531604, 0.151605, 0.701378] }, { "keytime": 3407.664551, "rotation": [ 0.449774, 0.532070, 0.151640, 0.701149] }, { "keytime": 3440.997803, "rotation": [ 0.449566, 0.532542, 0.151676, 0.700917] }, { "keytime": 3474.331055, "rotation": [ 0.449348, 0.533032, 0.151713, 0.700675] }, { "keytime": 3507.664307, "rotation": [ 0.449135, 0.533513, 0.151749, 0.700438] }, { "keytime": 3540.997559, "rotation": [ 0.448920, 0.533997, 0.151786, 0.700200] }, { "keytime": 3574.330811, "rotation": [ 0.448696, 0.534499, 0.151823, 0.699952] }, { "keytime": 3640.997314, "rotation": [ 0.448260, 0.535477, 0.151898, 0.699467] }, { "keytime": 3674.330566, "rotation": [ 0.448035, 0.535981, 0.151936, 0.699217] }, { "keytime": 3707.663818, "rotation": [ 0.447815, 0.536469, 0.151973, 0.698975] }, { "keytime": 3740.997070, "rotation": [ 0.447598, 0.536956, 0.152010, 0.698733] }, { "keytime": 3774.330322, "rotation": [ 0.447374, 0.537454, 0.152048, 0.698485] }, { "keytime": 3807.663574, "rotation": [ 0.447158, 0.537934, 0.152084, 0.698246] }, { "keytime": 3840.996826, "rotation": [ 0.446944, 0.538410, 0.152120, 0.698008] }, { "keytime": 3874.330078, "rotation": [ 0.446725, 0.538895, 0.152157, 0.697766] }, { "keytime": 3907.663330, "rotation": [ 0.446516, 0.539358, 0.152192, 0.697534] }, { "keytime": 3940.996582, "rotation": [ 0.446309, 0.539815, 0.152227, 0.697305] }, { "keytime": 3974.329834, "rotation": [ 0.446100, 0.540278, 0.152262, 0.697073] }, { "keytime": 4007.663086, "rotation": [ 0.445900, 0.540719, 0.152295, 0.696852] }, { "keytime": 4074.329590, "rotation": [ 0.445507, 0.541585, 0.152361, 0.696416] }, { "keytime": 4107.663086, "rotation": [ 0.445320, 0.541995, 0.152392, 0.696210] }, { "keytime": 4174.329590, "rotation": [ 0.444955, 0.542795, 0.152453, 0.695806] }, { "keytime": 4207.663086, "rotation": [ 0.444783, 0.543172, 0.152482, 0.695616] }, { "keytime": 4274.330078, "rotation": [ 0.444454, 0.543893, 0.152537, 0.695251] }, { "keytime": 4307.663574, "rotation": [ 0.444300, 0.544229, 0.152562, 0.695081] }, { "keytime": 4340.997070, "rotation": [ 0.444152, 0.544552, 0.152587, 0.694917] }, { "keytime": 4374.330566, "rotation": [ 0.444006, 0.544870, 0.152611, 0.694756] }, { "keytime": 4407.664062, "rotation": [ 0.443873, 0.545160, 0.152633, 0.694608] }, { "keytime": 4440.997559, "rotation": [ 0.443746, 0.545437, 0.152654, 0.694467] }, { "keytime": 4474.331055, "rotation": [ 0.443622, 0.545707, 0.152674, 0.694330] }, { "keytime": 4507.664551, "rotation": [ 0.443508, 0.545955, 0.152693, 0.694204] }, { "keytime": 4540.998047, "rotation": [ 0.443401, 0.546187, 0.152711, 0.694086] }, { "keytime": 4574.331543, "rotation": [ 0.443300, 0.546407, 0.152727, 0.693974] }, { "keytime": 4607.665039, "rotation": [ 0.443208, 0.546605, 0.152742, 0.693873] }, { "keytime": 4640.998535, "rotation": [ 0.443124, 0.546788, 0.152756, 0.693779] }, { "keytime": 4674.332031, "rotation": [ 0.443044, 0.546960, 0.152769, 0.693691] }, { "keytime": 4707.665527, "rotation": [ 0.442974, 0.547112, 0.152781, 0.693614] }, { "keytime": 4740.999023, "rotation": [ 0.442913, 0.547244, 0.152791, 0.693546] }, { "keytime": 4774.332520, "rotation": [ 0.442858, 0.547365, 0.152800, 0.693485] }, { "keytime": 4807.666016, "rotation": [ 0.442811, 0.547466, 0.152808, 0.693433] }, { "keytime": 4840.999512, "rotation": [ 0.442771, 0.547552, 0.152814, 0.693389] }, { "keytime": 4874.333008, "rotation": [ 0.442738, 0.547625, 0.152820, 0.693352] }, { "keytime": 4907.666504, "rotation": [ 0.442714, 0.547675, 0.152824, 0.693326] }, { "keytime": 4941.000000, "rotation": [ 0.442697, 0.547711, 0.152827, 0.693307] }, { "keytime": 4974.333496, "rotation": [ 0.442688, 0.547731, 0.152828, 0.693297] }, { "keytime": 5007.666992, "rotation": [ 0.442685, 0.547737, 0.152828, 0.693294] }, { "keytime": 5041.000488, "rotation": [ 0.442687, 0.547729, 0.152827, 0.693300] }, { "keytime": 5074.333984, "rotation": [ 0.442694, 0.547706, 0.152822, 0.693315] }, { "keytime": 5107.667480, "rotation": [ 0.442704, 0.547671, 0.152816, 0.693338] }, { "keytime": 5141.000977, "rotation": [ 0.442717, 0.547623, 0.152806, 0.693369] }, { "keytime": 5174.334473, "rotation": [ 0.442734, 0.547564, 0.152795, 0.693407] }, { "keytime": 5207.667969, "rotation": [ 0.442754, 0.547494, 0.152782, 0.693453] }, { "keytime": 5241.001465, "rotation": [ 0.442779, 0.547405, 0.152764, 0.693511] }, { "keytime": 5274.334961, "rotation": [ 0.442807, 0.547307, 0.152746, 0.693574] }, { "keytime": 5307.668457, "rotation": [ 0.442838, 0.547198, 0.152725, 0.693645] }, { "keytime": 5341.001953, "rotation": [ 0.442873, 0.547074, 0.152701, 0.693726] }, { "keytime": 5374.335449, "rotation": [ 0.442910, 0.546942, 0.152675, 0.693812] }, { "keytime": 5407.668945, "rotation": [ 0.442952, 0.546796, 0.152647, 0.693907] }, { "keytime": 5441.002441, "rotation": [ 0.442997, 0.546635, 0.152616, 0.694012] }, { "keytime": 5474.335938, "rotation": [ 0.443044, 0.546469, 0.152584, 0.694120] }, { "keytime": 5507.669434, "rotation": [ 0.443094, 0.546293, 0.152551, 0.694234] }, { "keytime": 5541.002930, "rotation": [ 0.443147, 0.546102, 0.152514, 0.694357] }, { "keytime": 5574.336426, "rotation": [ 0.443202, 0.545907, 0.152476, 0.694484] }, { "keytime": 5607.669922, "rotation": [ 0.443260, 0.545704, 0.152437, 0.694616] }, { "keytime": 5674.336914, "rotation": [ 0.443381, 0.545273, 0.152354, 0.694895] }, { "keytime": 5707.670410, "rotation": [ 0.443443, 0.545052, 0.152312, 0.695038] }, { "keytime": 5741.003906, "rotation": [ 0.443508, 0.544820, 0.152267, 0.695188] }, { "keytime": 5807.670898, "rotation": [ 0.443637, 0.544361, 0.152179, 0.695485] }, { "keytime": 5841.004395, "rotation": [ 0.443704, 0.544123, 0.152133, 0.695639] }, { "keytime": 5907.671387, "rotation": [ 0.443832, 0.543662, 0.152044, 0.695936] }, { "keytime": 5941.004883, "rotation": [ 0.443898, 0.543428, 0.151999, 0.696087] }, { "keytime": 5974.338379, "rotation": [ 0.443960, 0.543205, 0.151956, 0.696231] }, { "keytime": 6041.005371, "rotation": [ 0.444083, 0.542765, 0.151871, 0.696514] }, { "keytime": 6074.338867, "rotation": [ 0.444140, 0.542559, 0.151832, 0.696647] }, { "keytime": 6107.672363, "rotation": [ 0.444196, 0.542360, 0.151793, 0.696774] }, { "keytime": 6141.005859, "rotation": [ 0.444251, 0.542163, 0.151755, 0.696901] }, { "keytime": 6174.339355, "rotation": [ 0.444301, 0.541981, 0.151720, 0.697018] }, { "keytime": 6207.672852, "rotation": [ 0.444350, 0.541807, 0.151687, 0.697130] }, { "keytime": 6241.006348, "rotation": [ 0.444396, 0.541641, 0.151655, 0.697236] }, { "keytime": 6274.339844, "rotation": [ 0.444437, 0.541491, 0.151626, 0.697333] }, { "keytime": 6307.673340, "rotation": [ 0.444476, 0.541351, 0.151599, 0.697422] }, { "keytime": 6341.006836, "rotation": [ 0.444513, 0.541218, 0.151573, 0.697507] }, { "keytime": 6374.340332, "rotation": [ 0.444546, 0.541101, 0.151550, 0.697583] }, { "keytime": 6407.673828, "rotation": [ 0.444574, 0.540998, 0.151531, 0.697648] }, { "keytime": 6441.007324, "rotation": [ 0.444600, 0.540905, 0.151513, 0.697708] }, { "keytime": 6474.340820, "rotation": [ 0.444622, 0.540826, 0.151497, 0.697759] }, { "keytime": 6507.674316, "rotation": [ 0.444641, 0.540758, 0.151485, 0.697802] }, { "keytime": 6541.007812, "rotation": [ 0.444656, 0.540702, 0.151474, 0.697838] }, { "keytime": 6574.341309, "rotation": [ 0.444667, 0.540662, 0.151466, 0.697863] }, { "keytime": 6607.674805, "rotation": [ 0.444675, 0.540635, 0.151461, 0.697881] } ] }, { "boneId": "Bone_020", "keyframes": [ { "keytime": 41.000000, "rotation": [-0.407102, 0.106994, -0.021456, 0.906841] }, { "keytime": 74.333328, "rotation": [-0.407102, 0.106984, -0.021455, 0.906842] }, { "keytime": 107.666664, "rotation": [-0.407102, 0.106959, -0.021452, 0.906845] }, { "keytime": 141.000000, "rotation": [-0.407103, 0.106917, -0.021446, 0.906850] }, { "keytime": 174.333328, "rotation": [-0.407104, 0.106862, -0.021439, 0.906856] }, { "keytime": 207.666656, "rotation": [-0.407105, 0.106791, -0.021429, 0.906864] }, { "keytime": 240.999985, "rotation": [-0.407107, 0.106700, -0.021417, 0.906874] }, { "keytime": 274.333313, "rotation": [-0.407108, 0.106590, -0.021402, 0.906887] }, { "keytime": 307.666656, "rotation": [-0.407110, 0.106468, -0.021386, 0.906900] }, { "keytime": 341.000000, "rotation": [-0.407113, 0.106326, -0.021367, 0.906916] }, { "keytime": 374.333344, "rotation": [-0.407115, 0.106173, -0.021346, 0.906934] }, { "keytime": 407.666687, "rotation": [-0.407118, 0.106000, -0.021323, 0.906953] }, { "keytime": 441.000031, "rotation": [-0.407121, 0.105806, -0.021297, 0.906975] }, { "keytime": 474.333374, "rotation": [-0.407125, 0.105603, -0.021270, 0.906998] }, { "keytime": 507.666718, "rotation": [-0.407128, 0.105385, -0.021241, 0.907022] }, { "keytime": 541.000061, "rotation": [-0.407132, 0.105146, -0.021209, 0.907049] }, { "keytime": 574.333374, "rotation": [-0.407136, 0.104895, -0.021175, 0.907077] }, { "keytime": 607.666687, "rotation": [-0.407141, 0.104631, -0.021139, 0.907106] }, { "keytime": 641.000000, "rotation": [-0.407145, 0.104345, -0.021101, 0.907138] }, { "keytime": 674.333313, "rotation": [-0.407150, 0.104054, -0.021062, 0.907170] }, { "keytime": 707.666626, "rotation": [-0.407154, 0.103751, -0.021021, 0.907204] }, { "keytime": 740.999939, "rotation": [-0.407159, 0.103432, -0.020979, 0.907239] }, { "keytime": 807.666565, "rotation": [-0.407170, 0.102752, -0.020887, 0.907314] }, { "keytime": 840.999878, "rotation": [-0.407175, 0.102402, -0.020841, 0.907352] }, { "keytime": 907.666504, "rotation": [-0.407186, 0.101661, -0.020741, 0.907433] }, { "keytime": 940.999817, "rotation": [-0.407192, 0.101283, -0.020690, 0.907474] }, { "keytime": 974.333130, "rotation": [-0.407197, 0.100886, -0.020637, 0.907517] }, { "keytime": 1007.666443, "rotation": [-0.407203, 0.100496, -0.020585, 0.907559] }, { "keytime": 1040.999756, "rotation": [-0.407208, 0.100100, -0.020532, 0.907601] }, { "keytime": 1074.333130, "rotation": [-0.407214, 0.099688, -0.020477, 0.907645] }, { "keytime": 1140.999878, "rotation": [-0.407226, 0.098880, -0.020368, 0.907731] }, { "keytime": 1174.333252, "rotation": [-0.407232, 0.098462, -0.020312, 0.907775] }, { "keytime": 1207.666626, "rotation": [-0.407237, 0.098057, -0.020258, 0.907817] }, { "keytime": 1241.000000, "rotation": [-0.407242, 0.097640, -0.020202, 0.907861] }, { "keytime": 1274.333374, "rotation": [-0.407248, 0.097238, -0.020148, 0.907903] }, { "keytime": 1307.666748, "rotation": [-0.407253, 0.096840, -0.020094, 0.907945] }, { "keytime": 1341.000122, "rotation": [-0.407258, 0.096434, -0.020040, 0.907987] }, { "keytime": 1374.333496, "rotation": [-0.407263, 0.096045, -0.019988, 0.908027] }, { "keytime": 1407.666870, "rotation": [-0.407267, 0.095664, -0.019937, 0.908066] }, { "keytime": 1441.000244, "rotation": [-0.407272, 0.095279, -0.019885, 0.908106] }, { "keytime": 1474.333618, "rotation": [-0.407276, 0.094914, -0.019836, 0.908143] }, { "keytime": 1541.000366, "rotation": [-0.407285, 0.094198, -0.019740, 0.908216] }, { "keytime": 1574.333740, "rotation": [-0.407288, 0.093864, -0.019695, 0.908250] }, { "keytime": 1607.667114, "rotation": [-0.407292, 0.093541, -0.019652, 0.908282] }, { "keytime": 1641.000488, "rotation": [-0.407296, 0.093220, -0.019609, 0.908315] }, { "keytime": 1674.333862, "rotation": [-0.407299, 0.092920, -0.019568, 0.908345] }, { "keytime": 1707.667236, "rotation": [-0.407302, 0.092633, -0.019530, 0.908374] }, { "keytime": 1741.000610, "rotation": [-0.407305, 0.092355, -0.019493, 0.908401] }, { "keytime": 1774.333984, "rotation": [-0.407308, 0.092100, -0.019458, 0.908427] }, { "keytime": 1807.667358, "rotation": [-0.407311, 0.091857, -0.019426, 0.908451] }, { "keytime": 1841.000732, "rotation": [-0.407313, 0.091623, -0.019394, 0.908474] }, { "keytime": 1874.334106, "rotation": [-0.407315, 0.091409, -0.019366, 0.908495] }, { "keytime": 1907.667480, "rotation": [-0.407317, 0.091216, -0.019340, 0.908514] }, { "keytime": 1941.000854, "rotation": [-0.407319, 0.091031, -0.019315, 0.908532] }, { "keytime": 1974.334229, "rotation": [-0.407321, 0.090868, -0.019293, 0.908549] }, { "keytime": 2007.667603, "rotation": [-0.407323, 0.090719, -0.019273, 0.908563] }, { "keytime": 2041.000977, "rotation": [-0.407324, 0.090582, -0.019255, 0.908577] }, { "keytime": 2074.334473, "rotation": [-0.407325, 0.090470, -0.019240, 0.908588] }, { "keytime": 2107.667725, "rotation": [-0.407326, 0.090373, -0.019227, 0.908597] }, { "keytime": 2141.000977, "rotation": [-0.407327, 0.090289, -0.019215, 0.908605] }, { "keytime": 2174.334229, "rotation": [-0.407328, 0.090222, -0.019206, 0.908612] }, { "keytime": 2207.667480, "rotation": [-0.407328, 0.090172, -0.019200, 0.908617] }, { "keytime": 2241.000732, "rotation": [-0.407328, 0.090140, -0.019195, 0.908620] }, { "keytime": 2274.333984, "rotation": [-0.407328, 0.090125, -0.019193, 0.908621] }, { "keytime": 2307.667236, "rotation": [-0.407328, 0.090125, -0.019193, 0.908621] }, { "keytime": 2341.000488, "rotation": [-0.407327, 0.090142, -0.019194, 0.908620] }, { "keytime": 2374.333740, "rotation": [-0.407326, 0.090175, -0.019196, 0.908617] }, { "keytime": 2407.666992, "rotation": [-0.407323, 0.090229, -0.019200, 0.908613] }, { "keytime": 2441.000244, "rotation": [-0.407319, 0.090303, -0.019205, 0.908607] }, { "keytime": 2474.333496, "rotation": [-0.407315, 0.090391, -0.019211, 0.908601] }, { "keytime": 2507.666748, "rotation": [-0.407310, 0.090496, -0.019218, 0.908592] }, { "keytime": 2541.000000, "rotation": [-0.407303, 0.090622, -0.019227, 0.908583] }, { "keytime": 2574.333252, "rotation": [-0.407296, 0.090766, -0.019237, 0.908571] }, { "keytime": 2607.666504, "rotation": [-0.407288, 0.090927, -0.019248, 0.908558] }, { "keytime": 2640.999756, "rotation": [-0.407279, 0.091104, -0.019260, 0.908545] }, { "keytime": 2674.333008, "rotation": [-0.407269, 0.091304, -0.019274, 0.908529] }, { "keytime": 2707.666260, "rotation": [-0.407258, 0.091515, -0.019288, 0.908512] }, { "keytime": 2740.999512, "rotation": [-0.407246, 0.091747, -0.019304, 0.908493] }, { "keytime": 2774.332764, "rotation": [-0.407233, 0.092004, -0.019322, 0.908473] }, { "keytime": 2807.666016, "rotation": [-0.407220, 0.092269, -0.019340, 0.908452] }, { "keytime": 2840.999268, "rotation": [-0.407205, 0.092549, -0.019359, 0.908429] }, { "keytime": 2874.332520, "rotation": [-0.407190, 0.092855, -0.019380, 0.908405] }, { "keytime": 2907.665771, "rotation": [-0.407173, 0.093173, -0.019402, 0.908379] }, { "keytime": 2940.999023, "rotation": [-0.407156, 0.093505, -0.019425, 0.908352] }, { "keytime": 2974.332275, "rotation": [-0.407138, 0.093863, -0.019449, 0.908323] }, { "keytime": 3007.665527, "rotation": [-0.407119, 0.094225, -0.019474, 0.908293] }, { "keytime": 3040.998779, "rotation": [-0.407100, 0.094601, -0.019500, 0.908262] }, { "keytime": 3107.665283, "rotation": [-0.407058, 0.095414, -0.019555, 0.908195] }, { "keytime": 3140.998535, "rotation": [-0.407036, 0.095833, -0.019584, 0.908160] }, { "keytime": 3207.665039, "rotation": [-0.406991, 0.096722, -0.019645, 0.908085] }, { "keytime": 3240.998291, "rotation": [-0.406966, 0.097179, -0.019676, 0.908046] }, { "keytime": 3274.331543, "rotation": [-0.406941, 0.097661, -0.019709, 0.908005] }, { "keytime": 3307.664795, "rotation": [-0.406916, 0.098139, -0.019742, 0.907964] }, { "keytime": 3340.998047, "rotation": [-0.406890, 0.098624, -0.019775, 0.907922] }, { "keytime": 3374.331299, "rotation": [-0.406864, 0.099134, -0.019810, 0.907878] }, { "keytime": 3407.664551, "rotation": [-0.406837, 0.099638, -0.019844, 0.907834] }, { "keytime": 3440.997803, "rotation": [-0.406810, 0.100147, -0.019879, 0.907789] }, { "keytime": 3474.331055, "rotation": [-0.406782, 0.100678, -0.019915, 0.907742] }, { "keytime": 3507.664307, "rotation": [-0.406754, 0.101198, -0.019951, 0.907696] }, { "keytime": 3540.997559, "rotation": [-0.406726, 0.101723, -0.019986, 0.907649] }, { "keytime": 3574.330811, "rotation": [-0.406697, 0.102266, -0.020023, 0.907600] }, { "keytime": 3640.997314, "rotation": [-0.406641, 0.103326, -0.020095, 0.907504] }, { "keytime": 3674.330566, "rotation": [-0.406611, 0.103873, -0.020132, 0.907454] }, { "keytime": 3707.663818, "rotation": [-0.406582, 0.104403, -0.020168, 0.907405] }, { "keytime": 3740.997070, "rotation": [-0.406553, 0.104931, -0.020205, 0.907356] }, { "keytime": 3774.330322, "rotation": [-0.406524, 0.105472, -0.020242, 0.907306] }, { "keytime": 3807.663574, "rotation": [-0.406495, 0.105993, -0.020277, 0.907257] }, { "keytime": 3840.996826, "rotation": [-0.406467, 0.106510, -0.020313, 0.907209] }, { "keytime": 3874.330078, "rotation": [-0.406438, 0.107038, -0.020349, 0.907159] }, { "keytime": 3907.663330, "rotation": [-0.406410, 0.107541, -0.020383, 0.907111] }, { "keytime": 3940.996582, "rotation": [-0.406384, 0.108038, -0.020416, 0.907063] }, { "keytime": 3974.329834, "rotation": [-0.406357, 0.108541, -0.020450, 0.907014] }, { "keytime": 4007.663086, "rotation": [-0.406332, 0.109021, -0.020483, 0.906967] }, { "keytime": 4074.329590, "rotation": [-0.406281, 0.109964, -0.020547, 0.906875] }, { "keytime": 4107.663086, "rotation": [-0.406256, 0.110411, -0.020577, 0.906831] }, { "keytime": 4174.329590, "rotation": [-0.406210, 0.111283, -0.020636, 0.906744] }, { "keytime": 4207.663086, "rotation": [-0.406187, 0.111694, -0.020664, 0.906703] }, { "keytime": 4274.330078, "rotation": [-0.406146, 0.112480, -0.020717, 0.906623] }, { "keytime": 4307.663574, "rotation": [-0.406127, 0.112847, -0.020742, 0.906585] }, { "keytime": 4340.997070, "rotation": [-0.406108, 0.113199, -0.020765, 0.906549] }, { "keytime": 4374.330566, "rotation": [-0.406090, 0.113546, -0.020789, 0.906513] }, { "keytime": 4407.664062, "rotation": [-0.406074, 0.113864, -0.020810, 0.906480] }, { "keytime": 4440.997559, "rotation": [-0.406058, 0.114166, -0.020831, 0.906448] }, { "keytime": 4474.331055, "rotation": [-0.406044, 0.114461, -0.020850, 0.906417] }, { "keytime": 4507.664551, "rotation": [-0.406030, 0.114731, -0.020868, 0.906389] }, { "keytime": 4540.998047, "rotation": [-0.406018, 0.114985, -0.020885, 0.906362] }, { "keytime": 4574.331543, "rotation": [-0.406007, 0.115226, -0.020901, 0.906336] }, { "keytime": 4607.665039, "rotation": [-0.405997, 0.115442, -0.020916, 0.906313] }, { "keytime": 4640.998535, "rotation": [-0.405988, 0.115642, -0.020929, 0.906291] }, { "keytime": 4674.332031, "rotation": [-0.405980, 0.115831, -0.020941, 0.906270] }, { "keytime": 4707.665527, "rotation": [-0.405973, 0.115997, -0.020952, 0.906252] }, { "keytime": 4740.999023, "rotation": [-0.405967, 0.116141, -0.020962, 0.906235] }, { "keytime": 4774.332520, "rotation": [-0.405963, 0.116273, -0.020970, 0.906220] }, { "keytime": 4807.666016, "rotation": [-0.405960, 0.116384, -0.020978, 0.906207] }, { "keytime": 4840.999512, "rotation": [-0.405958, 0.116478, -0.020984, 0.906196] }, { "keytime": 4874.333008, "rotation": [-0.405957, 0.116558, -0.020988, 0.906186] }, { "keytime": 4907.666504, "rotation": [-0.405957, 0.116613, -0.020992, 0.906179] }, { "keytime": 4941.000000, "rotation": [-0.405958, 0.116653, -0.020994, 0.906173] }, { "keytime": 4974.333496, "rotation": [-0.405961, 0.116675, -0.020995, 0.906169] }, { "keytime": 5007.666992, "rotation": [-0.405965, 0.116681, -0.020995, 0.906166] }, { "keytime": 5041.000488, "rotation": [-0.405970, 0.116670, -0.020995, 0.906165] }, { "keytime": 5074.333984, "rotation": [-0.405977, 0.116638, -0.020997, 0.906166] }, { "keytime": 5107.667480, "rotation": [-0.405986, 0.116591, -0.020998, 0.906168] }, { "keytime": 5141.000977, "rotation": [-0.405997, 0.116525, -0.021001, 0.906172] }, { "keytime": 5174.334473, "rotation": [-0.406009, 0.116446, -0.021005, 0.906176] }, { "keytime": 5207.667969, "rotation": [-0.406024, 0.116350, -0.021009, 0.906182] }, { "keytime": 5241.001465, "rotation": [-0.406040, 0.116229, -0.021014, 0.906190] }, { "keytime": 5274.334961, "rotation": [-0.406059, 0.116096, -0.021020, 0.906199] }, { "keytime": 5307.668457, "rotation": [-0.406078, 0.115947, -0.021027, 0.906209] }, { "keytime": 5341.001953, "rotation": [-0.406100, 0.115778, -0.021035, 0.906221] }, { "keytime": 5374.335449, "rotation": [-0.406123, 0.115598, -0.021044, 0.906233] }, { "keytime": 5407.668945, "rotation": [-0.406148, 0.115399, -0.021053, 0.906247] }, { "keytime": 5441.002441, "rotation": [-0.406175, 0.115180, -0.021063, 0.906263] }, { "keytime": 5474.335938, "rotation": [-0.406203, 0.114953, -0.021074, 0.906279] }, { "keytime": 5507.669434, "rotation": [-0.406232, 0.114714, -0.021085, 0.906296] }, { "keytime": 5541.002930, "rotation": [-0.406263, 0.114455, -0.021098, 0.906314] }, { "keytime": 5574.336426, "rotation": [-0.406294, 0.114188, -0.021110, 0.906334] }, { "keytime": 5607.669922, "rotation": [-0.406327, 0.113912, -0.021123, 0.906353] }, { "keytime": 5674.336914, "rotation": [-0.406395, 0.113325, -0.021152, 0.906396] }, { "keytime": 5707.670410, "rotation": [-0.406430, 0.113025, -0.021166, 0.906417] }, { "keytime": 5741.003906, "rotation": [-0.406466, 0.112709, -0.021181, 0.906440] }, { "keytime": 5774.337402, "rotation": [-0.406502, 0.112398, -0.021196, 0.906462] }, { "keytime": 5807.670898, "rotation": [-0.406538, 0.112085, -0.021211, 0.906484] }, { "keytime": 5841.004395, "rotation": [-0.406575, 0.111761, -0.021227, 0.906507] }, { "keytime": 5907.671387, "rotation": [-0.406646, 0.111135, -0.021257, 0.906552] }, { "keytime": 5941.004883, "rotation": [-0.406682, 0.110817, -0.021272, 0.906574] }, { "keytime": 5974.338379, "rotation": [-0.406717, 0.110513, -0.021286, 0.906595] }, { "keytime": 6041.005371, "rotation": [-0.406783, 0.109915, -0.021315, 0.906638] }, { "keytime": 6074.338867, "rotation": [-0.406814, 0.109636, -0.021329, 0.906657] }, { "keytime": 6107.672363, "rotation": [-0.406843, 0.109365, -0.021342, 0.906676] }, { "keytime": 6141.005859, "rotation": [-0.406873, 0.109098, -0.021355, 0.906695] }, { "keytime": 6174.339355, "rotation": [-0.406900, 0.108850, -0.021367, 0.906712] }, { "keytime": 6207.672852, "rotation": [-0.406927, 0.108615, -0.021378, 0.906729] }, { "keytime": 6241.006348, "rotation": [-0.406951, 0.108390, -0.021389, 0.906744] }, { "keytime": 6274.339844, "rotation": [-0.406973, 0.108186, -0.021399, 0.906759] }, { "keytime": 6307.673340, "rotation": [-0.406993, 0.107996, -0.021408, 0.906772] }, { "keytime": 6341.006836, "rotation": [-0.407013, 0.107815, -0.021417, 0.906784] }, { "keytime": 6374.340332, "rotation": [-0.407031, 0.107656, -0.021424, 0.906795] }, { "keytime": 6407.673828, "rotation": [-0.407045, 0.107517, -0.021431, 0.906805] }, { "keytime": 6441.007324, "rotation": [-0.407059, 0.107390, -0.021437, 0.906814] }, { "keytime": 6474.340820, "rotation": [-0.407071, 0.107283, -0.021442, 0.906821] }, { "keytime": 6507.674316, "rotation": [-0.407081, 0.107191, -0.021447, 0.906827] }, { "keytime": 6541.007812, "rotation": [-0.407089, 0.107114, -0.021451, 0.906833] }, { "keytime": 6574.341309, "rotation": [-0.407095, 0.107061, -0.021453, 0.906836] }, { "keytime": 6607.674805, "rotation": [-0.407099, 0.107024, -0.021455, 0.906838] } ] }, { "boneId": "Bone_021", "keyframes": [ { "keytime": 41.000000, "rotation": [-0.465709, 0.182314, 0.121209, 0.857429] }, { "keytime": 74.333328, "rotation": [-0.465709, 0.182309, 0.121204, 0.857431] }, { "keytime": 107.666664, "rotation": [-0.465710, 0.182296, 0.121191, 0.857435] }, { "keytime": 141.000000, "rotation": [-0.465710, 0.182275, 0.121170, 0.857442] }, { "keytime": 174.333328, "rotation": [-0.465711, 0.182247, 0.121142, 0.857452] }, { "keytime": 207.666656, "rotation": [-0.465711, 0.182211, 0.121105, 0.857465] }, { "keytime": 240.999985, "rotation": [-0.465712, 0.182164, 0.121059, 0.857481] }, { "keytime": 274.333313, "rotation": [-0.465714, 0.182108, 0.121003, 0.857500] }, { "keytime": 307.666656, "rotation": [-0.465716, 0.182046, 0.120942, 0.857521] }, { "keytime": 341.000000, "rotation": [-0.465718, 0.181973, 0.120870, 0.857545] }, { "keytime": 374.333344, "rotation": [-0.465720, 0.181895, 0.120792, 0.857571] }, { "keytime": 407.666687, "rotation": [-0.465723, 0.181807, 0.120704, 0.857601] }, { "keytime": 441.000031, "rotation": [-0.465726, 0.181708, 0.120606, 0.857634] }, { "keytime": 474.333374, "rotation": [-0.465729, 0.181604, 0.120503, 0.857669] }, { "keytime": 507.666718, "rotation": [-0.465732, 0.181493, 0.120393, 0.857706] }, { "keytime": 541.000061, "rotation": [-0.465735, 0.181371, 0.120271, 0.857747] }, { "keytime": 574.333374, "rotation": [-0.465738, 0.181243, 0.120144, 0.857791] }, { "keytime": 607.666687, "rotation": [-0.465741, 0.181108, 0.120010, 0.857836] }, { "keytime": 641.000000, "rotation": [-0.465745, 0.180962, 0.119865, 0.857885] }, { "keytime": 674.333313, "rotation": [-0.465750, 0.180814, 0.119717, 0.857934] }, { "keytime": 707.666626, "rotation": [-0.465754, 0.180659, 0.119563, 0.857986] }, { "keytime": 740.999939, "rotation": [-0.465759, 0.180496, 0.119402, 0.858040] }, { "keytime": 807.666565, "rotation": [-0.465768, 0.180149, 0.119057, 0.858156] }, { "keytime": 840.999878, "rotation": [-0.465773, 0.179970, 0.118879, 0.858216] }, { "keytime": 907.666504, "rotation": [-0.465782, 0.179592, 0.118503, 0.858342] }, { "keytime": 940.999817, "rotation": [-0.465786, 0.179399, 0.118311, 0.858407] }, { "keytime": 974.333130, "rotation": [-0.465791, 0.179197, 0.118110, 0.858474] }, { "keytime": 1007.666443, "rotation": [-0.465796, 0.178997, 0.117911, 0.858540] }, { "keytime": 1040.999756, "rotation": [-0.465801, 0.178795, 0.117711, 0.858607] }, { "keytime": 1074.333130, "rotation": [-0.465807, 0.178585, 0.117501, 0.858676] }, { "keytime": 1140.999878, "rotation": [-0.465817, 0.178171, 0.117091, 0.858812] }, { "keytime": 1174.333252, "rotation": [-0.465823, 0.177958, 0.116880, 0.858882] }, { "keytime": 1207.666626, "rotation": [-0.465828, 0.177751, 0.116675, 0.858950] }, { "keytime": 1241.000000, "rotation": [-0.465834, 0.177538, 0.116463, 0.859020] }, { "keytime": 1307.666748, "rotation": [-0.465844, 0.177129, 0.116058, 0.859154] }, { "keytime": 1341.000122, "rotation": [-0.465850, 0.176922, 0.115852, 0.859221] }, { "keytime": 1374.333496, "rotation": [-0.465855, 0.176723, 0.115654, 0.859286] }, { "keytime": 1407.666870, "rotation": [-0.465859, 0.176528, 0.115461, 0.859349] }, { "keytime": 1441.000244, "rotation": [-0.465864, 0.176332, 0.115266, 0.859413] }, { "keytime": 1474.333618, "rotation": [-0.465869, 0.176145, 0.115080, 0.859474] }, { "keytime": 1541.000366, "rotation": [-0.465877, 0.175779, 0.114717, 0.859593] }, { "keytime": 1574.333740, "rotation": [-0.465881, 0.175609, 0.114548, 0.859648] }, { "keytime": 1641.000488, "rotation": [-0.465888, 0.175279, 0.114221, 0.859755] }, { "keytime": 1674.333862, "rotation": [-0.465891, 0.175126, 0.114069, 0.859805] }, { "keytime": 1707.667236, "rotation": [-0.465894, 0.174980, 0.113923, 0.859852] }, { "keytime": 1741.000610, "rotation": [-0.465897, 0.174838, 0.113782, 0.859899] }, { "keytime": 1774.333984, "rotation": [-0.465899, 0.174707, 0.113652, 0.859941] }, { "keytime": 1807.667358, "rotation": [-0.465901, 0.174583, 0.113529, 0.859982] }, { "keytime": 1841.000732, "rotation": [-0.465903, 0.174463, 0.113410, 0.860021] }, { "keytime": 1874.334106, "rotation": [-0.465905, 0.174354, 0.113302, 0.860056] }, { "keytime": 1907.667480, "rotation": [-0.465908, 0.174255, 0.113203, 0.860087] }, { "keytime": 1941.000854, "rotation": [-0.465910, 0.174161, 0.113110, 0.860117] }, { "keytime": 1974.334229, "rotation": [-0.465912, 0.174077, 0.113027, 0.860144] }, { "keytime": 2007.667603, "rotation": [-0.465913, 0.174001, 0.112951, 0.860169] }, { "keytime": 2041.000977, "rotation": [-0.465914, 0.173932, 0.112882, 0.860192] }, { "keytime": 2074.334473, "rotation": [-0.465915, 0.173874, 0.112825, 0.860210] }, { "keytime": 2107.667725, "rotation": [-0.465916, 0.173824, 0.112775, 0.860226] }, { "keytime": 2141.000977, "rotation": [-0.465917, 0.173781, 0.112733, 0.860240] }, { "keytime": 2174.334229, "rotation": [-0.465918, 0.173748, 0.112699, 0.860251] }, { "keytime": 2207.667480, "rotation": [-0.465919, 0.173722, 0.112674, 0.860259] }, { "keytime": 2241.000732, "rotation": [-0.465919, 0.173705, 0.112657, 0.860264] }, { "keytime": 2274.333984, "rotation": [-0.465918, 0.173698, 0.112650, 0.860267] }, { "keytime": 2307.667236, "rotation": [-0.465918, 0.173698, 0.112650, 0.860267] }, { "keytime": 2341.000488, "rotation": [-0.465917, 0.173707, 0.112660, 0.860264] }, { "keytime": 2374.333740, "rotation": [-0.465916, 0.173724, 0.112680, 0.860259] }, { "keytime": 2407.666992, "rotation": [-0.465914, 0.173753, 0.112713, 0.860250] }, { "keytime": 2441.000244, "rotation": [-0.465911, 0.173792, 0.112757, 0.860238] }, { "keytime": 2474.333496, "rotation": [-0.465909, 0.173838, 0.112810, 0.860223] }, { "keytime": 2507.666748, "rotation": [-0.465906, 0.173894, 0.112873, 0.860205] }, { "keytime": 2541.000000, "rotation": [-0.465901, 0.173960, 0.112949, 0.860184] }, { "keytime": 2574.333252, "rotation": [-0.465896, 0.174036, 0.113035, 0.860160] }, { "keytime": 2607.666504, "rotation": [-0.465891, 0.174120, 0.113132, 0.860133] }, { "keytime": 2640.999756, "rotation": [-0.465885, 0.174214, 0.113239, 0.860103] }, { "keytime": 2674.333008, "rotation": [-0.465878, 0.174319, 0.113359, 0.860070] }, { "keytime": 2707.666260, "rotation": [-0.465871, 0.174430, 0.113486, 0.860034] }, { "keytime": 2740.999512, "rotation": [-0.465864, 0.174553, 0.113625, 0.859995] }, { "keytime": 2774.332764, "rotation": [-0.465855, 0.174688, 0.113779, 0.859952] }, { "keytime": 2807.666016, "rotation": [-0.465846, 0.174828, 0.113939, 0.859907] }, { "keytime": 2840.999268, "rotation": [-0.465837, 0.174975, 0.114107, 0.859860] }, { "keytime": 2874.332520, "rotation": [-0.465827, 0.175137, 0.114291, 0.859808] }, { "keytime": 2907.665771, "rotation": [-0.465816, 0.175304, 0.114482, 0.859754] }, { "keytime": 2940.999023, "rotation": [-0.465805, 0.175479, 0.114682, 0.859698] }, { "keytime": 2974.332275, "rotation": [-0.465793, 0.175667, 0.114897, 0.859637] }, { "keytime": 3007.665527, "rotation": [-0.465781, 0.175858, 0.115114, 0.859576] }, { "keytime": 3040.998779, "rotation": [-0.465768, 0.176056, 0.115340, 0.859512] }, { "keytime": 3107.665283, "rotation": [-0.465740, 0.176484, 0.115829, 0.859374] }, { "keytime": 3140.998535, "rotation": [-0.465726, 0.176705, 0.116081, 0.859302] }, { "keytime": 3207.665039, "rotation": [-0.465694, 0.177173, 0.116615, 0.859150] }, { "keytime": 3240.998291, "rotation": [-0.465679, 0.177414, 0.116890, 0.859072] }, { "keytime": 3274.331543, "rotation": [-0.465662, 0.177668, 0.117180, 0.858989] }, { "keytime": 3307.664795, "rotation": [-0.465645, 0.177919, 0.117467, 0.858907] }, { "keytime": 3340.998047, "rotation": [-0.465628, 0.178175, 0.117759, 0.858823] }, { "keytime": 3374.331299, "rotation": [-0.465610, 0.178443, 0.118065, 0.858735] }, { "keytime": 3407.664551, "rotation": [-0.465591, 0.178708, 0.118367, 0.858648] }, { "keytime": 3440.997803, "rotation": [-0.465573, 0.178976, 0.118674, 0.858560] }, { "keytime": 3474.331055, "rotation": [-0.465554, 0.179256, 0.118993, 0.858468] }, { "keytime": 3507.664307, "rotation": [-0.465535, 0.179529, 0.119305, 0.858378] }, { "keytime": 3540.997559, "rotation": [-0.465517, 0.179805, 0.119621, 0.858286] }, { "keytime": 3574.330811, "rotation": [-0.465497, 0.180091, 0.119947, 0.858192] }, { "keytime": 3640.997314, "rotation": [-0.465457, 0.180649, 0.120584, 0.858006] }, { "keytime": 3674.330566, "rotation": [-0.465437, 0.180937, 0.120912, 0.857911] }, { "keytime": 3740.997070, "rotation": [-0.465398, 0.181494, 0.121548, 0.857724] }, { "keytime": 3774.330322, "rotation": [-0.465378, 0.181778, 0.121873, 0.857629] }, { "keytime": 3807.663574, "rotation": [-0.465359, 0.182052, 0.122186, 0.857536] }, { "keytime": 3840.996826, "rotation": [-0.465340, 0.182324, 0.122497, 0.857445] }, { "keytime": 3874.330078, "rotation": [-0.465320, 0.182601, 0.122814, 0.857351] }, { "keytime": 3907.663330, "rotation": [-0.465301, 0.182866, 0.123116, 0.857262] }, { "keytime": 3940.996582, "rotation": [-0.465282, 0.183127, 0.123415, 0.857173] }, { "keytime": 3974.329834, "rotation": [-0.465262, 0.183391, 0.123717, 0.857084] }, { "keytime": 4007.663086, "rotation": [-0.465244, 0.183644, 0.124006, 0.856998] }, { "keytime": 4074.329590, "rotation": [-0.465206, 0.184139, 0.124572, 0.856830] }, { "keytime": 4107.663086, "rotation": [-0.465189, 0.184374, 0.124840, 0.856750] }, { "keytime": 4174.329590, "rotation": [-0.465155, 0.184833, 0.125364, 0.856593] }, { "keytime": 4207.663086, "rotation": [-0.465139, 0.185049, 0.125611, 0.856519] }, { "keytime": 4274.330078, "rotation": [-0.465107, 0.185462, 0.126083, 0.856377] }, { "keytime": 4307.663574, "rotation": [-0.465093, 0.185654, 0.126303, 0.856311] }, { "keytime": 4340.997070, "rotation": [-0.465079, 0.185839, 0.126515, 0.856247] }, { "keytime": 4374.330566, "rotation": [-0.465064, 0.186022, 0.126723, 0.856185] }, { "keytime": 4407.664062, "rotation": [-0.465052, 0.186189, 0.126914, 0.856127] }, { "keytime": 4440.997559, "rotation": [-0.465040, 0.186347, 0.127095, 0.856072] }, { "keytime": 4474.331055, "rotation": [-0.465028, 0.186502, 0.127272, 0.856019] }, { "keytime": 4507.664551, "rotation": [-0.465016, 0.186644, 0.127435, 0.855970] }, { "keytime": 4540.998047, "rotation": [-0.465007, 0.186778, 0.127587, 0.855923] }, { "keytime": 4574.331543, "rotation": [-0.464996, 0.186904, 0.127732, 0.855880] }, { "keytime": 4607.665039, "rotation": [-0.464988, 0.187018, 0.127861, 0.855840] }, { "keytime": 4640.998535, "rotation": [-0.464980, 0.187123, 0.127982, 0.855804] }, { "keytime": 4674.332031, "rotation": [-0.464972, 0.187222, 0.128095, 0.855769] }, { "keytime": 4707.665527, "rotation": [-0.464965, 0.187309, 0.128195, 0.855739] }, { "keytime": 4740.999023, "rotation": [-0.464959, 0.187385, 0.128281, 0.855712] }, { "keytime": 4774.332520, "rotation": [-0.464954, 0.187454, 0.128361, 0.855688] }, { "keytime": 4807.666016, "rotation": [-0.464949, 0.187512, 0.128427, 0.855668] }, { "keytime": 4840.999512, "rotation": [-0.464945, 0.187562, 0.128484, 0.855651] }, { "keytime": 4874.333008, "rotation": [-0.464942, 0.187603, 0.128531, 0.855636] }, { "keytime": 4907.666504, "rotation": [-0.464940, 0.187632, 0.128564, 0.855626] }, { "keytime": 4941.000000, "rotation": [-0.464938, 0.187653, 0.128588, 0.855619] }, { "keytime": 4974.333496, "rotation": [-0.464937, 0.187665, 0.128602, 0.855615] }, { "keytime": 5007.666992, "rotation": [-0.464937, 0.187668, 0.128605, 0.855614] }, { "keytime": 5041.000488, "rotation": [-0.464938, 0.187662, 0.128596, 0.855616] }, { "keytime": 5074.333984, "rotation": [-0.464940, 0.187644, 0.128572, 0.855622] }, { "keytime": 5107.667480, "rotation": [-0.464944, 0.187618, 0.128536, 0.855631] }, { "keytime": 5141.000977, "rotation": [-0.464950, 0.187582, 0.128486, 0.855644] }, { "keytime": 5174.334473, "rotation": [-0.464956, 0.187538, 0.128425, 0.855659] }, { "keytime": 5207.667969, "rotation": [-0.464964, 0.187485, 0.128351, 0.855677] }, { "keytime": 5241.001465, "rotation": [-0.464974, 0.187418, 0.128259, 0.855700] }, { "keytime": 5274.334961, "rotation": [-0.464985, 0.187344, 0.128158, 0.855726] }, { "keytime": 5307.668457, "rotation": [-0.464997, 0.187262, 0.128044, 0.855754] }, { "keytime": 5341.001953, "rotation": [-0.465011, 0.187169, 0.127915, 0.855787] }, { "keytime": 5374.335449, "rotation": [-0.465025, 0.187070, 0.127778, 0.855821] }, { "keytime": 5407.668945, "rotation": [-0.465042, 0.186960, 0.127626, 0.855859] }, { "keytime": 5441.002441, "rotation": [-0.465059, 0.186838, 0.127458, 0.855900] }, { "keytime": 5474.335938, "rotation": [-0.465078, 0.186713, 0.127285, 0.855943] }, { "keytime": 5507.669434, "rotation": [-0.465097, 0.186581, 0.127103, 0.855989] }, { "keytime": 5541.002930, "rotation": [-0.465118, 0.186438, 0.126905, 0.856038] }, { "keytime": 5574.336426, "rotation": [-0.465140, 0.186291, 0.126701, 0.856088] }, { "keytime": 5607.669922, "rotation": [-0.465162, 0.186138, 0.126490, 0.856141] }, { "keytime": 5674.336914, "rotation": [-0.465210, 0.185814, 0.126043, 0.856251] }, { "keytime": 5707.670410, "rotation": [-0.465233, 0.185648, 0.125813, 0.856308] }, { "keytime": 5741.003906, "rotation": [-0.465259, 0.185473, 0.125572, 0.856368] }, { "keytime": 5807.670898, "rotation": [-0.465309, 0.185129, 0.125095, 0.856485] }, { "keytime": 5841.004395, "rotation": [-0.465335, 0.184950, 0.124849, 0.856545] }, { "keytime": 5907.671387, "rotation": [-0.465384, 0.184604, 0.124370, 0.856663] }, { "keytime": 5941.004883, "rotation": [-0.465409, 0.184428, 0.124127, 0.856722] }, { "keytime": 5974.338379, "rotation": [-0.465433, 0.184260, 0.123896, 0.856779] }, { "keytime": 6041.005371, "rotation": [-0.465480, 0.183930, 0.123439, 0.856890] }, { "keytime": 6074.338867, "rotation": [-0.465503, 0.183775, 0.123226, 0.856942] }, { "keytime": 6107.672363, "rotation": [-0.465524, 0.183626, 0.123019, 0.856992] }, { "keytime": 6141.005859, "rotation": [-0.465545, 0.183478, 0.122815, 0.857041] }, { "keytime": 6174.339355, "rotation": [-0.465565, 0.183341, 0.122626, 0.857087] }, { "keytime": 6207.672852, "rotation": [-0.465583, 0.183211, 0.122446, 0.857131] }, { "keytime": 6241.006348, "rotation": [-0.465601, 0.183086, 0.122274, 0.857172] }, { "keytime": 6274.339844, "rotation": [-0.465617, 0.182973, 0.122119, 0.857210] }, { "keytime": 6307.673340, "rotation": [-0.465631, 0.182868, 0.121974, 0.857245] }, { "keytime": 6341.006836, "rotation": [-0.465645, 0.182769, 0.121836, 0.857278] }, { "keytime": 6374.340332, "rotation": [-0.465658, 0.182680, 0.121714, 0.857308] }, { "keytime": 6407.673828, "rotation": [-0.465669, 0.182603, 0.121608, 0.857333] }, { "keytime": 6441.007324, "rotation": [-0.465679, 0.182533, 0.121511, 0.857356] }, { "keytime": 6474.340820, "rotation": [-0.465687, 0.182474, 0.121429, 0.857376] }, { "keytime": 6507.674316, "rotation": [-0.465694, 0.182424, 0.121360, 0.857393] }, { "keytime": 6541.007812, "rotation": [-0.465700, 0.182381, 0.121301, 0.857407] }, { "keytime": 6574.341309, "rotation": [-0.465704, 0.182352, 0.121260, 0.857417] }, { "keytime": 6607.674805, "rotation": [-0.465707, 0.182331, 0.121232, 0.857424] } ] }, { "boneId": "Bone_022", "keyframes": [ { "keytime": 41.000000, "rotation": [ 0.152469, 0.031184, 0.122420, 0.980201] }, { "keytime": 74.333328, "rotation": [ 0.152470, 0.031182, 0.122415, 0.980201] }, { "keytime": 107.666664, "rotation": [ 0.152472, 0.031177, 0.122405, 0.980203] }, { "keytime": 141.000000, "rotation": [ 0.152476, 0.031168, 0.122389, 0.980204] }, { "keytime": 174.333328, "rotation": [ 0.152482, 0.031156, 0.122366, 0.980207] }, { "keytime": 207.666656, "rotation": [ 0.152488, 0.031141, 0.122337, 0.980210] }, { "keytime": 240.999985, "rotation": [ 0.152497, 0.031122, 0.122300, 0.980214] }, { "keytime": 274.333313, "rotation": [ 0.152507, 0.031099, 0.122256, 0.980218] }, { "keytime": 307.666656, "rotation": [ 0.152518, 0.031073, 0.122206, 0.980224] }, { "keytime": 341.000000, "rotation": [ 0.152532, 0.031043, 0.122148, 0.980230] }, { "keytime": 374.333344, "rotation": [ 0.152545, 0.031011, 0.122086, 0.980236] }, { "keytime": 407.666687, "rotation": [ 0.152562, 0.030975, 0.122016, 0.980244] }, { "keytime": 441.000031, "rotation": [ 0.152580, 0.030934, 0.121937, 0.980252] }, { "keytime": 474.333374, "rotation": [ 0.152599, 0.030891, 0.121855, 0.980260] }, { "keytime": 507.666718, "rotation": [ 0.152619, 0.030845, 0.121767, 0.980270] }, { "keytime": 541.000061, "rotation": [ 0.152641, 0.030795, 0.121670, 0.980280] }, { "keytime": 574.333374, "rotation": [ 0.152665, 0.030742, 0.121568, 0.980291] }, { "keytime": 607.666687, "rotation": [ 0.152689, 0.030686, 0.121461, 0.980302] }, { "keytime": 674.333313, "rotation": [ 0.152743, 0.030565, 0.121227, 0.980326] }, { "keytime": 707.666626, "rotation": [ 0.152771, 0.030501, 0.121104, 0.980339] }, { "keytime": 740.999939, "rotation": [ 0.152801, 0.030434, 0.120974, 0.980352] }, { "keytime": 807.666565, "rotation": [ 0.152864, 0.030291, 0.120698, 0.980381] }, { "keytime": 840.999878, "rotation": [ 0.152897, 0.030217, 0.120556, 0.980396] }, { "keytime": 907.666504, "rotation": [ 0.152966, 0.030061, 0.120255, 0.980427] }, { "keytime": 940.999817, "rotation": [ 0.153002, 0.029981, 0.120102, 0.980442] }, { "keytime": 974.333130, "rotation": [ 0.153038, 0.029897, 0.119941, 0.980459] }, { "keytime": 1007.666443, "rotation": [ 0.153074, 0.029815, 0.119783, 0.980475] }, { "keytime": 1040.999756, "rotation": [ 0.153111, 0.029732, 0.119623, 0.980491] }, { "keytime": 1074.333130, "rotation": [ 0.153150, 0.029645, 0.119455, 0.980508] }, { "keytime": 1140.999878, "rotation": [ 0.153224, 0.029475, 0.119127, 0.980542] }, { "keytime": 1174.333252, "rotation": [ 0.153263, 0.029388, 0.118958, 0.980559] }, { "keytime": 1207.666626, "rotation": [ 0.153300, 0.029303, 0.118794, 0.980576] }, { "keytime": 1241.000000, "rotation": [ 0.153338, 0.029215, 0.118624, 0.980593] }, { "keytime": 1307.666748, "rotation": [ 0.153413, 0.029046, 0.118300, 0.980625] }, { "keytime": 1341.000122, "rotation": [ 0.153451, 0.028960, 0.118135, 0.980642] }, { "keytime": 1374.333496, "rotation": [ 0.153487, 0.028879, 0.117977, 0.980657] }, { "keytime": 1441.000244, "rotation": [ 0.153558, 0.028717, 0.117667, 0.980688] }, { "keytime": 1474.333618, "rotation": [ 0.153592, 0.028640, 0.117519, 0.980703] }, { "keytime": 1541.000366, "rotation": [ 0.153658, 0.028489, 0.117228, 0.980732] }, { "keytime": 1574.333740, "rotation": [ 0.153690, 0.028419, 0.117093, 0.980745] }, { "keytime": 1641.000488, "rotation": [ 0.153749, 0.028283, 0.116832, 0.980771] }, { "keytime": 1674.333862, "rotation": [ 0.153777, 0.028220, 0.116710, 0.980783] }, { "keytime": 1707.667236, "rotation": [ 0.153803, 0.028160, 0.116594, 0.980794] }, { "keytime": 1741.000610, "rotation": [ 0.153829, 0.028101, 0.116481, 0.980805] }, { "keytime": 1774.333984, "rotation": [ 0.153853, 0.028047, 0.116377, 0.980815] }, { "keytime": 1807.667358, "rotation": [ 0.153875, 0.027996, 0.116279, 0.980825] }, { "keytime": 1841.000732, "rotation": [ 0.153897, 0.027947, 0.116184, 0.980834] }, { "keytime": 1874.334106, "rotation": [ 0.153916, 0.027902, 0.116097, 0.980843] }, { "keytime": 1907.667480, "rotation": [ 0.153935, 0.027861, 0.116019, 0.980850] }, { "keytime": 1941.000854, "rotation": [ 0.153952, 0.027823, 0.115944, 0.980858] }, { "keytime": 1974.334229, "rotation": [ 0.153967, 0.027788, 0.115878, 0.980864] }, { "keytime": 2007.667603, "rotation": [ 0.153981, 0.027757, 0.115817, 0.980870] }, { "keytime": 2041.000977, "rotation": [ 0.153993, 0.027728, 0.115762, 0.980875] }, { "keytime": 2074.334473, "rotation": [ 0.154004, 0.027704, 0.115716, 0.980880] }, { "keytime": 2107.667725, "rotation": [ 0.154013, 0.027684, 0.115677, 0.980884] }, { "keytime": 2141.000977, "rotation": [ 0.154020, 0.027666, 0.115643, 0.980887] }, { "keytime": 2174.334229, "rotation": [ 0.154027, 0.027652, 0.115616, 0.980889] }, { "keytime": 2207.667480, "rotation": [ 0.154031, 0.027642, 0.115595, 0.980892] }, { "keytime": 2241.000732, "rotation": [ 0.154034, 0.027635, 0.115582, 0.980893] }, { "keytime": 2274.333984, "rotation": [ 0.154036, 0.027632, 0.115576, 0.980893] }, { "keytime": 2307.667236, "rotation": [ 0.154035, 0.027632, 0.115577, 0.980893] }, { "keytime": 2341.000488, "rotation": [ 0.154034, 0.027635, 0.115585, 0.980892] }, { "keytime": 2374.333740, "rotation": [ 0.154031, 0.027642, 0.115602, 0.980891] }, { "keytime": 2407.666992, "rotation": [ 0.154026, 0.027652, 0.115629, 0.980888] }, { "keytime": 2441.000244, "rotation": [ 0.154019, 0.027667, 0.115666, 0.980884] }, { "keytime": 2474.333496, "rotation": [ 0.154010, 0.027684, 0.115711, 0.980880] }, { "keytime": 2507.666748, "rotation": [ 0.154000, 0.027705, 0.115764, 0.980875] }, { "keytime": 2541.000000, "rotation": [ 0.153988, 0.027730, 0.115827, 0.980868] }, { "keytime": 2574.333252, "rotation": [ 0.153974, 0.027758, 0.115899, 0.980861] }, { "keytime": 2607.666504, "rotation": [ 0.153959, 0.027790, 0.115980, 0.980853] }, { "keytime": 2640.999756, "rotation": [ 0.153942, 0.027825, 0.116069, 0.980844] }, { "keytime": 2674.333008, "rotation": [ 0.153923, 0.027864, 0.116170, 0.980834] }, { "keytime": 2707.666260, "rotation": [ 0.153903, 0.027906, 0.116276, 0.980824] }, { "keytime": 2740.999512, "rotation": [ 0.153880, 0.027952, 0.116393, 0.980812] }, { "keytime": 2774.332764, "rotation": [ 0.153856, 0.028002, 0.116522, 0.980799] }, { "keytime": 2807.666016, "rotation": [ 0.153830, 0.028054, 0.116655, 0.980786] }, { "keytime": 2840.999268, "rotation": [ 0.153802, 0.028110, 0.116797, 0.980772] }, { "keytime": 2874.332520, "rotation": [ 0.153774, 0.028170, 0.116951, 0.980756] }, { "keytime": 2907.665771, "rotation": [ 0.153743, 0.028233, 0.117111, 0.980740] }, { "keytime": 2940.999023, "rotation": [ 0.153711, 0.028298, 0.117278, 0.980723] }, { "keytime": 3007.665527, "rotation": [ 0.153642, 0.028440, 0.117640, 0.980687] }, { "keytime": 3040.998779, "rotation": [ 0.153605, 0.028514, 0.117829, 0.980667] }, { "keytime": 3107.665283, "rotation": [ 0.153527, 0.028674, 0.118238, 0.980626] }, { "keytime": 3140.998535, "rotation": [ 0.153487, 0.028757, 0.118449, 0.980604] }, { "keytime": 3207.665039, "rotation": [ 0.153401, 0.028932, 0.118896, 0.980558] }, { "keytime": 3240.998291, "rotation": [ 0.153357, 0.029022, 0.119127, 0.980535] }, { "keytime": 3274.331543, "rotation": [ 0.153311, 0.029117, 0.119369, 0.980510] }, { "keytime": 3307.664795, "rotation": [ 0.153265, 0.029211, 0.119609, 0.980485] }, { "keytime": 3340.998047, "rotation": [ 0.153218, 0.029307, 0.119854, 0.980459] }, { "keytime": 3374.331299, "rotation": [ 0.153168, 0.029408, 0.120110, 0.980433] }, { "keytime": 3407.664551, "rotation": [ 0.153120, 0.029507, 0.120364, 0.980406] }, { "keytime": 3440.997803, "rotation": [ 0.153071, 0.029608, 0.120620, 0.980379] }, { "keytime": 3474.331055, "rotation": [ 0.153020, 0.029712, 0.120887, 0.980351] }, { "keytime": 3540.997559, "rotation": [ 0.152918, 0.029918, 0.121413, 0.980296] }, { "keytime": 3574.330811, "rotation": [ 0.152866, 0.030026, 0.121686, 0.980267] }, { "keytime": 3640.997314, "rotation": [ 0.152764, 0.030234, 0.122220, 0.980210] }, { "keytime": 3674.330566, "rotation": [ 0.152711, 0.030341, 0.122495, 0.980180] }, { "keytime": 3740.997070, "rotation": [ 0.152609, 0.030549, 0.123028, 0.980123] }, { "keytime": 3774.330322, "rotation": [ 0.152557, 0.030656, 0.123300, 0.980094] }, { "keytime": 3807.663574, "rotation": [ 0.152507, 0.030760, 0.123562, 0.980065] }, { "keytime": 3840.996826, "rotation": [ 0.152457, 0.030862, 0.123822, 0.980037] }, { "keytime": 3874.330078, "rotation": [ 0.152406, 0.030966, 0.124088, 0.980008] }, { "keytime": 3907.663330, "rotation": [ 0.152356, 0.031065, 0.124341, 0.979981] }, { "keytime": 3940.996582, "rotation": [ 0.152308, 0.031163, 0.124591, 0.979953] }, { "keytime": 3974.329834, "rotation": [ 0.152259, 0.031262, 0.124845, 0.979925] }, { "keytime": 4007.663086, "rotation": [ 0.152213, 0.031357, 0.125086, 0.979899] }, { "keytime": 4074.329590, "rotation": [ 0.152121, 0.031543, 0.125561, 0.979846] }, { "keytime": 4107.663086, "rotation": [ 0.152078, 0.031631, 0.125786, 0.979821] }, { "keytime": 4174.329590, "rotation": [ 0.151993, 0.031803, 0.126225, 0.979772] }, { "keytime": 4207.663086, "rotation": [ 0.151954, 0.031885, 0.126431, 0.979749] }, { "keytime": 4274.330078, "rotation": [ 0.151877, 0.032040, 0.126827, 0.979705] }, { "keytime": 4307.663574, "rotation": [ 0.151841, 0.032112, 0.127012, 0.979684] }, { "keytime": 4340.997070, "rotation": [ 0.151807, 0.032181, 0.127189, 0.979664] }, { "keytime": 4374.330566, "rotation": [ 0.151774, 0.032250, 0.127364, 0.979644] }, { "keytime": 4407.664062, "rotation": [ 0.151742, 0.032313, 0.127524, 0.979626] }, { "keytime": 4440.997559, "rotation": [ 0.151713, 0.032372, 0.127676, 0.979609] }, { "keytime": 4474.331055, "rotation": [ 0.151684, 0.032430, 0.127824, 0.979592] }, { "keytime": 4507.664551, "rotation": [ 0.151658, 0.032484, 0.127960, 0.979577] }, { "keytime": 4540.998047, "rotation": [ 0.151633, 0.032534, 0.128088, 0.979562] }, { "keytime": 4574.331543, "rotation": [ 0.151609, 0.032581, 0.128209, 0.979549] }, { "keytime": 4607.665039, "rotation": [ 0.151589, 0.032624, 0.128318, 0.979536] }, { "keytime": 4640.998535, "rotation": [ 0.151569, 0.032663, 0.128419, 0.979525] }, { "keytime": 4674.332031, "rotation": [ 0.151550, 0.032701, 0.128514, 0.979514] }, { "keytime": 4707.665527, "rotation": [ 0.151534, 0.032733, 0.128597, 0.979504] }, { "keytime": 4740.999023, "rotation": [ 0.151520, 0.032762, 0.128670, 0.979496] }, { "keytime": 4774.332520, "rotation": [ 0.151507, 0.032788, 0.128736, 0.979488] }, { "keytime": 4807.666016, "rotation": [ 0.151497, 0.032810, 0.128792, 0.979482] }, { "keytime": 4840.999512, "rotation": [ 0.151487, 0.032828, 0.128840, 0.979477] }, { "keytime": 4874.333008, "rotation": [ 0.151480, 0.032844, 0.128880, 0.979472] }, { "keytime": 4907.666504, "rotation": [ 0.151474, 0.032855, 0.128907, 0.979469] }, { "keytime": 4941.000000, "rotation": [ 0.151470, 0.032863, 0.128927, 0.979466] }, { "keytime": 4974.333496, "rotation": [ 0.151468, 0.032867, 0.128938, 0.979465] }, { "keytime": 5007.666992, "rotation": [ 0.151468, 0.032868, 0.128941, 0.979465] }, { "keytime": 5041.000488, "rotation": [ 0.151469, 0.032866, 0.128934, 0.979466] }, { "keytime": 5074.333984, "rotation": [ 0.151472, 0.032861, 0.128912, 0.979468] }, { "keytime": 5107.667480, "rotation": [ 0.151477, 0.032853, 0.128880, 0.979472] }, { "keytime": 5141.000977, "rotation": [ 0.151484, 0.032841, 0.128836, 0.979477] }, { "keytime": 5174.334473, "rotation": [ 0.151492, 0.032827, 0.128782, 0.979483] }, { "keytime": 5207.667969, "rotation": [ 0.151502, 0.032811, 0.128718, 0.979491] }, { "keytime": 5241.001465, "rotation": [ 0.151515, 0.032790, 0.128637, 0.979500] }, { "keytime": 5274.334961, "rotation": [ 0.151528, 0.032767, 0.128547, 0.979511] }, { "keytime": 5307.668457, "rotation": [ 0.151544, 0.032741, 0.128447, 0.979522] }, { "keytime": 5341.001953, "rotation": [ 0.151561, 0.032711, 0.128333, 0.979536] }, { "keytime": 5374.335449, "rotation": [ 0.151580, 0.032680, 0.128212, 0.979550] }, { "keytime": 5407.668945, "rotation": [ 0.151601, 0.032645, 0.128078, 0.979565] }, { "keytime": 5441.002441, "rotation": [ 0.151624, 0.032607, 0.127930, 0.979582] }, { "keytime": 5474.335938, "rotation": [ 0.151647, 0.032567, 0.127777, 0.979600] }, { "keytime": 5507.669434, "rotation": [ 0.151672, 0.032526, 0.127616, 0.979618] }, { "keytime": 5541.002930, "rotation": [ 0.151699, 0.032480, 0.127442, 0.979638] }, { "keytime": 5574.336426, "rotation": [ 0.151726, 0.032435, 0.127262, 0.979659] }, { "keytime": 5607.669922, "rotation": [ 0.151755, 0.032386, 0.127076, 0.979680] }, { "keytime": 5674.336914, "rotation": [ 0.151816, 0.032285, 0.126681, 0.979725] }, { "keytime": 5707.670410, "rotation": [ 0.151847, 0.032232, 0.126479, 0.979748] }, { "keytime": 5741.003906, "rotation": [ 0.151880, 0.032177, 0.126266, 0.979772] }, { "keytime": 5807.670898, "rotation": [ 0.151944, 0.032069, 0.125847, 0.979820] }, { "keytime": 5841.004395, "rotation": [ 0.151977, 0.032013, 0.125628, 0.979845] }, { "keytime": 5907.671387, "rotation": [ 0.152040, 0.031905, 0.125207, 0.979892] }, { "keytime": 5941.004883, "rotation": [ 0.152073, 0.031849, 0.124993, 0.979916] }, { "keytime": 5974.338379, "rotation": [ 0.152104, 0.031796, 0.124788, 0.979939] }, { "keytime": 6041.005371, "rotation": [ 0.152168, 0.031693, 0.124386, 0.979984] }, { "keytime": 6074.338867, "rotation": [ 0.152196, 0.031643, 0.124198, 0.980005] }, { "keytime": 6141.005859, "rotation": [ 0.152252, 0.031550, 0.123836, 0.980045] }, { "keytime": 6174.339355, "rotation": [ 0.152277, 0.031507, 0.123669, 0.980064] }, { "keytime": 6207.672852, "rotation": [ 0.152302, 0.031467, 0.123510, 0.980081] }, { "keytime": 6241.006348, "rotation": [ 0.152324, 0.031427, 0.123359, 0.980098] }, { "keytime": 6274.339844, "rotation": [ 0.152346, 0.031391, 0.123222, 0.980113] }, { "keytime": 6307.673340, "rotation": [ 0.152366, 0.031358, 0.123094, 0.980127] }, { "keytime": 6341.006836, "rotation": [ 0.152384, 0.031327, 0.122972, 0.980141] }, { "keytime": 6374.340332, "rotation": [ 0.152401, 0.031299, 0.122865, 0.980152] }, { "keytime": 6407.673828, "rotation": [ 0.152415, 0.031275, 0.122771, 0.980163] }, { "keytime": 6441.007324, "rotation": [ 0.152428, 0.031253, 0.122686, 0.980172] }, { "keytime": 6474.340820, "rotation": [ 0.152439, 0.031234, 0.122614, 0.980180] }, { "keytime": 6507.674316, "rotation": [ 0.152449, 0.031218, 0.122552, 0.980187] }, { "keytime": 6541.007812, "rotation": [ 0.152456, 0.031205, 0.122501, 0.980192] }, { "keytime": 6574.341309, "rotation": [ 0.152462, 0.031196, 0.122465, 0.980196] }, { "keytime": 6607.674805, "rotation": [ 0.152466, 0.031189, 0.122440, 0.980199] } ] }, { "boneId": "Bone_023", "keyframes": [ { "keytime": 41.000000, "rotation": [ 0.455379, 0.027257, 0.166778, 0.874112] }, { "keytime": 74.333328, "rotation": [ 0.455379, 0.027255, 0.166777, 0.874112] }, { "keytime": 107.666664, "rotation": [ 0.455380, 0.027249, 0.166774, 0.874112] }, { "keytime": 141.000000, "rotation": [ 0.455382, 0.027240, 0.166770, 0.874113] }, { "keytime": 174.333328, "rotation": [ 0.455385, 0.027227, 0.166763, 0.874113] }, { "keytime": 207.666656, "rotation": [ 0.455388, 0.027211, 0.166755, 0.874113] }, { "keytime": 240.999985, "rotation": [ 0.455392, 0.027191, 0.166745, 0.874114] }, { "keytime": 274.333313, "rotation": [ 0.455396, 0.027166, 0.166733, 0.874115] }, { "keytime": 307.666656, "rotation": [ 0.455401, 0.027138, 0.166720, 0.874115] }, { "keytime": 341.000000, "rotation": [ 0.455408, 0.027106, 0.166704, 0.874116] }, { "keytime": 374.333344, "rotation": [ 0.455415, 0.027071, 0.166687, 0.874117] }, { "keytime": 407.666687, "rotation": [ 0.455422, 0.027032, 0.166668, 0.874118] }, { "keytime": 441.000031, "rotation": [ 0.455430, 0.026988, 0.166647, 0.874119] }, { "keytime": 474.333374, "rotation": [ 0.455439, 0.026942, 0.166624, 0.874120] }, { "keytime": 507.666718, "rotation": [ 0.455448, 0.026893, 0.166600, 0.874121] }, { "keytime": 541.000061, "rotation": [ 0.455459, 0.026839, 0.166574, 0.874123] }, { "keytime": 574.333374, "rotation": [ 0.455469, 0.026782, 0.166547, 0.874124] }, { "keytime": 607.666687, "rotation": [ 0.455480, 0.026722, 0.166518, 0.874126] }, { "keytime": 674.333313, "rotation": [ 0.455505, 0.026591, 0.166454, 0.874129] }, { "keytime": 707.666626, "rotation": [ 0.455519, 0.026522, 0.166421, 0.874130] }, { "keytime": 740.999939, "rotation": [ 0.455532, 0.026450, 0.166386, 0.874132] }, { "keytime": 807.666565, "rotation": [ 0.455561, 0.026295, 0.166312, 0.874136] }, { "keytime": 840.999878, "rotation": [ 0.455575, 0.026215, 0.166274, 0.874138] }, { "keytime": 907.666504, "rotation": [ 0.455608, 0.026047, 0.166194, 0.874141] }, { "keytime": 940.999817, "rotation": [ 0.455624, 0.025961, 0.166153, 0.874143] }, { "keytime": 1040.999756, "rotation": [ 0.455675, 0.025691, 0.166026, 0.874149] }, { "keytime": 1140.999878, "rotation": [ 0.455726, 0.025413, 0.165895, 0.874155] }, { "keytime": 1174.333252, "rotation": [ 0.455744, 0.025318, 0.165850, 0.874157] }, { "keytime": 1207.666626, "rotation": [ 0.455761, 0.025225, 0.165807, 0.874159] }, { "keytime": 1241.000000, "rotation": [ 0.455778, 0.025130, 0.165763, 0.874161] }, { "keytime": 1307.666748, "rotation": [ 0.455812, 0.024947, 0.165679, 0.874165] }, { "keytime": 1341.000122, "rotation": [ 0.455829, 0.024854, 0.165636, 0.874166] }, { "keytime": 1374.333496, "rotation": [ 0.455846, 0.024764, 0.165596, 0.874168] }, { "keytime": 1441.000244, "rotation": [ 0.455879, 0.024588, 0.165516, 0.874171] }, { "keytime": 1474.333618, "rotation": [ 0.455895, 0.024504, 0.165479, 0.874172] }, { "keytime": 1541.000366, "rotation": [ 0.455925, 0.024339, 0.165406, 0.874174] }, { "keytime": 1574.333740, "rotation": [ 0.455939, 0.024262, 0.165372, 0.874176] }, { "keytime": 1641.000488, "rotation": [ 0.455966, 0.024112, 0.165308, 0.874178] }, { "keytime": 1674.333862, "rotation": [ 0.455980, 0.024043, 0.165279, 0.874178] }, { "keytime": 1741.000610, "rotation": [ 0.456004, 0.023911, 0.165224, 0.874179] }, { "keytime": 1774.333984, "rotation": [ 0.456015, 0.023851, 0.165200, 0.874180] }, { "keytime": 1841.000732, "rotation": [ 0.456035, 0.023738, 0.165156, 0.874181] }, { "keytime": 1874.334106, "rotation": [ 0.456045, 0.023688, 0.165137, 0.874181] }, { "keytime": 1907.667480, "rotation": [ 0.456053, 0.023642, 0.165120, 0.874181] }, { "keytime": 1941.000854, "rotation": [ 0.456061, 0.023597, 0.165104, 0.874181] }, { "keytime": 1974.334229, "rotation": [ 0.456068, 0.023558, 0.165091, 0.874181] }, { "keytime": 2007.667603, "rotation": [ 0.456075, 0.023522, 0.165080, 0.874180] }, { "keytime": 2041.000977, "rotation": [ 0.456080, 0.023488, 0.165070, 0.874180] }, { "keytime": 2074.334473, "rotation": [ 0.456085, 0.023460, 0.165062, 0.874180] }, { "keytime": 2107.667725, "rotation": [ 0.456090, 0.023435, 0.165057, 0.874179] }, { "keytime": 2141.000977, "rotation": [ 0.456093, 0.023413, 0.165053, 0.874178] }, { "keytime": 2174.334229, "rotation": [ 0.456096, 0.023396, 0.165051, 0.874178] }, { "keytime": 2207.667480, "rotation": [ 0.456098, 0.023381, 0.165051, 0.874177] }, { "keytime": 2241.000732, "rotation": [ 0.456100, 0.023371, 0.165054, 0.874176] }, { "keytime": 2274.333984, "rotation": [ 0.456101, 0.023365, 0.165058, 0.874175] }, { "keytime": 2307.667236, "rotation": [ 0.456101, 0.023362, 0.165064, 0.874174] }, { "keytime": 2341.000488, "rotation": [ 0.456100, 0.023363, 0.165073, 0.874173] }, { "keytime": 2374.333740, "rotation": [ 0.456099, 0.023369, 0.165084, 0.874171] }, { "keytime": 2407.666992, "rotation": [ 0.456096, 0.023380, 0.165098, 0.874170] }, { "keytime": 2441.000244, "rotation": [ 0.456092, 0.023396, 0.165116, 0.874168] }, { "keytime": 2474.333496, "rotation": [ 0.456088, 0.023417, 0.165136, 0.874166] }, { "keytime": 2507.666748, "rotation": [ 0.456083, 0.023442, 0.165158, 0.874163] }, { "keytime": 2541.000000, "rotation": [ 0.456077, 0.023472, 0.165184, 0.874161] }, { "keytime": 2574.333252, "rotation": [ 0.456069, 0.023507, 0.165212, 0.874159] }, { "keytime": 2607.666504, "rotation": [ 0.456062, 0.023547, 0.165243, 0.874156] }, { "keytime": 2640.999756, "rotation": [ 0.456053, 0.023591, 0.165277, 0.874153] }, { "keytime": 2674.333008, "rotation": [ 0.456042, 0.023641, 0.165314, 0.874150] }, { "keytime": 2707.666260, "rotation": [ 0.456032, 0.023694, 0.165353, 0.874147] }, { "keytime": 2740.999512, "rotation": [ 0.456021, 0.023753, 0.165395, 0.874143] }, { "keytime": 2774.332764, "rotation": [ 0.456007, 0.023818, 0.165441, 0.874139] }, { "keytime": 2807.666016, "rotation": [ 0.455994, 0.023886, 0.165488, 0.874135] }, { "keytime": 2840.999268, "rotation": [ 0.455980, 0.023957, 0.165538, 0.874132] }, { "keytime": 2874.332520, "rotation": [ 0.455965, 0.024036, 0.165592, 0.874127] }, { "keytime": 2907.665771, "rotation": [ 0.455948, 0.024117, 0.165647, 0.874123] }, { "keytime": 2940.999023, "rotation": [ 0.455931, 0.024203, 0.165705, 0.874118] }, { "keytime": 3007.665527, "rotation": [ 0.455895, 0.024388, 0.165829, 0.874109] }, { "keytime": 3040.998779, "rotation": [ 0.455875, 0.024486, 0.165893, 0.874104] }, { "keytime": 3107.665283, "rotation": [ 0.455833, 0.024696, 0.166031, 0.874094] }, { "keytime": 3140.998535, "rotation": [ 0.455812, 0.024805, 0.166102, 0.874088] }, { "keytime": 3207.665039, "rotation": [ 0.455767, 0.025036, 0.166252, 0.874077] }, { "keytime": 3240.998291, "rotation": [ 0.455743, 0.025155, 0.166329, 0.874071] }, { "keytime": 3307.664795, "rotation": [ 0.455695, 0.025405, 0.166489, 0.874059] }, { "keytime": 3340.998047, "rotation": [ 0.455670, 0.025532, 0.166570, 0.874052] }, { "keytime": 3440.997803, "rotation": [ 0.455591, 0.025929, 0.166823, 0.874033] }, { "keytime": 3474.331055, "rotation": [ 0.455564, 0.026068, 0.166911, 0.874027] }, { "keytime": 3540.997559, "rotation": [ 0.455510, 0.026341, 0.167083, 0.874013] }, { "keytime": 3574.330811, "rotation": [ 0.455483, 0.026484, 0.167173, 0.874007] }, { "keytime": 3640.997314, "rotation": [ 0.455428, 0.026762, 0.167348, 0.873993] }, { "keytime": 3674.330566, "rotation": [ 0.455400, 0.026905, 0.167437, 0.873986] }, { "keytime": 3740.997070, "rotation": [ 0.455346, 0.027181, 0.167611, 0.873972] }, { "keytime": 3774.330322, "rotation": [ 0.455318, 0.027324, 0.167699, 0.873965] }, { "keytime": 3840.996826, "rotation": [ 0.455264, 0.027598, 0.167869, 0.873953] }, { "keytime": 3874.330078, "rotation": [ 0.455236, 0.027736, 0.167955, 0.873946] }, { "keytime": 3907.663330, "rotation": [ 0.455211, 0.027869, 0.168037, 0.873939] }, { "keytime": 3974.329834, "rotation": [ 0.455159, 0.028132, 0.168200, 0.873926] }, { "keytime": 4007.663086, "rotation": [ 0.455135, 0.028258, 0.168278, 0.873920] }, { "keytime": 4074.329590, "rotation": [ 0.455085, 0.028506, 0.168431, 0.873909] }, { "keytime": 4107.663086, "rotation": [ 0.455062, 0.028624, 0.168504, 0.873903] }, { "keytime": 4174.329590, "rotation": [ 0.455017, 0.028854, 0.168645, 0.873891] }, { "keytime": 4207.663086, "rotation": [ 0.454995, 0.028962, 0.168712, 0.873886] }, { "keytime": 4274.330078, "rotation": [ 0.454954, 0.029169, 0.168839, 0.873876] }, { "keytime": 4307.663574, "rotation": [ 0.454935, 0.029266, 0.168898, 0.873871] }, { "keytime": 4374.330566, "rotation": [ 0.454898, 0.029450, 0.169011, 0.873863] }, { "keytime": 4407.664062, "rotation": [ 0.454882, 0.029534, 0.169063, 0.873858] }, { "keytime": 4474.331055, "rotation": [ 0.454850, 0.029692, 0.169159, 0.873850] }, { "keytime": 4507.664551, "rotation": [ 0.454836, 0.029763, 0.169203, 0.873847] }, { "keytime": 4540.998047, "rotation": [ 0.454823, 0.029830, 0.169244, 0.873843] }, { "keytime": 4574.331543, "rotation": [ 0.454811, 0.029894, 0.169283, 0.873840] }, { "keytime": 4607.665039, "rotation": [ 0.454799, 0.029951, 0.169317, 0.873838] }, { "keytime": 4640.998535, "rotation": [ 0.454789, 0.030004, 0.169350, 0.873835] }, { "keytime": 4674.332031, "rotation": [ 0.454779, 0.030054, 0.169380, 0.873832] }, { "keytime": 4707.665527, "rotation": [ 0.454770, 0.030098, 0.169407, 0.873830] }, { "keytime": 4740.999023, "rotation": [ 0.454762, 0.030136, 0.169430, 0.873829] }, { "keytime": 4774.332520, "rotation": [ 0.454756, 0.030170, 0.169451, 0.873827] }, { "keytime": 4807.666016, "rotation": [ 0.454750, 0.030200, 0.169469, 0.873825] }, { "keytime": 4840.999512, "rotation": [ 0.454745, 0.030225, 0.169484, 0.873824] }, { "keytime": 4874.333008, "rotation": [ 0.454740, 0.030246, 0.169497, 0.873823] }, { "keytime": 4907.666504, "rotation": [ 0.454738, 0.030260, 0.169506, 0.873822] }, { "keytime": 4941.000000, "rotation": [ 0.454736, 0.030271, 0.169512, 0.873822] }, { "keytime": 4974.333496, "rotation": [ 0.454735, 0.030277, 0.169516, 0.873821] }, { "keytime": 5007.666992, "rotation": [ 0.454734, 0.030278, 0.169517, 0.873822] }, { "keytime": 5041.000488, "rotation": [ 0.454735, 0.030275, 0.169513, 0.873822] }, { "keytime": 5074.333984, "rotation": [ 0.454737, 0.030265, 0.169504, 0.873823] }, { "keytime": 5107.667480, "rotation": [ 0.454740, 0.030250, 0.169491, 0.873824] }, { "keytime": 5141.000977, "rotation": [ 0.454745, 0.030229, 0.169473, 0.873826] }, { "keytime": 5174.334473, "rotation": [ 0.454750, 0.030204, 0.169450, 0.873829] }, { "keytime": 5207.667969, "rotation": [ 0.454757, 0.030175, 0.169423, 0.873832] }, { "keytime": 5241.001465, "rotation": [ 0.454764, 0.030137, 0.169389, 0.873836] }, { "keytime": 5274.334961, "rotation": [ 0.454774, 0.030095, 0.169351, 0.873840] }, { "keytime": 5307.668457, "rotation": [ 0.454783, 0.030049, 0.169309, 0.873844] }, { "keytime": 5341.001953, "rotation": [ 0.454795, 0.029996, 0.169261, 0.873849] }, { "keytime": 5374.335449, "rotation": [ 0.454807, 0.029940, 0.169210, 0.873855] }, { "keytime": 5407.668945, "rotation": [ 0.454820, 0.029878, 0.169154, 0.873861] }, { "keytime": 5441.002441, "rotation": [ 0.454835, 0.029809, 0.169092, 0.873868] }, { "keytime": 5474.335938, "rotation": [ 0.454850, 0.029739, 0.169028, 0.873875] }, { "keytime": 5507.669434, "rotation": [ 0.454866, 0.029664, 0.168960, 0.873882] }, { "keytime": 5541.002930, "rotation": [ 0.454884, 0.029583, 0.168887, 0.873890] }, { "keytime": 5574.336426, "rotation": [ 0.454901, 0.029500, 0.168812, 0.873898] }, { "keytime": 5607.669922, "rotation": [ 0.454919, 0.029414, 0.168734, 0.873906] }, { "keytime": 5674.336914, "rotation": [ 0.454959, 0.029231, 0.168568, 0.873924] }, { "keytime": 5707.670410, "rotation": [ 0.454979, 0.029138, 0.168483, 0.873933] }, { "keytime": 5741.003906, "rotation": [ 0.455000, 0.029038, 0.168394, 0.873942] }, { "keytime": 5807.670898, "rotation": [ 0.455041, 0.028844, 0.168217, 0.873961] }, { "keytime": 5841.004395, "rotation": [ 0.455063, 0.028743, 0.168126, 0.873971] }, { "keytime": 5907.671387, "rotation": [ 0.455104, 0.028549, 0.167948, 0.873990] }, { "keytime": 5941.004883, "rotation": [ 0.455125, 0.028449, 0.167859, 0.874000] }, { "keytime": 5974.338379, "rotation": [ 0.455145, 0.028354, 0.167773, 0.874009] }, { "keytime": 6041.005371, "rotation": [ 0.455185, 0.028168, 0.167604, 0.874026] }, { "keytime": 6074.338867, "rotation": [ 0.455203, 0.028080, 0.167525, 0.874035] }, { "keytime": 6141.005859, "rotation": [ 0.455239, 0.027913, 0.167373, 0.874051] }, { "keytime": 6174.339355, "rotation": [ 0.455256, 0.027836, 0.167303, 0.874058] }, { "keytime": 6207.672852, "rotation": [ 0.455271, 0.027762, 0.167236, 0.874065] }, { "keytime": 6241.006348, "rotation": [ 0.455286, 0.027692, 0.167173, 0.874071] }, { "keytime": 6274.339844, "rotation": [ 0.455300, 0.027628, 0.167115, 0.874078] }, { "keytime": 6307.673340, "rotation": [ 0.455312, 0.027569, 0.167061, 0.874083] }, { "keytime": 6341.006836, "rotation": [ 0.455324, 0.027513, 0.167010, 0.874088] }, { "keytime": 6374.340332, "rotation": [ 0.455334, 0.027463, 0.166965, 0.874093] }, { "keytime": 6407.673828, "rotation": [ 0.455344, 0.027420, 0.166926, 0.874097] }, { "keytime": 6441.007324, "rotation": [ 0.455352, 0.027380, 0.166890, 0.874101] }, { "keytime": 6474.340820, "rotation": [ 0.455359, 0.027347, 0.166860, 0.874104] }, { "keytime": 6507.674316, "rotation": [ 0.455366, 0.027319, 0.166834, 0.874107] }, { "keytime": 6541.007812, "rotation": [ 0.455370, 0.027294, 0.166812, 0.874109] }, { "keytime": 6574.341309, "rotation": [ 0.455374, 0.027278, 0.166797, 0.874110] }, { "keytime": 6607.674805, "rotation": [ 0.455376, 0.027266, 0.166786, 0.874112] } ] } ] } ] }
-1
libgdx/libgdx
7,309
Use empty Audio implementations on Android and iOS when audio is disabled
Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
obigu
"2023-12-27T22:37:18Z"
"2023-12-28T19:29:00Z"
2b691f735f4b167c062f8f68186a6d7237d3d855
7f682a7921a47f0da858508f6b6fd58426dd05d7
Use empty Audio implementations on Android and iOS when audio is disabled. Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
./extensions/gdx-bullet/jni/src/bullet/BulletDynamics/ConstraintSolver/btSliderConstraint.h
/* Bullet Continuous Collision Detection and Physics Library Copyright (c) 2003-2006 Erwin Coumans http://continuousphysics.com/Bullet/ This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. */ /* Added by Roman Ponomarev (rponom@gmail.com) April 04, 2008 TODO: - add clamping od accumulated impulse to improve stability - add conversion for ODE constraint solver */ #ifndef BT_SLIDER_CONSTRAINT_H #define BT_SLIDER_CONSTRAINT_H #include "LinearMath/btScalar.h"//for BT_USE_DOUBLE_PRECISION #ifdef BT_USE_DOUBLE_PRECISION #define btSliderConstraintData2 btSliderConstraintDoubleData #define btSliderConstraintDataName "btSliderConstraintDoubleData" #else #define btSliderConstraintData2 btSliderConstraintData #define btSliderConstraintDataName "btSliderConstraintData" #endif //BT_USE_DOUBLE_PRECISION #include "LinearMath/btVector3.h" #include "btJacobianEntry.h" #include "btTypedConstraint.h" class btRigidBody; #define SLIDER_CONSTRAINT_DEF_SOFTNESS (btScalar(1.0)) #define SLIDER_CONSTRAINT_DEF_DAMPING (btScalar(1.0)) #define SLIDER_CONSTRAINT_DEF_RESTITUTION (btScalar(0.7)) #define SLIDER_CONSTRAINT_DEF_CFM (btScalar(0.f)) enum btSliderFlags { BT_SLIDER_FLAGS_CFM_DIRLIN = (1 << 0), BT_SLIDER_FLAGS_ERP_DIRLIN = (1 << 1), BT_SLIDER_FLAGS_CFM_DIRANG = (1 << 2), BT_SLIDER_FLAGS_ERP_DIRANG = (1 << 3), BT_SLIDER_FLAGS_CFM_ORTLIN = (1 << 4), BT_SLIDER_FLAGS_ERP_ORTLIN = (1 << 5), BT_SLIDER_FLAGS_CFM_ORTANG = (1 << 6), BT_SLIDER_FLAGS_ERP_ORTANG = (1 << 7), BT_SLIDER_FLAGS_CFM_LIMLIN = (1 << 8), BT_SLIDER_FLAGS_ERP_LIMLIN = (1 << 9), BT_SLIDER_FLAGS_CFM_LIMANG = (1 << 10), BT_SLIDER_FLAGS_ERP_LIMANG = (1 << 11) }; ATTRIBUTE_ALIGNED16(class) btSliderConstraint : public btTypedConstraint { protected: ///for backwards compatibility during the transition to 'getInfo/getInfo2' bool m_useSolveConstraintObsolete; bool m_useOffsetForConstraintFrame; btTransform m_frameInA; btTransform m_frameInB; // use frameA fo define limits, if true bool m_useLinearReferenceFrameA; // linear limits btScalar m_lowerLinLimit; btScalar m_upperLinLimit; // angular limits btScalar m_lowerAngLimit; btScalar m_upperAngLimit; // softness, restitution and damping for different cases // DirLin - moving inside linear limits // LimLin - hitting linear limit // DirAng - moving inside angular limits // LimAng - hitting angular limit // OrthoLin, OrthoAng - against constraint axis btScalar m_softnessDirLin; btScalar m_restitutionDirLin; btScalar m_dampingDirLin; btScalar m_cfmDirLin; btScalar m_softnessDirAng; btScalar m_restitutionDirAng; btScalar m_dampingDirAng; btScalar m_cfmDirAng; btScalar m_softnessLimLin; btScalar m_restitutionLimLin; btScalar m_dampingLimLin; btScalar m_cfmLimLin; btScalar m_softnessLimAng; btScalar m_restitutionLimAng; btScalar m_dampingLimAng; btScalar m_cfmLimAng; btScalar m_softnessOrthoLin; btScalar m_restitutionOrthoLin; btScalar m_dampingOrthoLin; btScalar m_cfmOrthoLin; btScalar m_softnessOrthoAng; btScalar m_restitutionOrthoAng; btScalar m_dampingOrthoAng; btScalar m_cfmOrthoAng; // for interlal use bool m_solveLinLim; bool m_solveAngLim; int m_flags; btJacobianEntry m_jacLin[3]; btScalar m_jacLinDiagABInv[3]; btJacobianEntry m_jacAng[3]; btScalar m_timeStep; btTransform m_calculatedTransformA; btTransform m_calculatedTransformB; btVector3 m_sliderAxis; btVector3 m_realPivotAInW; btVector3 m_realPivotBInW; btVector3 m_projPivotInW; btVector3 m_delta; btVector3 m_depth; btVector3 m_relPosA; btVector3 m_relPosB; btScalar m_linPos; btScalar m_angPos; btScalar m_angDepth; btScalar m_kAngle; bool m_poweredLinMotor; btScalar m_targetLinMotorVelocity; btScalar m_maxLinMotorForce; btScalar m_accumulatedLinMotorImpulse; bool m_poweredAngMotor; btScalar m_targetAngMotorVelocity; btScalar m_maxAngMotorForce; btScalar m_accumulatedAngMotorImpulse; //------------------------ void initParams(); public: BT_DECLARE_ALIGNED_ALLOCATOR(); // constructors btSliderConstraint(btRigidBody& rbA, btRigidBody& rbB, const btTransform& frameInA, const btTransform& frameInB ,bool useLinearReferenceFrameA); btSliderConstraint(btRigidBody& rbB, const btTransform& frameInB, bool useLinearReferenceFrameA); // overrides virtual void getInfo1 (btConstraintInfo1* info); void getInfo1NonVirtual(btConstraintInfo1* info); virtual void getInfo2 (btConstraintInfo2* info); void getInfo2NonVirtual(btConstraintInfo2* info, const btTransform& transA, const btTransform& transB,const btVector3& linVelA,const btVector3& linVelB, btScalar rbAinvMass,btScalar rbBinvMass); // access const btRigidBody& getRigidBodyA() const { return m_rbA; } const btRigidBody& getRigidBodyB() const { return m_rbB; } const btTransform & getCalculatedTransformA() const { return m_calculatedTransformA; } const btTransform & getCalculatedTransformB() const { return m_calculatedTransformB; } const btTransform & getFrameOffsetA() const { return m_frameInA; } const btTransform & getFrameOffsetB() const { return m_frameInB; } btTransform & getFrameOffsetA() { return m_frameInA; } btTransform & getFrameOffsetB() { return m_frameInB; } btScalar getLowerLinLimit() { return m_lowerLinLimit; } void setLowerLinLimit(btScalar lowerLimit) { m_lowerLinLimit = lowerLimit; } btScalar getUpperLinLimit() { return m_upperLinLimit; } void setUpperLinLimit(btScalar upperLimit) { m_upperLinLimit = upperLimit; } btScalar getLowerAngLimit() { return m_lowerAngLimit; } void setLowerAngLimit(btScalar lowerLimit) { m_lowerAngLimit = btNormalizeAngle(lowerLimit); } btScalar getUpperAngLimit() { return m_upperAngLimit; } void setUpperAngLimit(btScalar upperLimit) { m_upperAngLimit = btNormalizeAngle(upperLimit); } bool getUseLinearReferenceFrameA() { return m_useLinearReferenceFrameA; } btScalar getSoftnessDirLin() { return m_softnessDirLin; } btScalar getRestitutionDirLin() { return m_restitutionDirLin; } btScalar getDampingDirLin() { return m_dampingDirLin ; } btScalar getSoftnessDirAng() { return m_softnessDirAng; } btScalar getRestitutionDirAng() { return m_restitutionDirAng; } btScalar getDampingDirAng() { return m_dampingDirAng; } btScalar getSoftnessLimLin() { return m_softnessLimLin; } btScalar getRestitutionLimLin() { return m_restitutionLimLin; } btScalar getDampingLimLin() { return m_dampingLimLin; } btScalar getSoftnessLimAng() { return m_softnessLimAng; } btScalar getRestitutionLimAng() { return m_restitutionLimAng; } btScalar getDampingLimAng() { return m_dampingLimAng; } btScalar getSoftnessOrthoLin() { return m_softnessOrthoLin; } btScalar getRestitutionOrthoLin() { return m_restitutionOrthoLin; } btScalar getDampingOrthoLin() { return m_dampingOrthoLin; } btScalar getSoftnessOrthoAng() { return m_softnessOrthoAng; } btScalar getRestitutionOrthoAng() { return m_restitutionOrthoAng; } btScalar getDampingOrthoAng() { return m_dampingOrthoAng; } void setSoftnessDirLin(btScalar softnessDirLin) { m_softnessDirLin = softnessDirLin; } void setRestitutionDirLin(btScalar restitutionDirLin) { m_restitutionDirLin = restitutionDirLin; } void setDampingDirLin(btScalar dampingDirLin) { m_dampingDirLin = dampingDirLin; } void setSoftnessDirAng(btScalar softnessDirAng) { m_softnessDirAng = softnessDirAng; } void setRestitutionDirAng(btScalar restitutionDirAng) { m_restitutionDirAng = restitutionDirAng; } void setDampingDirAng(btScalar dampingDirAng) { m_dampingDirAng = dampingDirAng; } void setSoftnessLimLin(btScalar softnessLimLin) { m_softnessLimLin = softnessLimLin; } void setRestitutionLimLin(btScalar restitutionLimLin) { m_restitutionLimLin = restitutionLimLin; } void setDampingLimLin(btScalar dampingLimLin) { m_dampingLimLin = dampingLimLin; } void setSoftnessLimAng(btScalar softnessLimAng) { m_softnessLimAng = softnessLimAng; } void setRestitutionLimAng(btScalar restitutionLimAng) { m_restitutionLimAng = restitutionLimAng; } void setDampingLimAng(btScalar dampingLimAng) { m_dampingLimAng = dampingLimAng; } void setSoftnessOrthoLin(btScalar softnessOrthoLin) { m_softnessOrthoLin = softnessOrthoLin; } void setRestitutionOrthoLin(btScalar restitutionOrthoLin) { m_restitutionOrthoLin = restitutionOrthoLin; } void setDampingOrthoLin(btScalar dampingOrthoLin) { m_dampingOrthoLin = dampingOrthoLin; } void setSoftnessOrthoAng(btScalar softnessOrthoAng) { m_softnessOrthoAng = softnessOrthoAng; } void setRestitutionOrthoAng(btScalar restitutionOrthoAng) { m_restitutionOrthoAng = restitutionOrthoAng; } void setDampingOrthoAng(btScalar dampingOrthoAng) { m_dampingOrthoAng = dampingOrthoAng; } void setPoweredLinMotor(bool onOff) { m_poweredLinMotor = onOff; } bool getPoweredLinMotor() { return m_poweredLinMotor; } void setTargetLinMotorVelocity(btScalar targetLinMotorVelocity) { m_targetLinMotorVelocity = targetLinMotorVelocity; } btScalar getTargetLinMotorVelocity() { return m_targetLinMotorVelocity; } void setMaxLinMotorForce(btScalar maxLinMotorForce) { m_maxLinMotorForce = maxLinMotorForce; } btScalar getMaxLinMotorForce() { return m_maxLinMotorForce; } void setPoweredAngMotor(bool onOff) { m_poweredAngMotor = onOff; } bool getPoweredAngMotor() { return m_poweredAngMotor; } void setTargetAngMotorVelocity(btScalar targetAngMotorVelocity) { m_targetAngMotorVelocity = targetAngMotorVelocity; } btScalar getTargetAngMotorVelocity() { return m_targetAngMotorVelocity; } void setMaxAngMotorForce(btScalar maxAngMotorForce) { m_maxAngMotorForce = maxAngMotorForce; } btScalar getMaxAngMotorForce() { return m_maxAngMotorForce; } btScalar getLinearPos() const { return m_linPos; } btScalar getAngularPos() const { return m_angPos; } // access for ODE solver bool getSolveLinLimit() { return m_solveLinLim; } btScalar getLinDepth() { return m_depth[0]; } bool getSolveAngLimit() { return m_solveAngLim; } btScalar getAngDepth() { return m_angDepth; } // shared code used by ODE solver void calculateTransforms(const btTransform& transA,const btTransform& transB); void testLinLimits(); void testAngLimits(); // access for PE Solver btVector3 getAncorInA(); btVector3 getAncorInB(); // access for UseFrameOffset bool getUseFrameOffset() { return m_useOffsetForConstraintFrame; } void setUseFrameOffset(bool frameOffsetOnOff) { m_useOffsetForConstraintFrame = frameOffsetOnOff; } void setFrames(const btTransform& frameA, const btTransform& frameB) { m_frameInA=frameA; m_frameInB=frameB; calculateTransforms(m_rbA.getCenterOfMassTransform(),m_rbB.getCenterOfMassTransform()); buildJacobian(); } ///override the default global value of a parameter (such as ERP or CFM), optionally provide the axis (0..5). ///If no axis is provided, it uses the default axis for this constraint. virtual void setParam(int num, btScalar value, int axis = -1); ///return the local value of parameter virtual btScalar getParam(int num, int axis = -1) const; virtual int getFlags() const { return m_flags; } virtual int calculateSerializeBufferSize() const; ///fills the dataBuffer and returns the struct name (and 0 on failure) virtual const char* serialize(void* dataBuffer, btSerializer* serializer) const; }; ///do not change those serialization structures, it requires an updated sBulletDNAstr/sBulletDNAstr64 struct btSliderConstraintData { btTypedConstraintData m_typeConstraintData; btTransformFloatData m_rbAFrame; // constraint axii. Assumes z is hinge axis. btTransformFloatData m_rbBFrame; float m_linearUpperLimit; float m_linearLowerLimit; float m_angularUpperLimit; float m_angularLowerLimit; int m_useLinearReferenceFrameA; int m_useOffsetForConstraintFrame; }; struct btSliderConstraintDoubleData { btTypedConstraintDoubleData m_typeConstraintData; btTransformDoubleData m_rbAFrame; // constraint axii. Assumes z is hinge axis. btTransformDoubleData m_rbBFrame; double m_linearUpperLimit; double m_linearLowerLimit; double m_angularUpperLimit; double m_angularLowerLimit; int m_useLinearReferenceFrameA; int m_useOffsetForConstraintFrame; }; SIMD_FORCE_INLINE int btSliderConstraint::calculateSerializeBufferSize() const { return sizeof(btSliderConstraintData2); } ///fills the dataBuffer and returns the struct name (and 0 on failure) SIMD_FORCE_INLINE const char* btSliderConstraint::serialize(void* dataBuffer, btSerializer* serializer) const { btSliderConstraintData2* sliderData = (btSliderConstraintData2*) dataBuffer; btTypedConstraint::serialize(&sliderData->m_typeConstraintData,serializer); m_frameInA.serialize(sliderData->m_rbAFrame); m_frameInB.serialize(sliderData->m_rbBFrame); sliderData->m_linearUpperLimit = m_upperLinLimit; sliderData->m_linearLowerLimit = m_lowerLinLimit; sliderData->m_angularUpperLimit = m_upperAngLimit; sliderData->m_angularLowerLimit = m_lowerAngLimit; sliderData->m_useLinearReferenceFrameA = m_useLinearReferenceFrameA; sliderData->m_useOffsetForConstraintFrame = m_useOffsetForConstraintFrame; return btSliderConstraintDataName; } #endif //BT_SLIDER_CONSTRAINT_H
/* Bullet Continuous Collision Detection and Physics Library Copyright (c) 2003-2006 Erwin Coumans http://continuousphysics.com/Bullet/ This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. */ /* Added by Roman Ponomarev (rponom@gmail.com) April 04, 2008 TODO: - add clamping od accumulated impulse to improve stability - add conversion for ODE constraint solver */ #ifndef BT_SLIDER_CONSTRAINT_H #define BT_SLIDER_CONSTRAINT_H #include "LinearMath/btScalar.h"//for BT_USE_DOUBLE_PRECISION #ifdef BT_USE_DOUBLE_PRECISION #define btSliderConstraintData2 btSliderConstraintDoubleData #define btSliderConstraintDataName "btSliderConstraintDoubleData" #else #define btSliderConstraintData2 btSliderConstraintData #define btSliderConstraintDataName "btSliderConstraintData" #endif //BT_USE_DOUBLE_PRECISION #include "LinearMath/btVector3.h" #include "btJacobianEntry.h" #include "btTypedConstraint.h" class btRigidBody; #define SLIDER_CONSTRAINT_DEF_SOFTNESS (btScalar(1.0)) #define SLIDER_CONSTRAINT_DEF_DAMPING (btScalar(1.0)) #define SLIDER_CONSTRAINT_DEF_RESTITUTION (btScalar(0.7)) #define SLIDER_CONSTRAINT_DEF_CFM (btScalar(0.f)) enum btSliderFlags { BT_SLIDER_FLAGS_CFM_DIRLIN = (1 << 0), BT_SLIDER_FLAGS_ERP_DIRLIN = (1 << 1), BT_SLIDER_FLAGS_CFM_DIRANG = (1 << 2), BT_SLIDER_FLAGS_ERP_DIRANG = (1 << 3), BT_SLIDER_FLAGS_CFM_ORTLIN = (1 << 4), BT_SLIDER_FLAGS_ERP_ORTLIN = (1 << 5), BT_SLIDER_FLAGS_CFM_ORTANG = (1 << 6), BT_SLIDER_FLAGS_ERP_ORTANG = (1 << 7), BT_SLIDER_FLAGS_CFM_LIMLIN = (1 << 8), BT_SLIDER_FLAGS_ERP_LIMLIN = (1 << 9), BT_SLIDER_FLAGS_CFM_LIMANG = (1 << 10), BT_SLIDER_FLAGS_ERP_LIMANG = (1 << 11) }; ATTRIBUTE_ALIGNED16(class) btSliderConstraint : public btTypedConstraint { protected: ///for backwards compatibility during the transition to 'getInfo/getInfo2' bool m_useSolveConstraintObsolete; bool m_useOffsetForConstraintFrame; btTransform m_frameInA; btTransform m_frameInB; // use frameA fo define limits, if true bool m_useLinearReferenceFrameA; // linear limits btScalar m_lowerLinLimit; btScalar m_upperLinLimit; // angular limits btScalar m_lowerAngLimit; btScalar m_upperAngLimit; // softness, restitution and damping for different cases // DirLin - moving inside linear limits // LimLin - hitting linear limit // DirAng - moving inside angular limits // LimAng - hitting angular limit // OrthoLin, OrthoAng - against constraint axis btScalar m_softnessDirLin; btScalar m_restitutionDirLin; btScalar m_dampingDirLin; btScalar m_cfmDirLin; btScalar m_softnessDirAng; btScalar m_restitutionDirAng; btScalar m_dampingDirAng; btScalar m_cfmDirAng; btScalar m_softnessLimLin; btScalar m_restitutionLimLin; btScalar m_dampingLimLin; btScalar m_cfmLimLin; btScalar m_softnessLimAng; btScalar m_restitutionLimAng; btScalar m_dampingLimAng; btScalar m_cfmLimAng; btScalar m_softnessOrthoLin; btScalar m_restitutionOrthoLin; btScalar m_dampingOrthoLin; btScalar m_cfmOrthoLin; btScalar m_softnessOrthoAng; btScalar m_restitutionOrthoAng; btScalar m_dampingOrthoAng; btScalar m_cfmOrthoAng; // for interlal use bool m_solveLinLim; bool m_solveAngLim; int m_flags; btJacobianEntry m_jacLin[3]; btScalar m_jacLinDiagABInv[3]; btJacobianEntry m_jacAng[3]; btScalar m_timeStep; btTransform m_calculatedTransformA; btTransform m_calculatedTransformB; btVector3 m_sliderAxis; btVector3 m_realPivotAInW; btVector3 m_realPivotBInW; btVector3 m_projPivotInW; btVector3 m_delta; btVector3 m_depth; btVector3 m_relPosA; btVector3 m_relPosB; btScalar m_linPos; btScalar m_angPos; btScalar m_angDepth; btScalar m_kAngle; bool m_poweredLinMotor; btScalar m_targetLinMotorVelocity; btScalar m_maxLinMotorForce; btScalar m_accumulatedLinMotorImpulse; bool m_poweredAngMotor; btScalar m_targetAngMotorVelocity; btScalar m_maxAngMotorForce; btScalar m_accumulatedAngMotorImpulse; //------------------------ void initParams(); public: BT_DECLARE_ALIGNED_ALLOCATOR(); // constructors btSliderConstraint(btRigidBody& rbA, btRigidBody& rbB, const btTransform& frameInA, const btTransform& frameInB ,bool useLinearReferenceFrameA); btSliderConstraint(btRigidBody& rbB, const btTransform& frameInB, bool useLinearReferenceFrameA); // overrides virtual void getInfo1 (btConstraintInfo1* info); void getInfo1NonVirtual(btConstraintInfo1* info); virtual void getInfo2 (btConstraintInfo2* info); void getInfo2NonVirtual(btConstraintInfo2* info, const btTransform& transA, const btTransform& transB,const btVector3& linVelA,const btVector3& linVelB, btScalar rbAinvMass,btScalar rbBinvMass); // access const btRigidBody& getRigidBodyA() const { return m_rbA; } const btRigidBody& getRigidBodyB() const { return m_rbB; } const btTransform & getCalculatedTransformA() const { return m_calculatedTransformA; } const btTransform & getCalculatedTransformB() const { return m_calculatedTransformB; } const btTransform & getFrameOffsetA() const { return m_frameInA; } const btTransform & getFrameOffsetB() const { return m_frameInB; } btTransform & getFrameOffsetA() { return m_frameInA; } btTransform & getFrameOffsetB() { return m_frameInB; } btScalar getLowerLinLimit() { return m_lowerLinLimit; } void setLowerLinLimit(btScalar lowerLimit) { m_lowerLinLimit = lowerLimit; } btScalar getUpperLinLimit() { return m_upperLinLimit; } void setUpperLinLimit(btScalar upperLimit) { m_upperLinLimit = upperLimit; } btScalar getLowerAngLimit() { return m_lowerAngLimit; } void setLowerAngLimit(btScalar lowerLimit) { m_lowerAngLimit = btNormalizeAngle(lowerLimit); } btScalar getUpperAngLimit() { return m_upperAngLimit; } void setUpperAngLimit(btScalar upperLimit) { m_upperAngLimit = btNormalizeAngle(upperLimit); } bool getUseLinearReferenceFrameA() { return m_useLinearReferenceFrameA; } btScalar getSoftnessDirLin() { return m_softnessDirLin; } btScalar getRestitutionDirLin() { return m_restitutionDirLin; } btScalar getDampingDirLin() { return m_dampingDirLin ; } btScalar getSoftnessDirAng() { return m_softnessDirAng; } btScalar getRestitutionDirAng() { return m_restitutionDirAng; } btScalar getDampingDirAng() { return m_dampingDirAng; } btScalar getSoftnessLimLin() { return m_softnessLimLin; } btScalar getRestitutionLimLin() { return m_restitutionLimLin; } btScalar getDampingLimLin() { return m_dampingLimLin; } btScalar getSoftnessLimAng() { return m_softnessLimAng; } btScalar getRestitutionLimAng() { return m_restitutionLimAng; } btScalar getDampingLimAng() { return m_dampingLimAng; } btScalar getSoftnessOrthoLin() { return m_softnessOrthoLin; } btScalar getRestitutionOrthoLin() { return m_restitutionOrthoLin; } btScalar getDampingOrthoLin() { return m_dampingOrthoLin; } btScalar getSoftnessOrthoAng() { return m_softnessOrthoAng; } btScalar getRestitutionOrthoAng() { return m_restitutionOrthoAng; } btScalar getDampingOrthoAng() { return m_dampingOrthoAng; } void setSoftnessDirLin(btScalar softnessDirLin) { m_softnessDirLin = softnessDirLin; } void setRestitutionDirLin(btScalar restitutionDirLin) { m_restitutionDirLin = restitutionDirLin; } void setDampingDirLin(btScalar dampingDirLin) { m_dampingDirLin = dampingDirLin; } void setSoftnessDirAng(btScalar softnessDirAng) { m_softnessDirAng = softnessDirAng; } void setRestitutionDirAng(btScalar restitutionDirAng) { m_restitutionDirAng = restitutionDirAng; } void setDampingDirAng(btScalar dampingDirAng) { m_dampingDirAng = dampingDirAng; } void setSoftnessLimLin(btScalar softnessLimLin) { m_softnessLimLin = softnessLimLin; } void setRestitutionLimLin(btScalar restitutionLimLin) { m_restitutionLimLin = restitutionLimLin; } void setDampingLimLin(btScalar dampingLimLin) { m_dampingLimLin = dampingLimLin; } void setSoftnessLimAng(btScalar softnessLimAng) { m_softnessLimAng = softnessLimAng; } void setRestitutionLimAng(btScalar restitutionLimAng) { m_restitutionLimAng = restitutionLimAng; } void setDampingLimAng(btScalar dampingLimAng) { m_dampingLimAng = dampingLimAng; } void setSoftnessOrthoLin(btScalar softnessOrthoLin) { m_softnessOrthoLin = softnessOrthoLin; } void setRestitutionOrthoLin(btScalar restitutionOrthoLin) { m_restitutionOrthoLin = restitutionOrthoLin; } void setDampingOrthoLin(btScalar dampingOrthoLin) { m_dampingOrthoLin = dampingOrthoLin; } void setSoftnessOrthoAng(btScalar softnessOrthoAng) { m_softnessOrthoAng = softnessOrthoAng; } void setRestitutionOrthoAng(btScalar restitutionOrthoAng) { m_restitutionOrthoAng = restitutionOrthoAng; } void setDampingOrthoAng(btScalar dampingOrthoAng) { m_dampingOrthoAng = dampingOrthoAng; } void setPoweredLinMotor(bool onOff) { m_poweredLinMotor = onOff; } bool getPoweredLinMotor() { return m_poweredLinMotor; } void setTargetLinMotorVelocity(btScalar targetLinMotorVelocity) { m_targetLinMotorVelocity = targetLinMotorVelocity; } btScalar getTargetLinMotorVelocity() { return m_targetLinMotorVelocity; } void setMaxLinMotorForce(btScalar maxLinMotorForce) { m_maxLinMotorForce = maxLinMotorForce; } btScalar getMaxLinMotorForce() { return m_maxLinMotorForce; } void setPoweredAngMotor(bool onOff) { m_poweredAngMotor = onOff; } bool getPoweredAngMotor() { return m_poweredAngMotor; } void setTargetAngMotorVelocity(btScalar targetAngMotorVelocity) { m_targetAngMotorVelocity = targetAngMotorVelocity; } btScalar getTargetAngMotorVelocity() { return m_targetAngMotorVelocity; } void setMaxAngMotorForce(btScalar maxAngMotorForce) { m_maxAngMotorForce = maxAngMotorForce; } btScalar getMaxAngMotorForce() { return m_maxAngMotorForce; } btScalar getLinearPos() const { return m_linPos; } btScalar getAngularPos() const { return m_angPos; } // access for ODE solver bool getSolveLinLimit() { return m_solveLinLim; } btScalar getLinDepth() { return m_depth[0]; } bool getSolveAngLimit() { return m_solveAngLim; } btScalar getAngDepth() { return m_angDepth; } // shared code used by ODE solver void calculateTransforms(const btTransform& transA,const btTransform& transB); void testLinLimits(); void testAngLimits(); // access for PE Solver btVector3 getAncorInA(); btVector3 getAncorInB(); // access for UseFrameOffset bool getUseFrameOffset() { return m_useOffsetForConstraintFrame; } void setUseFrameOffset(bool frameOffsetOnOff) { m_useOffsetForConstraintFrame = frameOffsetOnOff; } void setFrames(const btTransform& frameA, const btTransform& frameB) { m_frameInA=frameA; m_frameInB=frameB; calculateTransforms(m_rbA.getCenterOfMassTransform(),m_rbB.getCenterOfMassTransform()); buildJacobian(); } ///override the default global value of a parameter (such as ERP or CFM), optionally provide the axis (0..5). ///If no axis is provided, it uses the default axis for this constraint. virtual void setParam(int num, btScalar value, int axis = -1); ///return the local value of parameter virtual btScalar getParam(int num, int axis = -1) const; virtual int getFlags() const { return m_flags; } virtual int calculateSerializeBufferSize() const; ///fills the dataBuffer and returns the struct name (and 0 on failure) virtual const char* serialize(void* dataBuffer, btSerializer* serializer) const; }; ///do not change those serialization structures, it requires an updated sBulletDNAstr/sBulletDNAstr64 struct btSliderConstraintData { btTypedConstraintData m_typeConstraintData; btTransformFloatData m_rbAFrame; // constraint axii. Assumes z is hinge axis. btTransformFloatData m_rbBFrame; float m_linearUpperLimit; float m_linearLowerLimit; float m_angularUpperLimit; float m_angularLowerLimit; int m_useLinearReferenceFrameA; int m_useOffsetForConstraintFrame; }; struct btSliderConstraintDoubleData { btTypedConstraintDoubleData m_typeConstraintData; btTransformDoubleData m_rbAFrame; // constraint axii. Assumes z is hinge axis. btTransformDoubleData m_rbBFrame; double m_linearUpperLimit; double m_linearLowerLimit; double m_angularUpperLimit; double m_angularLowerLimit; int m_useLinearReferenceFrameA; int m_useOffsetForConstraintFrame; }; SIMD_FORCE_INLINE int btSliderConstraint::calculateSerializeBufferSize() const { return sizeof(btSliderConstraintData2); } ///fills the dataBuffer and returns the struct name (and 0 on failure) SIMD_FORCE_INLINE const char* btSliderConstraint::serialize(void* dataBuffer, btSerializer* serializer) const { btSliderConstraintData2* sliderData = (btSliderConstraintData2*) dataBuffer; btTypedConstraint::serialize(&sliderData->m_typeConstraintData,serializer); m_frameInA.serialize(sliderData->m_rbAFrame); m_frameInB.serialize(sliderData->m_rbBFrame); sliderData->m_linearUpperLimit = m_upperLinLimit; sliderData->m_linearLowerLimit = m_lowerLinLimit; sliderData->m_angularUpperLimit = m_upperAngLimit; sliderData->m_angularLowerLimit = m_lowerAngLimit; sliderData->m_useLinearReferenceFrameA = m_useLinearReferenceFrameA; sliderData->m_useOffsetForConstraintFrame = m_useOffsetForConstraintFrame; return btSliderConstraintDataName; } #endif //BT_SLIDER_CONSTRAINT_H
-1
libgdx/libgdx
7,309
Use empty Audio implementations on Android and iOS when audio is disabled
Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
obigu
"2023-12-27T22:37:18Z"
"2023-12-28T19:29:00Z"
2b691f735f4b167c062f8f68186a6d7237d3d855
7f682a7921a47f0da858508f6b6fd58426dd05d7
Use empty Audio implementations on Android and iOS when audio is disabled. Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
./backends/gdx-backend-robovm/src/com/badlogic/gdx/backends/iosrobovm/custom/UIAccelerometerDelegateAdapter.java
/* * Copyright (C) 2014 Trillian Mobile AB * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.badlogic.gdx.backends.iosrobovm.custom; /*<imports>*/ import org.robovm.objc.annotation.*; import org.robovm.apple.foundation.*; /*</imports>*/ /*<javadoc>*/ /*</javadoc>*/ /*<annotations>*//*</annotations>*/ /*<visibility>*/public/* </visibility> */ class /* <name> */ UIAccelerometerDelegateAdapter/* </name> */ extends /* <extends> */NSObject/* </extends> */ /* <implements> */ implements UIAccelerometerDelegate/* </implements> */ { /* <ptr> */ /* </ptr> */ /* <bind> */ /* </bind> */ /* <constants> *//* </constants> */ /* <constructors> *//* </constructors> */ /* <properties> */ /* </properties> */ /* <members> *//* </members> */ /* <methods> */ /** @since Available in iOS 2.0 and later. * @deprecated Deprecated in iOS 5.0. */ @Deprecated @NotImplemented("accelerometer:didAccelerate:") public void didAccelerate (UIAccelerometer accelerometer, UIAcceleration acceleration) { throw new UnsupportedOperationException(); } /* </methods> */ }
/* * Copyright (C) 2014 Trillian Mobile AB * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.badlogic.gdx.backends.iosrobovm.custom; /*<imports>*/ import org.robovm.objc.annotation.*; import org.robovm.apple.foundation.*; /*</imports>*/ /*<javadoc>*/ /*</javadoc>*/ /*<annotations>*//*</annotations>*/ /*<visibility>*/public/* </visibility> */ class /* <name> */ UIAccelerometerDelegateAdapter/* </name> */ extends /* <extends> */NSObject/* </extends> */ /* <implements> */ implements UIAccelerometerDelegate/* </implements> */ { /* <ptr> */ /* </ptr> */ /* <bind> */ /* </bind> */ /* <constants> *//* </constants> */ /* <constructors> *//* </constructors> */ /* <properties> */ /* </properties> */ /* <members> *//* </members> */ /* <methods> */ /** @since Available in iOS 2.0 and later. * @deprecated Deprecated in iOS 5.0. */ @Deprecated @NotImplemented("accelerometer:didAccelerate:") public void didAccelerate (UIAccelerometer accelerometer, UIAcceleration acceleration) { throw new UnsupportedOperationException(); } /* </methods> */ }
-1
libgdx/libgdx
7,309
Use empty Audio implementations on Android and iOS when audio is disabled
Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
obigu
"2023-12-27T22:37:18Z"
"2023-12-28T19:29:00Z"
2b691f735f4b167c062f8f68186a6d7237d3d855
7f682a7921a47f0da858508f6b6fd58426dd05d7
Use empty Audio implementations on Android and iOS when audio is disabled. Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
./extensions/gdx-bullet/jni/swig-src/dynamics/com/badlogic/gdx/physics/bullet/dynamics/btJointFeedback.java
/* ---------------------------------------------------------------------------- * This file was automatically generated by SWIG (http://www.swig.org). * Version 3.0.11 * * Do not make changes to this file unless you know what you are doing--modify * the SWIG interface file instead. * ----------------------------------------------------------------------------- */ package com.badlogic.gdx.physics.bullet.dynamics; import com.badlogic.gdx.physics.bullet.BulletBase; import com.badlogic.gdx.physics.bullet.linearmath.*; import com.badlogic.gdx.physics.bullet.collision.*; public class btJointFeedback extends BulletBase { private long swigCPtr; protected btJointFeedback (final String className, long cPtr, boolean cMemoryOwn) { super(className, cPtr, cMemoryOwn); swigCPtr = cPtr; } /** Construct a new btJointFeedback, normally you should not need this constructor it's intended for low-level usage. */ public btJointFeedback (long cPtr, boolean cMemoryOwn) { this("btJointFeedback", cPtr, cMemoryOwn); construct(); } @Override protected void reset (long cPtr, boolean cMemoryOwn) { if (!destroyed) destroy(); super.reset(swigCPtr = cPtr, cMemoryOwn); } public static long getCPtr (btJointFeedback obj) { return (obj == null) ? 0 : obj.swigCPtr; } @Override protected void finalize () throws Throwable { if (!destroyed) destroy(); super.finalize(); } @Override protected synchronized void delete () { if (swigCPtr != 0) { if (swigCMemOwn) { swigCMemOwn = false; DynamicsJNI.delete_btJointFeedback(swigCPtr); } swigCPtr = 0; } super.delete(); } public long operatorNew (long sizeInBytes) { return DynamicsJNI.btJointFeedback_operatorNew__SWIG_0(swigCPtr, this, sizeInBytes); } public void operatorDelete (long ptr) { DynamicsJNI.btJointFeedback_operatorDelete__SWIG_0(swigCPtr, this, ptr); } public long operatorNew (long arg0, long ptr) { return DynamicsJNI.btJointFeedback_operatorNew__SWIG_1(swigCPtr, this, arg0, ptr); } public void operatorDelete (long arg0, long arg1) { DynamicsJNI.btJointFeedback_operatorDelete__SWIG_1(swigCPtr, this, arg0, arg1); } public long operatorNewArray (long sizeInBytes) { return DynamicsJNI.btJointFeedback_operatorNewArray__SWIG_0(swigCPtr, this, sizeInBytes); } public void operatorDeleteArray (long ptr) { DynamicsJNI.btJointFeedback_operatorDeleteArray__SWIG_0(swigCPtr, this, ptr); } public long operatorNewArray (long arg0, long ptr) { return DynamicsJNI.btJointFeedback_operatorNewArray__SWIG_1(swigCPtr, this, arg0, ptr); } public void operatorDeleteArray (long arg0, long arg1) { DynamicsJNI.btJointFeedback_operatorDeleteArray__SWIG_1(swigCPtr, this, arg0, arg1); } public void setAppliedForceBodyA (btVector3 value) { DynamicsJNI.btJointFeedback_appliedForceBodyA_set(swigCPtr, this, btVector3.getCPtr(value), value); } public btVector3 getAppliedForceBodyA () { long cPtr = DynamicsJNI.btJointFeedback_appliedForceBodyA_get(swigCPtr, this); return (cPtr == 0) ? null : new btVector3(cPtr, false); } public void setAppliedTorqueBodyA (btVector3 value) { DynamicsJNI.btJointFeedback_appliedTorqueBodyA_set(swigCPtr, this, btVector3.getCPtr(value), value); } public btVector3 getAppliedTorqueBodyA () { long cPtr = DynamicsJNI.btJointFeedback_appliedTorqueBodyA_get(swigCPtr, this); return (cPtr == 0) ? null : new btVector3(cPtr, false); } public void setAppliedForceBodyB (btVector3 value) { DynamicsJNI.btJointFeedback_appliedForceBodyB_set(swigCPtr, this, btVector3.getCPtr(value), value); } public btVector3 getAppliedForceBodyB () { long cPtr = DynamicsJNI.btJointFeedback_appliedForceBodyB_get(swigCPtr, this); return (cPtr == 0) ? null : new btVector3(cPtr, false); } public void setAppliedTorqueBodyB (btVector3 value) { DynamicsJNI.btJointFeedback_appliedTorqueBodyB_set(swigCPtr, this, btVector3.getCPtr(value), value); } public btVector3 getAppliedTorqueBodyB () { long cPtr = DynamicsJNI.btJointFeedback_appliedTorqueBodyB_get(swigCPtr, this); return (cPtr == 0) ? null : new btVector3(cPtr, false); } public btJointFeedback () { this(DynamicsJNI.new_btJointFeedback(), true); } }
/* ---------------------------------------------------------------------------- * This file was automatically generated by SWIG (http://www.swig.org). * Version 3.0.11 * * Do not make changes to this file unless you know what you are doing--modify * the SWIG interface file instead. * ----------------------------------------------------------------------------- */ package com.badlogic.gdx.physics.bullet.dynamics; import com.badlogic.gdx.physics.bullet.BulletBase; import com.badlogic.gdx.physics.bullet.linearmath.*; import com.badlogic.gdx.physics.bullet.collision.*; public class btJointFeedback extends BulletBase { private long swigCPtr; protected btJointFeedback (final String className, long cPtr, boolean cMemoryOwn) { super(className, cPtr, cMemoryOwn); swigCPtr = cPtr; } /** Construct a new btJointFeedback, normally you should not need this constructor it's intended for low-level usage. */ public btJointFeedback (long cPtr, boolean cMemoryOwn) { this("btJointFeedback", cPtr, cMemoryOwn); construct(); } @Override protected void reset (long cPtr, boolean cMemoryOwn) { if (!destroyed) destroy(); super.reset(swigCPtr = cPtr, cMemoryOwn); } public static long getCPtr (btJointFeedback obj) { return (obj == null) ? 0 : obj.swigCPtr; } @Override protected void finalize () throws Throwable { if (!destroyed) destroy(); super.finalize(); } @Override protected synchronized void delete () { if (swigCPtr != 0) { if (swigCMemOwn) { swigCMemOwn = false; DynamicsJNI.delete_btJointFeedback(swigCPtr); } swigCPtr = 0; } super.delete(); } public long operatorNew (long sizeInBytes) { return DynamicsJNI.btJointFeedback_operatorNew__SWIG_0(swigCPtr, this, sizeInBytes); } public void operatorDelete (long ptr) { DynamicsJNI.btJointFeedback_operatorDelete__SWIG_0(swigCPtr, this, ptr); } public long operatorNew (long arg0, long ptr) { return DynamicsJNI.btJointFeedback_operatorNew__SWIG_1(swigCPtr, this, arg0, ptr); } public void operatorDelete (long arg0, long arg1) { DynamicsJNI.btJointFeedback_operatorDelete__SWIG_1(swigCPtr, this, arg0, arg1); } public long operatorNewArray (long sizeInBytes) { return DynamicsJNI.btJointFeedback_operatorNewArray__SWIG_0(swigCPtr, this, sizeInBytes); } public void operatorDeleteArray (long ptr) { DynamicsJNI.btJointFeedback_operatorDeleteArray__SWIG_0(swigCPtr, this, ptr); } public long operatorNewArray (long arg0, long ptr) { return DynamicsJNI.btJointFeedback_operatorNewArray__SWIG_1(swigCPtr, this, arg0, ptr); } public void operatorDeleteArray (long arg0, long arg1) { DynamicsJNI.btJointFeedback_operatorDeleteArray__SWIG_1(swigCPtr, this, arg0, arg1); } public void setAppliedForceBodyA (btVector3 value) { DynamicsJNI.btJointFeedback_appliedForceBodyA_set(swigCPtr, this, btVector3.getCPtr(value), value); } public btVector3 getAppliedForceBodyA () { long cPtr = DynamicsJNI.btJointFeedback_appliedForceBodyA_get(swigCPtr, this); return (cPtr == 0) ? null : new btVector3(cPtr, false); } public void setAppliedTorqueBodyA (btVector3 value) { DynamicsJNI.btJointFeedback_appliedTorqueBodyA_set(swigCPtr, this, btVector3.getCPtr(value), value); } public btVector3 getAppliedTorqueBodyA () { long cPtr = DynamicsJNI.btJointFeedback_appliedTorqueBodyA_get(swigCPtr, this); return (cPtr == 0) ? null : new btVector3(cPtr, false); } public void setAppliedForceBodyB (btVector3 value) { DynamicsJNI.btJointFeedback_appliedForceBodyB_set(swigCPtr, this, btVector3.getCPtr(value), value); } public btVector3 getAppliedForceBodyB () { long cPtr = DynamicsJNI.btJointFeedback_appliedForceBodyB_get(swigCPtr, this); return (cPtr == 0) ? null : new btVector3(cPtr, false); } public void setAppliedTorqueBodyB (btVector3 value) { DynamicsJNI.btJointFeedback_appliedTorqueBodyB_set(swigCPtr, this, btVector3.getCPtr(value), value); } public btVector3 getAppliedTorqueBodyB () { long cPtr = DynamicsJNI.btJointFeedback_appliedTorqueBodyB_get(swigCPtr, this); return (cPtr == 0) ? null : new btVector3(cPtr, false); } public btJointFeedback () { this(DynamicsJNI.new_btJointFeedback(), true); } }
-1
libgdx/libgdx
7,309
Use empty Audio implementations on Android and iOS when audio is disabled
Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
obigu
"2023-12-27T22:37:18Z"
"2023-12-28T19:29:00Z"
2b691f735f4b167c062f8f68186a6d7237d3d855
7f682a7921a47f0da858508f6b6fd58426dd05d7
Use empty Audio implementations on Android and iOS when audio is disabled. Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
./extensions/gdx-tools/src/com/badlogic/gdx/tools/etc1/ETC1Compressor.java
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.tools.etc1; import java.io.File; import java.util.ArrayList; import com.badlogic.gdx.files.FileHandle; import com.badlogic.gdx.graphics.Pixmap; import com.badlogic.gdx.graphics.Pixmap.Blending; import com.badlogic.gdx.graphics.Pixmap.Format; import com.badlogic.gdx.graphics.glutils.ETC1; import com.badlogic.gdx.tools.FileProcessor; import com.badlogic.gdx.utils.GdxNativesLoader; public class ETC1Compressor { static class ETC1FileProcessor extends FileProcessor { ETC1FileProcessor () { addInputSuffix(".png"); addInputSuffix(".jpg"); addInputSuffix(".jpeg"); addInputSuffix(".bmp"); setOutputSuffix(".etc1"); } @Override protected void processFile (Entry entry) throws Exception { System.out.println("Processing " + entry.inputFile); Pixmap pixmap = new Pixmap(new FileHandle(entry.inputFile)); if (pixmap.getFormat() != Format.RGB888 && pixmap.getFormat() != Format.RGB565) { System.out.println("Converting from " + pixmap.getFormat() + " to RGB888!"); Pixmap tmp = new Pixmap(pixmap.getWidth(), pixmap.getHeight(), Format.RGB888); tmp.setBlending(Blending.None); tmp.drawPixmap(pixmap, 0, 0, 0, 0, pixmap.getWidth(), pixmap.getHeight()); pixmap.dispose(); pixmap = tmp; } ETC1.encodeImagePKM(pixmap).write(new FileHandle(entry.outputFile)); pixmap.dispose(); } @Override protected void processDir (Entry entryDir, ArrayList<Entry> value) throws Exception { if (!entryDir.outputDir.exists()) { if (!entryDir.outputDir.mkdirs()) throw new Exception("Couldn't create output directory '" + entryDir.outputDir + "'"); } } } public static void process (String inputDirectory, String outputDirectory, boolean recursive, boolean flatten) throws Exception { GdxNativesLoader.load(); ETC1FileProcessor processor = new ETC1FileProcessor(); processor.setRecursive(recursive); processor.setFlattenOutput(flatten); processor.process(new File(inputDirectory), new File(outputDirectory)); } public static void main (String[] args) throws Exception { if (args.length != 2) { System.out.println("ETC1Compressor <input-dir> <output-dir>"); System.exit(-1); } ETC1Compressor.process(args[0], args[1], true, false); } }
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.tools.etc1; import java.io.File; import java.util.ArrayList; import com.badlogic.gdx.files.FileHandle; import com.badlogic.gdx.graphics.Pixmap; import com.badlogic.gdx.graphics.Pixmap.Blending; import com.badlogic.gdx.graphics.Pixmap.Format; import com.badlogic.gdx.graphics.glutils.ETC1; import com.badlogic.gdx.tools.FileProcessor; import com.badlogic.gdx.utils.GdxNativesLoader; public class ETC1Compressor { static class ETC1FileProcessor extends FileProcessor { ETC1FileProcessor () { addInputSuffix(".png"); addInputSuffix(".jpg"); addInputSuffix(".jpeg"); addInputSuffix(".bmp"); setOutputSuffix(".etc1"); } @Override protected void processFile (Entry entry) throws Exception { System.out.println("Processing " + entry.inputFile); Pixmap pixmap = new Pixmap(new FileHandle(entry.inputFile)); if (pixmap.getFormat() != Format.RGB888 && pixmap.getFormat() != Format.RGB565) { System.out.println("Converting from " + pixmap.getFormat() + " to RGB888!"); Pixmap tmp = new Pixmap(pixmap.getWidth(), pixmap.getHeight(), Format.RGB888); tmp.setBlending(Blending.None); tmp.drawPixmap(pixmap, 0, 0, 0, 0, pixmap.getWidth(), pixmap.getHeight()); pixmap.dispose(); pixmap = tmp; } ETC1.encodeImagePKM(pixmap).write(new FileHandle(entry.outputFile)); pixmap.dispose(); } @Override protected void processDir (Entry entryDir, ArrayList<Entry> value) throws Exception { if (!entryDir.outputDir.exists()) { if (!entryDir.outputDir.mkdirs()) throw new Exception("Couldn't create output directory '" + entryDir.outputDir + "'"); } } } public static void process (String inputDirectory, String outputDirectory, boolean recursive, boolean flatten) throws Exception { GdxNativesLoader.load(); ETC1FileProcessor processor = new ETC1FileProcessor(); processor.setRecursive(recursive); processor.setFlattenOutput(flatten); processor.process(new File(inputDirectory), new File(outputDirectory)); } public static void main (String[] args) throws Exception { if (args.length != 2) { System.out.println("ETC1Compressor <input-dir> <output-dir>"); System.exit(-1); } ETC1Compressor.process(args[0], args[1], true, false); } }
-1
libgdx/libgdx
7,309
Use empty Audio implementations on Android and iOS when audio is disabled
Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
obigu
"2023-12-27T22:37:18Z"
"2023-12-28T19:29:00Z"
2b691f735f4b167c062f8f68186a6d7237d3d855
7f682a7921a47f0da858508f6b6fd58426dd05d7
Use empty Audio implementations on Android and iOS when audio is disabled. Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
./tests/gdx-tests-android/assets/data/test.etc1
}|H'5qiʽ{_(#(m#kٳn}޳ Җw[LmO<t)n˒=)Vqm-'rȞ5s04уoygF۟6[]OR2@ ǐlgHuˮ[g'K? ۨ //JwuǑ>r퇣@ ijZ8@ u E獫HMOh~B~5_>1n,wȋ&kD"c x3?? A@ #EDquO>ޤsORF.Buݘ|5L>՜?;DrE^' %x pA7΋H(4Kn~_?B$B_|!1E\sY74@>~(Z@ |eG(oEm%~$}Ww ż/Nhloy |vUf`GOq ~ѻ @`1@ ,.F*$/IWїJrǰ+5ƖCx sW#xJ?(Jn 7v@ ̧1萑JW*͘vKUy1gk(.7w(g.um k1@ x+Bёxڸa^l1m)tȏ,Y8͚<F,׸m2S y{e%ĝNetSK_@ \s@ p-RbĹѭ}W<&)ȅ}XDY$+at^cw$f{7u^Ν"y[}@#x kҭ-P_q}&^7%[Js0g|q;^2d+*`^ty@ c@ \ͼ$%-VOh?HJ=ԇ8՟,PesЎ[Ĺ=D=C1Kգ<=?\wҹ("ב<9@!x gKOƌq\=Hh0'[Ď6[TT$ףP_!2qR)C8Gx yl!T^㭴.s_KR;kN@ 2@ZQո:9{$9+l0NEHfI<KkOPAy BP潾C{Ra!yRu [1@ erx]Iv=BȪA?aҝK_,yɸ2Fm#506"y ~i.+k5E!^wvNv$ 61@ X.Cns+ёtm(lrhPCd;$ OOz(y FCL"[0/a[̹ /2˖ǘaC%})rhx,1hX^3:aEAE#mE>?@ ?c@ Nɤa2"t/8e^8Go=t4 h\shj+|ah kJ7? b_1`/C-Dx8K,5Fz?qyp_"Q81en^C.#罞^jNsQ ('x \t.K{ m,"IMsar5۝a:/ӳʅzg2=hM薁٢L|G2Yu!r\fN%dccW{+EtZ+_\=6u#ձU[i?$~b~zl\E<1*l5z!Q!kxJ{y8ch|@ X1@ pm-{ c GW\!x)`~cWUB]JY :0$G" _gbOMuV~~#6鈾o쇓H;~RwY} : 4֯x?,ᖫ12 _L4*X U5"F!-vX~ҼדCtޫ~!2׳?@ <-En .,oQ 7)O&!XD._FfH3M[}U_yѱS?;N6^?`-z1GmsmH}kn'TqX.=NhFYu#UAq y.%Kcbݟysk[˸.ԟ ~P(]FXk{ d>@ 4c@ #K,o7mZh^HLU?ڄF^6Ry.ΟΤi)⡎F'|f_5\?Cկ14A*-v\Fy2s6ַԟ5< 2֠Bn~ÇX T4"(WݺZ.kK<n8bE ASS2f?~0v]=XPr+Zюߎs+*_8LVKD a+ T-,='+7ΈF9ƛY^t_2kR_!Mķ1g~z/Fp\}D+kf{]ԯ~<6{ Y5>@ m"o3FC1Niű+p G㱘mXO.O"(h{&6{7t~w.y_2Eҿ@^7hFrz^_k{=Hec>@ a-f <Z0$t&pȃo^i @HV-z4C|ӟ75Ni^# FW -RѩO=lwWؽYdj52>d^c5 xkܼy{ -E^(y c@c 7sE\"zqo9#u\1}Wvm_\Qq1;c]֦_%oc:2DLG➢֕0(װhyQ?kdTDա$Y(zy(k$^{'+E0)IjzR1%ں#tЇHChY1~nh.Ck,Fu25Sx|,ʥ|!>pk=Qsdy{x Y`}6{ X:ϔ\|@ p%<.AFXoҴvO> p9|:@(?15et202UBfBE1q7 LΈh9|^cy y5yYs_:Vא_wfFY^ÅM/̽_Q[i)y<i[ +1@ puqF.4KB=z Ӊ>nWC" FQ> X1=q -qܥ(a&7mFWXD.p[d3a+~ c%5ʮCs^ ܞװY~⋌x kk^^C`5B5梤x.ʙDj/ӾaA_c ,I@ I_Q1g uf?pe1iGKwuO9Ӌ6_s?$}?I=ɧG\WXd7 =F)n5FgH52QXbu(jDX^%P"^oѝ3*CoF E}/CܢG.#Pk@`+<.bO>Hi011|BFZ4 FއsQ^V[E&V`$k5+|58kOt#7JZ׉cz&$ P:;<F5Fs^+kG 4q$\<Qy(=|^l뗑{#t. (߶B검@ I SknybB9 <(FqSjly |) U¸N3"rP[Rb^ F^cey8!YϪK }A_cy Q`mE{]^{.i lc@lR:,oQkkWH] :VxkRPZ頋 oR"n?XlݶPLU7 n|2z[mqSۢ:g9tҧG\F-by`9"nQ(72UlO7װϱ(0FrY݊\&RӼ\\{mG61@ pu <F4\cةjڅFǿ֨ƅnqbZߨLH,vAQޛ8r([#.s!oOc]NRYYĹޢG<_G]h/s-TR:QW¼N,A:5Ne>.ּ׷Һpp_KP/ : j Wu<E|ah<V39DN t6 u}&/y s dD~mHmQ0-a+=}5?M$ 1/ʱx_[to[Cn$"=tnK>a3VmH ^^RY^־5sFE9CE=Tjצl (֯Ck"{m+օ1@ pձ %0'),SRcLimh+O 9hJN#8⒎b{&5X0ރ_rj$%<D<anj?P ޏ1KȽ4 VK??g=Ph~~9o*by .;WA}nD41a{^݌\jkErh`y sy~աS.Ph^}͇!^{JFȗ?t"#$}U<N cKG=n4Pǘ@kz:>u^|}-"#~Puo->UgH\?j>^88jϪ+1SMCs/]\WGX_ yw0ʭ)(DsM f&1, 575kX^ZC}97_' շ(<qdREx+{I <^)Ih `/(]"?w~ k%0Rm3聼1UGV_'sOu{W>=4~U6t y;H\7kAuEfRkm/`0eN_.+ %Ο3%1>(UR0ay><=QknhjkX}Cu(א %Dg{۲{&Ҡo 1@ pu0Gi#z~ZgRc ?ag(#/zS7.~w [|7kC}d c )=jxQ"ECձox>h9VKUA\L>vYF 3Lǎ,ӳ.}m/x/WsI$W<L 'Cu9ȯh9 mɌǸw"G'dC|SdFzVkd<QF^#)!9K5,y{}g\| DAH'h>X\s[$6CB'$7z&p A{U7F3;<]H#5$^$ =PCqP%/>Gz6-{O {YIMf<fy,?a=~1= }ICRc^7aW w=Əcwk獧XB(>h#K{6Qq5FrVܾkQi~T^#E|ĞF@.ἆatzEmZrzW t1@ pm_GFq>#ُl_1mpoQwnm㯖i}f^>؁,Ѥ,^zq#PXN](׊Ӥs#ǧMOyHo _I뱿8H<u72 qI+FGM]y<h󆆺1Qu\.XBe.FIRyj-S+6Q$UIܾ(pk6Tڳ{ aH6ix@!x \܀KO}qs=O7tF$ ub:ѐ œhC8oѱ ,om x}ł7=k@q O~:u|0$)ѼR: xN*Q3N񩘺{rcp-~.--רtΫ=QM͑+kLEddեq\dC5xPF >CBU֡ptޫ/(q\Z5@ p<=^׳ [z5]j|}N|{o3Fԛ4zx,woCs"~`=R.'^y3Gɜ:8%W_pmCUK[zΏi| i?qt.I1Q>#7{"r)@r-l`*E<Fk2{^ tI^k5k`6}aZ-}Y^ټxS_O@ 6RG>H."j~O>lB#>z1$4 ^mO㗛;v?ϜAlvZE?xqzm2ۺ{d?5H!WoS$߁?.p{>Fv\j|F}im3xX\`j{ >p_Qi^Þhc k9Ş̼Fۙog} f-yu!u5uwDj/ @W@%x \C$@[_Zchu.D84%0=;{>#@V> chRz|nÞAE.e88\ "(D햕G_אx-2_+㌩8?ay s aop"ZZԐ!"Nٶy 伯((]N1`_o4Jk9oc^cb}C#Ei0bypy <K梴{{d7 C@ 6x6iFd /%ڍDӏ v(@RM<ļ>_LHbd7H&dch 5+s[j:ap1TO0܊"l ? 9\4ס|?]t/ƕ\!x)`~cc^7|D~U",Px.~pª_c$1l9 {y ʜ֡ۮ^kdQ pe`J,?ɼ\@!x \94"q6N5qT5<];+sg.GEߙB2q5s튂+ SSv#>6kdNoϳTGGTMs#i W1`>cFx{)F{n\DF{ ËWHXk[R8ay±:F(%hm2m^>9 gWeVװ>zRo^_l. \i,J.1h;l4Orzߋ8܇¼ɜZ?r!W{|Na8"@0^%49îߋNϰƓP|_]o4*]g Jg>V# zZk4<ټ35*%,G%Vh@yҠz\2Ve+kޯHz7[1@ pus^7| _c<%=hI$.F?(W<'d` 5p>c`|S[ _| 2vr&64Ŋ},..?" KԗE44+XJ0.ԥKey7 xbGh279ޢ- k O T7ݬ柔AVH^y˰D^Qg L^tnzi}7.tsq@ zkhu&x~G"Q'Zh6F*u!ቇ0G}|٠wLN9}1b1n7 B^ݹW!e3N 444BFMϓGOṵZb[5Xo*WJ,cy%vag!q}pST׸ge5u:Qi H^{jzȼםx좾qF=rY7@ 978)cXT{x5M&es4D=~!]3]3Qz,qr'^{;N C I#q՛qҐA<QǐD<ټ { .D|(^1XX|9'mHa\'b3H/FJص.*1kyFCiR^ñ9e0P_hא ף`V_c0d=d.X7?_ W7k׷(2wLTFIvxPnc=yK0>=/m}sQ1QulR?/~ qڇeu1|9&5y^s2bN#5I\`;ra y#y7!IL݁KFz<cl! X'CY1y b۷e//yFCqoFfߚҼƑp!:3DkWzm}2w(ۼliM<FA42c-vw6-1zJ!!tS-+wBoGt}{}8'ecWD:Dc&oP+zar 5/~}@w4! by;3]5Һ~".E$X,x~x,3ʖ|Ӱ=1gLJ_}kVhߑ}֧1$ A_nٴߢX.a+QϨ- Ct{kk7#!ӰFaj1sJ5ĕst.q;gΜQ<?@@ V7  wڣu\A7R~4zߝSsΚ?!MQBģ\8/m fu"-1}exZ^"W߰>'J]K;=.}E,4ʡB~#s$_gvn~X~7&2TL/(- *+%A_(9v75/a9>ÞŖ_ZQq^DJ&AL,;Ҙ:qۉאkW<zRy_@o+}aGjG]R@Z&x \t;ȋ;Z?6}dpS\&z7ט׍w+BpQ7\Cnm8`L"Xߨ_17^c0Q$FRY4vH Sgu~މ8w+cxLU^aQϽp:LjoHv7o8\vr7Kѳʇ+DsmpȨOA7Y\ ?{^y͈E3C{ !a3y k|^R9^uQN^_I^oyM'onP@)5CzPu9߲/\k}O;^W_7"g?[ Y|E{^í^EƟz7C\ڤ,ɋzmr Qx^76k~Cay"M>K[sBL+> #}aab<~Vͱ=Fx _s_!zw +!n*>cQf}FR$A<wd]\F;y`y  <g=qy kTLWװoW<+Qv_ {^}lԒ@Y6Lނ>{Djo& c@߷v>C~ICscW߈:5o5*<C /y<g |\9z:U>V`>cܑ1{ CΖPT/g,oz ?LEsh mp׼8q:o od,Ǧy~#j2~L|EDF)y74%oid?8Q+" K5֦װ^v{^/auk9XXK~c42m 01TTz5'^L\n<%ʇZB tܨ‡Gz|H&u=kpי7#o~Jcۓw=\$X|~ GJhoT1*e5i51b>DĉPvE!J܎Dl-Ḁh-G'4 [<u! vʇ&-]!ٸFvЯ F?5:?1UibR^b:yb~Ƽ\,19CZy,U5"$!s> ËJ (˔H6o_$J<Pv3^Úzow\9\P+1@ plIz I˖ +.SyqGHh9Oz-y kj]zz {~{cx;Y16^^~]F^}Vp߇<>Q_1\W1'z#gX\iy3NxZ j0*k%7ݮR:`e4оq=So>O}K],|x^ Uo 0};B.5<5HQ6{e^2<|Dż ?n*)P&I7~TB`Y!5Z#qd6yy=EBmgsS˰ƯB1Z}bL֟$y=ܚ?c% qQo)1v|QyP3(5PfVkDרkU5)wE^ʼ/* ғ1ˮM">A.g·;ŋěz ;EyNա\!:U?^9O'ZV'o[MHI譴yyi{t2o|+47o M$9VLo|'ޚ㾛ߞD~3)wм1e:70=,DZ }z }yQO'g z5cط 2W-qd~0嗦UU#Iq5xԉDC0]JRQ 1Jq CI7cT0BkX=ǒ(6gk=1$DLϵxKѺ_s71V»*K z 8pRy{G&*c@ J7RPͥˁm_i{\([: !-n#wy"ɾmɬ+ ?1ҡ%"a*o䅊 c<0=wJ5_ΜFyrXm~?dG\r:wV[Q וTek4!_6yB9y %׸EŻ Ej\Fg Y_}-y6W1vWQP!7ax cL^mT6 8}&ځx-M"x l>r][* :yRǼ0E/2"{뒧H |<aI?vI~_S~~6G$Og{HW- u&smϠ)uKjcjQF/p?O#K،Hpo1H|,&oE{zyr֕~k4keLlBlQa;Ǖ?Q_o8.G\VoHr}F/lJvQGPM&oEzӉmy^==z<6B[gkM'41[.tz R yBЁ ^W!%a!#ƿ$G6Y]>.U"o=l[:o1()v{GƱ-C3^'ٴ7"x<F9v8TM:GBO^4_X}8~>EMp:x G[Y^C R'P!C鯿_Nlb'm>tTU1Hns Kaq?L]n NLݓjwHvmm)y?C^ׯ?S\<鯁>'㗲(v>;砃l.J@g(Ė% F_f"? } B㴼ςηԉs5{ ;Qlt_%moguacl߳Z^9,܆Lw:Z^>2kPXcOWIg(qYsKȔȼO^864wH#=BfWA/v}k[ay'K+f9dc[8+Kd^C.R:=)a57^xpO&ΙU׼~}#$yT1R^NmfNՏpqTj_ǣ'[Q?tg.0_F&ݜKܺ{x|@ 3Qo1P82_wgCioat3adrkQ>XߋI!Bs8w`_gڼE,ayoanD,qfʿ܋cq "yx o`&&~ ?JJ cQ}B-/,z vqZsAv<΢u(8`):y<GyǧHC=eq_&-<ZN1aU=ڄrZQ@"i2.^@펲Ny h|>=_N2<pK@`PBmyc~O87.y*kaև{>b@V7|bdW/0 Q"@|,an=xe<)LPg /fxmxnSI_ jc(c Mz.=<O둷ȯe-!FxRr=F)f ;3y c kk 9a6k<"iJ8o"i#pd7ʡǕO֔j_}yvDg}W`u賁?y㏒y~K5^ 01@ vJH2-i)ږMgay ;39Y/Fn? WevQ"=*ʮSfuORq݉M ·E?l)1:QyC8YИ\y<$gYy⹋([_9{<YJ=F~^>!*ר$3yrQQ]^ӿyFD_R#>c7E?{Θj<nٮ5$ΧlEFF}X8i0J\0o5<,anza*xJO!\W+Ɉk1@ 4X>=nd._>#16]a"V8g͚!V? e\ݽ+,>zy K}-PaJ9T>I]7Wp=E;G^}]>2nqyP㨪6_d򑧣]c7-VKH$%CXv{|_Qi]c&i?r}Fy罆'0x_Gt^㾉 I$pZ<hǼ|g[xe\? ;q?*?G1kbr~.][ĤnY6.<ԉ_-k\sI%4֯i{t*+/L[h%dׁ/<]ԅU,yՖ(]p 7o#NǦyS\7by +G)8ga~{P΂^'-\捔>-?:1gH4f{S mG?yM]S7Q }Yu!CJy>+?FI>1/~xLLKxyzר$u(=`5k7?ڞrG\χ+dp ƶ:93y/z5, 01Q~{BT7\ p<+}ܨElzLۓ7i? 739hQA\sМE!|_ʾL~^ٴߎ}v^fwnW#Q䌺<w8C\aNezχm9cǢ.y gX<mÿ?ޢ(s1E{ '|F5yr4$t:O1sPLU/L"O旞't9(UՇ8X~q~p8ӖH }0R[,6-@ K>ckd@GErgy(o^?smF2·wo$sQy(=Wcδ(KOKW<_zEy$0 |匟|UbEC,oQI? +Gь~vbRE~+۶r%|Ep[.>C{oB ޢBB ('gOɶ-~d+XԏXcW XޢϨ>7aOukPHV-p?u݃ Ӊ\Zmk^{0+xc&ڍIF<.qWK^/=<Y?'>/}P5pql׎Y2eik{ _E@ p-OFKg '4 -CJ2?zoa+懠X+!%}YоՁ~nk;ԇbsCܐR{n)v1ozFzuC21-}^<E)>61!.':/-PJ4j<(gJy,a~::smnyt"S@$G<?3󸶻|q.EJSdy[TIkټV5&|^my<8"sQѻ[h83ׯXKFnDz狰66r~H5!+i~Յbv2;g|E^5V΢?~sQ~u1ۗWzEEzy0gy7:Jt Ʃ @q\5zp96𱩮DBn)朧e1*ԅ$r?zu$EfQt.IN݉5HPI,y(aY1 :uϣ~=DKRb~Wc@s#B q ?@H0rsKu"9㤯A(Ukrw~ oh_ |Nys|[Xu& bK㽅u"#Q_cr-?qϧ|\?Gʮ2oACJ,sy9v/|/QV}'Xjyb~ޯ4"ydcKs^0Ҽo"ϵ kDR py6{5ԉ=Y.~c n}.OPW Q:r~ fǯM'oyJW!5z]lk+$x &\HBd !!"jr!v_a )\{J,fY[|>}~Hߨ[,+ROעq7(AB7퇾1~ry}mk>|o_[s>p(_*v|/QW0Xű,oa/,-b)wQ~nBaўڸ\^v5AٸR:l,Y>٣|,÷3ZxEI<Fȍny2cϬ/RgR*1ocu(z#uk鳁א%gP>)y[^~z:a>f"x ؒQmp}>xR[Yp|_a(=zo1hU"ThjNS_b}; ʬeD}r;[: <;#{(r]IbE(<6uуG"x ׇbqYeO+\x=FɜEgyJh5PVa^C9h:h%H$.oȅ+nhpŒԕl~</ϰ>#7δ ׈dFK5>kPcrټwxd.ʵ݅%x ؒ.Xy OἌĴtŕ- -BnȋFOYR{kc~Js"gY%;чӞخ.;:?ޢǐP oiOQ5@b'}`8OH>m(>#1_ Jp[991,ZyEi __y;-r\.qSmx^/*pXFwL;cRe~LN,~/;Qk4"dFƝ _c5=YsQZslcfkZ/BH7R2J~"vS'4)C,КCyF0(emf,s(!X++v6u~H?УM. L}HD>|[;*Yԉ:t5Gqr}ԅ0?a~ w<JBra\xƊC*E1o`盓X5 <.to29tVlOkZQոZL"{Jb[1@d4|Qf2ry(:5\Q_y?{-w+; Y͢n6R[ rs/ǘ ՇY8‰!Fd,w~'CN-;El/esr~fq:o^:$tȿ !߂>ay3S15.BHdh+X¶baњ)D~#xuB9QZO1?~5b:}yϞݬ(ew\yH qsayhpǻU{P|kj畨'x׸#o_:"y {=a.Fzp\y 75.Hˇ\oy=CW czpe%zF?_D6o?Gj懸3b?60瘧tWO62o47DBbuSl;w"%ga~;{Gha "Łd1o ԜB)p[{X4ѿ`sy kơh] 9RG[<Y%!㍏Ѩsh>oOOSBwP8}- <=98W w x/{8R<"~#pdu(\y3cz sr}ОϐyaH}-1r<cz<n}p/zVwDwg-~I}_ V2?wp>oA<m+4r~PfBB,T!';wA\ E! YZ/2н]D~LesUpoa,E[po<E{^G*Jy,_uKޠ'xp$Qqtb}.Nul3$<n#{ۯ> tt t&ؿsEA -gLI>-{l<zqoXW(mT.q2ﵿL*n6e?8c(Q>g-}"P_~>&u!,oh? :?$ /pKXd`Bv]W{ޢ燌Ioz )lljZ[g!񬇯)zGRXii|S&ꟳB0s}<~?DoQ.|wJ5ۻ<NWekG$^T7%i Ϝ]ЉV8N`9uVl2?+OO[p&m}^ÞװOJv^o.;vw\{eS<87"pd^'9"ab%d+VSR2p]ԥ-JU7{hٕ}C+,!o6/]1Z[[Ԗ(-ly,pbT}) 5 s^Ǣm{pZ<Zuø<EpHMO~|C$50^G|ޜײFsQyx˶y(cPng)k͔ߎd (_O$Rxyqs<ueˬH}q Q/Eh"fdWHeYX+JyDj43g1Xs$L"n$k~H5,ʥĈ5yz,᫉(jXICz$=/1-$ \^r=gZ hϖ< 1NX:%5dr.-y ;+e5!MF <aI{K梴{}]yvTqoz .ĴyO%Y',xJ NՇ4c~B YXN.>NA(gV" K_W:!Y@BzgX9 +_qlo H$½1{њ<ƪk2R~c8 Gyo*Yýhv9JHBGQB./ԌLj<|`J cÍ<9C~y /{ 5 k}"Eqg>A^k\G潞n x pm3$o!y%ܿ2WX|ܖi ɟby9,_+8+Z2ۏz\;#6/]s#[!iWؽE!Bg?~QNvH_Ёo=ӈ#wA1'gX> =v:9>@΢EC-,bp۽&q1+)aQb/(Vu%TSҼ:Lj{4dx2yysW\<܊4YcFyyw9vUf}=*R~{E1Gz#5 \{ԍ9Ĺďˁm_i~[URǞbm$3?$%T6"WQ?@?/e/]_2+x91XX+CďW-xꙏRfVu>Ͻ]"|W{|ZOhC~1 Y y ֺ5WU>~+eyق%i]WO欚Ó|Ik/9aEs5k,y +1';6X^sg u(> ;oy7m2)y<og<:SQ<_Poz{0[懐T~]sdpчr募`eȝRM>?dޖ`s- pN(nd^jyFՇ8܇s+,.y s\d=6RS84JjBk<F)oe"Y:l,~F'T*/`/8by|I*'ygk?Jd^y;d>k,~۹E.nDfRQ{^D2_"װ[ǖEư}CQn^ mTT/[V$R;.a^tM<WTAP_~ټi&0on}Bq/*ùwɫ4[ 9 Wm~HPdUvNop6[4~\GiCB(^jX{o7/WL".-SќtGd& $Bky 'h?pZߌrX&}%څ+ҶP*3ǚwR3~|o&?ΫG8|KtIz^UGEaP ߣSSWb:}!?7Z=HC7뇱5,6*QnQn)1o漊kz bֲ>C`:~ݣ\6?׽G.k \!%q3q #bC|u[2?>4nmzy ˙"9l*!ӷ\ҶybUx CWr>8|Yĩ$UZ z̍< J힢}Y1]*g +wS~ 1& #( ^V r~q?fO:Dϻͪ3qcbn yይ!A #rW;u&R?M%sbf1xUoy2 'G8(;Q{^#P_hא ף`:5?sWû7L^y5>$x p>=կݸDrփ̟b9X W[Xf~Y˖hD\Zc̈0~vuinHp,s'YXZp<}s4o#2F#.x `jQKT<?dy [pAE\^ϱ3<D[+1Jg9(cxgMk۵W_Cs L+F0EyyNry{xa#E%CJ;57ѱÇY4?O#&fg>=0/LGApeoO8IMh@x;>=do_1񪪾WGqs{W47w 'bʵxo;&fڱ(kTpoFf7lpcNz+<ݔzi2w?n lMh_6G}u(|h^LJCdZdVh,">DPG2ad!9 mQ)7VM*`s =j973Jz`BokjaK}99ҸNGNd><b=Ec>6*a+5B'^EOKy^C~/%IyZ1>Y^ESS]z_8>Ƚ/x랍/?Dt?'^9~oH|.mkm8״vԉx3̯xϢ:ދ5\? ;X^y F^þ>sJ5Ց.h۴q.?DXc_Uo<Z > %~<ݦqz yru*vV:?nR }m-CPJ *,IZǨ;9"*c)uylt^GǎuFղc9(zd\ouvCBDsPk|Yk>A7Go9+|&{ooIivy E*IZ8[k!n".B=lIvh0=tAӼ޴v7PJ_[Ґ)i3ʪ ZNSieIDkߤH#͌f4c{^ɖF}9Zp`=>6{_ ˭<gnz75ԡh,΋[Tkďįg#L|?Au(y;p.=xmb~0RᨣQ&KDV2=5_L-@GSHNM gNDCcHHp?ևSC+ᷠ!1$*rmaG_hw0 tzݿش1I4s>  x>6583zk<Ox=QףMKS0iƃoy^o2ȱbKY-`rp{-yiN<nP=S};qk7ǯAu׸>3ݙA~v ^ױ1#}IᨣMR/+`9$vvs; inqY\(^-̫҇JE_c~H`?OȎJR}Yl}8+I]<8yy> l^/VU*NSCnQ'\`(TpU1 wMp!x chkxcc|zO{3 ȏQNo&q<Z Fl1q4M[{KuD-(:! ʷ_u=w~B`V mȹ$곬ٯQ̯pek3F4ǯF:#@^``c8ƺnW J7>3zp~!!:CԒP]2xd9r\ ב_u, ZC=N]GeJ8r X_*cHe8K~r~!QC1 QJp>7+֯ghkLgυ`TKJ.ɵBo_~żQ45?zI]o^{-(R/jh:]׻6ApO׸ۨ>i) Br5ۯ&~5\DDz^C(71Wl@y,{%}5~+mpQcu^ȷwm/NsN6N!< 9<|!/ƫUฑ}~ wT(a:짐׃o ί#:nQ/?4\Ÿ;^s?G  n^/5UJ!J*u?O\8Frcp0KJנǹ}1$^˛5sL.w wa~yJ׈{&6>޶Jx}sBo̤o*g{-J|AٯQk(5$\^56snVG ۃ.c/Py5xOw~8QGU*kfx#o ̠)ܔVwlH(WenSW!M;| ! W>_-:VO~C^~|<[-凔븇Uo1?Z~wT1I>p)Qn V mcEQch}QR_#C7 V(נ*?ks8y u/6mJc41||:{ dVl6^`K`پ} Fzn X6_&KN>;APFygn+$<c Q9SׯAxq5ukר@u(!cPb_be{FaoW5ᨣE܀\c7CnQH:bi-ι@n` J}-ςr8)Tm΢.#iK{t^"䇘B>M!Eedcp1x7||9Ǩڰ:ΣOn$` WSB]KF?%!،s~Cd,3.|ڛ]sknAVM5w_ԞZO_{5'&0[H*n=7;+2٬Gt3ؗAqE\U]_k<Rq_h[ԯc2׀j_@סy9s-Eyq+{-\vny71u+" َR[<qZ~H=~n%Z+cL~AJ>zƇމ)P]fiq!Kn#~ |E3yU3C! \Q+ }z1쥔cQ1ҺC .cȵY~ n%|bD%H E5% >J2Q8cPzk3+egfs<Wzʮ ~^oKtxMx =FޫH[O'Oi]5'na;82 >Slz9E <EAM5|%߆1~ r~ YNfFq"}Da?2F\ARkt5ιOW|C(u/;G}W6~v8"meܼ1 r0Ux+'@~̜[ׇjTh[(剘QE/ vm#罇G,S{ɺ،+NcNx}#CBE1VrLa,m1s ץx}X,kVw#08P\6jCaB`ϱ~3E?F5P?5JoM 157AG_fI_}tFKBgyvj\3;l(>-klMk<Ʀ[\~ S_>50w0ޯqد}+C ^QkoGAȷ֥Au8KM[ xk^x5r Y_yևLr}qJC%o6WUk~z2F!ND-> /?Dυp p -sT19s _l_~)z7+2t#y.OnguߜzO`dp*eQMZxn/K?_F\|PX1; E+<K֫cK,xo k(GA/kМ}5T5bWPƦ F(5u(Iu(>fԡtVoyS wg{ܿ%y'pt)([2-[OA>v!nqrPߢ1dUK~H~ͨ{,2$۩)HC`_ *} ڸR? '?ĘÂSnE3vjc8̏QB5HkOpPjܯAr1x3974O5 7~1ϸVq^"!c|oƦ{7OLwjd{_`5>41c[waWA6q5{l>xBa46T_P" Y?_\*z AlZO|58U\j ŜVk%FF_?zI /Ѡ5>>gr{b{,,#\g<5e91],L2.K I}A~qLi~?[XQ"W}8{MW(坺cڰx= d{1?9"V+&Y`RRhB\2nz~1svs<Us ǯG[!9Nۈ^SCRݷ\r/՜ xOjK~qss,%KX\c,X!m25zq~~5qONO2?|XeA$53:@u*Uj~'`R !}2Ec:L<Q1䪖kRφNQk(֝׀\DT~ g$ķ> F0uJ(n U1] Z@9pn4=m}$}7ʹzCl-ܡ!>A]t_N~HC,r:C ǰ:C;J*J5k ~|'Ͻ=`9\ϧnzi! ?3u8ӟ8ρ\@O\|~#9"5 rnQMg~#swZ"7lp1q*GWTW2 0}G5,Ba^ǐ.!QH]m{2z~ gDu(9g#"k5Fr 7Xp/m梈6~&U͝]s¥^" VWy!YyLnJsWs"> \%=Poa\~g'?D[>C2VRiݦ[Uy~ȶ-܋>u"_Q?*C*gk}crhz E+8Vn::~Q篎5k>İwru+P#=9ZſKo?%Z%p?ꨑv@.E|9Gzk Yp>ǐ!\7^]kPU9[I} u(Acy(0E@}CR= {(=1zkBə'\MP۠R-J9"jZYW4E*xqBB1wD>$*A>LF{1>wcXwʼnS<|cYg?|Ê)cz}MkzՓ<Zy9YB^|l6;Ex_s>&^y x_i:/W_d\Kv ;&Ctm )} `(PҠC_cl}7ѯ6r=ż׊::~ 2:8z ~ 9~ N35i5 '&f`zSFcbLf.U+E._ݤH~/ć>'᳠8ù '<29S3Hufq\gaf:z!px{Z|'M"?cdTHixKpf~)c<{8x] .w,9_<'{s 9ZϧYkZq-gF5&؀.˵?^BY aް볳?q~},KU"quuFŀWIs a>l |+rP xI/Q{_MT\5o:\Re] 7@cGDzW8F5zklۆr[&pj+N"LB*/׋ZHΓ鷠¯+?$-SpFmB1?}8ОBs E^1D[[PAr r3~?p*BXvນ_/ER?/Kc=*}~4FѨ_Qa_c +Sg Cd}o!ϻ̐Ws2 6' l,\容Y'c#?1|*#STPoP.MAס(9׈Mq5P24hj O38F3Gcw`eiD v>gh<?lY=XH! i,Lʎ?SBM~\}895ºAW,n! SCj~F!P᳨PN| 6B~=׻[(c,d\B$W)hkXנZE-~_~U*}}v6#2?~A9gS+|!g2 hCT 5)q ŕ]\*ݾF[JOͤ[RL=~Q3kCx6˯!CQѯAot0#Lk@aKؘ~ޚ/tN3|n'+4./DQ>*rO|}DL}W}7X{F{N% N~B­x+U!|tj'O^;p*TÃx]<(X.wTR1Db@_Џ!,i?x ]SM,װȯ!{ `=ohXs\3&9kyc5!x_'׊oDKfzxZ9* re.nf hX--)r?bqIOk44V>*sLd 0&6 qZk_Cɇa2hد16)@%u)a55 Ki5Nqa} -~?_x<ł?׃zCYD=b2X?9h)*FbZ\;0-}8[<sC@)7D9?D<|na#wAus @8ZO&Q>\Am1\ 5ݯA\~|;qBP(.? 6ׂ)ODz.eg/&}7": Nq--^V34o~ejjXr ժ ͷl i-a2!'@yy le`/vRSæ_CRFP]_: ER<Tšpȩp-,ȁsRlg~>C@"G8 [UևXhd{Z~Z-(׎]"WfXu凰c~!xE" -H<nG v@s8A~ (~ z]PNn1pgN\ӟq;XmQ;\+._ }loA{8E6<>Vz]v]\ky z!+Ua"fy9h=?xq~}89EFu>&r,;(?f-TCNvoAЯH[}.ԿumK8E6pOhܯ1eUzy~ \^(k(r_#PVwBj0xqwp Gʼ}^ȷvm>7_r\;n>⯀gǾd<> z=WPuCӇsPPS2ae#4?ZXϢ2T|J^QT>^u*+ "pg"P+ѪrFy~ "cr| w!WpAw."Cu̻>elX~0D艮ʿ㥉̭eT/*/zA`}Xp @Mm>%v֚*'W qƇbaK9-梥LSa<Om)pH'\?1*xm5e52iwUֱ.AsP c8 E-7'g 7ի_[tl KX Ҍ-<GC:懠k-ET]N~yȾ[gQb4ҫUrO<Ck(,J+pݎr5kb_Cڨ_*>0|l("HkqA@oQnW\D hQ!bO*(yjqeC؂xq߷aົm f~ :7k~UQl>Quam~ š>//c2I913sUKy8XYIw>#R=:yKA)5ʹE=aP z=y*i?5hJ{Rr$p8y󄯯&cfo Oq tՅ\4[DYTᴃuC~Op _V,C+!p>#TR|WgQ=tςP Ppc,Mu8LGss dМWrc@q7r\B|BOަTӹ$7nP})N7a? $ߺsf8֟\}(GϜ~#465yu8̊䚾>}~?>o눦5ow3>//9oW5I2_Y2kg4EOqmߐo5*A5(ߐp%73t5 ;#LB rsPҨP-agn}z> V:xO0'Cv`|~H79!Vr ,P>Eu8ƢTcȴyCgyF\CѯQz(s\9]921 ކRe2dD>O| 6~A[~qٟC\wۮ)hFNJ^g2`.n+Tϯy5;ćg{;~ο򑾦5BW 5}68ܯ! Z}f55bm8k24QԅK9D6N_xDy] 繌a@ȏ3SoB_ >?Ri]B>F^}AB8V5V9'8TWbǐkMn߆w<#LC) R ~1O]@C\ɐj#~)OЉLݞ)=b>n~ٞ AQC3>#(ߑrAA19[5Bqc~ j_C/¯1 xk go/\~]~Я( f-XWqF泘H7fbgQY|+!QS,UYhUCy[vXu8L1䪪e5\<NW bmԯ4zh4:|Ks :i +Ow8]wha7 nrIбϷ㟲$ c }9}uVO+5X`_C[k_LMZʏSנ\Chk)5*T%Ϩk~2~H__c,\%> }>dD"Z,r CDiީ9"vY eZ~1sriC6Շ<Z_Qq ;,|0D}juƪ1d:ˍuیc(=rQ j_:=Z`]R~:*\c~snuϟo7c -,hc>'|(;FZ~omƂkU_iݜu^kx^%\cE9,(8ca_r'`gRlg|v'?&]]p]!|>iq}xDTa\Xb1ԅQ-68#/WnכbϢAnpŭ9-sc,!}C7̯A+~ xFg?ߴ.^G-ݕP}%s5 x׿im"^JyAX-<se3'>5 >T%~r 5ʴ"^ޫR ӹJ16-3in;-鯁M<1lLi X+i{?ہ֭Q,Tԉr'$x׋S?ԫ<?$%NQi/->o=P҅h2z1dzk]^h:0ʯy_)Czyq>}`T\-^x~)W^hBC[ǽ!+g3̷/3>u+R!?z<P=vM,B|Ư2a!~PV_;npb Qkݯ!W_x&vG:cHsDnc߂jl"*,xCb>R}\E!&UϢb42?xZD`_hxB?p-4I#Ճd=;L^w;j1Z ՏQOQb_Bϟ<0hD_Z' CPV}p^[W?/#k[;M׷2=WA&Z)4C K/; ~-x^]Rc{j{FT5j}FE5>::)?2Br4z1~ X@?:P'k(ǡ'V"ѕ [Hu_1[@}qny*^Fp6+?A^QR)oqZvX1p:X,~zjO!1ίQ!?cHq S\*PEuB{ =F3W?BÙ`Aȷyqh~0wuw)781m|`6 " FTN8/9^#<! FPY<ZxǰD/wpLLB*&r 9\CuFГ"U4=?$Lp9 -UHZlJGv#YQ;}8 Q-qC!sgR\-Z fׇ[hX1dJ8FltqDrCh,ɡ YZ(~_\~ >:~˅<:<uam|i3=%~A/kyQr#!8_wBA|e#6uu0P! ոAA2 g~/Zx[_dF<H{}T^Ok52ΠS_#< U5E1k8t-a#\[LSFt_5T0DS$/%u"w#߅D@Xi}ZC^~|܇BO~<Bm]zO/@* y\6zGN"кF?Fc`~ ^KgP_FF1E_Ck:ajЄ:0#~Ap χ>ܟ:fkl:lX{"p}_g@]wn&qLf|䥩\klEwb|+}gP]h~p%oЮzϷo[uFeuUs cs?D,n'?r8)Z{Ze_!bt+`=>vYu!},D()#TgobՇРϢ[d˰z*pLuIs6qzW1 _l]~ YQ.(@<!q>{ z#T*L^/;RC_Tf-h ԿP3YzK)L'ne% >OW3~؟su<q G ''㜾 l ?Ux?R8z `Ujx DK'ǨZϯQ4FyhԯA_5@DIV0zG s>{{!"?h5oAC +:@ST֋dH>rndl'YL^A!Zxqd˾܂<S?g4XB}T=%˹E^w;j*q nr`2PRLQJy(XrW_\#7G()0ZyVF` 6+H&ޠɗV 7֔_PJרN]W<W_Z|ci5 \Z^~ cW]xx<łBڅsը[X{%JY paƶrav~y oƹT%<i??Y> C+mXvXb}9F{"9w9 jo׷נu([50os$}s=ZE_`/B*X?p3D#Wԙ$ E@ EmCCzU+<Zũ W8y̑~Q3҄cx_{_B5JC5cZ>lgRlg~>zz-]\f3x\}-@ue4YO]4?C5+Ps_d5N[`=PC]_3ϨxܢQpŬwkU֣Kcr?FCcpn:~ p Y۟n'Pח.@1w [*Eׯu>`B+r9=z@il+0๳/[༦28-nnckt7,k4_#58A~ fh2ϷG -:^-z,<Nk~I߇?f~XI凸:o7S_~Xt 8MiW凘-:~r=_Koؓkgk҂l;q#~1dc8f?2%`ax[}!W㸔gSnBBCh"'VF|B^*\D$Y6ًmֻx@wwyNQ=8't;#iϨSטƷAyFЏu'ԯkXP_4:zBc1\=X'ރW3L4z@"-D A{SpT/V.9Elǹø4 MV+kپBMq<6X`!rnaXNbO1:Ccg aX\C_hnWCX5u(crDr{ܰBS9΢ZFk։dSoq,h9ȟtn9VVoyԅlڍ%~mB2D_pX vS2w2V:<߿%>W ѯAw=V_Fo>UݨKc˛Bə'?ͅ9W-\@9~7YP՛"krC4W _VW@?P]^PE=N`0,?:W矪Iu-Y!c<֯1TUs~ j_#FP/3ggB۶7àexMFQK{dK܉3qyq'w".' q'~x>>>m*z<p>BnG?㐣xRt﹒.w~,{'KCIup5 gq~ }7kP՚RkܑDjk,J ;`27Sb!Ŵ[QГ"zrMV!gAVڧjUmp wxUqW oQهs?P[S/Zi!F CʶoiSyBQ9t|+XvXu8LccX/%tqա(5d96 1Q%r-~=! }3kKX5(Ixr!'gQ1ʉð !N)3k`MÄo}T/l,4p~-F~ s cu.&qsRnpS!nQ'/ iF}Hv{v22yB+3~|qFRAE 1*`nQi>D[PR_3P,v] ߿d1p FܠkQ{5y \C߷\&|*^QKDŽg5F.5+ Լ폀YD=z08ܱ?2xMO@c&Dׂw^#W<?))|]Ԫ~{Zנ\}ոwbHxC[6r_cAqkBc;oc|s3 )EnPH~}-"g Oxd\;? ҽd}_Ay,Y,}8+)7'<_ Q\Bu}Q!J(na<?n܂,<Qy}XSO1 n2jE5Bq+נZ׀KQR< χaL0EŢzVt.ր|#_h_ޞtR5j5z_#Xpu(ԇѦVϛ1|m'8 q@|Bʅ@arjGr^q#!j S~STP}\~ z=:;!Uڏ󰠅[YP6Y-?$^+?O0gaBWQCt ]NfI|}hs;!j{\k4 uR36x{|+iާxרkD\k3k,8QkPE<ÖË204hy(]. |"*S#CڇSe~`EԁZ/HFpOa&9bp + )/Xj~zCbdnAyEEQO!p((9+%ڹ(6Fܯa>f5HRXQ~11ӧr q؁kPz9e <_X8~G<MX~;5ί14 .EA/cA/\f;rXw6؇]ZBT[~H`ǽܧQaqg 1~ ~?LgAC:4p ,PC(G0[+ʹܐ ERyՇh8-2d;D$c1FT*[090X򌆹y(׍֡__57+jUvT;X=9^Uag֯Cvk$QLB, _NsܦjV~H3yET+bڽr.1aKIPǀ$>T? !P Q(g=X6W_!ՅRO$ۣD;_r * J 1:\c'F u?|?VS{Tv4F(Qw7˯a0o4x> @Ɔ5FEd0C ﵖ_UhoQ~&s|:L|; 7'g 7ի(? 맱T1>D|\34JǯϢnoGA$HC&+CԪ_@vga-Y~C1u}W" 0'?9}-Q&-t}P"JPw<7t;e%~dht^8F1Yz`uUy0XgJװگam]J}10뿱=b0of 5iǘ+PPa_c_"I~)ߘW;MFr=)?1 ӡq-)q ]qXO+#X)#B{H Z,~BsAP^O!t{懐PI~Sd}->yE!F$!J,"Y /nuWS11:\cc'Cd^gI} W5h ǯ9~ i~ }58\1p``G8]Ǧ{v5rF%c_C}=J}} F`_#-l_ÞbAxwO)THanq憜šr~ѱA;*4''DIPe@9طGO峈 շ1[(-hnςrQ'm-|~# n"NQ/ϷSH\O<ԕ,!1<%oTu>&<"V{p5HkOpP0_ Z9jF9:0)-.vXn_qFOC he 質_^ѧx)XOL[נ6c-KSSG$j,Bk~Qx_"yN%I~wKWP53?D^ϢR{8b_37PL 6YbB)?D1+* )f"\_<wј1J9Un=Wc\)C9*8޾m5~2ypbP'u(ίa-1jcV[Cۦ Uk08%,CJS_po:9@wyBcłD]|t\0d_x!J ݂j? yN],dy*Yjb4/?IBye}8!*ϳT@ͺ<v1Rǀ| 55vpmFobr5ۯau }a_J~`Xu(q 𼷘*4ǯAU1%|}7~ 7uq~ X)Ͽ g[@O$/(/dK}(Յd< [LUCxUʕ!*gZ?C*ψ[,M~N!y\3GW(q<s:CFm|N]մc0&@8c=Wcd5p RU)>Hkk:p9~1yC~ F=h [r>rt m@CCkK8F֯QmPC0+/LFԣy>߆_pK܎iK)޼[~Яs%6?i]I|#YQ]!goCTg >4gИҬ>J!Ţ)d/}%_&C}DT1кk&ȟa,M$8OV9X㐏6ƢҚ\+rjT_cQkbrmX.~z9(}Ck<@ Uy _+֠+|赁_p> ⯀u R7vY eZ~EC@_ϧvׇl i] ,q+~-}8>H>VWQ[.d4Q짩,X!+ԉXZz]w.o8#8|+c3chįא jOF\/8,~ =PJjEQܯpk5ZïAPr Uk<p<C?ǀiB?V.LN!W!UR>1MCqx{-U.z!8yU4AB6o=峀Z;zCf!}s '4Tj> rAOxv5vTc,-mKc9ǎ6ǰ̏~\'OO<|!7h.ǀ*ݾS_7x0HKޯFѯAנ)Bx~ FJzk@GB  *V{(_ϓz燤d#o"[4o?zC o]i=PRCIz}!rry&J?n^NWV>! J @Q :7(ta#;wx wtvy=\O_ְ|Kr<=.}WKpZWS_#~Ar(/pdO ϥ_ۺnvJmנZE~} ɯq6~ *﯁|Z 7k1C):,Ϣn~,? I>-7~K[!yZɶ&l{JY<nZ~ɼBهX?rx|LCd.r^r!<v<'Kp:cicb###qGSl riu}uŜG9RQP];{t]A6Dܡf59 ~ ~q%a8Ů@pz{8e?فWU̧!K8<~ n`_l-kT5(0˯5vįѹp ^rĴtܢv_ Li~ȴoEUjo_wn-};塟hb]zWx1ԤxB5 ϖrCt#伢I!]yQ:^>D!Mq8fb3X ^CQ<O~].u}O9E=E_(5W_+O}+e\` p\|#'Andz _*=Pbth zy1A\dž5 u(F518\<jԡ{>hkXk Q'Ŷ\hU\r{@~Y@zii8^:~zT;Ϣ!jŸ;NǤgUR\-Z YhIB4,ԍC-Nh^Y߅{1Q>91Γ'Nx'`BǎR_`ˆM cws9'*h@T~ܯ'&^\>l_CTy,n-:!:|<Ͽ֟\`L <cApD58G~ z] ~ƹɂeځ_Ot<PרٓgPאp <6Qp,kAnR~8ՇY>Sh~!q-7Z#օ*Q_,y~.Dw? C[tS>R[ 0x"\([,𺐺<u'Zm.l#`9p_ aZzBQcэػ^xǣl}φk 9F,vh;h~/7Ӄy#k2a`ڋk4ͯA~s1<Yc!5į?o5rks^i.ǯT@k1Շ@9޿O?CpN{N}8㴲$y?jadE"߮'4+Lz=+L=|DE?N85HrNUNo rCڈ:?q#ׅ+בXZjGG}-V2Z\d_ϕ^a+>:vrY:|d<XsD/Nxv7pPvFs ǯQM-C1ܯ!{UXWr1{] ~{_#,Z~$@ůAsQyV+? FZR^DO? 90h? ?hϢ~$^o1qq ) Vq ['?$JXZ!UZA>ϴ.8yx$<pūo@R0Šu<pu1V}d&x볟-qKs8 Z<=}-.Y؅cTW?DC^9HrQbs>y4?r~%Ro,zb m~'bn̏1& r8y^|~ Ґ_#\> %zY!u!BH}w@Xz!݂u>P]]-YPӧG:xWhW-CgA~CH}H ~>A| (W^-ս8tL7<m0s)3cEj#Z5a{z:yjckzQ.J碰]weh}}'U]~ (%h%jz_<qA5=vTOZӯA=::FTPpb_ -?sb5xUxQ~!4gXD"z!>S?rVL}կcCh݇Y!E}-Fct~[H|Ю܂r|B [JDY~ dPU"UʍqE1yvB/~#^gq2lG(G[q'sX xcע1 }7"ǨW_$(>}{%0u3;ÃC.1չF=ƫXqژcǷ7؁gȹQ~ p ֣}Zϣ<B/Ϩ8sc$8hr^cKvwy(ğqEj5(H7ѯ9Ӗ,u Oq߂46c#E4\g窔G/C\W4'?zb j۽ yD]^Af燈%=6-#|*炀d?)~;*wy{{_dmgs L|\~ [u4?*+bkyQ2o wЃ֓#$?mJ͛7Ƕw]ve?2/v]tZCu[pv122H)@,&Bc5Pgc[ lڵ:#`A9w)cA5 ^gl 6ʀz)5;>=q^ʩ_ځ_ԫ?P_|5h~ Iw'5~NUU14a2'?^ONC@!fr y}ȣ!-W|6ևFmeܢ>14||4yI$΀Ac_Mh.ߗ|R2<mԶ\ OfW7(I ySy0΁J=[,6O;*Pc9ƹ; :sC3<Z|{^>8{돳}a}> Zw1r J21Zsx5kdE!rOVmz\ikoO?vW#Uqкڟc49FTEp~˷begO1!`r;p |hպ&hzA~c#|R|0@PREFosk&q 8T"5,n䳈WYz!_i? '?D70%?*TJ9!zCԅ䙿FuAφmHW\p᳽,?熷qw~BE?N/Tn}BS XR!twT{<޼|u'M}`ݺuw^t;v޼Gܿ[w1r 1bǰ@bkn!p\B.dQE[ao|w ~_o[qgPw̋'Le^8r7slz>(t 5jTI~ ЉX+Q|bP9PR_+˯A9ZubdfH~jUPФ凄H6i~8\ f},܂cV+Cf-*Ŕ~Zmc?p r 6+r~< <B MF dpuw -t(|b; Lnzk !CP'U(X寀5s*>CչE-s. w|k<V<_;Z[+:lG8AվB,]d޸uMw\JV'<OuEOIq<300e}Qy_PcYF#G<g؁OX\~ u9Qbe],q<!~ Lځc()k,|uqUp ֛y *X=d!\2]khp= qz!&+ |߅Be,b-@|¿[@>8#Wzi~:}mFduuNk-D g>x{wk_;N?:{E5ר⻈S'TT/$!mǩ½*TϛUCEOb1Jc5Ї>Df1rb>^s<{si_ yKcp۽{=eQ.D_Ǘ CZHuuT.j {yם+ϙ1x{x/|Uk%75F94ߴsQ7~Q*_AEF,uq4_;%<qѧkuäߣ<ywt}Зg4:ҟ/\%~3.i^o[?L!fjC˖ ؗLe``jTMyaKW7Ǭ_Ӌ'uBITgNMg^ݸ2:>|&^ge~j"*Ci~Hv~I݋Sk̃ 2Eg }Qp:1;׸A?龎S!o*̫ jh}Ϟ= عs?-] j]CqP}p{bUφ_8}ŕYciߌ>ϐ~~ LϠj+wVh1r"(CJX7ͯaPRll_c1GEQMuM [\~׌u#|} ?%e#5Ž{ٍ=r ) _qBXpC&݇-ܢς*ؿQȒyjj9!p6wdbbݪ['T ( 5?zwp? '2"?9Z|:^R9';j\J>!z`M]Hf'8%ixyq|mm=/qիW2|3{;~?1,ۻ;=Cz/fVu8FU.±\#G~6vm( 8 RߌR?wGyk@5̯sh:4aΏA#6?h__ѯqk_ F~ YJҽ^t4y7yCεɟB>.^x9T_wrgg #?^1pn+ CYP_2cTMiWxF Eωe>qw(9zI<CZojzߢ"?$CJl\K> yQ bp07޽l8'X~WXvhիW?=|35)ȑ|*KZ3D(}-nB*Z Ǩ暭|Kr|?;Ᏸs7w)ǐ+{ ہG7Ϡj_c`i:]8~պ? { Bkug_RCΓ5p9C`U{ = .qRQ/?dC|Lk|^kj? ҡ1?hjW0UC?!*ms ]*~@ᓞ3>@{|;Xy*q[Cs.m! c@E7x z檏}tE! <c%WpGۃoЯjջG=;<|swy) kSȇv}>uշC :~ yv൜,ɷHήo?5 ./{3Cs-oB 8i}ǭ$}>jP5( 5*?߰_*kkk^iȘ/v&U#_!P Q-rǰ,? n!בL^wT^_qC?g~m}}y^ax~Bsw ӠM:7~v8mٲqnlEt k{%kZ? |J5rk c=Gh~+Y;H7||kAMxB:~ T:ؽ{u@߹c"nA5j5&cVq^(רkγC,i|v5{!ֹc};X1B%ߠ ?-NnZ+||ZՇh>FܢiY> | .Q_<Lnu6N߿ ] l=>kGhrt<yG_iS9SsT>W- }!#Q{c]zq4]7z{orA^%> $gQES%]=qf_gWn;J'F-5$XjYl)rԢ7Ebs ʮ ![Zb!mq4-IC&mmڦM'cmmZaCl9@_Ae/ ɷd֠z2g'޸"0  FȯqYO\oN8Izpϯ!;5>*)y{G#8=)Cf c> jB>e~Y 4o_|kf#d@"Gxŷu*=3i[t y) !p!U1ϢC+TqS9]Yt&*ofu.sG*O.T$8 +%WqEKzpp|\~|Au;b_>ǸTx߿?΅:kx~^z)gV4ъO<3ou(<?~?Ln\󶓇貌#.̘9!gZͯ?hc}Qv<Y%|е>Nly]QZ^GqȺ>[m,bΏu(ejwFo59.Kn߸岜W]=,Ag(<аP8S|yJ;aul 1l&Ӂ/697CDV\Ns bNsgnQY+Wyy;ODE_<,lO[οR2eSfxF7|e2wm<Y?߰"&I>| `|<<~SPgNjyt?okП54n\.ڻ<+!ZC'kg[8F`m%a5aBGɎ8FG;2#`yҾ_CN^\ࡿ~(~=j6M8Xe)|_9>_27_#Tgp}Pkp~Ejq0޽ 6^zyE ƞNhǼ#!=-r8 3z,[r4EuUv |GA+Z8T]M8FJIIi)OU>f' Žk?g͆HC|g׻G:wv횐cժw6iAz>%M_4VˣGdT37|(ti!O4z>O] rI҅k|j:-5u03\#53)gjrADNC"5XAO'k]IG~ o_ A5k\\/n޼ǵ]:͟_Ľ8CY@S0͏K~.r$W.]R A0_pӮr@p w:@ @Ys o!r|Sx9=T]4 i5L%בdru-ٿs|R6]~1h]ﻶ}}i;?|ؠʧcn⫨̛7 tY]!7lp\qWr9szv8V/2sƌuL]|/d`r941^T-W {yFG~ c1*g"(F8F~ ~ ~(_@A_Rkp-א.ԏ oYٻe<U;"ܸEwYPUpY"Bz_)t-\cUgUy5)81 i5NP=:IwlE9 %88mX&D`iܗycWV);w|(^J| x駟yV[& H<ѵ5׸;KMa5kzB=G~Ai9~gG_p'r ̩=ŗq4J; ~kcM4i3lxvDG~8F[~ QIԡ눹 8ttg9/C\`\?hcٯQ=C9GfUu1zr%ϢBryԣH_4R;s-\8 ~ct?<C̵ʖ3u Ea)m\!9T;y̥K򤋘s3H-h}܆qåBRS\^&=t%KOM¸@с ϝwpԧVΧ!|~@}(vx(H7R[}w^"1>pcǎ.S<@YV$y .,Htxx85j^Owݵ^k4~2d̘!hjB' "yW * # qǍ /QǍ<~ݻߨa@˟^?)ó}!5}k5zMhP)U0gvN~{< /~ }p9cxWX=\Q>=ƭwƱc K79 z'qJ@CCCd zcun?yxܳH Ԕ$?M'>γhy^賈N`h̑!Q_}W_S< iÓ+Z>pP^kI./b˛8?kt-G T ptbDp Qs-Nva<RhbqUNCr^g}LoZ/v1y=U: <$0ڒ'#<ܓ7KK?9>Y`Q>WE/Ռ%F:l ˞^./Nd2$}g;?Ͽ51&&͍7`b /oWAvyPǹ PWb>vaY_Uh8сv^O~R})|驩j- vQ0HQu_q#X64zۯQ&h5&{:X֦?2.PyRu ;qAiMlU[wfB{$چT ?!~nO"<EpzzBTq!Y;[!>ݺ#Gs>mWx׃70hhI?7!m$Ao`x1=K?y\LV㱠Xp _~8giOT:'Hy?Uc_Oh~*[he{ϵZ[wqi4+*v}9/o1]%5rYƧ/qqfancdee}~ O~1P誨m:tҿ[Ұp9&fL?djc-mԨX<^D2$54WЌ9%r OF~oOf(쨼 ] r  E"twX<9k@[Fos G!\"&pfvWՆĠ?q묃r@Ug.$H ¼Lrީ)γB&ԇ\x.ςw~%Nv@yid"Cن 0A;(ߥpEFw>}>_dns^PR'2?Z~c7$8xlSI_K:v<iӦd -1LM17kڸ˷ߚ>iMrK\&&I*p27 ~1x:*AW>k@j#o+qeLzDCohjbbPrؠ8ez]r q1|*&_7'Fz5!,5ʫU8^O˿9Ea'ueEN1=u X?㏕&"u~(jz.s`ks(R/x1x-{> 87UWɘs{ڬ _CYtT⧾cYt){IbsGH]+1 H|?z**042;P}91uަ=0_0߰_t|Y1r$udJ&͟w$ݱfO[ l ZG W]U/3<c+fxp5}8) 8?c{$1?416jY>%]L'&l$<yԩcӳrg^s _ZQ╆v/?8ᚃ),aؿERk&%xt[-fϛx6}<#0P1<+\s~(}^;Yb.W]=Pb]IqX< bӧK gLC|?yAuwX" \ Jq~qE15nvWx9*J/a a=k/T|>Q<ߕ>HE٫QG" 5Ό?uԻ4E˰_9F}YcUǮ4Pt>"4IEg8Ưe ,'v4511AVU L&EN9TOIQN,B>A AA68.ȸ#$H[g/ qZ8u705pםe <0=2!Q7e\fxݻBD _x 9G~|'w2Wqbvz*o?k֬9d[׿ÓoS\#8e\$ni/j{˯9ͫ6,#;oƵm68͈yQ?{-C $NܢS!kĊ,]E[ Yyѵ/"WWql&d:y{HݵxaF@ZcǎI'x֭o'],Dpv`?Zrq'(.6(`iVjs0U$$%rPh3/]:O/yHu5DG53 `FrL&k EL 7ߤbk88$I | :A_ܚ0ށ~&2$<Wi.^Ϫɴ5S|qMAJJۓSv)=PS(.鸿= vЕ<PZq k|Z'cyR8ZgdGy> Lt 9?uпU{:W0 B5/<'))z[r|q.snZl>Γ =o`8Pܹ@xݹCR'M|H'ԕ|PPTy:еio:{?t%=^k Xk0_wIoY(:r3-V%F x#!˄%|ݵD <몉&f%:s͹3UdLQL.?Z[6 [y!UUǮ91 ~@SQ)y:/p "kuҨ/ڱXgknvk#_׸F5{ɯQm9=`2՗.ٸˎsՄWK۠}Ia#zo}1ZXtgAy,7,,PxGyU⧾H|jZ$@ah:)_6g=ܕa~clSKglT`=vmjRFv]FZ9]EE?`6D&8FQQ/@֭o[Ս7^WM1WirTk 2/h8`1)RG&b sWJMaccvK W51O)v|}U븾:Sǹc<6~yRdo3IK<*+/jWO~{hM50~_X0٦Tpla=Τ<k~>1:ҞC ZP5,17p94f91Klj<Op^}Ϗ&,/t~E 1eއqi)/' KfG7wn}+Mkѝzw`I"N HJ8ϟ'X%L)Pe%\?T;UTD05GF%anX -9~_r*'Bv1ڭb c=> i*]yȐr\#?Cޒ$]8/o4֟<$ cϛ>4d5#T+Li%yyȟ% q҉ƅȚ}#N$Tg9mY.w{cb+?{MSDyٗT}?am[ICu?ft=EOA8+Lwz5dy}k@ŁҒ(#c<3,?0#{-  <ELJY$q| .&#'a-;>y@ɓOWq.g!!>s?W1+>(헭PuDm0Ւ-gͪ>}:yx}^^ʰ3gj'O˃FAežFW: a.83})>M37XGCJӓ =f3֓pz`\s0~oY.0,*C']XqiH}ӄob)F}f~r#N3c<2¯xj鼨<p솆8FhbDs_&jzYKg7'Q0qܨIYzlH>\-yN!qԄQ?PTZ0!:SgY׈srgyk4g(rS%?rxqOe*^t:'iIɎgyXT:Te=1E:q!bG;0 s_tۏa.>]\X ;WTLfWQgΨ7(:Pib{8ե5\vZ2*b-| | dT>˅7Vh3!+"FgH90!IsZr0z 0Q@nnn?<gJ_ Mw+_u}у/'LE.oOrQ9<sA{ːV!?F4a(7 &/]o5*@f:-ICc4,Ɓ[ؿjygHc_/Oъg:Sïu(~ 1?(/-[3g$ $m񋎔aJբ9 vmF~fǰ_cn:/[\r߂C>/#\IETmںucEg7sFOR7 3<x ke?_n{{Nna p~KW|<? #& uyAjRCryL 3!^Տ97'&P,vHtZ/}\.\e_s0z9V.]qǟ!X]#F 뾀<E\x||k8qwӲkړcd>UხSNsg@kPn .OD:zY:+nwx#2ǍLvIODoH[+gzz*{1w1<]_OGen%eܼh8inёj ~3RV~:b`O=1ʥZ!=b}r-ӎ8Ftv?½/Q*2}\̫h9xaC~3gTV(S)/\ w~` ~%]vTH< {0A=9{~'}zÍ$q9%fg_a`1>[98﷮d :驣ա<׉3u$_|RN5o #)LfaݛK xTH&d!qkqÆrs@痥r|0Y'l9*{qJBRbOD]o5R嬃׾ Ue:1nOon9#ԪXuѷXxkc _\C_(P d=1"mfe|z2 >Շ'#,C+D6wy18sivy~I OR11*N}~ѬVŋ Ϲ_Q__P) ŋ t#U]cY xT0eee5.* h >o^oڸ]1qzؕNyw&0ZYB*ec+nqgHk}!\?bt(W<sy} <gqH@~/7C- b&{p|w1 ƭ2qq8 X%w~ю"PI9^DCXESo pg_U#`gMDե0JVj 1 ŭGRCHs?f$LD\_ׯ'ىlpjpkp0&1£(3~&O~?˟dT3|*Ir !<@.A> Ϻ[tgqAe MoRÿg2MEK(EJr/LjO+wTP)6|[R:E8z 51giXrhJΞ:<|\ zc 1 pPs·*yp^F˗:Cy}F̒aʁјyGv RW2_p&!v,eLj¾ e(>7cP`gZVyIPg"?<A5ÆRX'2L-Ch%J4r]:ibaO͛g"h|~h:՚k@dDASI&|#ѝߗi`x^P4qCX玊~|ٍb2Ձ!m_~D%!/oWV17#1:"4~ Ͼ(]I_`FՓ?X,M|Dquars{}z=%Lf3)?F0{AC:CQ? Y*;ͯ,n<{ T֥|Wnqf% .]+$wryT;<uYOZ`Qak/qyn[_~8$%.J^hjrD(HTuGXORCɸz?Os*H*?Pt`~ g}ۃ+F`vz*m\$ؕ<ϴ!`iJdO@4h^89/?k&Eb<:`ڄYv[?zo-dr+sR''AGSx\uuu ښl jjj[7lxGC*⧌s=#>p<)E!U+IAl ݞV_U>~L=R!~1bЇ3FEdcȁz{}]fNLc^Vu(q ׺&̟:Ro%32ܗU?X,cV9cO&SA)Ir. z'덳sC:N0DnFgOq͢ceԦM2[8zYq\ڲ1"deuezJN>mI7[nTsP~-jupp m_Oz *Tby ;ј7/cŢP^Fڒ$]vװUD &T#ip㺤+CZ AWcC2(Fz 6\* A/W?׿"$-"ns@4-ЇL HHK\&hP~Kr9ՒMqVB32f!]o_M5Z4dCCM"'{,9HVkrB6q*v=>ܲuTz@{ft&.T5\ _6I$/9-VWu}U..9~6(Y :"22! #G >C}~֤ϏXO?1Oq n58_(55Z`j_DW} ~|Tv\PD~:VTTD&(q 9v@q} !ݮ 7 o^8zlCJw~8:pʧ|A1CJKa1l <@=ȉ*>nq);rhSnz>1Dʎnj8GF|JzatNR =}<Y]vmCȇyϧ켪̶j(_np{i y⩧O ՙT{s\ )v - ˄L ZOada)qgUcSFF{0wJ޼+w~{;=,'pԩGM#x{ .^6-bi=5 {ڈ_\Uh9)'Ǝ$I+!ۃku,W%ȹ <>›\Uu䖇*$hch⤸<p̘*߄PgP+gjM#cI_G ( %¼j 38 -dQ׎['9ce3ƒpR8<[hxT]B(y";q9!67cT8{anDŽ%p{p,MNק С!ku^-!]9ƶfώ8F؇a;7P1Ws_w}D^|_x5@~ᤔax~MIϳe.&eb({5ΙR4+kJ5W_I`ٲe iFoRv;E|1f qdHp 2d@+ٳ ;n`îd\9wyo$;90o~=| 03F9d iς(N9s&=Ȱ"IȘ;CſZ 2.a()]?U[Ar <)8 /XQk O[]W~uKAmpVv{ºv<MCZ.c}0 ʓ?jxvXkjZlXl>w$ΗIy}f 5N\poZځlyo\*pW Ck=5dIJ܏˹kbkmK_2q|xx*tUa~ҶF=.KPx|Ľ0V;"(2WQBgPlz%c 8e8O .8\^Ξ\q*B{>^+6p«FS3N_"8qoPqxaU~_?r!֞ ZRz>$x^!ʵ;p ]>cS9b[xoe|%]H|s lÌvנΫwW_mѳSWSO:K9I=?Rˑs̗"X ZosrrnIqcHW.В癿gO-1p*ֱʭQ8q ekfq$ /L3{>7Fk|;v!}v}s15t]PL esP}DJA"Ybo?^[!(eA1M|U~wFˇY&OT?Ҧr ɒ'I55 NsmJ%{p5;8ǹ8Wo"a}"ט7sf=Fؿ5I)~O+L˨ms4*:|, $m ^'$kJ|RwZnar95>cF[홅 'G}cxG̻㵐_#0~STs9=K<O#8!񸧚,uaԘEUWq h~sשCOc?, zcp> HByGV]|mfNQ^W7s>kl6ЬϨ=cBbBoiSS<'BV{L2r-ϓm89rm0=55W1et {X4k5k1)''7Z#/:4A|)`_%igΞ]d1hܷsv=m1<kfy PO]3a&ْJP_9O-ot8 1uc駲Z>zW]r-kn!GuueXmmͷ՝B+>|w ڛ 0|2 7/y_ }Ш67ZTU]1 '>PQb%gά5 .$4>eLฆ՚ 5j"-p̙IzA%̟pkjb9%ʊا}33JN]e<OqH=Hŷ(S7~-}x[W-Kg[g05 hV P>4$OXlӋzzbv<q?z}7of τۗ8F[\û_H;Xc\U (,\},9A-:Rk*<ƿwcO0g\\aٚ$鑊#1tC !~[Dyj3\L7N4g ; jf:(;?eFGy29*ϓ0e's^jޒZf͕4F{Y7o2`R F~5\}} jK/|zRx,r3qESO=fpIc9|֤a<;}nk14TRG7Z -.Z["Y0 ?("= <r5yD|Kߺb*+lJ5KΉ%K0r !/ߏY@[kjt8`.5vn<b˞oJq}eT#Zx5$RGҞb?ͯ1^鲽eX{C}U<1 !32Sn9:n$$HZEC3Kɸgfrq~H X'sy~ZdB[' v}{K$k-aꡣ{?c?‘a߸J-,V?ǿ;~6 j}^{odBqaNyDGjٸFgpXGȳOIT9y'Zn~γoQRm_>(=5QO54FY!: <ҟ2F8oZ{挊O?[fM}JQ^Eoڔi/_ui\2Ja Z$Z x/tq Zr'OS#)-cojgZѼ\'rm Q3'?$I00L9֡ U]?;kmQ[$xnqg-ׂn"sRS+,j7]l-v ~Q]9Ft78nڱg8VHoGN<l91^oɌgDž xa^V+)Hkkj|KJJJ /Z$*>><l1,^(pC{9gݩOtqtx:_p9쿙3Ng_[?"`ǽ2>زeϨPgԷq[Uul6"y5[˫Cz7_\c!ooBT:p _U_ x.(xEgWQ0/s*ϜJf@? '>ᩎ7`a1OUJFΪ1Zp>t5Ϣ[p`,-z)ע4s_?cckFxϓc8-0)?9<\tGs:i*\e!"<!PZ#y/k ¾nERu Mo ܂ۍ? U}]NNU q}VLBR x,|_XwH<oayŇ/!ꩧe`Ʃ3XǠ'OQG0#>>ɞy+㱩nMfr /Vt;vdkr Ͱa|a2I }9Dn!~A1c&,S=,QsST響%8dawcֈ:ޕWh}C5pbjkC<~>aާ|ώ7e*Vsf釖ΏaÛ~ePi9?gkq`o+$ɒ߫S:2lHj2#8y{u !&ՓcbđtB/ms v;'d*++yx!ܜbx 1BgPH)SF߂tpUfi1L|XANq}YN%ym;6: ]\l|3(- 7b3pS;O* jh[%EEW9FYg}_pW໰x5 8T}Q|t*a-8dWg`(WD_FD 8]G:L @^HJ霼)â󳘂@k]I~_Q'_ )A/xښcpJGgg'ߡs3hJd|cyS2Fn 7;DL{ OLr=IEL;v`0ϞE…' T>WTQ:fӎmjѿK{c+嶴1s}qiH/a[{p׮͘ˆ9&7CJf7HRRh[H ![$vÖW-^攂K"8w]lceSНkt]”>?4+SǤƅQG:W {BD> O PKR>x90l 5$l޹s IϾ|3\;DzC\vF + 4]zxxx}',\Xπߙ7o9uV^ TIG._LϊXBO!xMK#R7[mhǁIx>nguD^}>C<-<r8lA[T@p i(-Zفjj+ 0_j4jJ5e3vcSG~/GA5u?UqQ:fG ܼ1~}>9C<?nk׮ 鐆ԟ>yW C.E|G^q ϬQP~T˖-:OfWT} nʝ;(rウuf(QXѿ/~Z;sPb^A&GU*#p܂U1B Dk4g}6.?,k@Ӑ[+ Iگ<)%1vQjfWhݿIx?T*vy0s{3P7أfUΪ,}wJz /3MjEdZGguV{1Ǜ( 5ЗLZW1Os<9ϡj_3:nh 1a]8/s<Hl{ch֪UǼ!8:Y\ķ'Jy~}%1Gyo׮m-e؜9s:I>sEi _IKZoMRU`6M]^xj̇*0*6 |߂z5pG}"ާf|gq:LT'({{^Qq}E_Ɨ)(/rj^ܼWJ\u8U{xOW?^g[)A6>[ 0K q?קӧdc>P0{V*P 鐆JAO~pעO/o˳+eai"*عs;wٹsw{z|󙊥kfq566^T}KD.+liϯ0arpNXR9- S;nk?vC$O6leX^^!Z.4595$} "hoc1|Xp vuŽR"׶7O{<{wѷ*~ZOsuq SrM|7I$^sL9r 5~R)DL7*@Wľx֋9㩀ƎgN |F{KW9:qܟB?ӰAqԿ3 v}>\(wɡx*ųG49WիW߈yU*fzhn^8?h${;v`@"!W4COXVTQk#~wMqW@O2)z!hE,%yejsVPb^/*r q>0ǁaZTAtGWXyJPssSӊcVϿE!ZU}n!Pq(Meǹ #+x~P^!h8c`^>#3JkO%~}gl 9IZ$̵;l6H[yAj)_x>Xt@B9iry5(I؇+ǰ/8^utbܸQvv=_[  O׳(9H}k+w98ϟ|tk8{JO60gjP?벇QԽiiɳa}v-: 1d4b())Ȁ켽rhwpד1US{玟[KݮdW%8䩣F ڛ_C)}/^Å5{髪cZs gN*>B J$B;9:iNs A㝸Lr9J† m $r sy Sҷ9J*q-*-P1\Z[F[?Rw\8F4yi5%,v6;\)RҖ"w+,m/*/!,"=XA9@~ @E~gޒ$5e#]c%/|._HhN^r/` 4/F=^<lQm;r?Y]aj`zh8|#DJh l:?<p^ٖn޶-أ} x!s &/^{Uv lM8Փ f%4=YOk~{(7҅c$Y9Bh&ќ:9)qDӼ;&kmS-8v >e߾+ݩ ?XJ3Zb6Dctd_JVԆotG.v%q}fO?4:qI؈~ KkX_9˗!5G'\cz#.<\*z+pۨQNoOW |'=9hD[njF߶,[9X㙃1jԨ8-TQ{,bKK~{ig*uȑ/1K9X"&?_ed|!C>'{㳤XP~;J?sD3K+VxWvIM -C:~ .C=tqB̽'+D+pVU18jZ,HohJ,JZ? 4RTw<(^N2._̻d@_Cھ ӀML }hu{ۋ\y_7ϡXnW^[YbEx6믿W<<oޕm~f'd;/OP+N(z%9{{gs`Gb/뀂ݻ߸] )KO'OrrDZ`;"gq[I1V9~1g$bm~j{,,hxaճ*v (cHA1vjewM;}z{JGe1s湆Y[[qz[7lxGC*T\׬4ѯVBJyUļIG}UHC[4FWׇH^m}% ) vk$MO_~ qƷÍ^[~e\a_3S@xzٲw2a =<֨Bnk J:6Pk9F~kT|4) 3PBa)QOp ƃd]9%^ܢt}fAznggp /%*jA`EU*&AB#q$'| ˅K47B-7X]f:W>Xs>At<D7o<ϡCZGB[߉*7WɊ+"^zXQl߾]q޵ޢ޽t}Jeerxqʧ9~ztr<:/Gc^[nǺs߫N[Zq_gEjˇa s@M<9n5/8|gϱU&cx~ uHȱcOꍍSxܳyUmmm?{E;VYCɩch5i9U"{e)./<_/x_`us<0_Fyټ_rW}u7]$?h|gy 'òe^&It悈<׈s QV)Gϑ>4P-u!j~vFWW+\ 3,)%56·to q#3[k{CP K]+TJ1 J jy[;+NH/]>"33 qFp4cC= aeeeHvc䳚hl驩s) f9;ƔJ7U!vP&ÇTz[5Buu*l;"h[lY-TXreĤ4}Qeb;ؽ{iuD;M#bER#:oUI{Tܢ"RNS?uq'Is`j 3JEX3՗:pV\5k9{66e)8?c^/q\_F:evM ȑI0:bZ]xr Oݳ *-5$NBhXkG0;=}N{숔3$iS,Atv1r|* ?ϋPgH/ݿgsZ~kwi:rP_œ?0[M"o0DQ__!.{7gQZZ1\8x<q*)sԔ/1`n0 -~ZPVV6! ̛3H,|h:-f c}} i:qM9a!sh13cw<Deq80$ ߧ51!! ZOO_5EQ'(YnݤFjƍff=BS8~~0:ujD!q455^i£_p#ґk7%h?{BWTT,r^'9P/[Vʐ\͘~Ǻd#yMm>.wcxjCCCc "qk|R(,e$> :ǓC 1RS'z޽,yl/OeD>ñr@:3TUVB~4@BnÃiz۷oW4﫬"LIEE<å^ٲEҠ6%I;dZ9 ,uQC>&cC'h{gG9Ǒj&7QFw.B 7s ʴ"hj\Cļ r- 1wS։ƥ_H.zU{c88Ui]4ZoY.1|+6ЍT~~1Fla70/y:|hW9˗<%Ҷ9ϓ˧>h`x pB0gRMnITfLDu#;x0dEE***Vk Mxȑ?&g4j(h#}g`NƱ?OzU<8!9~ZW[`ʵruKي6"xnda=$̌OkGgYXc\CvX&jFn3ˣGjNA^;T U$H΄oPSQly\53FV'߷ÇCc8Ȧ+ } }7<vܣº}S$c$!GUaRҒ,FD{\cƌ(G&py|*Z'[_iZ qW-r ' 5<GFqy7 PC<,f.s`ED>!<O> \9.;]x:@jJWQ$eq$짞}%!:-7?lw >}7фH>וcpΫ# 77;OJ# v)q@n~=91ƙW Cs EM(cB'<eq(& 8nw1ژ};cvR-޻*[O~9`}ۡ:-r >z0M(Tn>o|±WgA^ߩ8uT5:!Vt-j+++ﲱ'logX})Iv?\J6JUOA=ddYp^,0}TQr<F_HZ<hQ$QRmNuC$TB ~ޞ+jɯe^Ookv۷/ۥq׃Bjժ¤4c)I}e,lnf<AsL!ONOU_Inn΅Eźf3:}_Ioosp c_k\pWR=mQ7xEZ[5zcC\f'tA8o[ ^97$BPH։qX8?xji!ғc;cy ;۞/a-N<wMT{?Ij63D-?C-JUB)ar7@ʢ"*R7,jF@ TB ,]i -ڍ6PJI%\f~{fMZZq;iL&yv[̹Ix>Pp q9Wx޷z7q'19W'6eX;hy}kǀч~8r.}]R[<>G ?)ދ%W:pWx23J뤝ąiz"PyR/3[ƒ!r 14)))R!90bi9&ibO#W/L96VJh]kHQʫp <DY%'Ϯ򷁳@ +(ŠT?#(l| .P1j8R~#<16ʮӗ3#_H>!C|+@ds7 ~/.M~˩}# $<ke6;MxKNiZN 9}۶ J\t(MYfŊŽ0gP>%ju֩짟~ _+<٫tk_Z:[QFuN yչO[v]ߛn?kJɭk-qd&{EgB8F}#'h-7vCl*|8žc?V#X>?$dE.jmcXk9o 5+d'D\B7 t/6K1ҥ~M6mb/vr,sq9>zTqx!X|<`>n,m\NFq B+޿0ڢxe+)u )wDfiyB7.{!S5ޤ>l__/Whk[TKי=0h@BEgΜNhu%!t>?ݲnNݨS-?=}jBW7#F[@Vt()) :PS-8O9[ ;w)** <4lL\$qHF=<s-Wq\Q%9Ƅp_o u\C9gOzyCMNiKq?n5}|יך7u!?)Ј-4h^cޝs?T{*{nN#ibbA5x P_;XW_sN@g->?LןS| J-gQs}yRKώZʸ,o<h>Ѵz׸zL0 9^.qWWϵ/?ēV ǟ`RB?ws nQJDm-Q}Fyynb.p#5%/-ZkαxnQ.'Sc@=ySCm|O_>#;H: U9FHL)^{ q=tH~㩯=_$ePW{o`up_?Vѹ =%-/b槊3t3bkN$ˉjmt-y|/EqO2 zʠ~%Ete6G{h^5ͬ f'" 0~v+yrZZztsNgVXъ]񤟁O#b =pf+?87>WiOi(u֬xJ<֮Y4Os.\GS a ɛ1IPbpG4!F1' (^QHcǎR)ʺ Biii5zyȐ0'*S.@HZ:ڿo_?T}%1"_p欅BA;pHu=\096:t'J"w52*\C&q|Y:j_=Ʌϫo1nv凜 ;VsCPU-Ϣf~UwqpTi)9NK/Yr'gu''J,sB̶kD5&L[ ʲÇ!n>\V^_]mK܄>g~*N>pd vmH+uOٗ;V[0vW'v mzg<!2V o x };wsn~ݻ?1f|كby^TQw w!R71M w}C\vMsUI_IѬr:߷RL|ƍ>m]Vq$[4l)Skcb i)q ?Sۗf i1E&[8WI{P`)p1?O^6^ > Ѡ ZѢok@]eXwޫXkX)kL='\fAA=F%S_TW~ʼ@F-Ool:lX3$Ϩo54մi&`Rh0gI9wssTgQ- ˶w>ldYؿuu<okCY2KW Oƛ@guH~[Gm*օTk ﭹ'^|'wʐdSQ˖}V+IvYVΊyDssEdϡO ϭ}l<)=^wڏc}Q.BTBv%uhg> C}@a%WN7dDiRG\fdYSYeoƱق,?X.xѫ*֘W]qF-:v;Hĕu033Ebp~gy? `3xj*̘W\G2رc{71JQr+ד5;w>4<N:5x l6ZpESug}͸yr/ I yvZ_ cp+}/,-eWnCخ5s sAaU!csWy.8=R^Rh?}Syh;܄Jp D/M/d囫ט"s9axϓwBޫyt:Z^^NM)?sΣ 5e|(+nټ CIHk} U 墏g/u .[XN ICR0KLOvܗ.<il{rR3)-^5jLR~~؅?dHͷ kM>Yo`vYOEcCh@^mnq~!sçC* GnI͸=<#*^U7x_o-7_9"__]s=r ȷ"9?s7yj ӯu98ƽcDp&MmخS320g(1u%˵PQG3Dqvi4=dWfys_*|@Iɞ@ixyQrҧ(柎OgZy,#p]zވd[‚eHary<+(40}%vxb~9–2~aPJMgd<ffX&&.id]eݦp ,71=BY}LB`:HnŕN擞l.X6r6lY|JX߰Z8bG{C:K7㱩S_{Oas}!/qM  vSxԵklaVmu scؗ uN瞑LhYp8bܵ0/cn "\#68䧺s w%<Nu1ך^\rL65u<}yy111ҹspjOTnc\_+}<{vFY qc22%p$/jOﻐmȑe: |Ú|׻kh-{ zk9'z!-D~oǧ[r qyuH.͔U1jngy3nOMQ"չ|V^Wbnn/^1(dFQnxDFңGvα{r㓶1z DhӦov;He?eׇ:xX =/_!I9RvqY\uS;pM}uVA>z,B>~mru񁺕3gF螺OO!yQUz ’saڹz=zL|VPˮ[ ,kkAݶ~:h~~$Phnaxa8? <Bˉ;Y6eUt~T4whiqT> ]Gwrԩ~BDCXfJqj2lY6$_QģGKC(ƍej;vxGÿI(p<vTyYI~^ЕksEϣW'>eg]KABr wyq PFɐ/qYf_pav¿>{A~*MyR<"Bj:XoS~wx-̈́_׽ M{}佞>k;OQlݏxzϧTj6/^~[gޏza3|UGʞ B/PGygߛ Ӵ>hרCkhoTp"T|(2'v>:Okܤmh'rܞUkשU8F#1~>~k=##CGɠI&]ֹSh+y?<>v͚,lzzo/DZ<~/:ykB+ǠGJfo@e}$m]yʍ}}`%Af2,J89CQ;O AaX k.;ŠO  aG- 0hStA鴴$|; s}_g9q/<ϯX& ~9H.ZϟGlNjgj5B9 Ny89>E9]Yb(''.BP!F#-zC>/䧮hcyUp W pWA;{VyP[k>v}>_|:~ YVr K:c2̘O?} gX0>Juu1asxR0d.5k2io rZi\pVqIp.6q eyVR![w9pyHbW<l7 `KwSSUxM1ZcLxq]9|NŁsQrݷ B;{砯ehSO7 9E.Nx΃Cy?߅gyu_J,B so6z[}@>'qu|?X=wĮ{}%u݇ʯx(o>o5>~/(#%8Bbb[ui(ORAB}9Kֵ@~8?5]a!>Ǩ^8 qJFj{ԺJ ga'T |"\6Gx^EEeZx]zwh93y`ziTb=_+d0^'<L z:d ǝ6}wڲ'?y9~oK9PsFzBf JsɁ۵!YYdw/IqssH>(_ŋ KfڿGxe/ire[n]ў6.Yg>=aa:[StY$ėb!~,'v-+- nYsf:`\eeJd&<ȉP7 ȉj⼴E1~u~kc$.\U999ܐv\ܾ6oU{|is ԝJkptKprA!Wmk>t$ 68<&\#\'[).^}/TX, u0PRuv Rv&ܧ6&LO\HKM%yD/ٗC+l/AH[ Iբ_| <^qo#9^ϷST9迺)277/)=}e,5P$;/nm \gExpqP6:PuܑWoqNm[1m |lp_s@x^,)^4< wQg(idzY >O+r_S] ?0?tЯyG}u>88_<pc+v#j.瀯8FCZ+9+WhmC7,ܗY&H.m\_H: [aS~|! mcYB "E#mKbLΠa:G#l5{:vWJGeBNTrݹuxAܼshJJ0^388/{̽fK* mӮS7?OK;Eǫ]N @R՞gZL Gz;< @<#o_iZ0 yxnd$IiFy@!y M"yB?\${싋=$^0_UןDGˢ,-њJeMڼ%Rs*/]96u2Ü noA;v謠c̞=+_|daaKYwn*hzQ|߉x/rO 77_hGR&y!$|bqJ5_ե["Wx# [5kޛv\9<I8 -1P3po g#d4#M6腋oQr5lҒ!J2</g9,[_^^`5BuRt9?T?DKYxk|'fJ^7/ C '϶1O3sF<ke W8p)]{]/* gs.} 3<Op \z-+#"MvF) .:"rd0_v1=7k/)R16-'I:xE]Zk1]%SnBTc:CK!~,W.CԂ"'hxnQ]v|s ׬V))y?r޾|48״$0|Wr\W}on}iP{5t-YٶWO\F>Wl#iZ͟R/@i#i)z)sTEX: 1h9yijaռh) x q7؛W=52~@Ej̖2-\j𥐽~|Tls >"]Z|*:uGW(vVܮun3ޏZd>ٯ-1`>uArD("Ѽvh,^b/9s xVr+Д)c5@FPr'_uF6}IQ&$g-OLl橞plZMG_.5ò&˦oB*o>ZBQSxmXEǁctc|@calF4//O~Gr|Q^?>,cH}fNd!WZq"& _m&_>H/peQI9fe ~5 ?(fYO< 3QKtS_FEY֓GE!:??cTf>=8Wbd,&> O5 akg"9w(|kudː}NA_5\dzsG?7\c^w__4V~ǁ“~ />ǞdLJ.1kߟ}S4scwAccG?~ظfV|4\wnqaO6+ noDj#y, ~fTBhiv61*95wo{1LuYƴ>ۭÂKwJ*~ğrܻ8%8Fr{1șWlK 3#5޹YWԨ'vy_'=BUgjˋSﻴmYruz? Tv}@Ү w5Z`>. ؾ]v"5nee,zpy<LKƨg>Cp).\xI8@q c}y8FKxx<^YS/sJ,d*+8~T8^6}B?>A^c)p'8_Tx%n7 4FW^yE:X<qAx_\u|uԾ_˫-;LѢ0?A.fgCRO_3)sG<t+v'9KID,"~h#bv&|-1rs8Qq }QwOiioŚ:vd?_уq =?:^accҮp,yr&{^r_isy[0Pr|#?EpoTgpݍFGuU/m_}\cL>JTX~N8}yo#N0 "΂"O[okI4<?>ق)Z^cJde{ 6xo CPz{$G͟)1 biDU~aFBBrLn<.9^ҒC;Ǩi ΊfyDG+7떪[ڮQ-fy!~qSHƍ^yUfF;55+AUHж|G[Nr&vEN#C! W7mya}gףPytŲ7& ,4Tѯ xZ8/湅C~=r@|caaޡD+3[<Q`zW# I%.1\e[f|{$G.3{Y~|kZ~t[5k;I-5}p+cѢO1X89d/V80r<p] uR5,oE:Asv7n1^ڏ7x6VO8zP^6!I\ $!1_z 1v4nQ²s( mٲy|F:0-5Yȷ5ِE/[T1_\|Wp =jYksyw<.1?C\EoMjZx]{5 oKwkܣ胿[>^[F׳,~]nI2n{t;v Yfe5qarJQPރczI+<iTFc!>!u< ٫n! tm޽$3ө$AsHD]z~137Ԣp X ? |8}qYAK 0Gà,SysÉ&]*n[Cxsm^9FYy:'R_aR*aЂ;?d>W+C<6ycE3m99Fu}or>}_ٮwV|4~|5'i+9oOsiÊqWV߫NxT5A$34#)lmU"pq1>0.W;C;LGύgCkxM<ďUܷ׽[?1;e$ԟ6<?]; Y9UcOIQw9WVַ\7(r GVny Bb:ǸUf1;U=p)u9f3?ii*8"}9u 8$/))|oc[YDħQPŧFx#s~{x~'iߟxӑa?VkFpcڴ7>|+=PxrTrO7Frt9 w }+NGI e%j}dmna+ m*3Z|C7xbK <@O?YxɡSM?!K:PH?3PrܹPk51khrŋQJާ{\u DxEu0Sh/fOXz q Q'U3'Ν9Ny^qu4 ;Hr?6xi9P #h. Kn||>c޺CY J~!wE s c-ג*J-oǀߣOpLj_ٮwV<4c23Ȣk;vг1*互vk? -< A{>(?ypdE<DDR ڿi יF`40r>سkPuq Gy|NVv;8 姆{abYw˫sg}ݹ7$R3{1g|(yIEĎC/'&>BOﭘcǎ,/Ha5Z ץv45}R_ E{>\Luq~p>}ZU#h.\ ud*$gΜQ{̤c AZE]5N5mc8Dw$ǐtߡMFQ 'y|ϖ|jus v_QJyÉԩS/_.vTj}tc&8''3ﮜ3 R!r 3y&. 1YJnǣf ^FW1@& 5B+JPnC QA|<y>Ѡ;c9VO? YjR?7IuZPk/[/2-!OJhiC8Ixf~Sҝc!7_oA 燴z QԖ+i,c8x:!_1ݿ.mԮ Ln/ }quY$ Cn 9PT]a29bm[g@!`0.dxn?{x\tA #O4|1 s0Oįo.(qVDFzrHb<\%W0g$Ѫ[(*wh -:sJ*cyYBQym_zg~_CqXoqm)wnܢIC# btxߒy/~sH%9p ج7y}BU->fsjWIL2Wv#鳳ey4$4'aw <˺gʭ$u\#x P d}=uZ{Xa 6m < >!`*۔)c'xWV,vU)1<C.py<fZϧn[+&V8lӧt;kַe O]E>c(`SBk ^p<UǍa>UxE~w3 ˕ iÞVns%]:z`$_}\)z՞OzQ]b_2Z<JOXbR 䌴8 OWDCys[߷k֥CyT~OWHۘ1V}!s{8EиSO4C~Hhkr }P[QC]ݹ M~{yJ]N?gq&WV6!o߾ ʮ_Ͻ_^2EO_X ~QoaPŽá?Kxn!x w)mHejrB_Ǡ[Ҥ-l[y M&Co` Uߗ<MC>o*0*su{ٶyCW7Lj9R9M|hyV :?ic@~>=E9;\\oǀaxq]v:y`:ϝ9M7nNhٜ*E-dzs pTkx;[$^F '}C *//x@xWtcX5kr Q~S '~ފ#fz c\x5T{`"XpvZ#trNDh1&nG=FsqΞ0vp,,Tc|b;>x?)P￿}^s ?sf9k ZNGCG'Wk4._<& =U?L8*W8 eSy;F=7PcC_g=>пc_;h{ Ӂ IR{ 8ML,YNWK<R $Ķ XVs]H]rUɬ PǨb7?.yEc,)G7I} =-2QYQ'4j=ڝ<+|ʐD ?1e{'*y2+ },!o 7kğb#~z w<Ι#C->V)%9{4'jآ(c_2>Piߍ wK1s03/ԵrYB~  }E}/<nx>&t9%l5q0_T!V*/,, 9;0Zcd맳0),%KV(8uj26+ǐ~;)#jy:<?!=SSqyT|#}A2XMRmW0"RKX<[Kyn2^?^aH=RWn&s΀ l΢~y/ yd qbS_xBD\?h)+UTA:|<ib _N I$7a=+X4k;^zE?;]^0YfΜ,}lY`\CСC|l@AM-/ R'2d s<bKV/}1ȸ(6f#G_S9;nK ^iBWcp#=W[qKnG8q52lO?(wAÃ\ ׃4px!-;8g9)xXg!rfuUM6+H~x==mH}=1ujfꗤk,e9z~ۇ vstOkL eB~ϋZcpn*懸Y_hv9Է*[tbФIRBםv_.^PWзߒ*yFo!7)D2ġy{UxG})4qR5u=B-6A_GɹX}n*p ؽr1L#::\?N$&X81JQ-*7;3Iu? y~N\׭cʥ ں5z+} 9 d48|$DaӒ##)cDFZ9/9k;3f6%X_g Z`6ٱcǛe`#EEԀ[!7 ;[A# #jś STTEix{+#y4qw I(YYYM%%%s OS̃]۔5^ûP<Q!)CtAWlRX2~J]5r1;VtԒ24Y1*hΧĄ|_:uo<!N1/7}?gr޷wSc9Fu]aK~:~|R;ź}?m)AOg2Ç?> .%t|'~׳_O-vaz*PĈ<]1j7w!*-Ώs'b j| XZxr3p?P 7KĿWD$Y9*ҋ<mPrϏI'ڌUsjU4nW!\ >Oh"[60:"WTFߖ5kV[{?־δk:t@Jo̘1C 3>},rR)xc@Pr;vV\c\OvǙK&JK(2 s*D_'SJ#?JiCǂx8}|A)z i6Pc9F63K%9CW0f=+f21}%x7V~UWB8U|}1o)"98|蓑 @A-1|"*jre݊^Z̟\ F ;?Oy8K"^@N*#g<=&?-J/nUҺ+d;z [hjchUu >sRSYYV`+h@H̿t_ykL[ 85jr c^ڶ~:Vv\^W1iZNZ:ur ;楧$g6a>$oR@P3p9x0Jklfm6>o9}:-Sp=pi>1MppՆ(-H, }-S !::r͝c@vڋ*fr naJ"4 3՞ݳc85:6 !:>x圸wL(?q1pbp %68 ]4ҟ"*ˁp?(gΚ9]_Q($$ .}u\Rjq@k(},a{R#!w}ZS}ŜZ~>T]3jwt{.V11v9Csi,impszf9FNNjg39t> :\!a%aM $1yq Oo2&O|~ $ќ ~Ʉ`ٳ\0s&HH?? G6?<_;$OPiu=a A&p >o1P>.CpԊwE:{=GvCz*Q\c' J>vl7KBO:5+ԣTIq%N1k\얉>K}9">V3Sy'8{XonȢ-2n>L`h1< !mYsƟל#Ufo6_|<;8nO~=!=Dn]9[a}Ww^R X5EN Sд.&>yzWy덙|^<ٝ,5e,/o8 OzFp ^^FK)5Cು9rsfR 2+j.Q3{WaaWQ.';ۯy!G%R1_cH d熫4PÈw|Ϝ"|wo]g@O?RO+&JwV}N>mKz]tf[fjGj%>Kp_ ?g2\Cހ'јܗSw1u*M;O޾v]>d'ruA1C<z|fJcQZע-|2_9=ApKy=Tʠy¿u\8mҮu/ϓU 4I$~s N߷.D6nU+<t3 _a!9":Ic Frᗘ65StŔ$ϫYTB=H?O SJ!},HAyM*=!$ЙA6w~%A[P:V+ǨE5k^JO#}>qp$''?B%E/(P󯀿:?q?hU$~nqg&>~Νd`OD?n‡p:{Yʃ[< B-6=–&~b'_mW?y銸${-vyy</ NkļL!߇wsgmy@49'5u=,ۺf-S@cDܟF>~-G/L{y]֛_^C䕹/濤DS45{}^ٰ9;Hg8@ܜYGkRl,+c:p '|nǰ_Gw((5}H UO%{zvQ ᔕ9QLSK4xP? |hv SqظrS Djm`yq}O՛Vjg-s'57<À_^-ҨO 9aV<ƥs %Q  Qae/pf<k;E{B=uMh:RTs0W[S}8[R1R+8]Cvs ȟw4+ѣ"a^בvmHx ~j٣Gg_.͚55@Sǐ˅e ƻ/uA* |}x;;3_#:? 2Ӹw"i2/ǏӈBi%C$J ~& 7pr<gxnon`di$58P"y$H m3g20߶aَP?< }#CKK6r`;cx*8cżFg@[V,Wn 5cU#,ԅW&!ˆAz<<7n)rs#)*sG@2-s~s֬6A\ @$E˛1}/۰5+=v \i&{A첓BPbIO^CŢ {WB rTo룖tԇ2hoc{z%aw x^h~طTU 5.G?]-s5RJGzΥ8f禩ڤYQpFm8瘗5ϊDS|H*8Ɯلc(nǰ xC|о}1Uh.:XcUTɠATjNY)a\.|ovs4>MWQ3GjQ#tzʙSzAsjhuz&SY9Whp -{VwbyaԊ2Urs6㊇<#[}\pcfq<Vdx<EN~<)r|QҡtD>w8믢<eD4gZF?FZO\E;y}.,;n?HJ#:;; #I8rnW{I[W|velll2]0I1]32>?04=Ua>g7dۏ2O?%u*~ ՞BOoނ u{9 olQy\?wXcYpr#uάNJ SnAx ?]au6$q; HZ]#w<nlǀ~{To?s3GK?p08F |1H B[n5rh}l۶{=FՏ9|zw*y75K'[蒒$JTNTr >Wxܣ- wrG[d  |p5ѡʪ)Q~Eȓr2\--e(+\6RȜN4udR/I?p$fIytd=lQ -E9, u*.Z#|K}ʺs""E-W~yA2"\?#u_+o ()b=%>5L3s.;{6tdeUqFsq CE#@w޲e'V]mFQTtiv der'F, \o! s( /ZBN|+~:{+>MT}ҁ%-azǔ`}{yQkX(=}Uw= !|!O: CF٤sC9e٫5?h V~ ;}<)7 w;E|07|oo|v{(n}X7,)Q^C\>\kT)n[ܭ!ͩFA ^ ps8F,B?|d%97oVWTk_7ڵnU!u TyR/1s  Ga-gÛW\&NrA[ ?.<u쀾SW4I^p#O`[PR~v8/r[X Hd,pfVA_RIYϱb^et ȦŖ%KI~Zdٜr QEs0/JK`,x7*ǸL. *Z攕{" Ǚ8F-Ghܸ>aɓMi<?˺1kOw݋E)(Х;bc?R-do^7>!FcBNfz~׬E$~][}2v:ZӁJ"il}Kɪs;^x2_o57%&"Tːg;km`Z)/ȡ/TLQ=k,2}*,?srO|BQKHFp iq ϖX0k?xN2dG۷o,%;[5<hiP||0G)7O<CIИ+*p׷C$\OzDyU Pp c_Y0HNC<iW`?ʉu*+2k%C8!5sZe@rr_=*=m)К%2}ӽX. Jzڿo!Yc #ܐZ1|)Û3 ǨkTUM [N~zޤ-vu]VUy֭ߡ UիWrRt/ CZ{}z~Nm5CJ<=zNmWhi|z *OKH$Hd]N[!aY3[>E8-'(k: ,lV}]I_۱C>Sjnq«tWy? 亮 220M|<wp[{L-cu3z.F勷wCqxqrrUp ѿ9FYYgqp+!#\WV8h>Ԥ_r5N~k۶od02LLL̳bSQQ&b>:= r 7sWgM90E>Ȼ4axq ]"7 T}yyC8"O,B3TQru>6.ӑ󿗨|W޴"!&fc|9j̒2":Q2"?omL,]7Wt]N .e!_efm'ޯC^GS. <׈]s\k''33OwFFFFTHܢǰx=\J9",=Sψ8z$៹۩M߮($[7vx}ΘJ=t9f#>|ycIwq?=uqb.f,~ H2ivE ^ُ)+I@E4 ?9 ^o-5|<kF)<ㇺ8vvؠMM$:Ep:m\)dZq4gs1)OI6^-@svQ?QŠIOAe}$m]ZZ\S 7&pӇ(qqqP<p:L 퍝( ?9\8n>ڷ'<_0TlT/**k=ʯxamԥ[#(rFiKSgƭg/7>C-+VӖu3;fș^c2p?S̝≇5 ;c\ɪľwčBeH)\=*1bcJuhM$l2/gbm׳[2^8FA=xs -y臑: ȅ,~ٹ{^5|s<%\eeX& ]ם6V0m.^_Mo#M;i T<!n*/+{xp'}4&,+#޸_Tsr׃pܰ[w|~HjGK+mf[w4)X/]*fR[V"qf-š)~Oy׈xKTIII/ ]o=i"~$xYckp>5֘ӧN3hITjf-mwט(mXDm]cz"mQQLoD rԢFڪBPIZ*${>$.E+$yAkǻV3{gcP'~51z¸j|׳sy}^$;}F h%;.9"Cu efZEma7!aBN!Ǖl%G:yCT>f5B NxRumN0WhW~t!R/?w1I0I'SV٭. moN6DO(c[{kELOZU7H,7Oʗ:/js߶Yܳq~:n؆Plڸrk7rذXNϝ;fu*4cƬ1+xK\018F!y≯_˖`ZЦѺ~Ζh\oB}}<B}̙3}.Lx<:3CQ.OI~k<|~@[ZuheD{S:O|K8UPKqРjØ= p)A3R"4M+Ai:cU$B?ZVm5H'R![vEL}Do] ~r5qrh_yP}aYr>םelt7Gۭϝȩdۍc@=0q pHL\H8Ci]S3NzxJn\pb}7(##mٲ>|x2^t5F@ Dϧ[+Mҩ]')K?J~+x?RK6xrc Ǒ"|s Fpb2x| $_EGGG-7ҦZ[ty=7Lj&u%1<8FO% ovB́=n`2x$TTT xգCC5:P"ѩuw._}&kTF 5o!Ӆ 1 =SJ.'pe_0#*<n9yq얝bHRKC*+ԯwAcp-1'|'-m-Vn9K?% ?*k)ϵKUSۉJ= *9g1+\GO $7\u]4<טQ_lq_ڸ~Bе }|D{(_?/+C ٫˓ސ B }К.=x3>\"7"xGeng;nZMo3dp'-1+H[]HuSmZq8mŝ|'{y&@V<Rhp~f3 ֌&M؃qqqp$#QJA}ɺAmz{K>ȞCSP=XI#G:r F1= +#GU6gd' #>\\)XO1[T=](L> y?Mrƒij6KXWkB.W.<NKrøn"DM2sc2Khϭy̍V8x;hJ|GЮq9dTIs8y)M90^DJ墅 OF ۚprDcXv%_4o݄ϧBӳWWV/ens^wGK_ԏ?~|`RSF(1z[n8F~ Sg1u(*ū_6[9cYk#Xp ;Ni)e9@5CCu5r$s P f.B˖N9зJcq63?+zԸɦH'?wVW(Djh}q~%ǰc:u^oUeG= ,o\F%t\?A?s B_FvkXz#a \L_h -Tr mǘ;EW~#~Gk <^ ^JSF!=u=+w=aшQZϦYىٌ7B CCyχn*E^'xE[|)5>>ذaZ/Ȃq' c?+QQQ o޼yl(;k+ϔ_:KBoja]gS $<< =<K<u3 㦗:A^nKNN"1;q jB肚p)>SdA;ՁhP^Ͷ~t>z{P"<`W +]Cy5>OI|)"UaA'/cl՟J>aO7]!;jD,k ~A48޹hڳql%SrSwdOHDCr'^ ٚ8Ƣu4ZY:y卩ē~[EȼUӦcnJxߩcb<eA>ˉOɺK8Xٻgp^0|}aе+%;xe|w/=Ybا4 wC!]G(^'GB1Vۺ ǐH^њ%6?5|f%9% ~xb9sd}hqqrIS& F:_~8Ά| `Xo-Nn1W-n9ѣ^NϏ9u/PHej#j`}[Cކj|6pGI]c0M\'Vڙ[,z IMu8.h-1V}{V΂VVYO/kQy)CVSjUH,n!\hAr[|)3[ w|HN_C@F9"g}y ~,:~'ս봻z,v/?k?J>C~# lӭDL 9E MEHX7K I~5-mz{ ۈ8.LnsNіoqgTKS_-[~Y{OsȽzFxޟ] G;I޾g;9aa a̺~-1ٽ}޷iCOٓ!` r"$` {[9p?Wק8(ܟycذ3k=BQ(X |C7z1Q]<p x*y [ֱd('~rOs˗Bn$G2Iޱ*I0hfѼv0?͋ ǖELlgΫ:+;<UߒQ!~IC}8ƽF9F 9FtbփAU)==rzf>o> JJJD۾օ^)*RlBIgЀ<튿&"|_.-16QO_\!ozxzڡ'O~ ?\!_:w^7޺l5'Y.qMo.V<w1B(eDu.4/7>rT?$-V;S+ y1(gls}Dd/8rV}c*+*<p͛WU5k\CxZYOWyoEװҥsW hoqZc|<GL?q㒍B-OOOdVVrҁN5 _45)rCI9!?7O;sq{2J$^UT[R<ilN_ȓGmG.n<G@^"'SD8AGЙĖ+N7p3`/?Sj_ ~*/pIlEp<9AL9'װ#TpbsJ[x $y^ȕ_7:Щ$FV~ͥWtHG]{ݽ0V1>ϖ3_ z^S- pq # 5Zc$R`#DU=<izߧu};?J\u&3C^pxE!w'-JN+NpySN'{Â?^xYFQ99`% dNE_JX<qğq | Z.zAHZ|erfNkq\P %.(cU{u&Q>88x-:vϨA~oW</w \ykO8N]ʹl W\D&BMɠkS<n,?uMZQpyp|aS&zt1C1"8R1 <h6Yi3ys q=D$7WgSaaEz+dW.k ]qKkJj$p|f~ m8 [GNi juxo IGu"CDːtkd ~co>\ʈ Q2N1iw'@79?_ ydJ<z21,U/*gk%z'6[Ӎch]ʘyOgEyqk,czM5-Hۼ:X4c3`tրqL@=|`>ʧi3Lh:&pȐ'\ukTIɕD/sKg2srfNHIx(=Ue>Lj߱?A QٓN9DEۿSn"ۮ~u8cL,sq8 VEƜ1~rq>%Lf.P݅ez+׎b/!Iogn*?&vl|q*Wn~Bm ~b6LU!E7s|G טr{hyʈ*uu( cla( yПA'hˬ10d4H_0>!UG ON</Ye<[Qx)AK⋏@U'Ac4'n-Zhm<q лͯpq'?jݻs|/1[(jW r%_<EFFNq_8FУm;iSU#QWˇBbΎ-1jj_y+ԩ2&M4g7CW<;|@!?~"H$hoo7'sAPh" IACp ,rB~`9.9)^(=EG+⪕S:uU-14w8%2ҧ9|l,oU"o2ʕ+bA~`EA_H@x-T)a4Uf3_@|_"!ͪ 6mai<~\߯)t!WkI'yyqu˰F2x]#23xG`ܫy~a ]+ b܆c'v-1.U.~s~~9 R42?3H]TT!cfQQsv8􂂾~=yj`zjժ\*.{] W]bzo5Kcv8Ƥ?- 5LYF_|]@#"bU>ڈQBj#Ǝ?rJ8r`-܃u$f_`̤5>rq'֭#w8[0sFo"WW?e|fY kJOO%XKL}`5a4.Xojaunf &gjq/QkG /w*<S!M,{ݸ;:q"qwb"Mfſ _C\8k{$S b":3ϓ_~MCs ? ^^P"b=n}T">ȟ|<c~Gd!]n9/M 7kzF\w1+/x]-;_=mL-L>4:xp_Xji?6ju|qj|.= =ߕ1||m\A\ ]}V"g#qYq [ jW?Fw_SuOU=ݝ_ǀ8>~Vyyynf W1c 8Nx\~oK!<驳RlCn7 犑3? k N$Hr-B|<25ܗ.D>pʵrqm1eVKb:X)C5a?}4aЉ}Vn|1<[cLmPWri938~-7'N3,ԇtBАSI]u%II 'W EMeǙeV۶iM*e\5>1u$b-B\de\]lX#fKMi6~Y||SOg2bE7H+Bkǽ1fpr`Z=ojW;n޼Z9Sd{g2sjJ/sDSLx|ЌypHaypӊ i9Csc~1iRo4?s׶f`Wc 'E.4 }CĶPֽ ޸aPp֯IbCcaՒ?A\yGM>. ܹ?o6+W5rDg b#G-HH/d}\c/' #ER6%c۟y\5#g"TTdU_%N\Q_'2:gڛOgl ~EI!pY5yF"?TqRϢ;B_au:RbDQԹ}9cNC<ZvS=g3:>|0Dp7cfd۸91 _{ȞHU?uWi}gQNv,p f)8FL5Ml/ U!_w+So7﫵}V>d]}Vg^b^p?nPʪcTtřaǨUg #~~111(C3g{333׵ӿ=N~ /7onPrWF}4"|~_OP!_d$^y/A,-3j_@[Ucox9߿>?L'^?yJ5#FHݫ}.P8yrY1H1s1R@5hnHD{ӷ PV C-Q.!7aº#9iK=_oXSZ,_euhr7I Ãi9Xd:Ip:k3&{r&,π.| +UL24.^!0ep<l̙3rVΝ;;FM7?.X12[=(2y 99<ן'λ{1 رc/ 'C3xFg(g<Ϧ,E;\bOz( 3 8t~ [%Wh久k1@ {!v?ESXEQ>KKyaՒ ?eFQaФ1@A93u!u%KL4H=:<xp}Rb2Ug~qt_,'|+wHS#??/Z1cׯ׽I|)X6-˜H^>vp- oAS{3BbΑ7U迥,2g +.~̱Pr@QM~_5ɚ*uįꈏ( kPî1Gn>^*4#eS.9KQz߉Cѹ£>5ĎٌO&%g!=b_nT{>єBgјfm='HT`ܶiދ 9 H~+ZoE;wC޽{ݹErr'܇HMM}#4ҥKoA!;Zϰj>(U Ii$$|f7/mTu}L>38-BD9ׇzn+.^ܷ S 4HPx8з[@y[zFW^VHP]cXtTT?Z}4;#}K<a]cl5K'C^K{XGLٷ*ʍc<\3G~cw%cD]{xÞ˕42fd8~ z"!xA}8Fh򂭳ghdYK:\WYV6|< Ln|1ܸ,Z}iuuVu yyl|~=zGgk;N劭hc4Cim#dIFYne# aX 3Ǩ}5 TVVvcG7d@JJ\jj~Xp^~BB^O\ 1beDԩSi$E\@Ǐ  G6t\c[gIJ4SCg*ES'X 1Yf1C򐡱c_Q' Sд:u9:,bAtw.`$?Cf#+*gc㶯n0۩G F%%<רpGi'5Ŋ4-cvHoauq oSq_.B8NșWu-ϙ+|3_'72\<EgGWTBlV}: k WJ!x ? y ^!CE,gԭN@<{!40>!}ZY}<[9l EU_%Lj[3mߡ6Vo#}XeΟ;dAfW29ཷf澳LīX f yU!!WN`x* [ozTݖoЦC9ju4P5 [9/2 GINN&q~-X>|$._<i-WWW?gG!.^hHHJvjC0PoIu0 '!6ҹq ݺ.*0 m+}گ}[^ Tu}-UٷTMW]^O#2:ЃY4oY;q I>p5k<( ΥvU}ol;臰}yB;NMH>j3xK\]Hj!!le-ܣb̙魾J Բ O0tj9<,K2$0tj{0we / 7y c-,鸴L$>(Y.c28Fvv_%~=c|OmNXn(hg$1|P *++kH;pٲלt'ۦ#E$,pu5)~:;O35B>_cq3_QgEwz}B?;p=:m$XJX}?)qh&-1 Axg}|_I_ѯM"1"ԣJ ߼ySqBQ8?S_p8F1Vۉ8hx]f6c| ?|rɲGY?LeQRQ'=6+a+/~(485Bȧ,?E*.9F?W#tWa;Op\?Rj_wSh l"$#pr ISbׂ!tXԯ>c橨%KUk?~=ۦS }Ϙ6Q?n-?t1>۴MVD5~')W"QHPIACW vh1aIؘqC%ޢ_nU<oزeK'}8E3+#[NnsuMhѯn4P2GOTfrPVI^w/|p'߈#Ãdb HҐcu)+,놕^q=bKݮ1FȬRЪ) Zi$XeS^z}WcUs 26~4rVGA?X <Į[H n.\xjE= Wd/&h'ʢ".ħ.D2"Ɵy(ӕaHh2-ߢh[؝ܢ8 .]$~^WWTT!|lEqhsjԠ&p 5r9R?h! $XHNU~kpp6A8s/?'Azq]vP1*Hcex$Xk<~ݻ^qqɓA7'V_?1sŎӟ^XE'kTC ~B_U¥_=,Hאyט E5&T2jG^MIsU#//sr2+x#̑e]b'|e~̘6Q^J8qG22c+8!Xj{ȝclp^3.SV GO;kGښZ+#~fؿI&_ 9agemP'rpb2ξ*⹆+Z0DPݭ')Xjpĵ-Ch_gS)覐? >)3}WdKG o2Oy+2tQBc3уš: `֫ӌxcO@0̽p_Æ cx]x-/㏦ Aq ߫}}]jxM^Uu˵~0?O3hģhd7:I͎I0Yj9i""[uzo_B=jqzQc zS=fwnр_xM&y\RRGh (KKߣH yPTx<>}BXWE|@_j9Ft}W[v0YX\av8g;գe8Z5륧w8?EU?_9C1~f̒32NAMq^C?OxVOQ(%%eSSM), jA#9i/w'IK /v<!-:6-KWlG.^zTTT<+FY͛kmŘ7ܢ&ijxmj999{3SS$rSlm{1>QqPG" J ]v%clyzskq6+ @g𐢒۸qT.UYj{v3._ W;?5TARz@ ip ?ڵq'<\TwԦ0vđ04z!6"c;:Ǵ4 #)W >i82^g1,@>D>hH|6f;9Ĩk,;3w8ƥ~e)@?à޷?|K81< >L>+ԅK'Mj .=YY$}Z??`:ݡ[W#a.t"S.Ovz'!o$'O%~%dܷqoO_*aN)}T5MNN/L}u|ىђI*auь5\= G~w&DFn?]|D6Sܯ|+(>+:8q{MV$ql;y~F'Sb#|ט*[ȁ J N4p bQ|t0%VH-n֙3gy+U6u+`8O9}㙐i"^$HLZ'_Uj  SI-['\tz߿ևo N9uon]9H}{Ksaz ^'Jl -1vb/7<҆u%cu%8Mq#F<\^ʊ<!Qx 6sTm`QntD@}=dĉbPgRx8^mG)޻@\5>ʌnxSzu{urv޴X EEERIF-<a~sE8y}E/^?=?֭[B\8r n/r@r&b";PƓU35'Dk%z]Ud/"*mej;[Q㲖cܛ?F*FA=:yv~xtʇY ~;)vwQlΫ~^ "vB^kɤ+9NP71?TwӼBWV*pNI۩:uR?eqkQ+y\;Zׯ|;àի^ Uk91ޖc4_4eem_}.ݿ5yKr!/?UR 5&u>}iCVq`&Лc|f+:DӦq}}-yT]CN:ܻǍ/i(ɀ?,Ѹ/j6B)݋323ΙE#7:|\}&_Κ>$u8k=~Ⲃf blwTsXudmP#p1u?b4VDԪH pN[gwyz=unkVY+?p=)y<i$u4ԭ,[6w xA6|exQMA/ܷ*Ez]NyQ*Ahi ?k֬Za.\8OhB֭ _$_-999> o Bʢ洴1<pYxcu؈?52g5|⪈;qNy~ːUgw"_{}gHHrڶ 5Wc4;^/?j*uzZ-19MjUm.H [#HHq/xJk7ZH*^#/oUބ[7-O??/  7}'_QcH/_0 {AԩX{zJb׽#q`!^}V҈E|t-gHgtP/Tp=|I ?_\ n?5Fm5P̎H>+p\&k4ow?EKs y_ܔZ YcA%hPO1ɤPAA4Z$/_"}K,6J5Bܸ'MQ!{){׸~?U؀cy{H/oq}49"&j $V0dGFNh ȉ_VJ-kz[Ftcqݣxc~*9myZ?/=u=ϘTnے0Wn;9ٳo\ߺv~2|3r<#9 ]9!X7 /0P[<{V^p$9>DY ҨoW?v;HH Hu[Ƹ]5i*$&jhpdi]!cq]Ɔ*K$irpk6'y+nͦ;_< |N66SMɃ_6>4aFt9"u:<Oh)WTgz\iS$v=ȡS'A}J}_?R\ 8>z܊/-41[=(X.I 8yMMMq|ϟF{ Lye Igg}V[/z۷O52ŋB^s-W<~gOk*7}0//~:.dzdذa^={X$YV" :s<3߮Ӫz\+qIξ]wň =Uj[x IQķޝg?DGH%hrp|Y^^SgKcx8fFL7PC<;[?~J?ӽ|+>wr]|3 yxu)YPwwmsf-f?R?y?ysd o%Xn#233X8F)B& S^M+rʔe*%׬m6|>?%))5)K"mEE':y_gZXZyp}xrX^>س}S0^]NVNJb~a^_ W!h\&i4=zN_ M!}WĔ+U?~]ҩӮ:Z!LCz<6'\XQ$*=iTl6[/ȏ2JXYY!Rk@p;k8Ʀ5K;ME~(2rG?2J\@ą@ȗ"ݐKԮk$Vu:B~ԝ |PI (*nn8Kcsտ1њ9+q]p-1Hyz2]i Wp|zlI+V[1dk1y^ȫq ,?Vw<:b_Zn-~P`7Pom/PSѴܿ"7R>%K##Fz8Ƿp4P8K3*~ph<##C5nMlPԢE>T&.N.!Iܲe v&^/hgD-YI8֗Up~zZtPPM|~t]?ߊyOkzCލj[h:"Pk?%;o,b'n8T+WmڸBmƛ."JT=)‘W+bb=ϳ[nyK\!JpYwO)-(?Ku@~o/lo _Ç此.^|oܢ^j PtwƗ.8#-zO<,F.ʄ*} `F Swf?@lϐctn3YQ'"r613A|3?Mhň u񣈏f:B;^[}!јXHG?W]L3JB.t!9@noq)O<,GjO:+Ӂ orLʏ K_l6FSɓD2S@픴?_GRH;bɼZ$JW->d BD(|v0=ǹ_W.^j1& jU^CHB_aϧ'j⸑;C3GF)NR'gitcuF J_c_0\~R uSgvq c.߱7{3?i ѭ,Sj~9ƻ*^Mi#Q{4'ng 6.6ҏ uV\tI y;[| װ۫'Y%\>I <m;?u8?=hoU:58Ǚ3g*&3\f?~|)|8y/H/3"'>Qo&1c~>/cDCr2t]׏Uh}\O/cGNơ} U}47Ɏ-9>4Oz>~ӺuŇ-́ʿ?01=C}ɳ 9_$鳰﫤gڍPqq>.+肯?ʫߊ/)6ǘ/HIl}}|B,X:!1.nHVĭ(Ī댤n3,|ғ#nFŠ_q=^ q-hn]r7 (v*ro7hA6,E.S'uy߯b#x/̯S_9qRq]ju'G<|0zl.NQ?ߢ֧D֯: M222AVZz-wA/uU26M.=џitо{a]>a>ߵIO=wxj{rrYG ǰǘpZ#^S~mcׅWs `3[/qf*N:.| CỴ8XaXsB -nf;ƕ'\ܢ Ti/t7s8Zi=lߤ)f:qx?\E.:p-B:;tqxvw˟ Nˡ/!h1|Y}>*Q'NS L{u8ƍ6 t@zz>֠#F=qiBi99ci$,-#v 9ز_ ßh7"|QTQ\.Oܼl'm^K_:S~{38ٮQ$~=l719_xэ:wź{ 73nQͶnUW%| }"bG|ktlk5KJ<0>5 8pJ-}l"5^']^aY)rEA->ygNuI0[PJʪ 1c#q9j^z-|?d:qÁzOƽ_ !E̵}SVThfơp'dz$LEÂ~QOg(/\E.#Ծ9Q#Iee|+fv0 g/&{Wrv1b oF"ԙ+=>,gBH^y8[-OMkjg!ŁZ_%m7- KX&.N% ׀:lfyy{I!\Z׭r_ ]?0cT0tߋ\ ߓc4u?UyM9o}![8º>?B4ksύJ | 6އoA étܳX.LA ~Y<Hr__G[9_l"}ӌz}D"q:#8 IG{A[@lYVmYE2WNRS^V7bz.CcU)O(_)U3azC3?+m}cRA!T321n9F#WQT|/ECX~p)_y⏢<c>\W}KYGiiPcy|_]T2UM D~+MN8JWVŬܢ2cn1PC뭛Q* M>sk=axBS))+ /_>,t.qy8LFV/j޼|Y{6-[΀ŬC ݧ#;;`Ы] MJzpa޽l e{~+od#I_@2.ǀ~Ko@_RT7 4U{?j$WQm _1|yI,Wkx paThSkרv@\I`}]rif3M_.W(y(W?NW~~7*t!Uj X?ޜ#Uf57\j$i.8t(e.#̙j!ࡈt=p;ip1//t$;=ٴq+zĈA==l݂CcYD_kua&Q1$롮zE8 p"Y.xAf~ٽqUkg Yw"__O GAʧM'41|(aޕ\uGw)E0u(W#\TDJMZ!u}6(xbٳG|̚OTliAr~ٱ|gP`&k!C_EkouϨ5߃ch{ n~~^u[8C 5oPw2`lp=~:𕗅̵$]uyxz!tP'v ,861⌌/rar:jU߀/?ݥg%Tj nAܢGPEw%Zj'"_41r2V%N1u8J4ǘ\K yKUDje:b\fOaNyxјA*=u-,#/'-㍗[]G'WVAYZzqL.P1٧+Wbqy(;{Cv\a9V(@E2DxY uZ,$Ϥ}"8hWwه8x>]9d4/:PF8H(OZC1c_}>Ǐ h$5\{?vc^ۆ,tn>/ḧ́ ^2j$P#Q}n]qhNNNq>.?0AY*~}+\PdchU(ǨeVZ]eؿ?9d^j[5eAI%\CW05KFU->5"e]ڹeJ]ԛ32B(ëk!\pij5/xqV% Xycui|hasHEM#bWSCI].&u$k Y@h䈐pbڤ11pbQyv$-zC~$cKq8ߧP/]šW NU8gQ"a$-zX<,U!'Qcg-VG,Y&.aHuB.hRX~Df2M ߫P^i-ՄKtvg4=uJX5t oyATIZdx-yFԟaq+z懚~ Iքf<S1`4<8x g<yzۮ!4N'!B̳HlOШy釯G$3"A6yyvˇ}!oq:a~=ܳ6&|@[y_B AסbZi{f;\}D9E]ӭ) O9| 7?]7 *G^j%u8Ӂ3[w}w1br\s g>B|q5oGw-ǘDtp!tt!Gw&r#2Sq) Z;uhw.tlЖezBix~oAE\?JEg,μ_x}5{kYQqۻ!^,'d>{?<8)OܯY?]C|d֭XD|S "K:dff:Y/1V H>_L:,E/_:\-R(y_ {#>Mki4ה)#A8ҹQAsFkP`F!b1|.j0aRYh8q7]h251>kxvOp3A/pkSx5ZYx3n1H>IQ_Wn\XT5P]P ~7XJp%&Z4E^ML4VP`BHOj6 fݯS,055j׸CfṆ,װ| W]1#<hs Ot˥i Jyh'H<F|G瓣Zc,?G7JgV:kg/*ٚ0OK.)EM'RqE <HASJ?>y@I<sO$ H[jッ!QUBh-"nܪ]Dk{U*6ƈ#"nU Up(BЋlm`{ՠVhY}3 M\^0Lys>sW]Gh`{awL) [SA& ?_F~EQ~ ~{S&eڑ8c)fѬ+\}9.)ANvO ۞:`۫ϳ{chyka?Ku<8H!naoapޏjroiGG䙴RU5Ö#$?ՎM s]}ps<Õrrg9(?SZg!t=OtIN>z$R'%Mdo&-bYz)~)znA| [{W} /Q)rLq +Pa`-l!^xqhQ69cZ8{9_7cp7>i"ٳ͗^C27+GR)];.]5%a|?N!0Y&ƁCT§$vT/)Ý<Fg_?-ChQy3/.x{&ovdu#!SX2p Aym{B<s 8aU[Ǒ<{TP[sbOJYDu",kGv6IL[gZJoeB/65sZ!2C1/+x2p&$JٚE|gHUz5p 42O cLDԆ:K Wk vnMw3Hi9|}I<_FCR4^/@8IC+&vym(*Z u%lw$-T[^Fޭic<!QU%mx@&g=2ykX"ѫ0X[7k0E/Qr%ɁQ5(Zq O}>>Yo٘{ XcY/O^ xmkf ~ DAӊcx h)sL1 x8F^kn&Zlyd{=O"MMn,u<5QJ~Z1Hu[YMÚLu^Ij 3 ɸQ R>t@m[oHBk$OX}Q~D!koys~|eq O$bKϴ{5ڂF.]dgWѧ#~w/FoVc?$![_xKԳ{cL6Y7a$}rZS]%=bt9g^>f+S:N̼a2gEC$,(?6TU^ 05V}@w(Jm)? s_Z~?<K<<CHj/81n<ILLFi6׮#17nQ>l@Qˋ8[Gyŷnu2"YN7]gY%%%h#bsM +Ie6fkN=!n%zKyGwƭ]ڡ5N/(}1_ȸAcz}8@@#k[m|3DӜߟ9}Aq`g͜g ۪vьzrNnOW438E-I#~xҏk910¨n ~Qz~[0N]j0ˊߣ5}+42r$cPp \=A 5HVeGԁea*(?{?{z"PeCrIȹsR>H,b}! scq~$(.-Gaߕ@OtAu[x|앛F1'qV tjƍ<ݚ5vle֨h u^%e/zvlhςh8w+`@ S}|:GhO\%UC $w9q쐹s5W.g^d"Άc}\[d8vBe>ƣgc:'1 CctA&$Ht4s9|FM8I* GxyE]U<įȝ#{u3RWC:Ta8ǝ>KOFס^}9Nʐ~e7oY>ecjS+YرC>բ8Oџ[o qش--<ݴBe=,P uw~/=O5К9[<N:?sѧ|tO\$~Ee2{oAuF\NIp埀̋66^0qK_yS>^dEJNO ~* ]O':gd?Mԙyt@m< ]Yl*ϰ(Iyv#z,,v㶝gB/A!p!'V<DP& h&&u70/4-@(5:- +=%wx@㹋}%Bݷs&CD+< ǘB"Gjmn"ulies;dLKc5~(He",71U}3xҗů~5Z[JJ8nA|c:rpyEaE.HՄw#js7:?2'%Hռܣ](rהEf2tфΰ%!u};2FLq -ڔQ–&,T۫tr㈴9]| .Bkq`c9`"{M/:_̜</7'ǓaD̍7lY\l0LUvH>g4H#r¥)1ƑVXe/7H|[O9k!ӘЗ8Nckăp VcJ˺|Йo~6#sG_&ۘw[+yc4|{'z$S] O9LwR|6b?ZO_-xi\AGĠVypVЕ-rkӚ>ޛ7oޅ/\Rڈ] ~H]&tfŐǘ-$#\Wb%+B vsD Y@Vu%2|(Hª8ᘏAkdROBK/^ԕn%9s7<4U%0\\)5xSC`77I~&lrQ~6V^LvM<@lу }#ֺ6t+ "s奛h>EU7Wʺ=Mc1_r\F~}]!g{j"9NαK?@R~#[ 8B_0|>CZ^z>GI?Ȱpgxnc[B3xȐ6!ܲΥ&S녤> ӱo+]͛YPt'њ˰ JTJG3̍9=OyB>[pLpK=;RROkE޵[XiAOo/q&:ڜ`JST'$﯁:䴴%E?/QJt-l:&.))pʩLP'}POFtNC,>~=.ڵ=pAˢGu^y'&uΌn *n*t?rjAo;QKcPTaS e x!Z׏M1ㇻʐF 5xu;{ugz[QӐِ 9ϒ*B<H1rJQE]Tk{ xpI|fy;ex^ݜ_m㚎 E:~Z]C=[EMMGxN۪QVNJ!3k(~ Y 3`AsxYzȿ!oݺ% .5\cI/(I!?ZoD4]/tDhܸp}%1+In%jDH2?hFb߯עǨ/c9Ǹ?&g[`&SY 9/0 /UE?AF.hex}uQZq \ 5+]Jn$x@r1;24M_3=*^wu;-~+Z9Ϫβr|<˂%0 p):A3&(9Q{+o7n))IP4],qz _T 5NU+ "< fE5|Gl¶i\WO~5:U30=d:@A</|tH=O[.#ڹu<͞ރnӄ[8~oB)YA}9)|ir xC)܋o9V?=9N{Io,~K)Z:plH oIzjξ6EWxsےuMy t붅.+; c /`}i(]ݼy)Vו&^N7tCjktwt|\~(n}^e#M;wgi\yxzzTy5G 'qN8&. S}@a{/uQllWb< .jsAOJPu(IIIERBםH(2O fՔ^1:8Fy/V8h:qO4kQtQ|Rnf`htd%}3ߩrs*qd'2B&J5ǐ%1ڱmu#Ml)lGQ?l;c;dz܂aE>C䔫 t4 O0 fnQkCF؂_']qx-`h]y{=z<ugDǰ 7٨^9@TWTۗUH;)TI홻""u{ޢVy^Pc<sc(E{(3e84ѵkڂ {1#WHk~$5ⱟqmgqfJqT]]* Ğ=r<'9a2aH }.%OYA>9~7Q q󢈳*eZ-N]rvg?tQ &u(T7j2\h$qky=.d\o%DMH>N1l߿^&1Zc%qO8{쫢鴴<'j<&*$ ,thxYP* VTK }[l]S<@y4A<r[c$mN_>$zI1$DWax7<Ns\jݪ gnL8HGcT>ǘt0 &/'M^NzO~j'6)5,1Z黺Y%1-U.&J,?߿6Ҕ^{]D8aDt<>32$z43p^ Kg|}Q ͙+db,W WWsV_U0޷X>}2Uڕ{ (1l<k=Z[glx /YW7WA(;cӏ;b3`:g[TӁ:8TNc -XoMlvŋR}է:o}?(CnraA%㸉e>q v'G&o^ƗQKNuΑSˑH$B4|P_1sӿ?ۦ>uzg%2</ukQ'IHH sY 1ykAF ng4Auw#VյD|lo|No CF=ϿC N {`('}L}p_+=MR_~%QOWұIIR181.n|& Qcп+|a6m>]x b9qY]3n>+ZI}p"* ȼVs[hF}AǤۨÛg Kiإ<I_6U0+a-BxN:J%XMAt@T3!c ُ2"Y>=Np _bp'^gyFi7| e?OD J /{V)x#w"#Hb#w_:8P^Ґcl7* t\6?++;PW¬07yk }+|1OZ~S#DJKƖ9ӳoJc#g^{T ۋlEkbxYs T:_ksFx|-haٗ;K"\I|;?44̇~/@e |+ V1C){^̓JQQx=~$Z-H1G{v,Yכ9oL1/|-~5$kdVǧviti50$r.L!wI=~b6a0>I贴 =wf8YpOqn>s^$_#6%:&Bb>%nuC-f p}Wyޞo¼<|>7~į A;"el ^/y$[_mCކ4jnj,mx Jzr`c_w=r3fg,'w;\9z^?ڂbs;Hd~¬t>9Q9F)r#Gp<<@/jۮS'|۔Ȕg"Yǽj9n9eH$X wr$( ̼}L|lE(t=r d.Sth{{m8/D*A}vՃht<mK;xסּYasCFafNDH@p/sp{Ӗu+w%\_V؟K48ƃWXې CsÆyo>M˧)xVq 0[4maΚ58[{_vurP"~_X8% ǰS>$mb t3ZunBt+7T427zOC=i~ ϕG(ntǬR_O9*i%_~_E6Ya,ˀG,V~:y) 2.Qfvì>܀mݠdGpzn0 !HT>:rB8J^s#éڔbl)]W7lرm4ux,9qP}n_1DEj<prȚchFyރ+Yǻ ! 禠QmZq0|\B$ϝ2_XyQZ1 LNǓ<8|^P3*>DM# Rp QǸ}5ÂK焿牊2˧%Rqud޿y)~am7|V#.p23ۂ?ZSSGXٳggJ 8FRRXǰиbbbӞ /d)jz{sF-h"_kK %z2J“㐃>n]A,3.={6oznٌ-RC> T*R(%uάI |YW722@+@1S.SvyH:Iܼ{BnUt{(%~菾VW+z ]o쇮ĕ?7M"zsscuvȟ8671~ѽt>p Ir Fi_u7a$;Z(= ;Fxx2,lv`MsKBsL9jǥE3/|f`; tj۶ 3Z3W)(|wKEL'e}h͜@zG]_dk4tj|_ b!kw^a2DyA\9sj?leJ:@%8W(:[9Ɋclkpǻp~\W2pcp~Hqq(]Yj\V;ׯfrJVq !2I^+nn>{ jϦ(ts6BwsKx^BR`7GQ}6ԄWԍzj tnUs\6 n'Hq?3:~/~1:W ۛ<ih-ԩSx\M&*BڭxO'?p M+r |M:gb\<ԗ0l1GUg^Jz1g̜C%rIS YE˷!Ax\A@:o6@}ݜ><;y>GJNlj\{9yD*Ÿhp8 KQ3<} +=O9;}lR> oaW7RyՖܹӇ+ mf3=MζNe* V\C5Bl|8msЈcdfC1m>>] ӭ %#*c_?+2%mA\}4'TnO*$śIȻ X%mXξB)HxFDr²2d<Q[WLj tSv.t-dߘd _O/40%q<`o z6OٻPwm:ܞYE/2hY"I#?}sem3oyMCS0mVq@ V,8܀_hyߠoiU_PO18HoIJnEGf\0:ݙo)UUU/9 )޾0(BTِS\V$3 :]f5)ɹfq$(E(970pvn/=vҨ噠Wzp+ꪎpO[ʐ(oƜOp*iˏLmc||Ã^8VOܼ\OU[!%uE]n<Eqqxv@HJBIV,>Sd}nr*AU~՟clٲbNQ}A#NaRNXQQٚ&sq?d]kzyz>zOSX8:hR8[ EU=WƪnPOJQjQHF~,چ)J-Y0H %ض럂8ƙ×Nw['[vC2-Ց!̏eaW(׈D17q $|qa^ylwzIUwNk>ٯ8>p+ot ̃*"<(Q&Ioeb+SPU*2Ł~aMAxWdd#Ct:^1s gp͎k\/ QdQ+OǢI .]wϐW|ti}=_-:࿨c}'1޼~D/1]alH9NѴX8q银%V}VV@}˧;UtQzoPhm3pm< Gm:^[sp k0yu&ko}u(#2ㅊN]R@54\9OlE ۧKy&Ĥ8AH[L-,}@[LKKuxΝY!ڶm[[q:<jqX: F@c܇c<F>c~AkpO)|K&4[G%3)w@%Jݤ+P n:?MrQ=A7-Br Ohj9[v-i,-dDŽ2xe:ї T}XoW8aNo\}z9O [2 HMkvDyK /y CHE8;s'竴FɳM%lo}U! ǰXe5ȎԹQ8u7K O8kqlR :sp\x<z^9=7yvfN!(:`ERy q R97z2E̍S# /_&}Tnu!/7wL*2\y8q =>IR1|mա#)g:F.)3}g/mזAO'=Gh:<})9g.%%Og-T ) KPe jf?h>.nݮ5 4u ̘!ZvTV+iU1aV56~ x^yMs. >tTxR*_~S<8z=6vFhcx;5, |d% =ekCexjޞo|OXO>sja;x)>ԟXCc;_:UKdr lk@= &\ _Ca[`0^6o`d6۝Wf#7Hi}FR1~\/O5zTfn=d*lcmQ|1|})%IC!#¨=5 _b,^W{'($ojÂlw1cutR:չV{3HvQS?OhhW x?v NGx#8/s\鏢zzzA~^1Jn?_CW[_=R72ilQ@so_ Uڴјcd41,6p= S(d('obO[\9!TݝHmNQ+U,9ںk HV.AM'1A]9ǰ>*{/e>m;R Z\];uQ7@Gߏg,m8[ZWH~Q_M dҿYs _ZS]*<=u/F5JYs#!a ;|8:uiA6ׯU)Hvd)K>ǐpa+\4ċm|E;ء£ql=LU2|%ÝC8Y0p'zǀ }e9nf;c@7enM)w7J+0pr&>~ $m$JCL6k[bG{qy0_֥yK~:qrpb U0 P6٢2$zBC"@"3jJ}i|T&'#'_xVa[)įw5u(_:Ј3=7s[8"uIDqqZ}>p;'ld ,y.ip~JJXi.Q a= %B7.Z0"%4yXaezcDZOsO~fmjAH5"xe MZ5?,Z_ ǟ/qH<W͙9J:K[_Oޞ(c̘!v&<47;﨣iC`K\ 捉Em,:ԏVg<!BzEX~|z>G ahRg}_fOOt>|l>FDb+ /;5[D<K~JVrnk;f5c%Wt]ϊr$$oc:>6HJ5;={,1rUl^aG|,>I^;bcQva+Ib,ĤX׊2[}bRxO1itv6"Yt? ,\wC \{~NT NRzA~x00s#=>+B*7g u|s_|?w_t߿pw-4Q< CF-Q~̉ ٭1"l]{ |gܢy B Σɫns|Y Fx1S}+m~~ak/y 3glӻw*dg7v2ϙ3cbbέ*m]{9$)cD"EGu_ёb%1C. >}:ht*gg:o]gy]WOʺu6&IeeU'E5{[~t8^9j蟹|ǯY8I _ڿMݻ~. |+=-TRh߾ka=K"c\=ʆ:VEp|q -$ w,gq2t I wk7x:`ގcuo03rF<6Dף-r Mm7=SIw)ATMBO^FGwWX@݆Y|gxq-Eja< ہc1| N/V!5?o84BGMQѐc\Vt٭1C2c,)Qzaz5+G(]D$hkqrqxщԿk׊5 e$92C8s6 6jdwg]8՛W="S؃a7t?5׏k%+$_sL]L^ #5Pd?#Bq <LQn򮑕͈҄l,mz1]wV c፜-=n YZq./6n CJ-yyWOzm;gm[MFoh \CMJ'1 V68mva)\Z_~[~q~l*Tk0ZJ@HE/[:eh?n/@U/t_ox=-7<_XMtIѰ*b)餷^LzǑ#+tW+qq3jc@V)9 %5sJ?9Eɕ*kda'=r%^'όq>,%\u5aݔb)y n#BeyeZ1 $Wǘi3IhXoLeѱ'ܹ999`w>h۷N#yF׎HH} p NtGfQ װ1s*͚CԵ[fWu!x 5ܐO'րx8t9S t}<<(xTa^.+l+r 'P{j2xoFWc]>Q+sܶ7^-[{/>8>*ǘy1'>G˗__޿RX<B @GBvݾ+\_Z @~ 9e rמ={_:KLc ha$!ѧBI[TWWe%zrK[F8Gveuh]=v蜘>G9ѹyy*|>]o7QSJǰfn^V.17 ?U>;œ~=]~zT~mm0*Ko'үrTyLQ!< }H[G~c6^^oQc ]|[l?aߓ+Qp[WxKG'~^$n|>&KΥoB7gU<m9sqN)!.bZ[csdc,ѱBg'/tpsHӑAO?}mܷߝAE|G ga{ĭ[2k8z~VPo^^^C(qxA9ԑܸ~!e#u%rd9@&}G"M@޴FHv0@wS6x=/;VshJ;{j׭߰+d;ocME24} j/Bscc|i |!(.Rӵ3Is 0?c2wZZt0HFE]FFF3Zg }[I֛pŤ)<88:/5~<f(+#`"ӧ{jbLˇ6u%5!{FtbAVk`Et&Ю_T|'0 ?h16R 2p>S_ؾ-ń/z Bqփ4:,#kxJ LſvS|:%R:Ǩ|&91n16~(1@~!T,FgVUwkW7Q#I?%䮨ʮpFt:\c)|_-s 8uЃnZ*†.uzW/Y"+āC[M_z 9Ʈ)S.BMI2G+8[dΨ?[ch9~ r~Hz:{rssO;.}nۇz9AewN/QвH|Iㆪ1tRs.9ULyW$$rЮ]5!4j?)g2<W>wju_~Q8wXx]$rww?Ɏ{e$"ܢϰ$b  磱yҥcC<d4q1:a,S^Tnqn^$[cKMHoma0bq81HC<,uqվSH]Cng [t{sTd_ :AC&:{3&q%u& G(V[d]N[@ŧ| ^m1^?bfQ]Dh,5 m ҸzVNjj1J׿F(soPٲ!خ7TaE>ޯD7!<u;GsZe'x1cG w['uKH\e3<`>[3[Ȝkp I`:C<^[Wd]C)&hy]NMf nq\#u%`ӑs$W0lt3V1AKOլuAPo~Vv'gsQ3[_7\z|kBgNG۵(AI| JۓrJΞXt E~шcX8ږ9FxLOdg?8 }R1 L~V+]cۻ['PE٢vhΥ~#MUucʔѯ Bxچmt][w2zp[[5psuqC#L %;}4"m~RTbQO[>"A6~$`d; '1l8ƖcixsP LcDWڪc4R _/XǠuJZc'9!n=/P|ň㈇%̚SLJVm} =.,ugKc%1fuOGZ kP6pbp}U<AԘc^x^K/ $hۻBdW8kBEVZEKEN2K/<z稷H~5\}![,.. y&I!!J㩳h:sPPtjFA lcїŦ*8aw8wK>.>שּׂCHO=>&&M\iǥmFPiZ|l w}v^m1 7o5& ҁ-ٸqD}A]y~:.9h<_02RÉ;&.@KG 9źC˼逦JC~bb{Ք3I\Yۋ1ڋWyya>mug2cdF/PՠϷ3(!tB{Wr_=؃x1) (a\nPМ .Z4RSRe1+|oBicx\oǾx%B "zD-bdvU3_YxYE*w(L\S;a3CeOؼζ ̓u~*9Z)TA\8z<~X+ʧgwu!7{Bd? 3f}®V21؟U(^16eQFk6 ^ 5Y+pQLw޽lպ5=ɫ|IGGFۖcLy699S):)isB#gy61j􋲵i\SiS>^+6!ã˥pQ<Z=7 .'6D?o'\N_>>#w a{<~:k2-y|,6nܸRR׋ߐF)|GY~1Ah2dWt4תUf jmQr\ʃ^$gj"ZJhE(u*|=8e[Sy_q9ر^|N?m=Qx:7p>ps} 0 .=؃x;XEhwIo-Kxh]|Qԏ@Dwyg )Gv;?#Ģc( )}ؼ'G:^=w^O'EN=}Q>M۽ǐT1#!U=ەdegC5Mq l{}cMٳ"|@yVDjbQf@!QeޒW%BA_p,p6I~yuJM%_͖9掓)N:Jdz`JzWi v( 2oWQhTRՒӧO'Btx#-.K ȳz\a{~SO=z8[ÑR\; jhק>--_rn|w??Қ<AGGХK~l,O, +ndC\/w"jÆ O.]+?zlꭄ#IӒgaUϟ y`h-@0)>⠖s{ ^$Ӧ]o߾/e@'eNJ(/bI}c'_nwW"d?(Ljֽ8Ɩ{VFyy9u\a9FBt~/:3wδ@urڔضh<&<⁸E^8^F}nȌ)wW7"Y#{ҋV| G:d <nc"tL٨6V夯"wbڵet s mԩꅕuWWA]I>lWx\o]Y̳[qX'a[I]ʶ3:,¢XM>X۳+1|I9^֏9^; ]d2c)Vm@=U[8V U3(Pm < .olK8g bWi|Ua=MDyF:]gc̖l Fy> Zms[K`9;;-J/;+;j>;/ѿ8&Wsf>oBr6T%wFm999T5(ŢqAg$dn'w y&QK 0f a ++x@Ku%%g_"^wͭ9F3G|6HU t,~L-2e81Hپv_kOϸJ†K]E1~FNlJotw_tϾW?'Nڶ_,2w"5w2Ч3[ .y*<hXo퍊A= WW"D- Cl14bra O@,b / rxH2AΤo>Xs]TrD02`K,EI8Mo5s^ϓ*H,/ٿ{_DCp*gU 8Ck| U2|;p%\c R3άOkwwQ!vH˃gES87Z6ϫFʌE~W\f mR*\)z HOկ{Rx1yky]<3)2*<?gP!p}ڒx}|w=<H,A~<v\2Uʞy>Ͷ6nB<K<1yY+1=v yy,z|? 3zJ߈x .lzĿw $OOڼdG{::曅2Ayj5vD{nqCnno8n}T/S8{)7oxn(Hm_^="dc@4ˬZ٘cjѬ⚤99ĨsB>p #9a{":9a=49+GG>ow8x"9Krž>)H 'VOXgGW!Уհ4y>6\jSa8!):GA##=!_a-P#QG-|?ѷa-v->&?z<K?:^?6ǘ2}h }WKeEE 9ʾCl҈[r ğY,F`YJѨ˰^X=pr5`dįm1𼥮2͠;骩};3 7Ļ!͛`~Lx#ϟ'oԷwdmy7=>1:JFJ8qq:#s~z6E#ۖ]U>:Jzh@%S4GA938|'}b=]o>߷fe_$3ըwXpkGzKLR*=ƏqeL)bwO;$A,.-/?$Z%J^uZr5uV5ݝ-lA޶lh#o^0KDy9o)NWv}PNK :Q-klcdN D ٻ9&/<mlDD ԪpZ= a}TUU\^FsbȧzOj5u{eV-Ӑc[Ҏo^=#e'4mtfRý}`߈Y |QYznS5uR<Q,5x|\ik/!ɖuΤϘ|]M{!uVnDBAt[8Ơq|z.;q믆ǣyJ=h ORB? @H{$ ԗoܰ=//Nl8FVt>.U5"պjW!iov҈ϟ6muձ;q5$h3ǽ^NC]kJ\GeG~;^]+xxMۻ7 t1')׈kd.)5L(޽{3B*H .o#뼼 6ovrIe i4Jx+n0Kp\$DL˜g<#[`JW_9ƽ.PxZ_~c#<5kV1k@§>#I祿&kv_Jj7 4^E/{My\/t}dgb"zJ (44T^vPn_+U'&^O?㸰W5:&>w*u6En3ncO<W/͕8nw?[~:UZ.ȶZt@ {8ڱNE31)p|,^955 C9PW9Fj ǘ<Ƈxx_mc<7V&3Gۃև=ϓUeNvDqb*[Ī1Qnrk ӗ%(c:Wfs[E3rW 0ؾGEST֞eE)Cv<Jk;fa\bJ=|g 6`TiqQ\2qɵ2u\*y QS6dE3Y!#t-R@KLds>wF@ҴW.vg=s^sGi>C wCz &:9wJj3I<:ۖ['[81p Yn9>7.^73<m-JzNk~ѮOӣ_ ]{ ۺY<s}ZZCם=P#sN,3:IS8s"/u ?FyLjc9^Yzzzv#'<͞8RQQQ>A K|'\C1L=-8^}H*s"Y_u&q?*06=3k%=wϿş*o?1vHCXt$j/vɜdUPiPwaB;,r.JK ]w|l0\bX/2HAdrv;Zx %Rx1a1:e}%"$h131sЖc9V_ <d v~Cu#&~ۈwokb/9uu筜?Eж+s'F?uVX:5Md,-'̗:2^S^# \KטdNgL!5HLxDpPFF ]/ڰM*S}b\o *!/Å+h;<og7||^҆c-JMQt+?U|qQ?'J?5.-:ٞ^J#^^λ!_7h*B3.zk<C>K!b<ŸrMKU]ˠͦG… k)SgϞ]|;>=Ջ\-\o 9Ɛ+|^M2ЛcB;z|7웷r RExV9gRb"tTЗk7WjϞ9Sz3ҿlgy5(:= O1ȿUҁ/XNS s<h qBR Miڵk|[a΁{>O}&wO)п]]% pG)=pbcwVLi|HC7xǠNUt̍耺JY$01v'&T/edd0P"}p X`r{B/}q '7rmBWΦ4St[}!/;fo^!|K-sK+v:W44f3T-E;2+N@vxT*F)a+m>^ ǕGB^w4T[*)Ln-1HJq._r ;<e!*!&9v\/rO/0PV~ּ! oa>CBG[]tT@(umϗ} RQ+pċ2a\!7W,JI^`hrp^B8ߟC5Rnܸ1$c9l׮zM;zekk9uVck|;Qh<$_C iW0F>)P`]GjUd$>m@ʞ9}q.@?2]Ci{qL^ǝ7 u!Ś.Һ_f<,kx]}>85B%gϼgz7E%ҥa0ҪjfYQx?G6T #W\L.ABpnT+3v *+&ʈslvgEz9ƠAzܠs#fo-g[(}M|]o0V׀ޱgTW!?BhQ`c<QUaZhI \q\]-\{|[MOzpVRW<jMbtAǓKQʎ))XWMnBCPQ~\avWB_>p Cœ5wLB`s,!ǰ/)*U"S#]4lXi[>rmG Sgki4* q|g/Yʳ ܩfqRDDw ];"<U뚨 P,$\#!aVٸ8<IUC$%n)K=XPVz}l8On?N֖chpBY@ נ8 zme':vyͦǵ3>v,=% 9jVx]Z#),>q/,m翟|rh; uEP<G~].qu:+b[~@յ0z?HOəswS[c'9!BϟwpQbԩS  )ċؗ/X:R*#^^?E״WEGzJNN"jMHMIqC؀?瑃_u X&yC8.@xFN*0Gj}GrV ByB]qq_/7^ڢVMFj@7usV{^?F1nF\/0?6tE"SzrPg.'_G-&yszaUɴ*!4-h+ԅKXT;٤< v[܁c8q OOהG!N277tK}ޓ}Q"$:~/HA(Mi?SVRRd7 5MHx,ʾ,:dg.#idHxi&+0L 2mb%*8k'|!pE($.~ szN'W:fy, /C^PYBJRCF5Ѩ.ׁljL7-3:uӵ=n!sI݆ð{[Mx}ܔ8o7[/?V0Ϭc6!︗KJΒew\T~–qwvnٳg ?'脐6Yw5yn.Up`"az)Tl p &*ؐ}%ǁt gLu%=W&b3Dz^9iT2k{u܈NGwGCsgK٫W@ k˽4驩MZ=C?+l 09l򂌵]K.^ةdƯ?Pk|7\Ԕ5u7+qVq?*L6؅xbX{ cPT BFm0P34]q0߇{RjN< t4& t8Yw'܄W]ގkSH:tk$xR7~E+Q8` W|e&'y1a7k|b\EW_%}VuyHN)`io-x4ǃ^r}8?XU5;kX1Ŝɻr1:պfN(&44BnCNA QQ.fzjq۴}`Ivt$҉vmْ'HS,<r uRTj2ՌR}̉b~7`󈫶 F⋭_kPŃK/d$ۊIaQ>o%OjoXo H\-:A(A94$xJeц +9{qz1vOɼ@2|iǖF_%VO;歂V WM8Ea.9ngyN&Q`unSh'NTl#5k֤#44Uca3# T?cp}%1D1m9a<̭k1ڄgh9VZA1 _Sˠc_qS紡24P V2vq<FO _)obi6HjND,{8N5HU xOV?] !>Z4~+FMEEBoHuw1fύ j'2"+Q}4q~JD>L"VUVRRe7 ѹ)=|8E9⇮u.^td4m(-}2jo_c6 ijAɇr⼣0^r 駜D3Po!}q֞gYl;$n4ϒ!c8wHk!#T3[3ݻw߮j}dR͘-̚n1J~rB뭡pP<_Pa]؊mfӦr~_o VRSqq\p#E~߸cJUOM>'SM*˭ ۸hKC KIV* c^t\@.玏u/677c1v$/tmѡvyHwĥ+θPsi_|p#j0fB*Xoed 2K.^E8S?撚^HPpGF~q &.<~0^ɹ:a} _@0漒]uF@w1pMcLξ)tnp 1&N4+񋄰)}5H\xWYM.!z-w11Ǹd#Z$ |zֲcn"&S,=6DvL }e2 ]8uKF#gSFF넬] ^+9CgKޱ]|G gOĮ-^ŌXx {>\k=?yƍ]A/Gː]ɺY9֋<W!Q+ҥKi0;ayV=OWWG D9uٌϔ^Ǟ%OA<Z빦NWbIDد?mll? x<vi!HNN#OjtebѹUA]nhhpQ\0/PW+WO>x>sVZ  B_[P_/1qwm9Fxb+Ik߰aW"&<|y*<3kLunN˰%ɮCI=k -F7ٽ(aBJ ojhRkNฅ~;q pbA'j>j23di 7m,|ߛ& p A_wl1\JR4g:xg.M!H:FĐ; ǰc~`1' To/j,q\E3 5h#@oմVy i͚!DvgPvm9Y1ٟ~on_=8_ Ljmѵ 8ESYUTDۡ<h{W44Qʕ+#Z^g4I9Rk֟L<waH|=6sy۽AGAgCKc*U&=)h|KE;xMv}4jѓy^<[qr )ʳ|ybٗ nO<`ڴ=U 賐B5\z;&-seuMPgtt6fI"炼m=F bo?n{9I~+0{;ÿwN~oQ2{_p8Y#i;9ipArHW6~t;a>UIo&p:Є+ $m ZT)ͦ#J'pP*uzJ%]'Dܤ(JB.Yy=l#<^rvxJx_z\0_Rq C2gKw`hW"-88$1c(*8ctAzإ8ik_ބ=Ln(r&Iy'b&t-1WTwEhSuY$q\J*z^q :_&qvRv27X aSj\kX罦< !^?ȼ|x@˳bDy/{1na瑺9oOxa/b&y{{K䌎kOլƊty_v3ys:rYY t@} g!s]\\b84РeNͼd<1^bĖ![ثޡs90([0BΝss)M&'=ߥyP\t*~… k`c9tpm9F.p_5 @+gqQ1112B'Ʃ6s -y$F>Iց˜` XnHXxWbÝQF- p52Ph^+t0Xc#¤t &mXwvc+9p_\5lp,?&/–ia;eEfwO۸9ɑvJE>k_ǥ"5ki4g]zZ*ߏiZ7aʤ%߂u.-pVYIFu,_؟+*}}V?[g}c^Q/m)t GGx<[援y3cMCov[Nm2+\pA9ngWk'EH5mux=G|eUaPcCϪ (yS0jVWx_-J>f6u㬦̜C(FS}̝;ې/ӦHtTu&GQ}o_!Okݺ%åRyҥ |IPy?Q8FQq ԃ˲Eo/Ucvo5[tnANw],p +~7MW8Mqݾͮ+]!뇁n";^syp Q!2_:q!l@*\9S}:zR‹E!NaaU_1BJ. XrW)mל+x k־xdÙk(|N5Z/TEnF/H3ޯ"TpX}%͆%55obycܨ%u^cD(9F%8_GKohыy/%'n7PwV_gp*HEf'Ԉѵkdֹnhh: 58/x<Ν&}l]/VK%-vY٬J<Dvouk{s^j-^*6^<#&&|:هm?yWn߾p~y_ӼݡUaMsՖcKetP҄:_{}Frz$}zBPQQS24Xn:4y>+2bv>VsPvRKn#:7C^?'򼝈.8*m1'RBęy<2OU'~10L8|LIyV:蘘xK_6Ċhxpvcr |AcWW{.WhØ)dm-kXKHHp[u^|l#ZFo0A׫y%,}㬹oJ!Kɼ[t? _lqIx}n,vȖ<b>'qU7ww Enq0I۶$mrs:"AcDN1c[,Bj!aT@BylEyaazƵdߣz+$qʌ~C;"[Ħ40/1ݜߑݢHӨ>Z 8>Ji%2{oWy"~8q 7[t-<V>>rBhQ*)9S!s`GUq\C"e2gs%p<a_w3sU7~s] DEy7Ex}c ,_4Cx _G=b8='N H"^yJJJZt>. &{*CO2JE#ǢbtӦ vҤ<h֬ ޑgZx8ţn1%=?x*(ej Itnv?s=r"gw}L#[IUYgo|䵥1~iDc4_ͤi_іctfg6yܼR,B岸: ݎ N`bpGٰVb@_=}#( 噶:dʏ9!FŨH9~#)3Jx[QACˎNG%@ZEL Uwo˜}Eu17ľ'\]uRD裶z]Eyj'#p"q͙1~'N\÷!W `;MU|_T g}դ;R)T+6l؏0^TB׼/>εmGt-?ѵAe-^<viyk<t2={%Ln9FyyyMT˒|^J`½߁4'|S0(r<v8 otu > oky.:W^M_Õ+AZZ:eeQ#8n1'j坮4-?f(gS۹@ϴt6 \逮PmMJK[0odفZZsfYtOǰa<#%H n1S\"- BIp#!pjJ1b/(7o8EYf~ĎsX|:u``ȎpEءr"W{a] _rF(eYwN:Iެ?655ݔ9z:>?ݎc*Ty%fkzYc=kl_Ju]FFrM"\kNĸ8#w|YrtLoOwt]lX}{1Vo<w9F;s ?p# 0way>+-x%T,^_! ֿOZ-*?iZ>uEVOҠgd{yEFwIx-g4ROZe63*(3?R2Fzܷnnޢj}pe"rySQQDLO笗E'y8fwiy8wt8^pFpC]D>8?4߼8^&uuU x:Hp6!cQy(,b{!:5-h]A&8wFejiS5j!Tqm#8h]!n1CrLKiX ݉ch5k,UH;ZX,Ӽ%ٜݩl]B+Wti=cIҨa "OH۫GYUڂ2j<Ol:.Ǿ4w5ڸA#|&j@c?cco?p )3 /yA}^ۗuٗ9jdݦ@ɨhכ^=ܨ=2xN27!no/ \?@_g!uUQfฆ}0H$dʡD,vWw _Ǣezna:7l$sj1hjN{8crxxcjcO^XɄ1Zƍ̛BB(Iw/p\cU B^0CJ l<drSU5FʿugՁ{ic#U=trRf2Pc67O׋^/^jet^'<n9l;%fWoG z{[5@O^^Ayh[BR͒Di/#1|1uJSHX=j3<Fc՛ BA^ϓ?U:TDnC-YKQKۜd[lc ׅ . |0Z0[kzӡ~Q+5mcXL uѮ,Rci1BA?HyK̥n޲̧ۼeT*l Pt`J0`? >j+Iq<1222\Rbw6׹tMtb-}UwZ'<Pq]Ӽ"@%վj<Cuyg> KLJC?sl=>,?Ϛ5{5ikX9Ɩ'~C\=z B8}+ :C b)oϑ,9VmLd<ƣsP#q,ܘOٻe~yJ ڑ,`P.Yw݁s~jy|w΢jy# O2F5+hR?_Z>/N7Rtөn"Mxu>5fn!_6ž.{^+s&}s4:w)Ϭ=w)4L0p?mh8oaƿD_U3>=Ct3U9;+ѨKq|}#=C|*g?%osYqD}^^@8r`~X^r !~S*V8^~]뫐A۽!zwD~q #k@ ߘ!xiXcCخە+;ºu;aͽQlrC I&pȐזs~z!/_:˟y|ԯu^1B-$W'&r 1J 7Ň^c{o>r7nf!dᭋA5K iGA># >Sʳq kh`~JQ!5F, N{:'A' 'h]W8K=FݹLo7䆒v˗IЈ֘As%!,ZT2|^qm9}ǀߡ@"BeZJLp [kujkk7༟YD/l_( ^wat4u:/ }O4+ XvO޴p [K yAgƍ\ag]qfc؃a<D3[B 4a]8r}zWıS y $n0VTVs<O^^g] `ر('%zzpe&dֶdr&JXT&Ke-6)i"KYX>-ӱ񾑄(׿G"q=<H,dcQ9?l:(cs5 :J+!1hkG=fcΪ=Ý~; Zl6',ʣ;0uފuNlq[z\bn p<;{q(//_ zyu;6c sh40 WPWW7 俅c4c;RG;;bTۻa&5G֡ǍGnю_4~7mpCꑂ!Ir $C8ƽ`<(#,Plm춐sqk~ NYu[_2z3GΙ8)7)^Ay5 5$TZ]υ<3?`OHF9b_p+3<)F)Y|}yE`?k+k8[Dr-B^¶ޢ p!j9,xߚ.v&7cW o,(%w] OՠyӧO=LbW[[ yݰvё/8:#Y^hq<#\-SX\j #|;5?67oL8|uT}`o8VQo Bת7=a棺 czj=*1T=n6dzp~!Q !4Wq/sAc?*֙1,{h, ✽{ K4oP1:5`R/6>3Ǹ3X\v-?1|ZoQ,n;אgs٢۱J5'c\/Č,aHMD\p d,DA5 q<|P@TК/TtJUG[9k<ǬH,D 噳(1RR>3১z`x#B]ƃ'N9ѣGG>f2 SLS^/t@ qb1}HH>q+טu55cTr! ;6:HGr&.u+b@m- 6/vc\|9憿3Kba/2l!`$:L¼n jiI9| ǰZK0brGI^]H_.΁<6>'|rlu΃<e;eM)wZdZ/ }QSsnu ؗŧq6z!][@ZY/plIID*N{̮wk <a,ϼFdhl:i.g Ԣ s(m*?cX0#'M~Г*,YtORf_dh?!.%eEC(*nǰr 7*  EEE9 N= Y2W!;[BC] C8>$Mdru?G̵IAs$vNs[88fC,tY;hʃoF.<M3+-AZ=O=y衞R)#^BiOIy7'M'T 5tof@"m*/$GzHw:VU'e2>eQD>-Bj:gg3hy6 ŞQ^(fA.߾~ )+{أ觳y nn)9rGw쯰?z#ǺԸ(C`z6Y?7pBYt-8y #W ?=kg4X̥%y݃R`~k˼q<ߪ<xQq c.i:/ wKC}-󴈞 ^Gk\ 4[u \JJNek[t^y/?_yz0룄/<yek5n...,v} Z7ϡ> x͵Q|Uv{1;P'`+aH r+ǘ(jk>#_^ :|-@eYپڲo-Pڂ ofРo5^K%%gk<b_$އ&r &O1E6MOY/o6zgqsV`5p Jd%1<PHF26d?Psռ.+~m6:؇7[t>/k370\ j~62BaCM fMn ? Iv?;\(ܶnm &4N60*΁䘱=:qWzHP!_{O|}0ǻh7W/رX?8+F/۪2Fc!@LIպlwǎ4ܫZl q<M틏rsksv699R,2䱶\$W_]k !}PO6 hğvG_%K@yz.q LR)KGUa/e݌mknN˽97@xi.!wwBSN4p> U?[Ee۾m/#zܠygV򐶮-ax=*.W?{@8bG Z0(ysUe syG.^Z|!CngJ, ȟP{)-cWc31&?|Qr'D/Ȟ؟z.c~xKe>pq =fX$EEEQ#app%" qlgo޼Y*bc < p NǓfj==KuXt!qVawCnBqW1 R°`S59oYU~gf~1_3đ\ح; F{҉ ^^[F{^dАǷƋ!ǐpcO6#xN2C1{K=]q Le o+dOFVfE}Jܖ#*%ٻé!<L/ZVq:b|.T١#{4 D>:8,0m=hY,V-)֮}jA@Ek!ʣ_G" LZu<g(27N ڥݓ-.fiu9eZ <pDL?(mHTgר/VPE/[s(ęw-zvnJr pڲVnvcrUE\O(DL .n|^pq }C!7O>XAI&Q-hgץEw#`@* [;C`{r|Gcr<t[5ÜS3yoM; LzB~#>s^ﯝ:?l :O^֏v1с#n\%g{HdN s,x()oW sr2 \p &oC;o-9w]syCtPy%VQ%s>&Qd./W SA ]Ufؔ# ~BB|O) 8]k2K\`[6k\g=vQr3T*n˖EsBܸ߄/1ѽ3ׄߙ-Sg-)+ g)d,ma2 *P_)߼kbN&[eBL8fRTm)%"},~ >| /]HlJBsy'mZJ8ŋg~[l-z<Wnظms[9qp5 ݺ3F l0OňO>s:5t%Nki?(So2-E>qKBt)>瀏9 tp3׌}鐯aibZl@8͑q:)$.vN6dn9ǸU3aM Í <N~ӧO?L)aS#W_+: wk]EhXh-J)g8#&x>p#!!ߗDΧ*zB go"+8U uӗtgA!SohP.?kcL kیZ4Yxw]= =/xm/bGܼ?lGč~agf0L?`e6x>b2+ n{X16/Op0"&{)~#7.~+npU3-u?%ĵ#߅Ie# *;ndzyQR+[XA&}~ ^|΂wg % mt9[<$D0Ī2;?-wOS|LBfQ2Po|(<lٟ|Ruvh֑ Xj+(^zyyڬm׾>;t{>{r;&Pqm8bϼ2N0ƁrwO*Noks OX/@pI\B!eK8U9Vu+Vy,Y\G׮Q=l33^DZT1|F^ӗ-]=䓕͔:9T߾ƽMBc6 ŝ+ἵ\^~m9q ?Ǡ+"6_p^{R qR> ۯoY \/ ̏mt3~AI*)7̄V=ϥVO7v9m:mcɄi|Q0TUYrܕ h致˜7R=>KQ4 Y0oE=cXSw. 9 +ز9XZ%) _P{u["՝T T:m9U 07ǸCMLk/iÇ123?\55ad^{N4ԯ,Vl2F_U2), * U8q۟-ZqfkA(!<lX[/ώ\י&Ѝ~DQz 77 R7o|\J}3n䡷Q?${1e ޠ].{'!#:<>mvz./sx2sr xIOhD9 L7K)E?׽AFT_]^rK^Ӽ¹aa:#GC>O ǩ_HĤĤaa u{ եdd5nEJϭ 3Jou8FzӧOm@WeX̓Ddzt/;޽x-sdcbdUׄF~QdD.y{FvzcK |s]JKSU@V[@ |_u&Rorxs-4Z$*LjZ4)LJ~Qc/?3+Wx Vf/% 8Ew>2H1~FLZ0C;1l'b=)X6Orq&6`դ>`Pٱ2rw)3z~QᕕRTXGdX>iUi+Fe/Zѭ}#=8H_{h:j*| tlG㷼쯬87puY7ݡSP0qsT*f߀q|tUѯQMSpTϐ9,DozAJ㎈=jϰŹ (Xu ezqyyeH!r}ߍr5eCC}PK~庯i}cG#vԩoSrkg\H5R9ߛ:>Zl-}%ϼXՈЯ*Je.mw0}oUHq.r ܐ|6La{~W~:}M:)"RcG7lu)@o:79 Eد<lܑcxL6r㗬v֏L&Amm]dwѨc81э='~Xn,N~Q/ 1B rT G-k{-B#ն?-uR,AU~/V:̩ܢ=HwEDc*_FK_SoYω|;5;g!`-y@斱C@fH]@5ԗr'Q T&mmS [/x81RDgE&#ď:;ulm%wp<8Ŧ}IQ/ hc+F tf3gksZȨrsiY[l\@.ybl~nGsZG-\êW s f#!oSyqK2Po~[֗/ؚoAt~ު9ՙ0Ic?Ίf礙]صrn}]0>wg݌aFm9xtg<-<_7GC|-Tp+6!C=c=ttq\n?N^C<ssaŞh !'NxD< v>"ȖcgX9ƅ vY9F#ON8yp Ϲ C6>=Y")%-mVbx=gGy <rjkM]9[mT@qNǃ͖yC<b?qwЯprL=uyHX=>鼯dhZD%ox2ky]/?YlO\\gM'oܯzd u:vʊHxg0!c| Ǩ/|ZebU cU%('_eܽZùcYpG<+ǰ:ԔrʝZ@}B<;̍I)ᑸPX!G$wKص=v6qd~.G323I˞d t쳔dn{0J)?qb1'}n\R&DJ|UƍcjX(SU</ۉU/{˄K\=՗:jRUV Z}їNm! VOjeiьB^+jE B5ʆ|$o@ {ؗ156.wW#cQz_(7v0 6z{W,)+Ú#O("Y1լ,<Bb4*Ǒ}˗ggdo16cJ\O|,[M/&4`l_%^'bN=39^~bgè/&yc 뱃J4?db^LJc̴pwXDJ=zמ[o6'g3\:6gEqZQw=~_1Ț><}]sتH$Y9ƉM/"<+h:%@ΣK58 u5f@noݠQvo'p_l$x>|#{i'/-ǸA1Z8FI+b^Otʤ9 wi>tNl|K;J'n8`'Zx;f)aWtE111aJb08n1Ėi!HrKVѣ^Cyr/VRWc?Ybt`ݡDwٮؗߟS*n -(.ʖHkvM3}cP nj>ٯ*.-XrÆ R8_3lK$OiCG "RO8p_~:e6\3E[N:5"ac\^!uaOtզM^99D_\xUᦼϺo}oz|(?_ʝb[~{]WRrB=0VF c<gb-~! @Vn׍іKKK?߻&mca+7}__<b8' E/]w ^qu0gƊXAq1̗pt?X,lk=]s o4532i]~7(/5g/ Nl_PArq0D/THK..TNL۾~y_~`6?c懑G4)/!f1JݯbXl\}Q5d|MM~ӊ|6'iNSk+,yb c5dH !{hd:z$h}qƟz"m?qW76}8Jh1&:H-nnW x8h0=_}4q[ҒEcEp f!>6\ö^ckXP*K ~{@T̈J0S1̛drQѨN]*hFG@KE=*aHL.`Bfֳ y=ٷY{||o{/VgݭCdYI$duyiXguJzPgߙuwƣIBqr6=AX}6W>>~ojw^솿XSoщcPPx^Pb au h E}lD<[ >ГӦE9̎bأ~0oZK$3qԚ'+Ǻob-n/,z[i V:Gf툹H3!z)Lǐ~LНW66T ~\5tg-)/2||67~M$8>'Z#BFw8Qc 6;z:? 9F'|?,.Ch.[Lݞ|ʶЗ>" UM*_ʟT,c“>_c|HtJl׮}qI466> u)Ԍj~hV'х 'eG=C-weo}'h4>ОfGzQCNu~5p&q&~_ǎ}t7DNU 3$&Oq(}循y!U eq3O1>@W[3m+O4 Y loTi{:$[4]-@W_77ԓԀhժ%r$73̌YRԖ DVǎ iP1ؿ9ƵJR Uؼm{/i;%Bܬ{s27M\BZZP-ڼkFmġ)Ix>IN cd+ ÇYd$~H&t<R1-~Y82 ]A"C6EK'fb~w0Y> 4}I"/ ­#=E<R3hA:ZGmWFn8`7k0ϟ[œ4TtEH c<QXy di,8q{v8ơ&q^YORO E[6Oy)U?!ݪ5wlԫhtF O4.W~[/u\oРc;Gg$v5ƱE]VI1x릒j\\78퉱4L%cHCs_Å|~[^3|}S>ݩjwO]hH  1k'<i)4㝥F;g ;*Z=ì#dd{ŀwCAf͚efSeeKtA¡ɰrsP`숿~C-N+䣻A݁Tp d=@x#fo%w?yC0z&wİ/p8_dl eA M#s,{zIئ؞;;:Ny k5FCUZ#GHh15#@c$Io7oP^B81kp)1}V8Ƅi 5vnx ?nS!*HF$ɿX6q ɔ~A.yv]9tc?aK!5ʆoZ"9vX>Wx9LjAդbTi!Xˁݪ~h,{jjj顉º7:xve4EUGq jEP(~ O8D^R nxaqǰIŵ쥲hZ;BsAT^8q@l1k(/3$|󍻎υx6I~+8gt9ޱcR> 8h8VTϰġɛ(0JPqqTzboiP!?W7I }T =AO?nu$ζyz~UAoc|W^e֯nA1vnNB#!~NZ@y!uKV?:PZ| (?SgqY? 5_?,K<9o'<2 [<,#;:b?>ꡆe/q#Bp y=:ffm`ee؆榥OZl21s8Jl8F]eC1<r'Fs.h,CݘC`}`0( n=OXЭh>MzPII,O .ٚ1H_*ԅp jllc1x{]+%_wWʑ t?‰(Qo:S.1ߗfd9cA02wg>Mq5>iq_{JP jr7`|P=]t-xFg~zDݮxّrEo{+m$/~ lqh8Y1QV^87s}>T/}$R^(qrɯ-8d1TZ &;r*ljxtF;/D_~Y{x6;tl?K2' ?-e\DOyy]t,Y{d[Xn] .n1 n?o-rPJ:xo=% LcAԼu[T@>'|,M:8`+'S+Է3X.wܯNe3hkeSYqh#.z9PZ\Ô"S䥧 }[;2=!Am%puAT'N뭎z_Y,cER' iܮaל*eˆ ԝvnp]_`J:4[|}]sH_^~e'P҅s}16o G'Cgj.W! 5n+m!3v}K!cǰ!_1~z hbL 2"X7MxIush-`t}j^%^Z$7y&X'3F?9a vQ!?f9FFOq8͟=ii._nB>ZH{ N= h5%P1^h b{2$'vL z=/vt@Su8F6q ֕c@ഄJTW10w &Sd$<߾x !wnS`#iu_G-ݢbL%F)yy:ij7xkq4T#g%IH~%&ڹ#y\Z6yӇdhC11S)w~sgϊ:U繢MGw1h*I'UrAE8U X<~œGɣE^"p/z`"%n̐ \]4`apZl@vʧGV۠0Xlj6 Y 戯߸/ȗ|? Ǯ8U. =~%%Gl1hQ Zkow1H1!_qp_F8ƦߜcؘyG2wx=mx/-F!/qmI0ۿ_i}b.*.6q?MMTK={kF'q RD/86W=76M #} ^'/ctRI<GSqh奅)}J$IR6yG?kq)8pg\'~sE9us_MڙEF3+t [phN1~g3g\wK#^$(RȜbkāP[0`ռispe/IG\1:XeŊsy0 @zJx oq9- <p}',;*݊\=|0I]ݱӵa;IAa?ݶ.Rg[n}px 믧d---x_zqެd;CyY+F>F^j^HBE7[H cwB9֚!m1FEoq3vú-[G}Di'~t]G˝ 7cdi^K#<j<sOr{MޗU˗Ju35֍+ ڤt*…r,q¹]{;밟8~<ڙW#hxbpn.g(/@͑WL_jאGUEU<^Pe ɂPMv ߲:ꬌ FUG6kD#T}U-pyr6ۇ0?prP^NRā1wT]u(ަx|6T*_ᢏ8<ܭV&ya>PKjU͗73CL4wҨXIJOL]cgϤ!e[_;qS4/1śR"p IAKCT>AOYGB=Ɗ#ߩHQMc܂uLr_x ku?78ywj3U~NDқ7eU)"LƘK E۴Z$#~[sTUTύS<kHP\Aw N#<Fw|ue--H$#7^,[B$\?I}Ct?+ nmWzDZl|ēI 7xn5uv4fsʡghE,~ 9aw!F{idīH%-}|.J9FLlRdc LJ͍q r[Ĉ3S#+JqOMO HI_~yUa6h^}Y䷃۟O, +ho1V,U?;m7z<7)Y/\$u8 9#oMXRG -y--'%{@ڽ.FnUZQ2R賳C g~Ijg 7)3u4xk2:1ٚOG}'h1(]Ţ3ޢ#vߥ}m?Y'kFRJƷdk:<3Q0Ÿ59)AfSڔOs]bEN<أ}߀bt0y!YXk *EGbh9wDrg=RWcâ6T, !BaGy#-.hgi;-6zJ{99-4:F"fo]7PbEӹv e=^(N&/?pK y̼JVs6IϜC!wTC}WnN~4MuASj|[$n?:^ڋRRRZr=)$[ ۉd] $篂,][ Whg$-F◹u?n5/oh,{ݪ爆":] jwг`8L+ s}ypDQYsY?|%:)ܖ2ؚ$<M@1 В/C߃yS>#ctYŋfq7Z^Gz"S?4bcE(7~ݪ..]4͵I cEY o'J̾ lO"C8)T>eݗss s)W<,mfsB8u^_kLxYCBu{ާɼl=0we</ցg($3zO*D%(IP[^ p KBm\\OüݜcrbKRHR<Iǐs2 ZLZ?@a/"@t23%ѿ]_X`n.֍0j77+cx޻R[K#ji"&SOTGrnؙc_ipvR疖=0d<i2?:=O&M~}u<#>Dx+J9èPĢa#J J쭈:Pla0ghZᆿ玿'6z0-"~H&N3*TE%n^^W+ bS-Yp" ~j~=L?Q~ow_ׯ5Hz{"5𧛚,dz^Nu/,>nZ;zaZzmQg9F\@8NEy"OOuXEUUFYo&<`\ߔGh8譀zr>KхI 80.y$Jґ<ႂq0gQ1'Z՜T{kk/ң/r~OckK[ ,59'pڜg_h("^5PgՏᤅ6e ʅ6w.m$qHYߎ+e3C7shnN\[b (x.tpw'6;9ƦĠp5' mU\,DB',zQ-'ww,eQԀԨyaE׼5Mo1:Vy%C]}[\ fҐ>1R~DW^f@|huh {ljOUE{ ?:H5"4~<WzU[Ϋ~:uO|G1-Bsl'Z|])4Y>Fm{h\??K A 6k@?u;PH xFKTW=O~R8OdL0ބ%p/"78Q<㼂?LmrM:,7=f܀ :Q& Oc~<Kۗ|$]Z.Hأ|9rc%C~BvR`=!U ZuGd|ot#.D8>#ij:ýغ@S=]^WG_dK֪+ͫV=?M%|r FNS ~JJudkɜ +} JKKܼM9cjo=kC݈3%kGK8$!Ƈ}5S[e kUqyQtS\*ޫfQ)A gdN2db~;'r7Sa7^Q/9o1t{I *NR! o52߄({Q۪u~_R<3;d y=;zBkc%2C|%"\V|cN_Йkƍ5jd_:T-! Q2*(7jt?P "oZBa[^URgӯnA"R4jNW U,.*wA1e%=$5)y韑c96r H~y'|yDŝ8 jsz޼n1 #jp |~=xB#>o DN]9hCs*t,(1?95(xG{, ;OO?%C"hNQr`Gd HDt/[A?cgWDGթ!#\sɞLܮ*0 Hgcrϟw?z:F6D ǀx>ial#x-΂qυcHl1Kl%یk(aojmX^[`?ng_p! GF<xE ׵yێ~&''!cJ-D8߱7ugϞ}&S+-)IJ \wraSw<qpXUTTܟA2Gg|y\-z$N~N΢S_8['{L~ٌí'E/NK^zFgD'Ay:B8Eo-Rψ+r' ܢS5s_&Ua c8B61t@p p#ĸhWLy)(ޡ@1* "vs сyXzZB=qJ0ahPQMK{xvsb"Bǣz^u3xԯ$PbúxmkTГzdΝ Fy0b_V!?ڿVmbw^GB'ӏMM Avn'qZ=yO>z zLf?Cty^̃_NÁ[keƓ'}Z:ދ7U  x ܃?߀Smْ@yA@[)pVuCtQc!+<g\@w;O4+sd<F!N盥yxvuR C{p\_GbOs~p2RS~x?A7=A%b-{ک`= Xh9֭_Dln/۪ MnП|~D\r؂~ѩ#uX?_;ZppxސGfN֯4;q%71RaXQ )d:uW16E=" UxFW4J8πȏho\gioa^zλ]ٷ<xұ+K8 H|rH  ŏ5}3t3Snk7ߩծ?/'d^Juv憧zB>m[HJ&C|nP_pǯ5Pոįt^âɓ-44ʢ3_ssʝD|.U,¿x\B.Gv zJCx^ڑcluߟx+e/XAIm5 ?n7;,[ <7'ե!r ec7_RT SH~'揹?{|o}{=U/&8rGG/<jx(T -sn6n6LˎznZ%MU|" y"R;l) Qx4`  nP6 Kk{^l/:0wƣ븴wl6YWWx6 u1*+_QߞcLjONv7r}Br ?>^*TWo`޶%uk/\ )I#uq\cm;v ma &[7u D䢣ñf{Hh5$d.]JA;/an߿+TG?}{ԝOf5.e(;;ît7cNwa/t;G=guɦѳH|z l뵾>y$%ݸĄ =L =$dysA!eN;[ϠNˆ FG~o= PM#%h;y L\89 y%oh1ە%^"缾bJ%I ]/{}BsD7Ý`Qվ-4phb?ěJ?O6 seUO.^0}?  T&'Kx?? i5#zvinD#_/:,.^KPmeOFR٘]v2Q@z՜vò͡w#\"ZYK DE"/B=0:tGHyWn^4[5|ob+ySD)R^qAbixDQA‡Y\O75NJubcsgf<b6 R1xCxklPigG;Mvr/g4ڒJcU@~ٚq1rjjɛiHa\ iܸ?Cu4?ٺﳏ79}Xs[xY;WrXJYC@~[Z'mMHTmߓ5qn|3=sj*Zm ՗yXje}L%^#kN<Xх⢱߲?%Knq]18Len}Mx p mZ5RZ%M}6q"ns"?V:mXs}C::}CX\cdmԤB=2=^N$|x)-,xp ԙ`2hҹ@tTWx8~ }D7] |w|{8xQCkg?<~ .\#AfԾ͵B$pJ5qIEl-՜ur̔( qn,mߌ֨M]ijw|,WOhM{ci+;Ѿ֔;DTF ζkKeB= ,H 4(_B)oǀU8F2ԇeGu+KǸu9'tC+?{xhu买ڞK_=Ϥk(u@m9A'p&[EZ#u[[S?7pP!"i*mH,PS!{͖YJXOS$V8FXwXvZ-j 𚂷1hGXΙ/d}0AIvoHP>Qm).c^oq1A῔cw9|3Sڹda ?v;lv7|nǎ=ԡJ nu栟}K[ߡGgxA嬋9KU={CHiPIw шG܁pi{ w;ÇϲdǏ&؍Η{շr l;l;<n>Rc8UsøRWֻ =nu8,\t5J g:cHƨ{;G^Y)hެM.|GWъa6dx xNt<_C;X;w׺#lxxla}ޡCk<12tsY$ePEyo7R'񏫯A k0w< ܂;,)i09-,zeǯED)?s음1r;Zlp<f|wNN܀|*s!ּk]Gq7klQ_l<| ~>L,~X$-{.'o")SÎQs!ߒ{5| :sbv#w׭E?)A ~ ^+r$D<j~~E?/ppcwκV ')fݺK*x<vyn@=GG6'?Wj975 ȗƢc|+A%K_n5$- eu4` /G>F CVʬYclJWt%į%>^U^gP.h z1,!zu0yc%k,.l`QrR- UU@o\3$*.?Q1 Qs <: +$ZQE]!:O\؁{ac,=3%q;_o~)G+MV"c+אd&.eL\̳BTkbT,m0,["d{i#Lș+x^,liتfΜ0bQgt!,H.EO*Bž&>(_Bp P37-X#}@hܰGB|bbnPΟJ_^8 :/qY,\2Vm@ Kg?I [ 7\#Dm._AvUJNT;ºik|iH/ EZMzB]P'cK\7MQ$R{"Gdj$2gNDVFxAÒm`|yiq 54tm6++K~*B֣ktV:;)xr ;a in~T@8_cVg(y=4?=? sϥѠ z9 Qt^SډDG~oђڹ?k'E^]-:a{bW7e8g/>nVOY q#KVOP)༒WϽK~-Z6Ə+/4_<[(lx"kռ5Ǎeo Sk555OKQX6?=oRw.8u;9F p crA"尟_ ]Bعgگ;t?pӧ+a>ԭ uK<KK(joj.s@\X$}hFqa__Tw1#ވxn{66xaЌ0/V8#(OHb/<m1pl 0j;WLZ|$t|]"MhVm9/-d}_aokP1qe/X\[6>vDL *$*M w8//" )ᯏF H$p *v WH\T3ᅶ.Ƿ:Ȏr-UߠW rֆy@7z+ \ݍ񽧿2.L'~fO}N06~WqsзJO$~䞵KzB"`ΤXbBJǦ AyN[V^o;?7y^Hǩ{j44f?F%HB{*8 uK'sbϓP <!ٔ#N@x?;8Q{ t9rܧGA, ь;2K+StF.\FOu#+p O;@f:)fC%3M[A5B<_E <gY7 uO~\M;! i.0t8xSZ&ؤsY@MxroJV gًGgº<p ?;+¿TXcӷRIA!wM@BSgqƭi x X$DֲKbWzS0o<S=c{b蟝x3',,`xFQ7 Y;r2ˠaA1;1ҟw7/O<~qEF̔Da cx#A/ #J /C[-kϑ qQ Ow_qSH RwKM8 0O7n,|iBjԾ<XqΔ5j]OOKi|kBN'G/fTʭɰ.uQtZK)YJtѴGE]qs\y}~:1`… 醴6>vW'x;/3k$)xK3qk@|L˗Q5?7ѩ(lsJՒ\JxR?GuU" EQ Zxf!]hOp4DzCzkBrM9;baX5Rhp]quXSt &_3ԛcެk<LBmǠ⭋71J$Q&r8FZ82؏z o~K1 nI<UPML!|goN\<2N8-\럆 QTRt|"ieF`2'Ե[uc)a8Fq$O_!csyU4>!+ wǹs1x'ص}۸gLKk[z@?}[Yo1P%t1q8FR+J7<:9A|Rrwp;MKK#С"pn"sЗXtԹ)+5V{+ |aճe}lI\g XԊo.#@#Lx|ǃs؅NI}Prqlڼm{/?t7Lsjs}I5*p MOǘ4{7i[2W 篓"l9_ճoKr Rs/@@OoE.G|$5Wކqk}q~`>7nŋQp +X"N Z@Ztp ]~g^~B$F19xK7?Ry?Sم._Z0r!~ʻz+<myYqy=U͛/F}}o3f֟>\0k ('~G$ٻn~NpxWU^/: :(EK4 taB|*vET<W+,manůa>= t"IY*a\>DoA)WA~G~zݶ8%C# ;s3q:Ƃzec(ۻߝzu@MQ?y5~Azl:UЯCRD@$RQG3<$-̟WzZ[IEVg/6~H̟.۰սL)*ޛTG9ӐC!|8N~Ax͝ibl{S =]s@βAtxڝdN$k-/E7^GºB=U ׆A\S͐.J/.*'àCIZOK;& <kx/1t|*Vf5Y 5.ǮP13^g|~Ђ_1jR?1 R}Ը(;):2'B $b%g|i%gd&&~\]H}Ըqrr74Ujy`ayba|M~e_o1&?!u9_& YuOWy ;RQjߚzm]$6\gyRm~}p 8%I]j!55 3]@{<FGŢ;A%_[n/iRG(uR3j./*Fk5PWq 5F))Eok:kuK")T$ѷw$%% (m')ԣNzZ!!̿Jc1q1Ç{߀>^4;1 o'L"s7WYٿҳwx%ϠOsns-,nB[t-<З?/C[@yy~yE8 nQ%؉ r=}yPq]<҆LEcC, Y1a 1S)I16oZƠ=;~LU? ~o1w W*c~GImֶ0MI?q9ghupi HS{ E$+y"'NDfyn:,"bpy5䓐:!DkgfdI^ m$XBqqOsڒ 3`l_7-~{3gF|4Zv-~\^i,<%NLkܟqU}ە>*_ˑ!\y$|iU4*'a)O$w׮[Sl^1y%6{WLWCq =Nđ>]@ЃM_:Id@<6ಟ'Wb,=o y&XフW逺n.0j@O .Y|Xg~pjy0 y=Eu:E1?2OA<lf|u'e& ö&M;K"Tk=2JyHg?ö,橘K>x >FA2PoiI/^CPyHSJk<g+}W(jc4+ EAus:#_ېvn]/Mzg<-sݯgq߇S.?V+1"͵[j~t'Xu1> |Dyk'46~R5}7OΘ%7\8y~*)_--5 pMqrcucLl?;E%<sg^YB;w4UD Oc-[; Af oF"ٴS_cV$NUp?%gE[vAɟ[KoȀH?En<miW˲Hj-~{F9T$p Y+01\5X鸽`4!9?r"95/~ºp b `8x4!S[W.<m/x _xǘҮ٦ zg2Z _xZifl}U85:W͡#5jW;[ehS|A벷!$)nS^p6u㌩Xe#g=5-ohvC#a^7I$nJF*rK8k'\atp jͺ4oa4 -$L8c斍<8NUy#j Ƈ.~4ME'$Sk01WY"x4+* 㺿:Kon5QJJm={!̩"1R!SI<B @B<O}Da G cN㏨c8횴^*A~Ok5LnSsoiވ\o1h0ssPT4K#N zCNOU}Mza ЉH缏[p W<%FOU|d:"[h%/1ᅭ7mdf (&Pv+Bc(>.<;ل3gzsɓ'} ؖSmܦdp b mAzxԽ]עH 9p ?[:2wA˕u,ҖGce~nhhh Mٿa|)= ӌw3s>A+ǀu엧𡒺6n8ۣ)\&[.03F76ĬY>`_άYݒ3Ynfqab{9c{2xfwΕj Ͻkܧ/u8-%4&;{- qx 1Vϝ8G'*0-&b.5o 1) {{F|sC #?m5]:{@YRdv"~Ngس2)c$O_fr mo_-jAѠײ+,IVBϊ 9 An WG>> ghßI_~P-KZpzMH%oAt%G&VCmzwX_Uf[S?Aǩ<:d/'y"՚?X* yn:O^0-!ztG+a t3Z8.ud!j$7#Ϳ6>jg]]]V~̺ ~>#W%rt_z6 ߊ`/& 63_[O ?&gY}^u좩#xߕ<5Cj-uܱu(P"}? %$WodiTx?;MMt<vXnԊ ,Ĺtoy™wGs &a=["'r}Xѱ"XJ>K/ E\,~I⴮Y_?)̦7EI]2HX:Lj2k5~Ҹ1]qq1c@N#ƺjΤmyh廣ݿO*-z0N~`yC#Epwb`?{[o[ƔWY_q Fљˡ7VVՠa"Ng?WDq Q B^QPv5%ɈE)П"x`~iڭJl[rCNU"43o!"-p<S^P͊%A-8ݷE۵cNr~7sp [d#~Ìq$#)*L u@qU:ȶ2t2<럎s?2}Aws("MobYA*vRf9uQ݁? uv|="܄H% O򺗬~^nE[=.w;WkHlLOprR_WT]ڐ[8m}<Mh7-lIT)䱻 Q8_x8Voʠ<nI럁|"$h?+++N~]"gR2/Z.p 0ͳ, "%ؿr!< 1䷛cڵB*p <t<םN7b=;n Z-3ۤsWq!ױ/rs9]=`N eva7vFs|zرǿ~hpl>j\0g'3a ^bc4{>݁Np ] 'xBъO^If >јqknR$&y%c-<mZ8c$0mI4XwҥsTR<=> #Ʃޘ,}wnO^s~djl{/cSK#_R fT'Nh )4](ڨ# N" FV#ZTW3V<z?k/ߏug1qCRm54XSpo5> $6^u:;i|8gDHLd^럁;l廣x)Zu U&hhuV1}os+=.XftrYr kݙ=Sی5ꤴk~MQ3-W)9'R6"b?뉮S+CęDϞ$lr<J\;q Vu.X䕹?4MKtIܽ:>"NgaPl>*x!78[[Kuw&ʊ,rn+@eg㫄!6;vĽNA|QA$9ch;7HXԞ7r- WG+K>0. G/as44'(Ι<xZ͝ⳎwoDU9P‚ 7|~AߎcmsߚctAt.TXi)\,~a_mh)qkih`u4ieď>Jñ;*5qSeH\KYB uHQAXڸF_t|ՈQd U;vtS\8F+>wU6o~8ƻDV 8c=χ*T~Pا'3"F4!j-ǤuNq^7 Gs_\:C祖a_iI#>ӫxxoW~@#rCc$n˯|\T@TD+#N"0ٍЪ9=fZX%m6m,;+2ZdNct5( z|#55)|rdZim*^c >}\?׆l"K;s~ͻNe霜8:7eD]x{RA-ALF9tTah% c: ?7٩_]w~^~觻h|x1byx†_}wA ,W.&ԉlzԉN|s<7~G* ޽{CG5G&lJ+-?12}ϖ1bC0>fb5wcd|ֻ1"aT~% Q:Њ#H|kBTV [%x #$} WXo\&ϯ:k9-߱>v8eh44tJv1=a1ʹ!`xKBwǍ!AE/W-8?ؤBԕ81%-}TC_|HkEn4XE " fcq}wNG/{I; Xh WVϑQaoޚp 9nY-ꀺWrT9]A<#̿qHc`_Cw]; r7tҚ VV[eNI 8;)>ϟP%wq~֋xWxDygDA? KO =D%-NB Ӻ[F]K=/`Ґ~ԇ:[+RKv|Fy`im]s.o $ND<{ǧ[ou-CTZtFnҵuGj#,YYErV?fw|iEh!:,OE/qbH@GZzrͲ.NM_S/wHPEZU{c^peKKEߊ -߻> xoRfΧ3LȬ= τ%*c(8uZ>st<Ե455ֲy / o#^s 1wQ#:X'EFEܼ)Ǎ;n5yY#҆chE %]n\7cNJhSRS=\-9FTcbc6zypG׀p /X'"\#kH д]5c sa%QNj q|~[׊obC8EMmq  Ҡ۷wG#$q_">Qc=*.Q ȟcxt>cէ6_ܢ[9ݨo*үj}Tt.ϥ( FchgJJu@yx Սʿ6bȅyS`-?}n}K/6B=w`mnk6c^>/VE ٌZޟ1Ļԇ ?~,/H!C-t&q|~do$M#yiSި{U>Q,U}8AvAu]p #/TFcp p :6jVp $P'wym[kiC>m"-7变Y=>O^9Nc5RHI5XC0Gךƙ3},{o8FŽ3(: Tx- /EaaaTj`~6ļ<{<2;tkC;^DWBԨ,1ԧj_٣#z6 [FA~cWp .swc(m"} %.Gm=IQJ(__߿X5OE3gW`" ^ [LiEV)Ah Z#x& tKlLU0h(0O-<':$(=v-pH4WmvoWu,-%7ʵ =PGDP;=yC|). 4Zm[PNiVf%+v;=SFn}^6vDZ[]}9y4|pEwAooI#?X|]& OxK6}ߌU|"ohȣV{lrJWv$88T q)w87H[_+kD#CPxxKiݶ6C 5C:{|^h[__6UIп-O08d2w jY1_6MZȜ.{Rq܇4~}6j:J:g\5ՙՖKHѯ8GtS8A5Q[?vLwD<ǩk`-7r+C^AcBE(G _eʅJe//Qpz؟$[Sަi<g&68FR| tr}n~Se/t"Ii̳χqcHkF;ٓbuvԟ<yOèoaZkc,rbn\5tvrN9F@8ƯǸcq,~I|=6Zp;~ߓ:mpɈvn6[|UFET_uY58kU) <cjۧdxid=<XegLo@?j/퉴 /./pq ; ;.\Vִ_O֚iQR[(V9F?{}91Jg{b/ 08ƨ$Y3NT]{8/g^t77Wv6O*&O"lK#qRe)v"M 1ɇl=m$5 Z]Wis˰EJu1Au sDhŎ)uzCpFԉG+PN99${ċ&׺ dC~I-˟c%a 5YA|ڙEDnguhn.qY}vvET{q|ߥqzWؔG,vHf >ߚƥ{|PcGvќbҶ1ٔz oϷ1y[Cݑvh`nݶ'O諳T&zW1cކ~;D1$C|Kv.pຼj.󉝉F" irsi,"u(PTo`y#|a֢XEgƨw}NE3G2:[6SP_2m)d@_Щ|>&X=oo<E0ů <F+sz+؊{J$^y aʛ|jCOFzsY'Fsr/Gu$/'{ y#|-O4'GkU:ЩPh:")Ul)K_յ۩Я|+ǨZW"M͕^=<k]M>Fq!X7[ l=G'[qUEDb 5-oOkS7j汊՟WxtDr˧Ӂ|үxٺ"-<*yts{; |~?j y_|W4OQ~YdGT«xWҼRȧ8`t> I|ީ/+r`x }Ygiڭi%q~ ':_Hr[8X2gw 2U/YϾGG*C0UTԦ.Z<zqccE^3bR⧌Zъ7yqY}YGڧCq=> )^y_~-hcSr"Q.r"7PX(uٽ<l78$a'T݌(eԓ&.Ј\~AW 4Zϑ@=o? ϛSfz%/r jq\JnNOjКZ])O<>Ɣ2. o,X>I̗iIFq kpM&=fZmT\qcHly{Eues6}lEg٣z.eWq 737]ɀDAo}R \݌Uay u;$o3]gxw vB#uف{LLN=-Juu] ꖍ?NÖa^NgGA*GB(=l3L[= 1q{o1@|Or92OI\){ro9IZ!m_j<aG?Zv=t@қqk7.M zDed{ub\=Gj99x{o, m8FWC8gEEG TpGu?3>\d5.^[=m;ƍ{虄LPy,p H*|8X/U%BA=h~~3`sssG1k֬2 |>7 N9ŭlo'1Gyx Es1Pmc;}NK!OLݬ҇wnjᨴϷxwiGCq /BO04C-b"6o:kgNQ)A'pވ $g6߂w[@on9B՜p<b:C_Ga}g#bK8VȢ1r4ܤ_싒=gⱐnD>Nss^(2I}KKY:,z l[32Q8^ꢯdQƥ?q1rc|u2u!)iq ~Z`uw|-H_Z3}Z$zLj)% {Y-woKSUH,qE Eҗ-_Q cxK XUec/5Ci#;\дkC\iV r/y/ cFY26RBW_xxƙ3%K> ؒO'/>;+>GfQ]u_S@>s haHLz I!1jC=CϧQ\y%$8Fms9:^]V>H,8[+Poe[Poh>:ൗ c3?EʽVxtmVy!ވcԚr71|Ó/q[DƵy$_öaS 5,W~-p "-oSj] O~<"eO !֐N FF1wQ^^RI)IGtg| 7#Q1%E I y111 aKcb8Q;~=Jv} E<p w9QeeGxhVV=gN+M# s3ϵ[E=wc>ʇ޼]UhxyPW!M@X$AHܨyb3~B1y<_CӴ#%9n1A5It)Umu)8md>?U6m/7ǘxӨE%N֟6s7ȾC"mQ]<ޑϖkS{1;ΖUHy[s[:wӗ@?I9 M9s{JlۇUF1x;l1 [F w2 7 _8.6&rao[ vKG~myJkꏯqpqٳ> p9ر#}t,;gqΙ4EԜ9x☣(BWג_17q`YbՁڡG뫂G*!]d>:Se׌@?H[>1ꯄ7n!~f?9'ĐُXE,hOT99ÍgjMYSv2ʀ;Or2ןK[% y}G[`qdRyIl5f̓m[D<J9Q][Ygč:p4sJ8lMt{H$|  0n+226~g'zk~u 铁X]}Ŀ⯈DahwjidkROt3͕%kji.ɏp )*TxslM)} xU#Be2d5u_zO\xl`XIO݃+{nY_[od)^9ĵu|H_+ Blnt<߃ltV.KVQy35ܖ[/t~$ѹ+TЫroĖ?+ZAGO~3ou|]uV0rUY-τe2&eh3`{/Rtrܼt35.;շHݲ~5]GϨ+T k>`?J6+:׎~CH:OG>n' jVd??lv>׀z?m#g\cZ8[c?+櫂GcCFJ(F EtMJ6u8Ff\7<ZXs\E{;6<[KH1y<X ȿYIp8F|RH8)qH氋o1E/ \ֈahP݌E'\O6^IL1Jț?;t_ͩr5C(o/!ߤB.Φ٭VC=~f[ yh5VF c`сBbc: 6`5 :U1boZ5'* f3QȾ ahllGhٻWkQw\3첯뺨Pf݊nK>}8IKt6n5oZ,onam9F[=C#'a i> 6܂ ܢpկ) +_hEt(x=mIF=О3w` ^0jvr¶ fQ//1_B^wב.pZKǰFeHÆU SQQ!j!$Bmyyy[ssDMܺuk'>BՒHR hvy$#;~{쬩6Z1m⋂*5kh5 !eR.x%eў=_| $)>$j}/3g(ؒmpiDG1G_(9sF A*1>0LJXL{޽{kMxn8mϿ5ac{;25.n|sΫ\[Pn[ѱ't<XcR8GvQ3oI0DsT|[YVPW? UłU[z g#3b..ċ ~NEپ]Bz-GXtg}xnwWs(Oў,=Կ SMS@X&@'{vF<7gԒo H#Oag8<pU]bY1‹C!-LUǒMNUO+eVZ$[ P-JZ8EMGf_:] sݳm!IЋ}˭q7^"HUNX/9dZh>FJJUZ< ۇYj)7HcMlm]ֻR{[zJ}<ߎ"w{޳dIl)[ s>jU!~ݗ-rЃ,EUi%A   ;;gE'z;xi巬?q0B^9j=dqիYI/Ww"%cbcT;&PuuUAGu.^2w_˛`k[պFZd8n}dHʼ>͖\z5QPzFK]ɼa>|> 9d7V9m }vfS`eUy;ïJ5˖GĠmϼj^㤛ae%&\ccdTkql9gB>8Fc9be"txƍ2"AS~ U+ /^W0Bdz\b*k H$Z8cKDb[YMʕB=L* \OfN}oV5#hj@scU(1[z$n^'8%m\Kwm7˗K{<ZΝ81̲ʕ+S boFM[O"c􊄴G`AzW8yz7󌏚~ z|tqᾷr%z.fCw>F9.)=iIآZu@+zH3X6u5߸<>A`(O7h~Mt&.O9ѢIY84cQS$k 67QOdV硎ۧ{ "k }PkHK^!V(jl24yq)fWQgtlgH柁cTWWFܘ>ݓg xŸM iҖ=OEe:t].XFQXZ} 7iRYB>6LMG= ܒMs.X8q9Gܚp<x|0y_⏯cG7+TsL? dq:U=}yN1L&-ܻmd?nH٣gL5hž"1YRSo<!eTOWfC}܆?x+}c5?]6al}vۿ`kOZcJkWrx ۑ5D~=d„b<ؕt`׈~rrx~WleIQ*ޥhr6@^]Qf䣶I|!b?9,&Cэ`V| $B]BJtG$DZGZ3.:7GN+8+~z{EyIl'~J3~oNq;J,yChٷ{G%,qow礶*ZL m8қ{ t7+X#H~ Is'w5!YԸQ.=Js?:Ȗ'ӂ~=ZJ:C={eIP:=p O8?݆{xB,*T˂c&@UX o_@R;ݴ䧪Nx?^'D.=?aTǯKYԠTnxyz}I~%_?kOCbPC Ġrn$<5,ڛm.y ΗXԁA 8rqc;Y /9P@ꀲ@Ǚk\`5 |5<\1n/  wc#G]1wxg`^1syEFfx6$ݿUOc~x~lH>6ujǎc?'=Zl| kWqE/c]&Z7:s! ?{;Ewc8r,Dž Q=jk#a_,?q нwCA*Hj <њ "= fo/7G͎:fsi;֙8kԠtRp@l|L r AeB/XexJO_fKS r") ?ݶDWXvc>⑃Oܼ^$mX#8CAڵ8iS׬;u I7_JUʬ(&! B X|QpFb2=#ֲD;PJ=%dz;B8.9ohթ4(&1q~>H֭Tc%|Z=yN 8\1s ~t']`iL\3x}l+h?ػcѬm[w-Dj$^@WoHop^Dӧ开go H_ :M[p w P,Zyjs/_5YMJ͜O~eq;缇#Izۚ22mZ\K&}Z8F+߃c0݀ctomzNm@%,י3g:l1Ӎך2 )>ϞF1v$$t%4v&ńOŵr9^>D[:A 6@o>_} K8z6{ChXQ=9W^"~78fѼy3 SbɢH^1|܂ c(ʽ!&#+kO-['O @Ёxwjߞг̠Sg !aWҫ8ٿc ~?ܯU& ć7a@+"iOH@PMy!nLUP!tCS͋*KQ"UlD'NtTkgonϏ'@ /qk_O-yfLT<EJJM;BfsM5%((OYRk-|B1C51ͬW{mG]?U?]m"RQ /cDK'|sAz_IS9 Kkv]#ϫ~*EuzE<nt1xw>ƵK{Nl>GzWcP|=%oR었A7 ?,fE}Zx+j1~qx:u,7o:`E?<d cgh4>\=բqC댌VEȣ/-sb3xփL$m1uܾI<<?w@ѝSq5؝6\%p i:EF-0vb zL0'f26Ldz#A@PDi{u~i7rlq~&j`qߕoN>Xk-7hLA2?_.0DAA uRbWp%$})/$p]jCTDkp ⟋Zuc@cN7Xk9娙 $KcSFFw hh|}Ø =wme5 =p ]AE9¿YAPi.p/.PYXiCwNxr [b+)QqE1{:Iח x79Wve3~4;z&NWc]xW`_O>ʢ&JSUЧ1u̴Z-g>>I#n\WQg!rGy+ >䳃 kDp<V^cwN<$V - _[!>=jgDO}M⇐&A/Mp{>t@G^fl#2F<}U r6VԲݮ>œ!m]eڌa, ՀgaAtJ[|B/zVM}@&*F#|6BIWǷ=k΀~<p/y -Qdؘ:{g+8ƴ y8 "^8\xǂh</jVkEGL,Urډ{k*iK?q[1h{5h~U*ܹsn㸍#Tr RJ)U͟? W;RsWO>Qd oϙH8p d ']UPTTD'3!y+ٳg}Be;// N[򐆏=P'nބ$jk[sK6nL%S8Dc8No1i?Yf{Uf%+0ecC=rYO__|U_d.8c6enܸ2E?cWȉƿI̠`N3 $ڻa'ӠM7gno ܏9ygMX}VLi<λ9m[>HDGfy;E> ȈKݥ8@BK|s;^/< D xwvړb}y3oA<onF{㞽gr|q_SwH۴-I[@(ʢ'L'x<uAW9oɅ0%׎?y5CfalS>@\'a"y >PGk4gk{;w5JulյqS8ktTWƽ<\ApҢMϖf^{kEx ꧐Na8<&Nw%_C>].m=ׁ\эnz* 힕C (s- >c+yBy#:<y ݰA>c4eq.H7"Zy~Pu({AycVrؿM]cru`O|CuocCZAI Zi -ZmAuHj8"y ^=bsH_1u}BP)*nc>wdpˏ::p깑zͪE4$z'N,l0 Q \m+{?yCDQjxxOQ3-X}?R_Pm 0^簢41 WMMc3bn1EPU>"jÇ{s Ǐo رc:><[t+  <ot?z!ϼ\kڽG*gl, T?h] Ko)㘝!CL9:Li Mb!O% @$eC#Ń9@@s^kXd[jO-biEM<!@֍\h3j*Ioڷc)㏡<>!E?koci1,&@<'o1FcwV9z@wL5+,G yO })o)nfW,pLoݲӅyyZg~c,vs ߭qp Zc)KcL<Ļ/ ~Ei Bu_@UuE5f|msV]]]^|KJJDܽ{-[%ΰ`CkvsrrK ÷p.7`[W&Lø5K܈1rwXt>J \}b0o=9JynثW7+YoY3|>!/qq:cM,O|/T,:D^ПEe{6>T!ClaE05ͧ it ;EQ#^z}-}x_G=ϊ/iBQ^iEl}!q!$puѶDӡ>doD?\Rzև"'(< ߆K%//f_tzҲmr zg4U<ԋ,e,_ t2U([ݫ\rҏϚ GE;GzX6Xv,[LXM"?6f_;{n}><ҕ5W=3d9HV1jҺm])iP}P,kĢB.ehz x*1NoBq\/u;כoOh1 /mjj.~\Rl_pAgH4؝o1eDBܴ^7XruT}5{In| %stRK+>òkˢ׿/!BZA2u%[$~㬿H«Yd?/l۟Vf-hYD}.UO?)Kг e<VVjͦu̦}[VKt:9/=LWߔcx_8_/H헔UaRwΌnU/f]ϝt* q*.x'\e+A^KQ_c)ԓ4;Rƈ8Fَ1D·Bj?wϪu!-\~ M#M+űv6'[q?@LmHa+-}DH~ߚqS1n/qB]%ku tji~MMCt&ƯEz>=s6P2hɧ2ޚn% n=p\z!ۿ5hͨ|ez<7xKKK>:c>h{.3ᱭ<=-o b ;AnAK;`OAs#,O''ܢ8-ij=S<eqsQn=LjcZaIcD48-L#Cc.Ab 2.h2H^["(F ؉9ƢvcI]|Y9Of `?B}C B("l_tY6:z.^}X7ۃ\mE}}=g˗=eѰ>|Xl2$P'o߾!g3SH'>$ o'njC4粩Cbz1|[J-p O_/Q#t ԕ:ϝ;s7*%%[ϳTnn#]=ǘ0≏dB_?NS_^Wv HbֈyiB tVļI_]lN> A?Ytvlܼ,HjCΘ9$nW?0ug%>ˣ!FE+E6mGoDGG/@5qԨQ9Sy/(u0/4="!|}^2nZM>7ȝg~n٦**VYA/;O 8(SV!uwWw75u_kk:Zh_6qTqVo/$(㉉4;פ*e[Wۙ0W_woڃS_ٺ?gz 7QxBU[W\-+*wP"kK%<C%(>6.v4-SkgO(Q7: R1%x|=i7ǀ#tUXARbs?"= q~9mY_--۱"6>Wle/A>YSgM5/m:p="p ME#97DTpG.0rT3KΙb=/hscYJ @ęּ hC{M_%"{K/\7mXɬoX`ldt])x.wTsѭ֑^<1[9tF-cs!ܟc]osBs*|rTW3!oyQ8`CEE!W/5Ek$q)<^V݁ϟ|am[GK]}9F<o/_dyPFp|I.LA܏oSdLy[d3A|5qG߀cOX]3~%y{Bi;ข/׿kV92F~#2N6V`s"_ 耎]sU;X^ƾqKmH~Wch;^jS Qӎgk ztFF#{,_'_IfP#0;Q,?A-^ B݆[?Om8F8ƲuSVa!\܄gzg3o! ccܥ̐ݿpc>@n9ݳdj'KV0efn۽, $țP#sP)lǰ{8ctܢ͛WgtK_wԞ[| 0?ӺmF?cJD]pAwz*JJD.1Vy6FGQeiI|ȇ)==DA cqܔCZ$ߥTi6.a(GoڔL1}-$H?X{%\_[RO|ŅPW :svo4:5JgL⣧"_DuGU`~e_kf1s-Z y?|R// 8l BEitzMIII?s}{#B1/3ļ+Ȓ"T+XXD+' 9Cj:J{srD!|Exn1|dpI|Wț+?Wx9,AiE &HyHefYVV߮k E?Fk1= G_};μg=d] Uj϶L\YӔzK>2Sy@ˀuk?BTfJK-G@ޜ:unK%Ē ?VҷKkVKRْg=Eo 5+O35d;(|k WוP5v'D{QCLG| _ԕ_Մw^ 󭐇2͓O>xi̘1E[:\y{CvM]9PW'~5"#D,_54ı1i؟V2kjG-l!v8 8cLn9G]?}x3t9#h7װ \yrmY{Ċ' 4saŐ_d_(v$1^,ӎ]Q[[H ;=XԣPw1ڛs<{MwKqƝr6p4~yb}݋%mZG`೼ȕo(osԆ`.rU)}B_i3Qu2K־&c^ Zƛq _&Cj薽 ~'1BȘO%N=nnqkfcɚb]1;2,WWNcg11MqWߟD>ZBT:CT#;;8^,c]67|z١ȟ l6}dZ3H݋\&4_{oBz8Ĺ0\=][(zx-i-bIU8~.?]<Yf7w>N81/APi o<FJ#zy/dwۮx;MޘMY51@5bHD4h.3k#g(),?T<x~ʢFM֭|b!"ԋw~MtI&2JQDy5Nx®]uP96+f/ uNsF'BMg 9,P޺\ytx+)̕4pV,(kg}S:ϋDbrLQTv=_׹Vg4Tu񗒾"f4 xG!C>wb}h5-ZJΌZ 8(/@&p}-_ v% HZTv*-I=C߁zZ@;AR_4n7WO1OǸg3<{:P|n3&;__ yZTЯ$yRC.*ws5xgcER/ :a%m!ϿO?O  }& ~L,NQ$n-ܥ$SCׯ#i+tbE(3C1qȌ-5!=~e VTsUuGLz-{ {=rEf e믿eUX^LLLEa{t'VU*k|@ =~!SpDwnIGQYY;f aA'Z䖃e[74"{\W( 6?<r(*w=G +( \#\}1?MzR($؟̧ ُP? 6A S ׀ U5xHcb7TPG^,Zu:K Axuq$޵,zѫ@|,,ZNϔZ>9ӏ?p=OArŨ z8VnP8 NQxG)D?/D7v[ &nI|U=Wܸ`Rzj]ܤ*Sz t@ou@Y ͽa>F;Ž_7$QJqm[[0L{w<s:RAr7}xZwnp r>D. ? ^Rcߟ[ElIc$>+uL]H-WK`sbf܌SFZខ=U1~)U7覿.l6.6[tgnP͞Z}FN>N$[_ .hOBP׸EK]կbAoM"Fđ.gFljA+cA >ȦT FElϠ{1Z1H=~DY@kŋC1nf[mr3gL\dsOMII"Ӂpl;!1׶6B-_ (5Ƿ):&ԝ,}%k$Yd*ؗыEu!lsW'6vʰ-_~=.y^1.h7io*PT[WA;cHúP׭ҲIȻ} %G3ͧ pӤy4%*/I-R\=wlZ;gt>{-P ڳ -*^3GFtTvZ(r]ԚWy&OP%oG#©ht6gNR]RvgzuVj-bd/աJ&Fy+(omtRiJT1,^㰟m]u./=" kHD,*ۻ:Nޘ|Iee'=KN^ #*b2+Ncl'+4r8+s kJ[b{ n>˨W'`uI8CHJܦ9͋3#?~vnjl#,}s> 1߅/xx‹Ԁ:|}hg+\Eg~(i3:t 7O{qCÇ%@> |}++ESht=/Rk<5:'(B9e-/#mpG z bTTOg(9%p ows.WE,*!RB^wndxN9Uz.@ۉ ífXkE6G۰g7;󀦮D$;ocRv: NSLU2S*ڸU[{bkEE"ʪU@dE Z6!Ў'jyM Vmu/5 777}C$e٫p +iQjj;M]Ǵmmr@UWӶ&!nع x[e"~}ns-lc848n[_0щc(nXu0Cj4%2n/na߮X >Ux\$6rŨ CY{9IIaLkHDᙴ+vJB;D)K _ {Ej$2@E ?0s"Ʒ=vnur>־k,$}cyykj.PpqGX%L\+'N$0wX/^u&kRJtIj2/ RN>:$(2:9_juUBNy~p].]rϜhkCC8?ԄCnj.OhTPY^>CϳBc@6N-懑GjQ~ 'Wp!TA=O$뎼kFjLxw?sa%d2$:[u+bx>Dء糷/ cMy~wXǯBa<imP)9~|BTj=^&?d3˗D&)^LٙݠΘWSM9J7h&*x}4hc 'ka\Wtb.3Q ,Mq-^*a^-rSDڛܢd&">5S<}hˣ<1~7?r*~EJsfI'6u@4)vƣP_\V0]1#F_{gxV۴BЦ|,PzQ$]"G+Ӣzn>/ !r$3Օ>-UZpvVH t p=QkYo6K*8qpG1Jlbsd1sr}d렔C)< +Aە($&R1wcЖ癑2S;hZ3z%31-C\]O#,\_ lo9{@Dg:|B0/X+FR-H tiXkBurΕGR%rb׀<q ]Ѡّ|ԗ 14.W)-a>}+|·Po!ѷsgH>ugvJ&CԨi|BGC UѾ3*(>Yqo:<a[;a=sHWRuVf<ԿA5(^7rՃhB 1>62}ǫq'9Nc8QWBcT|+ÏK|)ģsxN5RN]z/jDAsB?UXXn[.W qwqR~A nU0Wah֚ꇡ_WyYa]x5!_W_U%30\ޚ9iഠ!/|;x~CytL}Ba61*{\C!k +pFr.]ZZnF'2<kg)}cuDD+wxsIww#pK|ylʓz'cݖDॡ'ߵxyR= (vMy={]לe1|:f; %!'p[$<|/O詐t{"혟q ||1or-ASq_%7>x"{d퓟:qx6~D />%Rp #\~+~@*7FG|O]s|jf&@dYЊ/jnqўY:C=_KKDEq]͇|74 y{?NbHRѕ:ɐ{˥J'Bbhֱ,5,6>=Qg?r)q0y(Ɨ R>DFdflfbRWaF_ѓw|Eumm?:@Wlu߷b>lǺ"nנmk/|A?z7Ľ[O{_eW^Q0Џ}^ D v`bT7wgg7x-KÐr#u|sϰǾӾs3'u/ii :cbڄ_cXVQRド,̛Wg8 Ś-k_ q}O+z>_<7y*܈r/ RϕFNOft\CwT_EϪUڦuŒZ q=onx&.IuRǠGP]?DⓔtdWTЎq 25!q|:0:s ٍ8MyFPbs|cՠ{zu` g8wj zeIqJ&< .O-5&C9x ٙ]tѵ IEӨDuL2[,)H]{_oq /@}aB7_`]]OG^9E?V3tj~kR,܇etIv E*%'UHrrre2 y%h+/Vzo(ɍ;Bbfoi_:_o- nc@>LA<i~cQωMCd=?nnT_./yׇ@~Ny42d/] y4 iu4Ŷg iſWgg[H1+5uWN8714&8"5|#dۜ-Dݿ%v1# fv'0`9q ^w3#%.k%%&kJ2Ͻ^PUeo!t!zO,'&Χ<7{u52c x7K914MH5d'z|u8%~$NO(ΉrLHJ}Sdx`|yɞ#^nIk 6HeH׿^\&\cT~K΃}@斖,}xpWWe(`=w#1}I167N,s7e* n,ϲr}ovǞ?LsE 7z kk%>9Y仓;`+ykC3B?i~Pwq8uyknK?G]p!X/2>ii_!';{>8?^,R|d4s |=Q٭r51ztg= :OayWU(-r0Y.恣/LސGJ*ATUz[P(D}WRC?_O0粣F` 8])>!F#J Csu&|pP;胼*?ȻX.ԣFD|+ܹ  ]_IvJ<ohib%y23&Ä~Qw{t;|  1Aa~uJ /We7R)$]FYa7<"㙔Efq)<,FӼ<Ds%N79=pznI%2pYMzQCm:YoOɑ ;p#T1=_W"xu>>u0<Tq(BbJl8=qSXkk)LOr?9ABybT _t{|x m ג<?c^ <۷MT]-b|quш[QP׃GY<cV9Dsޞ \|ivÃzwbBnBS^n & !ϣPN 'nQ ܢhhKTc`njZ/t_ti ?+x?R4B5/ ;5| d}p|?u.2pq{}}=x_v巶%Ov!9"!~{rv eP_u\ԩg:oZ"u'<39nGuFgI=BcGp$}JԐ8=e+KhY|hnq L6䬙i :S'TV=bwߓܢTOKH1wc}˄z8.f!VN$h샮e&z;Ý.+<8˃vc =؟cl<o2 W:8ƴiƃLvwKDAʦ& ^--k,x_:u*q3nAz2X `uk^/n!:0zܧC9iXݤ#;cZu)a3S`T:CcXX MI#288G*nQ=G*LtZ>OD}oIXǸJCw}ʁb @q7WgY e>y7Nadd/퉧geJnx$Jub0ye3J\LsUðqj^@覯̤|L"h6r.;1222_8r0OV;W^DIIũu]8/:GJ!pyNku%R ue|"C^d ~GqqmFHnF8ػ(Q@RE/z6qx~C[W/nxPݙ9f+Ty/B^ŻO^/oE}s<6wZ-@֝ͮ[3oC>F~A_ucu %}{ \oz꾌h8ryԍ؜.uPuPJBZ8^ٟ'y_" ?Js9MiTj ~=fx=^) 35Hؒˊ[,xfA*nxwd2.CdMp<>^p/BӥLnjJ>Wa@K09ݮnIOI8uS*|"<s>YC%<̣-H[MYy6޳CAɛ78!}?Рv4t'W8ۦ/5<Zsj6 $%?˟9(l 8'7#jNe8nF!|Z@ ~"#8>F172"qܨiE[Y'G;װ< >;-x =~H9wQCTHw-7d&S)̎jUR|||git]~5 xB8 Og {x/&56R@r_B_~meY'x!, >+$}e{^͵s<X{Zw2kI&e"1<ݞ5yB_uUzʔ<Yem{yQ>5x#Ӈúϐf֙2Ag}6@27C 3hVL-rCJH0/}~̙g fXp+yu˷غ̵hw>~1 #|s >vl'-9FB\T,}y;[h"Ƿ5j .fOtbF0ԥl38nQ|n$߁pw -.`0%b~raDd.?-/jy{Yvԟ8ŋ?coɷ|9-χNhii~ @[Ձz,frF33d%zRޥ;ۧڲ6ך/acJ3b/9TLLJCfo͚, cb<g@m1pYO.4 cMxM5}CS_iTPVV6fDG^Xonnsb2x_sN~=phNҖ/?"AK"X-JCՕlܸ1BzΚ5tN|s opt?|'ZO _T7G3<Z/ջ?_ҘΤ)i|i Ӭɤ yFSJ -9ҺݳaWE02]*kqEx,\LJ6[@]Py~PuPWrM{6;dR Т(~a&"ѨXnZ&O\Cԯ^p&8;(n~FgCy|e;z_ˡjUHR<"u|r8oU@ <k d;{_J,c*O~ CX{GYSXS_QMf,FդFZQug/HqPp|ZhpkzG<9%ĄcHI|)x~9C 㦏K}lWqe?Rr&O<(%~R{~Nk(Jr2և1@]0qb?q@=ɾOMbծ.ovk@]@J>+73uЈkS{: 3Q |% c _Ɨgoq4ԑh}s)Y̧mw<W{r.Zsܢ_C.> &gJ rNS\4b붌a lL%7|,ץ825yǫvFzL_?s={Ju%KVO=(*5o۷zʘ9nYL1rk9Fd=|q) ^/5)Y/s( fPeeDa%G3eUΏfeu[=fS#ا}asT^{ VMCaa+~*| B(}ܢf@G3}|2}% 5 9L\̈́O?U?ulܹeST>CQGΜBI_gjơ~i1M/DhƌŻ>t|~rb;Z"31ܶ #3>jEgΜ!NO)\~c%åqF-㌈r@Mx$>l6W-TF'.y1W"=; oTL+deWKR1j}1IFep$R2~\Z4⡇U#ݫݏ""Wć8l$o}:cW~?\{*gF3xyk&֡HcɶJ\Kt$:Ym6LJWg4ڛ;tv` ٓȗ_'JB'!S$ myE1臻A3<Tn 75ULEz{6!>p4T`P9=6K)`a{pjl:wU|`y8A|<9h?oA$#@88tn^,xcb@ƀ_@KPk='!xN? Et6-Lћg]M<1>G8Wy}}bϩ-SG5id~JjPcmjG>s~{Ac>~VGbS:9)38? Qe2$5mc*ޱQ S̉cvV+^_L0ǓA|$S6Cc H2;%&Ǡod?ct\؎=S jf4eeԺ:EL* bb4gZAKuhUWU=#IQQa!VS=f<`dkTcC5z4 5\#=_QHz\17 jv|:-uhB+u36v7xEp+[stASDN3>1v?^*ۡ0KVO?k> *?EǘC1t:Hϛc$ލ.S1>]|ުJ]1wT(5-! ?7ik׻x~kF)c[{B~ÚMbccrdVW[p Wc\cOBqʬ+b=*fіW%ly>[v)[a]\i @^xukn8Xx?Aj<& ~L7$ ]Uk Oj| G0TSR@o_c4pҩUOTYQQ]PD|% ûj$Y҇6{q3Տ?8j\D廚c/TA#qk|@? _a#Y1:{0l FJ 4-Cn$GLP$\<ͷԝ9\ SiQb{?8/JKg[/X6ǃm-/t4؋UB*78r tDi8|nZ[ۿ(ɗ%ޓR!uv c:'v-#>&",w{2:z]5,{*Ay|A+K]Dyd|Oj J҇IMStvc߃Q|b8P h(#d~-'X.i_۹Siu7Qyc^PS?njRa|8{DMp<#^`_2}5(v[ƏzQ;Qj2oÿ_88F8Jigz$P1j׎gJ*%蟟egOA݅W&[3[2 73k8uk\F!S*$X/Ech# b8$eތrg>91ou]ȑ5uu5ˁ_I|ӓmy:tl藇1VA4^ c \Cx쾥F? .OQQkR1|2jEq=OU?t;V'R2D-:͂ŷ}B݌vC?v2 ׿j11s 1u8F8cb]IHt<Ƒ-;THtx3~GZ<1775H^s(v .;|~aܓp ;yCԄ[<aVg_!?t]-m+6Ŀ&w@~hbv0w0 l6[n*euj8/,C>ԃry?~ߐ3% RW@'KEy<ȷ3Ei7dT ю>\Cz-hf ;L[v~A7`t!-RH}asNG>ٳgL0ӬV%y.O?h 2Ϸ[C$<_x܆ !$F/aƓcWkoc8y_2$3TWE?;BUe⭝:N2C6)1ko:>|iT= &kH4+~D f?iW+XEj1>GMSQȏ JR/y&'\J.8аy !yFEO!|!|[P xf~᡻NAAzv|g[_hQ9u=9΀P<>67ܗeLT_y 7?+ocd-]v1=ѷ'!CK{m )XŃrG"i+]'(O ckdɜn\*FQV1$5OVh`Gu/f@2܇6P7ѸgQ18e/yWkHX{d$TW}9 4yFzm; 60<2y4,O?YL)U%R7R Y{גŇ?z8(N'x83wv[vǿ챿%*Ca㈗>펎! _vmwwrƱ 1.)AFKKk(sB?Ơ75Aoȋ2GGiZ=pv w~ΝO_/]YƯ}3ԀO?}O a?ĀM^nA#Sߓ.jԕPU{u6X3\&!9p=2}_q`|&,F PG+8Ʈs[bUg\dBIH? 4mH^<@o 儤2䬝< |KaOs46nsah[H[xwm_03zւ<K(3^g9V]quƗ5<Q-q?n2 u*r }q +hL'v#$^שSU%C$61qZB"kGc4%!^YWo-z|VK~;F,y'(?=m'?j4y@k$_ )›dN\1Y9YW0.y1H,:N$m BoݹC<) ۰M/?ׁȑ}I|{/bZuu| 39qkz"vWssŵA״"~> u!J?<1.<qq<KpKN{o#G⻽AAjP!O<<+WiOWٴTu?iDŽiO#!݄[(gt5\34*5zyPe+/6:VO"fpPs=sw8z </ O]٥'aP˨r^O\g0c/2\lcp:G_4j~08յt9Z1m{zăxQ#}2IGΚz_C9/XlKj?s_Y׵r<~cMy n5?`c2 } Gr:*"'ٞz{IC)nFVakL`#:>Yٹ &L&\c!5׀9: U_GUBZHӮ,{SBQ[x {ؓr\դd Aip\/çF71ӀcNcYG67j2a]o Q G{\DD:~|]^1=}x(kM;"uF3|Cf6WY M]߅7ѐ]F<<ǀ h]OEB*5=e>@b,C 1Gu:϶/<79Fw_׵iL(џg(ǰ]uT[k&+A|xgEl{NLqW#-ujvcz<L]bFu"s4&TJE8^7Z/>Q#\['ז 7R/T]Ǭ,AIyO{Ok'1EǷ-Pϧ+q Phjn>+ Ɉ"maoBxTM@PwqEk-m'mpZI&}3<wUsꯈ Oaon ؔݧk/G>5oq4@Y;p=[Ϻq\xR1J a!yp|Sid{_}Qyw}}1:z*[1x]zy:g2 yLz~n:4br7Mhr.>7yՀǗƤz^v~gPr>yhT?`ofJNl→c1NB3/BT]t2f$*v\p*ޗ:Z#FcB̍cI_q`6 Shqgc|Z 1E7k*pF'\#gņB!Qmсg–y_~?nc9ƝEE.GGu7pd?殷U*+hk|p;. '\#tG_yg"oTY.}D:+yTeϛ(<p"=?JLYxЖ>͒ U5p8 \ĚEN֣l^| A/kk<L"uQ(P)|N |aHoX!Q\ѵg=n K: ( %qp+e2L5Spn uek*cy/']<kߙ7IdQ j5d|1 ~1_4Ũ<_j--4_ƶ|Tqyō0S<<:UK3n8ߟc(HvGcŅ~'sЍ%̇- /sђ| j`Aw4>靕S]|+ H,%;w&1a驤펽\j.:.g+jC@_?%v\EMd뾖[:_xf] o1S7{A? %q׆_ x9 [\!/l!>b5|_8͞<v5u Hk8VCW'hr;}‘N'"dlUQޗfsS~]„Յe/(`\wɩ{P^_!yٌ(ҟ7BaPuP>fy/z^)ʮ[2O!novoqHjLEl}iiIAlw PU9`µ7 'ձo okySЏ$yY}.mVgh(:s,ٽeԁX??s sװ/;<-2Lk B&1F|}s:4+5Tš;Ƚbr_3hQk8!(b%Jl D ˯XbU8#yY%[812(>+9m^E_|Ӗ-47>1벬 kN<7f9;!_ZuLuhV+/lv VOv:pX!CՇXBAs'-x-!v?=>^nư4mkL`*]91TQ%Zo8o9F]Lj'i?>8wTj,Z5IkӉv&p׻[{1B>syp]E ERN#dĿ[ $o&cl۩SA;<wmϻpF<ߵ14c~%g(R55E+܍y2|^?Ay"GP=6M>J3laH_16r {ߗoY\Tp#dz>Յ#3:EH|Q俱8:1*ԁg(eFHXqsf\s Lr?ZTr|* .7 %/XDO<7Rj`{R)N59%Mkl7~a: 4T(rH$P$ ڬ<ߢaب` -D<73I#o1f9ey/K*<Eݹ<Y>ykM=>ɜXȵoxi \1 }| ~WA \-#Ep %1ke|QbJ1mu5v I|z^\o<z}uPuP&հ%.x^9%O@\QmUM|B[Dԭ_8a]Vm.ҳx"J#y q\w y>x>]N[DFD:-e!\ÓmH}b$뙪cI2=c/zQ*9ݤt[|FN_3l:-zo]KkOwM՟c6 u0M'~+9;jokMGe휂đMG{%Gx}&wCAA#<cy3c^^h"O(c썎T4~+~*$NitR|o$R""smY!(Fh)Wmq<y"*ԔZ p!1o?hii⸛p+H1}#NЧ--]Oև{ O~ Պ|s7>nѓ/ܓ/oH_;0j{:~Où_+k׊_z0K 8kvJ.ď6N{eTUgeH*}8 MGn#| Q}}m _=O=wF#[ S^S/kK$C?Lsu)H__QP7O=m]VVY*g88k: K%ڴڌTO)Я!gNm>O0qmΛ:'&^ؼy<R9r{a0ALFtGwϥ/mqQ1q~t-h?JwQ[< q$ +'p^,ǸF#x4?^Y^I󗮊~U"\Ì,;&XO/Ft-m5qOk"?l0^r ܇ #[Łūv</P{mJ$$X.¢gFz4[kjfSY^ʱor (]q6[<x^[?8fNWŚM|)ฌy;Z˧||$7~&PbOl'}KNmPUؗgA\Wƚg'O 9&~&uRyViGy>ZL_^)ǻKݹxw?^^ω_b=FyG$ȞqEYiTuR; wCaT]uPuP7(ũy,pEZ* 8A!ܢ q]{ҺݳQl|ޮRj?u/G躎O!?v:;8FW :+()*ξ7e43NuI=4̿ur<DFy=s=ge{% @c,zoJ^JN1Z@l:\_5\q 5b{99F*^W@y \K:+My5SlT'̠>HuІO9U%sBQ[75QYV]x6r 87q|_Qoyr>~* 1ֻcZ _"+Q4 LًFz= C<F<ɚu!i5͢RN ,@VJ:x'&i.v!jDgkʡ?ըcbLj o"yZ̊gmHjC_VVrl$3gb̧<T@DQo]p1 NQf@ՔɐvyRi!HήyRpooNNTێ̹#Q]8K9k7C.~݌߷*dOů>œ D8͏TʀE  hCr;A]FA!w?< z ԟ1x_r1gZ-_3@5>F>VLOպ-THa>/2(cvKQea.ː _{z{H87"^}^l%[ ޚ%0Og- BILqgH,doO= {c;CM,;^[lNd  C[[Ɵe-HƒHr_bVUv6KQd$U! dYȟ~!CПX)9Ƣst; }DSQj!JUx:֕ѳKq<?i[2@ſD7(׻7j(E^=OWnx b n7-UAZD=֓ĭGw7ro3݄ 7#Arݤ`ǼgOMw< mo!?r$=+yq&iaGɉȵ?`Myxux:+cאznn%S"؟CgCQkkV| =s|^ŃG늙;%,d2ʎ_×䊔Bvm=ɾ3z(hvbˮj-Y1+@ ]WCܷE8Fc@~/w>1Ħ\5 ]ϲx}V < ԏg9F]e yT/_ '?ͪ|`;!}eKLnLV(*SggVo1"uuk^=>?fAa|ttmdl[/i)Z5+2v̇7{Ӊc\a~)z,>Aūq ўK>IUJv~TL2|6P&ENn8졳{mtk^$3e~N&syKjG,\]׎=_O5^n!6V8qfl m<|p/<O r3-PQB9jSm=uT.H3* %XIԫ[J-_ccU8w]jtB2ٱ;C>ߝ+Z[&y,O&PJn޽U5pu{?yъ+R&}ƍw?<5{- awgs0:_*+IT$'% (<ctLj*矁?Nkux0Md0l:{]O~][0*=I< mU_<7]j~?ioz Ȼ,O &bX꧇ij5by/4 x]7qV@+7k@^v{x}PuPuPQc#rt|)wí֡.K./ zSfhQﯣOS\~P't7$s}ms>| 8؟:'(K}YYAsXerڐ?HhTS?5Q51$/z깍u% e'</wq)\\C5LI5[O `"?)6zğ))T5Z"QHJ?~cw%+*CrEBǨlM[_-֓;NПc GηCb=\rFeohQ֫''~y[e|*8wÿ:z8)L#܂- s!Cv__¨,>wuEcu_ 3 t{ff*U١Y͌m;R32wߋjљc#UB`?1օ&gW&Fnf!~>h%kN u'ۨEOܬ #?\-ѩ+/`po.ugf#<`<LF#kvx%TE&ْ L}"X8BInt/4WiW:pQlZ2C) 7o~_9^>Oˁ_YZ>5+[|~5MIU'kJc3{1?ϧשfC)OrBSeZkTz5(F1Rd2urz.?888Kx>]GS(Aܑ C SPWUW^WRNJzIZ]]=kx0ihAq>޿qkؿ4`]%ngDO~!jkMf/v!aEI}gzEg뒦-G5['U{Z*猟?j!mA.1LzAAAI"1 /D5&u\:>PAik)S"67ND6~:mBn7 )'X6a~Z[tN^||y哐*g_- g=ӟ Ċ<:,xm8N_t_шnzn;sH(סݾy5W h^(8$SH=~| $\^J5ڹA騬oHk|rQ.vV~̣Jnpr_O덺U- kVaj*iT5š<[zN N2늋him~$GrEe:=`](CfxC4zį8Nk\s`>}h~[PtB7 zO yti{4ٰ_bg&l8ga*_1׻Kxhya@waCY>2i%VL.\=F%Yޟ(ɗ;^AR;l"1>5S|pK11ӒGAūQL\D!1hRe,^gɷy~7X*Tnq g_ YZ/Hr 3:e_0[#(r>c3R~54K1ԽQ2r{kZ+7ֿۚ4Nm^5k㡯 Qre,C ƃ(ض?ziKw71 u"[n?/RK6}|T;-Czl{9oСC]]{.bam~:29:JI94ɢrG34%%EQONLZ}nj|f{7cU?:.àR$z0v-1k?+v;CTO ,ؒ<╈?P /gIsx]kq}o_*H "qw{y~J7"JqFxB]cY· Z0a, ?/Գi,|M1i|XO  7"ќ~@@^7޹DQdGDvƵss-xdӱ::vVd4/"bxA=*(V \,2A-Xt]kq<3iofwvvvgv>5~g^/Pfbx~bZp\޶E_z}}+ϨԐnŸv# fQ-BCte\CS|dG)_r $ h!To~YwFzqy/;P#}S}կ$}ʇ. B%rUq΀xdpvUaqIJUJ y+F3rqza&1n^>w7cu9[N:D=9ړG.1,Xq{okC {+zPh~qϘx! g | [htz3ƛy Tga-%9;,yΘ{8LNg/q@psRc,)#nFu x{B7Mp2<ukgwg[CKFfré>'`[{n&~B?nf+<"j3ڧ!ee"~㛾})!f9Hm)9>C^)|+A&.Tuy-֧#Jbڒ!t'}L:jq9s<dg8\7p:kr K)ɋXm:DyV"wh@ąc~V8 ! _oAa#ߔZ\_e9ӝpϯ"`&0e $7֐0r=ŲSWg@V ۷oHQ VWmߞV#^wstw7+.s >X{1o~GހʓG%n<eJ.}|*nj:e,s|ψ{}Ѝ) 6}a;oCszի^ꍫET};= ]MbPRKXA A-b}ykzl 9qseg]Rȡ/Ԑﷸ\vK#8Zz7$!ƥkg(^hLQ/R@8u+w4EA1^jn8ԣfo&O歖|59Bs;$~hC;+T%?F.˿2ԍ3J~^c庒!d=S?G>εI 'ض>r=}`v( U3篥,?8yG]di`UO@ϊ#񲶲Rף8KwW5RwGrC[0e\1RH׿`rZvQaS ~?ʟ1]7c_ i#ʿ7pP 'ocx4aXYz46Zv'T._~:n'XZn%Ԑp394r=깛189T~p/z|B#g P-{ ]UYD{_;*>[!j%`ϒF)go(d 5#@(q Ww>b12rTg`۹[^q T)qEr*rֈnnŐS6b}п5f hbzC:qRqx*q9~S k/Osd Wӑ$1BnRY=Ցc>sӖ`yy ^<ڤ%R~qvybxR_XSI:w,,?ї{'}z-q? /.N`>q|' o<yr_rvϹsq<{}w 6Dp]V{ e,q7Y1HZH}H)^ n:Hr6@c߰R\XE< W$^= Kǹ~Tx|O</[}A(ozի^/EV!=⸤a׵J4r _}96ő7V݈en4ZVS,U ;6~a+6`?^ +``gy c m+P8N-=+a|׎Ò7>f,;pKz?kT,q]&D]'x{h\g\㻱FʢI&ˡk£JIPᠩrZ77OL'9?vmNa3ːI:pok)&8Kψqku>%qTOzd/)7^'Q]et5r_ms$wZ/CZC\M[+J~;g[ H1??a1%Q~1 #JZ$=,g1!LiI.G\97c|(s G 7W1WROJ]'1Pc/PSS&振Q؇G}"*w#//uLV>vih C<ǧ.~1mG$nA^W|Pkyc̲h[j;mM /M卫D@1nii~  ._q^u1FDl&AqyA˛{KS Q&0ѽ="2 }XNd)^CG-خE-G+Q`4ĦeQ8)D.qO6d.ifOϞpOoA`Kuԗr*nd8Exp񺑟DAU~Ek懬lE;rE NMc`<! gp<Uv;!v$o@6O8FpYiPi.9%Xm`{?N) />wx#_T| T r5(S#sҶ B1/6NG>'~57Ux[9{Lx=׫Ÿ.zwjzի^/ OZ gj=<SpTIY+(wP _~4`?A[ #.W8ε{~) ˢ@h~TRF/t઻*|.a|2?g@7jYA]'U\r*ӖqѲ.]WJ)rvu%yzK>FYA [ԋ!~Uh S GҖ ŸEo )~v4TDts Wnc81s;Ν ԕ@NVѣ+n6Xu=Jeu+hjj#vGj_JC^,[KV+ Kz8 1y9FGX!;).ߥr`\m-6 8D"g U d/6?bMReGnEM(]Z;ȭ6LN_p \-t-o-.b 7NT`[4,/f-> v ~Ûy=oK;^F}_ mB]S ~Vq qUL͐DRxEnbd""WYdzVx SvSTO5_e |xn{~RHu86\q\Gj /jZC<0-Ma:&N\S篙 SxO ѳkzL`/۵=K zQ_rd{ݨju,+goX}3Vms*YB| i8);ԭ:!;`\*7in989#5X"Hu$n3:~mnxQ ;zn^H?oI>P^؅yD?888| Ƈ;WU~F0NybqJ(hdl_ܜ_ r&3:o~)Ɇ!Mh2f!Ep\1"" ް8N~+9A¨;bMzhPk}Y=hheGFY"A밎tjJI-IⰞ7c=I^'џ9 G&X“BevQ7}@9xx-Ui*sW+ ox_m.F3:l둽þY^0ܙ8ϼ1c2JB?cy9F)N_ͦ1:}"`43.7cG6X-} C tޅPc1n h91侫N8uRr#ƋJ_Sx+Em\Z;cs-vxLzUu%f~v@w7zGN))hPyq^</^#`ކܑ{x8w澋דo-T\Z.bP8YKFAS\t8^7)n[(͘gx<Fx]11?:a\{^'~іVvNњ1xWpW{~-y>4y/f(-*c#%~Iea[ND~̽+sPN}JODEEEY1xǸnP\u3aJMۙh |@/y'LSƅ~} <^WpMkkέ’?WҎi[sA4zLۚwshΒN);JK__qD$Ջ}}Il}/HCm/>&YeC:isu$ZDAND .qfgF5q'Y- f侀,&fM:K3FkҔN5P3UvI@,TaUzի^TV.ײ"Z?N=_[5'皛<+qa|ʟ㍆99&8jBg]F8EQ`)k.5_d<W3Gnk9u Q,h.Of6Jr!Rj'τhٿu[y/<ó\id请/$Kw}mDa %Vq 2ט/q m<r똯ѾdHcݏq ]?bԉTL :|^ݛf&==1855\ Xjd$PFC/cy CZ$ӱa\O>.s*b]M'Wo))1<4NcWLg\/(}f.zn\hO(C"Dp#֝ڒCB/_A`G;n Vż|~5m25|ؔnh`۞}Y5Q}<o9Y)b޼f⇨U(/\1֣ N<#^GM!ܱ#Y労 %)pQW߯)uP>hAǹߐMTOGSCuc ZS:c8=굧Nvq,G\z&WKƌ~ P gOc5樨XJ;ΫOvbB?`5:> !YɹaO$<s,cBMs.9ս fl\93=YYU$f%n38n0MaMtá!X/;aa.8sKGhd#R+>?-qx=?T5TZP(-/̔SSzyseCڭZޣkO wJ~/ㅾt.k%UC;] ,{ի^WZbtnJ!~D|p2^kp=a@Cf{M p\V(q˕ werF y=@XxɆ!3}TYJ=Έn:H#wB`qz U <r n~!3BE4 3(}0Z?_k(Pr}1loHK3yX I<kXg9s%r R|{h,5L=9XeXB5WXk"(~70F%,nj?/0`4ާr=2믿~7J7gffw޾}/+}J9ocNup _ԟ18QW;ewg1rьO8x鄖_ǠOdO;M}?Kn V ܼAT,ZE`̢Ґ[=5h.QF>~~b;1Q=`-֝Ji4,6@,+߲jԓUϱ9-H2Wη8N$$n1Ra$?L qH.XǡhF)tr}#ϗyW̓35z^מc̸Q1jnWg$A#ƍJM:)>ϚLKu+@f}ߦ L=Kz]6ftMnb qW7%vΑ[W dCc8,2ϪG0>ᣵ 9n&p]zMl6"()o|Ƣ G597Ǒ y2hՊ?3lZn#,.焷ӖX>1Bxc CyRYa'Tߤ3/-6G'lGhJ"+3 q)y23z)jwqaA {R}1{A|őE{ߧbѠzMhW/ {ի^Wz3U(^z> u;mu/E~!$$yw[y%Ի\5:jC~! R <L_/k$6WBwJ6 _)aVTOWuAa ¡0yƟ߅Jf ŝkHk㕓u&eK5vXp- a/>84֓ݴ9 I?+, Οɧb羅#ǰmXs>׈Zc]N܏3O#qz]e߾}LQ4/mۓ6N+֦V ]%ayB,H5Ʈ@%]MjM@eل.ΗS-*/O\\vs/sANepfc9I? r eOw- ao?09?71ޞ|`T/B}cWGi|bkToã+(NCH?i%u<K\V=hyQ "؏Gg#[$[D̒?z辪~l#rv܂OL8,Xv?gҒX̧7..85}:r'74sC/NW$~ޚާrkbAc->!J5(~ľm[7vow#b(\?:nIU^BɞTBG7k#AG%b1ѻҙg2u7sҶ_W^9&h!'MzV[iѪ"L'EZn=IssXmm-:D'<&R8 0rԩ%{D-01rڂ?eo cCn.jyPٙqHMqWqDEΝJFqeurPv27J;WtHzի^WD>2b.(KĈ0+GNm"Iy6g azxbEe? (*{zV^x#i/?C␛>2V\ǥ< /z}z`^ȟ>"TbޤYϘ ɰ?#wMGG .ڴ)οg8afXi W4B=cydc'nNҍs gB{L1ťK2' 1()ɠF.^mHKK01tIIeb\O2HHX5UM1 }撄XdKJ17osC8큪\T:K1 N'пcm CJcSacWЗ *'N`wiRef/}b#[ G0KJƀ[+ãP` >rR͟u2x2}]k[J|cgҗƛϱ [Y|q{Rrrm I|n(iX5c_.Օ#.ԏ8F˵9Ɣ) w4I/s 4COO#̛7ilG~Q3nb´9{sr K3$W5'lt|99RP ‡׷Wc߿b}0. xP' K^078!n"{F?rn.K'7exi$T&MC}QԩcIx@-co; h&Օ8;>^I}Vu$Ը5Ʌpu|>~ƲKio_zbRk CzOhԷY H53!**jGlRܡYK u#4nwhNC[ 󇼖9_0ABDh'/ZϯJEݯ9*iw[5PWOimyrڕEߓe -_72C| tޏuzի^W+~8AAzU( ؉Mfl6 G)lބMK8-7 e"ű3HR^%/\_I|Xۀb5e5émoMV-gl#0cUdjgPY2a!~)UR-h"e!-12#k~Ygۗ`qz:?KNO,N&Tԣ//D~%511݇e&:!tAķB5ʼnȉ 7Z6uby555+(X$A|K6iIŲ=>β+ Ywpcl>X1)>K qehwH&dD(p*ӑcHN9G̬BE <oEz`;Wx%>usżycrvyc%G\c[\\7{".nq1쇢}111r^ǃ A.7zJ1xcJW,?Ua.ҧ"oוJ͘]ûv:@)ߟ`zwbg;f ;WUẒ) ?[dE)}LQ|vhs#{r)7˼bxȩN},erBJy?;ZjD#<M-yp1Xg8 HNj} CjwaC)7fb|kDTD y@6߃_WڿP{(N&;X, |xgSDN<ftwR9k)~Hz6Xa qjj)W8.ȭE%^_*K.+.+%- =]\Qsgzի^Wzi~!`0}'γCL,3Cωj̭DlDCUܻxqQ2lUJu 񽆄9R?Yd| ␸ɆMVK2Ҳeoq֡:BkY+ёc4k dON["Ǔxrsb!pz7GaswҴAf{3s$-t'@jy9f:R(GOc37j?NVX% kLAǫmŸLni}Hk ƌWٌ2ט`KX(+XWw}L^8m!}5<UD5n^ Ǚ7/[֥KݯQ!r(Ǹcs'6#/qrQUq1H{#p Yc˳  )O9l.<pTS<ygFnQ)s R[D};^A]d? A[x/pQVF>essg|47g|I ,I Sc'E65v:] ܫ}ISb4ק?̼1~f/˞f|xq KZ9^%Wr+8Ơɑ |2^3.`3yhϾ8$OIy}*xo #@~{zpzf֋Xvɬ o4#b?Y=wЈg9.l+^b"ScQ9Eym/ \xQ=lgCk>k7U<VQD;Z]) /ߑPؗ8h2gNV?vѬZ@?i+hz^''˲:679Sgy&qeUUtϥ3ߌ:7o}ʿꔸSkq!B|R#/J!)?cڸŏc^؝ozի^Wz4՞VC=O:LmWL  j$Iyqq;6[8.Ur/>^|} GAP -gh쇂}ҩ\EC8^R(=>!תe_gɃЫ]..CAH!=9Wcc@KyaDY[Əe(ݾO.wͯ^5x~~Z2woyqR*5k+?GU1yE{!9uMʳ_yP| _TYd!uNkk{/-5y݌q?r 2|>hjjS/ryOj4HVI8Vۯn/+^Y ]eק8}e۷1 P#|riM}cԕmӚ!\1:]H<ޒ-2pK̦9Fn- jθE?[<5yrFqw VS}ߵqCGBZ' E>i㩣sƾ]D5 Im`˄8qXbS@+pcpP k6sK߮R8 z( 3X2ðБ} x8R\I`h C(e&ڸO>F<[PꄙÇeJ&<?իgdnUMFԘ0^GMIq3wb3gNz|T52<F*l3uerB.Q<~t<>G/Ǫ-@l7Es+Xߋྞl xHdݙ P"4KIP¤ˣrE}0r KV_A^K33Nj3Z vWkxfs%p bݩD\I,;Myd?ktT Rt\h[*t)~?xrc ҫ^W_BK9R-a|O^)|I~q} 'Cn?X,|IVŏ%! €b88F"V(*7uZ|nf0c;z'p"G>XCNJq EΕHEA5֏D}+/kǷ/ˊM;z1(9Fü]}l\#ב_rSH!n8`K AђU芠hk{qkv+*Wp Q/luuLYXC;?NE'~8cu{u<r}7 h͛GY6GG^Z]ɶc|[vcr-${꺒qS}>(7rNFpBY<2 ot?9ޞL{)0Gn1{_LqZ܇t[XY0=U- jrEr8oOgjZ$k3IF81~q1!l!1cD+P6lʙsy DK^aZX9w7k釈^w\p * @Q=-mSx_kG}%8].h(vd ݶrauj1μR֨{3rO'r @ttc&ϭYr :7[g:/<\l~:yM ! p8RZZ2őreBChFT>hs/&^6~t7۸t6Iӟ$=9vx} >#q99rV䃎p{g}B)F-._Tz̉Ë KYؒ/8/ٚaN'^Wi5j8?y5}K,rQt9,@U"KN5dݪC&r49Nt'Uzի^z$LcFahO0Gvqg+Eg"i^ 1_cI}ª =LWpQˀ#V+q?0aNb^BtI:8Wj|qqIsl->rX9Uuq7ؑNOR3JFOEPhzy@/cIH/s+8r(Y!4r>zRfVHfq+>?ӷ\Q1ޔ/jdnc6A۷ƹuQGʑ0BܟMsѐ~9{eQOrB+۪<R鼌c?WѸ??y͵Օ֮qڟ1H 47% *6QysBFG ^:`#g?%;yC- Z28 (-̫}#<yKiA`ŎipPk -[I\-z9uc<Gi%c:0sBpsKdmZvIkfbޘ!!X%|). WZg@FsznixS<ߩ /D5qysCщ8_?,}'F[q\}mfZ]0pęӧ%G,GUzq g{dɡ|ڤځ/H}$S}*f3x-JR؋ƾP_*d}5jOrwG(wb7~Ap>~Hx>OY <<v̳Ņ`u{߉khy1j栾HU?B }7c_bm̗J_O0!(}5&S:rO(7Uzի^Z`8YӳٳsmII[f_( U4lRJ}R$."e-&J)ϛ[t JAC V>@C?kSs/X,9!^o^(0pZo.R|2S0P:=Ib\WQf|D]0O`*OJaҽIK#75N_3EދxkUIڠ:>O1VnMj.Gj|jmC,}`\+сB~,]O1#N9vuR]W׍vߑ_*QCp*rMkq|Myr.jSE#iL91}]?Pl'C}t쳺ƭ1+\Qqpu&}/|XTqaE-Dnvt +j,Ue>N2wrU9Fޝ1m=T}U&z&cYA>\uj>*#Ey );<O ՋpmzRklcY="lK~~5]U:N-uվ'ԕHw9^X[[km:GyE/0_7m߶f<&݀hDP[lg# ǓPO(_谔 8dW" s23V8Qw\6↹F"ו>x`_U tUz?XiP{:6V%w8l.<5&Bѷ;WUzV&j25 Dmc&**E=>pKNA!ZOin9 אKF~>a3hxW-qץlpA=:k n}S|9(R\b:IeLhD.#Ƃ/SX%NDG#T󞾬_/ g͆u!-tʐM)&,1ވ53Ww˼8_J7 ,G VϜ9#8"1Ɩ˹ bGEtxg4 ?Z*+뵦(gAw1sm>p9C}<pDJpQ?_%oLqV#DoM Yr|&?|Y>F!cbׅ#׀ ߤC1tzboH~D~vdt_VyoIcS|MruWvY7` ,CXʷ~_sq S+09|T,rI͇Jq_7:hG~12"\|Wx;rzZ<?>۬!?ncڵx±<g<,-s>z+8,j'||B \qUMMjkk?Iy =T?=a=f}}+ؿ)o[z,ڶq8\km.;};]1Ӆ>s|yܭ? 4+$EIc3w=j՟:51XuWrN!5q2V\t֢O0,*[V.Ъm8Yvt]%6XqƛQ7S{ra _&r zի^W̵S&Iq.q1ס ! pGAa%Xyc%ߍe8ox_l <u8#}Tx^S?8F}vU_MGEx~Imbr'd}BY,-R13r+vź5qwrT?HJ ۸Fn*5#ǐ}<u_xtSU[Gw^qtZO~1u!j?ec#r/ 9sFꂑklrsy]*Kq4)jqKwGG|gx]A4|-r )><$1%&P[ HOL$@҅ .NnE]-CF*ޔEpҼĉ|fO:ed[%.0`a҆83/H4,Hh6ӼԗFc;c'}'q~)E8:Z1؂yc=Rmt$Fq=ox3C>/;[OWpRs &?E/GOX<2Dϋϫ #vmX`dz'Y⚜VgH8P;h/lO"cq#t8Fc\1-HJչEVrI7%bh77j԰ON&*xhJ=tyFf7 (u2-@ΖWG3P[e&UJTw֮*&(#<˓D`K;| ~sqF[TkU58 G7!VG_IH߭𱬯Ӈou%ʾ(7%hz.|y7uH" !9)TO\t}㻏KOoZe>wv;bq/N!ODާFض:*Qޝk)UuDcd9N:u@:q1R]UZ!wj8LeyUFd?J)i!|Jv@eʹ5[$lNzFAFLk\ë^W#aR<tiG+(JND)pM V#$>}9Z G'¾*s&*ႜɆMCJL'N5qВ`߿[v?Ukfb-*jگwX4co(q6_e |)ou^߻ːy!U\Zzw'8}+;ZlúNQ Qbyao.Ab's Zg|?qsE|篎իXmS)kHq:iu - o>$P@,<ߊRx}9M]ќ4yY˖*b$n1icyK^F>urԂQy8u@·ô^RTJx q>>Y8Ta4yP%򙬄!}Lb#ve6~7"WpZ_B喑M3yM~%Asfx̳YypCY4|9aAxrj֯#1*I`ƫ:meF[d,_ٕ_cujޣi+hͳPQD.ƻva 8އAGV<oz89c 6*ߋu$W#=)_1/Zj1)wx?u <6:!^7?Z~kah,ԯ:8F֍pnUwxV/Nh/߭ɉ+f_vqܴHYqP?ebZ8^:ΝpA|dnA88sB h{Ktjkd&{'\kx|@ q0J!*_u?uXID2q 7!1r Њ{_ ~煮_ /)t믪Gf{A<O<RGvF##]$·Fq4aU~BT= LCڿS⍸ Tr-|ǏCqld#-VO@tX* ƟZAGqtBÓp|r zի^WCV.gsPËs>/}}4ܾ*Ee&ɏΧ{^u-JIγ5KQح_ /P)((ӿ(AWO[?,~{~YG<iq 0$Q$|:)%yIre_ "+}9B~dzw+u>Fka}u xؽL }# qPΜc@cu8BZSW`sNg׀5ֻ5l5 o| e+80?A^ME p6Ltp&66b% RvmHi{[ gDWp Gը ;T6<c*y.Û%+yROՓS/kNYGȚ'{=\($>,gqYk.[;$!e>;hg>|o:cu;Ax )=L1pO}`7o{SoXxtB WHu+]D;!*஻ uTs|"~]:E^b#$:vh_}?OZj6O4'qfp!Hp8n'S1-zTz-P<8ϕ8e<Kx @IIK s@c_TG0Y~!m.a5|=䅯1ٺ'#\#iu.uoRmGkvb&|HӦ]\:1Jpr[ոjf7-(S- 3i[Z,V? Bi@-'_/Um[ڗIOQ`KÙ@L&J!QIu1w|}t\Oa"\yЕc56-dKvqW-L;28,@_{L}~Z S&a\a6T?MZ%HqJ#RCjq~F=uTZxȀ%o۬H&~ho_`S"q tB.jO ?NWUzN#d)4@Fo/Z4Sr+mjOe ]D VM(HOT>eM g^{r%Uρi/}nO<yCz+G徧tse~T][dOZ"彷9W]?wŸt)q/_|B2ѴЖlb5;hWrEF1Hu#kHik2x~Fٜj`ܖ rӟdY={xVwĉaJ{M4+q\= V5/ lU1q/к Koؙ:-fRE$g<:(O5{j -FԉdK"zxHe[>F-箜%<+=/h|&,O}C<bTlZwL%'>Ҫd`|Y\$tc8jԍ ~r0\?cgȼ63nx܏^\ןL1<t_^CF,Ǽ[_l[Y;j`xo^>/1nɱXq*AG2 <ܘtt8}WD*bR _|3A:ϥ ҹ?x| Ohj=oj>^x%5&{ S~N |$n~= /NNvslJ 63D՟!Q]wJZ"tCm ܊M.Qh) -.[Mi/ 6̤((,oïL&9>FGq͹x?9;ӄkN{q<Guj4e}uℊ}u(\n: ee13_n1TU0/ y|Ϝn3,S[sdI.wpO{Q\o]ŠV E_Oy4v yQ 8[䗯ոOgRJkq-k%SO1 ;&N5<AM:O~s63J%\\I~߳H+]~Gteni] :Vx`:-ےrMkx5~헐kٖ6W70! iHCҐ<izmTN'YÎ9FW[sx9%7I- n#2-%2!0^QWJk X!Pmoyų˯s n>Q׏~? ԱdG@AP;-샡5? \#V C 54#r-Z =SUQ1eYu#ZzFlsf65)9TtԞ,cX*q B-.clO& =u%}|PW>z8Ɩ)k[?j8xAУipM߿?g mcЖ{F{<WrMio |鿦l||-+#:*Y0yݺ/>NrokPgݛtЅ֕d\ (ڄyy9w/?wX?z oq!N{]6QL2c[@MF(uLes_{Z,ꒇ5۹`^( ].÷ͶU+PT2Ba pj}۪qhQ5g&vAݏ]Q4[U{ ;.Sn~grt?k`%j D'L(:C>ۻ,vObaq̲8o8w2,lm[_gҟ>ezT˝J$וH|C'NP2V \Iϣ͛3^.//X?7)Y[Q`}?BTݰj~yw{=Qh{c><VN0e5DTk~aП*} 8F1<=g&P8 )DqBZU| dOJ^8AC ^gXv5mp ηYG{{ a<o<~l7,0%Z5>5ln_tl@+=O iHCҐ%8̯Dd< >s+giȋWVTNl ׉`GK4r8om>gD'߳u_6|iBu/o|v+G7?$\ylVkv=+|m(0޷,ǓRv8}K_}4p6sq|%(5~(-55w HZZjF5#<VˡX8a٬$ oǎMYo90/O5q_)cye+* L1~K{8F>_SSOyhC|~PneV#|z[ʆAyʄd/~BtЇ3Vf oUΛ2,sx}zVd'ZKEqQ&1 7#.X1i+w?} x9} 8oQ/Vv^0'cYĎ1wrЇuZ=5|~/i<kLi-B2w7IT[FE:ǰ篊u؛[c=q-)o`>FKz?2o,{VJy>hmMX^|N] rm t"נK<y 0y„'=:<!ɟy8vM(y^۶MaW#OZ:YD^ pp bKt 0T4735ܝ^vf0%>qxr(!^mm巶U%bh$?_ ~MCq6oNbڶ=M~+Z-Rϋ0%, 8Jn9u7/,xbO0NǸywq8\CGچGp<|j; kHYSRV֞7R=wٯU.7@S݀Hqղyb2R_nwb __΅PG2+e['Y2(6ރ<\im%tk4! iHCz1Z9=,+OcǕOAFT&D|v0`\A/l[f_)4XRK0$i;wv~g0wr-?c%HMk zheWWG+/u5HwZ&8[iEyGRu/sB^HBh^h_u۱y݋!^3Uknr#0V[owg$+^a*ƅljլھmp ;ȀrԲfE/eT*NK}9F~ߥ~,׋W?[#@OzˊbN+g̝Gz[DƯ.|E^ 3SZp5l;Hc4 ~w}o43m_n+{XfEKp~t/~#G&qnسhJF7lڜ(q_ V$h UWP4p *sqSqyb$m#s x +[Md:gNgp~1m|T>Ocׅ}>oOBY^X%re-nkjM9G Œ0FmNC9wX}hGVQ q$IޘPdd$;ih4.) aߤN$$7Q:K18TVaM!xVN*ܾfQT4 WJ8?),j#^/{O4ea^+J}&W\hms pDZbmR)Ai|]ϠUL׮Exر"#-'x_QhӍqϷ =X(GwrUբzE|1iOk귛M~ߧnwE&>{ (>yLJ\KG^A})5̌L/3jq5Y!o'.ܯsY&TŇy roFf-} FeJqk2M~DW|Ґ4! OHlkDbX"smGJ+% 12(i*7wB}~M'z B3+Y_p!{a>歚3`A_~~[%57? \]_}Yr r)PWR./*STs Q B_]Y9xJF蛯VRu%t@ޑH*߷_R@+r'4dS^_ .Aw~ \E~f:Q{y~ƈwT<7p 7Ǩ{VAҊHdGĢ!-kGɆ$/ ^pm:?И: ݎ=u#_2W b2}n,]iVx"祻##1V~0W~6{oc҂h6w(4IXhJ㷈qJ1xk0&i;8{n^Yȷ<]Hx;<69-7ǃ>Y6T|]W;xxr[gǨ( ~<V j٨~+qq0PwHQ8Uݹln V~)sw.>xEm"""aTN\YYYY_/>N3K|z A77w>,Rxb[Ys(3֢#- 'H܂깟^+ ).ֶ>aפDU^f2'CWӄ}ǣ "/zkYG*p'+*jQ0%Oz EUmI5 (mᥴZ#%ppk1\8IAU#d'0Sfm5<lä:/혇H+=5T<3珸Tm*WdZ[uk]ZeQ~ B'pP_4! iHO5}Ő8*nw5/J9y<tu~nḐ_|yQ<.{?XbrFg!#P~|'I' WS=`04ϧ{0X ۷/xy,S꫅<+95 OIu%vZl5ձZr]~OƩDSWK0Tۿ_N[_Vl'_@i98GbܶOAZwEr2ώz>}u%Npm&wVWń h9{`nan^8ǐ|18i[9)k ?aG k[pBN-AÒ2g-'D!_O~GشkG# ݐ!CI o>~?ox<+qr%~St7Bi_POZPggZxRMP_Rv\w܇>\wB9F'2hZ8FJFW孕B&¾R~IQ~ s Տe]cߧӭRECu8R781ۑ>W"#mLP3Q2Y0}nN*ЂO^ :jڵ ,;TnPЇ@@mÇRo,Ifiq^n.yL|qYn:wj!&+bQw8K׵ķGүOӄ{Qc"Rxoa<!Qk6Ң^q o睨)h4qANn8KukR(>VHVm!>#Շ^'7Q6 ~p:iGtdȯhhN>BPp4ySh}_u.p\_F2Q 絖> /M7dmLyٶwF7׀qd|E.'*L 5^!wyzk4! iHCzͭE:gBB ǮU:SETGhX}wLvz?{hSTC/.8Z%˥c]kZ$S_ڟ‚)m⩋uUՓ|Zfd@.*lέ[.-k$~1B}xm o~Uc`֍=yU*)?wgF^;btH{ Ms " Vjݪ,)ډuL'zEka6G&MQ6^ǘrsT2-^#(^;qBE --i1[|ERyb[{1uKѵgʹ{Oq:R?Q{xF/sXJZ8fMԇAʷGo8u>; =_E+ô쒬H[14߼b-;x;|#7R5c,}(Eo]1FѰ?Y0ͥIC/~8\EDQ:%JrCw/''ڼ.S%$PFwわ{-I<_kj|j& ׆9w4H|`PBVKd+JE%68pxqG3] .GT0>yo-pA zTs9i\gz/E4s5.ūGWPgH""P!<9|,F@TyU3^ex"`M7_q kչ Ӏ~}PA9ZJ>B<Âһ^5IW_oyVb9ycǜϣ3u<ϋj?ԡ#ՃtW$ \̵/U q +K$=n'osD wߓJ #yӭC =Itl W?uv/Vܭ-ŗk>{p p ! 3!Ґ4! ꜆sՂi^B+Uv:kwzB+rA=y`xylw9.qX^:(ٟzp<?{u"1Lsx8o[Oo8L'GfQ!oJx872ͦ(Ww.1*6&XqEqP9xcmBrDzxK^<.wyp*ڡA6+rQ}5kH_!TMs2,>9"/E%8/㴢: n1)R,1FSʜ>y-vIȷ-H^8%Cx*2׍P' Sgިn DLӒQZԕ sJ*㜩l^Lɽ['!E(_׏Fd@zE?PQC k=Nqx2-/ 2ڕAʌwA<4#|>dana#ğ΂WH1|4K9U,b"=Y2H=Z_5x[ɳh"T}VU]6a8 WoC|u֔>FRԩyoN\ss_X <p^{ gzGXuBz g+C tju+'Syy+75Eap2@7a+ .t&֯_M{=~B/OL0%L@N~Eo:nz#vK/{}wץJIFǥ" 'Kܮj"'0ދ꛶= ?.1+͗p+CdN4|?ɁDKqIn^=vy[l2m?OD.g{MEȏ{{UCBCO-('JyHO1vO}Kԓ 96\q]Xo >G>S$f_uKTp5Xkd QV7O ln m4! iHCOKZK~?` LB;jTU <PTq9*eš䱣87nLxȕ B}JwX2,8Ñː1p_Wtr:n F6R 5=20'х8^ĿS5s O7SyXBcqUH¢6x:ZuJ̦fCs;ݖXBm55/IݿQ#}{_'<vDEh0/4X502yyS|޺oN$Wn!x!ԧÒ  [̷n!앸EranVИ:voN8'zôsDn<}c דF2yĴ 1g5S,Ȝc ӠͣdX7[\ (:s"dJCsI<Ul2S:g9ǘ DnY@}ȼ[ٿG'c_2p4NT|NqtDm-Rc ĠovgׇBHƈPKuZ,ɨu|/=O9l-x٘@3J{:hyNi/6k%ȦdwygiCzrssj7a->ab\^{>;5y N1j$ ^%~ |S;7qm9q#v`%kZ6ϵ:JAk41q-mQys3~h3zewo'PDsqd$ GR c3ZPq[c؜:3"!d|}pxm\ kiþIPdﷇ;_I[Œ/{J Q>.}\_U7Rbk?n!d$_n\o:z~۪I5W<?k|ľ"%5lKqanų5Ґ4! wj4iiy"*w M?\skTa|Oc>|6:w>jmR")J !i_٠+RӞ}{8a|:"t :pw &%Ub1e qUV6ꠞ(ӈGaŦ0 ?עE;srcʘ/g,̟p s4A&#7lV|L8|t|Ir a-%n1hЧN$p.(- p o^GsMGz1 L_bڤ8X>?7DN3'_0>̜ȡ9K2i/eXnt%!}tѫ㏄ry.LYl"jEՉI@')uEZ q RWp&; gHt56U+J6<FCxPS:pUr+_[sqMYruT[j?ߘ@us%xO58ʝ&怦 AǕuZ Z]&ԙ`g҇+l>PZlY;ݷ 0:[Q<5ߍ_UECz;Z<W6S |G-gitutU[ \W߇؊rg*1b(J~ÁNz}#]۶/o׿5.G\Opr1qlak/qq~fK[}=j;2 㠾Rp 8~[kmlk<-s2,0gI&SD<V?Ƶ`˱B[,cˠٲge&e1/q QGI5<sK]&F)z]w- 8^F5:Wu~p W71/4! iHCglE| q ;ۚ-9I*nDa@?gZ?i\3;#]9# i>a\x^??\a'I<mm8\jO7j:ۍد)a$iݒg6}Ai#y݅kha>?>c`I'N4.n/}q,&~&NNK x_msԉ9,x󧍀>p \'2PEo#SeqorC-{\1{4+:`=}I #6!/s C9 PÒuȘqˀ[ ө{g U/#ǀ a|z"p -/dJ3d_(cg$@k5<gIh^c( WL>?/eYF۟]@F}Lp>)CyUc7>1zeV=..'OEA8/tF]~ZTsZ&]IzGRGI38Op>s@B;3Wν5Ce"Ns߾ i]ߋР0uÒbWCR1t_Y'\lDь2-tv7A˿2xYvIU4MK}G~}Ar};7xg'[0pgVʿKqZ9 W]:3.)s?aZZl5 H"LN-?NenQR^·h('6T{qS9繗, 9<o󋯓aaBok>B%}H }Tsq|G*l]kA),#+_`k ex+- {YŧJ>k\( ukk4! iHCF>Np~U[9#c]mnJPp=OUp~!3#IyuLJ7Nʋ#~u$3Ϻv|IQQO!zwO/.v){º5S& uF^1֠/d,MA}sk(}B` ?X>H_9̩Emޅ>8m9<C5z ZÀ,m_^u%mfmg׉S{.k^&`<u"qΖRvg3K7$(Õs7F~ KW1GBHcLֺ"7OB<}Ͽ\c&c}G4PT(\tփkGA  cuޛpn/s [[j*ԯjP}M/9kg9կ||uժ;g|.0MF\o$~0Y;g /z 6Ȩ_ucN}/fY&o'KÇ ÇD mZ nj_=w҈ʢ)[5zW{¥CC{?A?\L>n OB+eT(zƣ=SL7.0ʛ}77{f}I\GҁsbAlNпoduNZW%ʳ&N=i0z<߭Sg :K.v/tY\^8?Ɛ:B? V\I٧ok?-<[Pfaqp6f['R_؄3Hp5קɊ"xс_gl >Y|4&di"s<Tjļ+?X'aQ%+ CҐ4!5Y\w8^KʫyFp!%޾Yp| lqO2ՐJ1 +~z!_ Fg+QLz~x^]_ъ(>&33EXDJ!`U>CCX6\#.gY|zaDz!wHurn~}E"*&ْ}+N}֜hT~aOHy"]$+qNI}Vn+rs]| \WFb? G ܂ܢMOwgOu3Iŵ8Gp_p ȚL _%x#au"zQELh9# giOYr]JǠUHfM>.B6k_5x(Z>^qVK|n)!#kk~gg9 /'ԣ/cu۶mYʓu:QO'&-t~|Ҕ`I(` u*s[%}+s@6q=.R%;S?2Rl SJh}Y&s‡{x$]%uBD Iy8~ \ww3g6xbs ^4SQ_JP}I|]oTTa )UDY?23/8ytf ؝r_/K$mߏ~~jmTrb륊ÛCcpځ-|P/bqt+s^}xhC R,OX=P_r'}Y= p< 8쉚CkMH,ܾqlK'|E1s *~Z<~(veJJ0(n:O2]bHCҐ4?%%Bu6IhGTM9: xI5No8?|W)'j{{3Ɲ/c[[؀8^j=NB 0ɜ S|)YGпb9LߓAзG'myqYo%y.d1ion^*}ds<!T-e< av׼1(/τ^W٬cɆ 5κ-3Ӱכ?m i|NxCB_ˈYnٲv2~z92( xW 89+ϕ>Bg ו9Fa@ 9- xAn!xلY0{a *6=P@߁$y7~J<0Ek.c`+md-gp_U SkYY﫳I3<WO~uilѷ<UR4"e_-hWv8W aGp(so;|_T2ժ.~(rw:u[۬M}(X|O &ԀHׯ>AZܷ|,6wC;Wo,Oa%T4r a>_;Z_u߫uݫJ\9aL!CnAܠ2JZ$dn1r X<Ku-|7z<7*y|ާ| JF{ЬI<^ٷ.Ɵd+pDXΪ5(s1;CCҐ4!re%W'B݁*84|5y1%ϓq[VGO )"Vlr֢ùZ)Y;&i IFKXKvϑT[1^y4@|qhO-ձg:r8h$u7J' .`g!]|+a\Г- Ա;v0']{e-~tF"1.HI~DB+ OCs3qyQn5|>clD*!OOl|-SRJ[ruO@-*2U]QI?K[ܷUk:'\G :[~Vz,Ɍڜ٧%"<F|x<XsX&g2 ez?fG }_Y.CG%OEU )"t{Gp\)os *w,𳠊k*X^ڝ? yz]Fԗdkxc(zfTqԧD[z"R-GV"FBӪ;?9@> ޿K}?r7߉.Z+sW.Ƃh+qKEz(3q I7S^!̘kL.5BҐ4!=2g!_XGT3yyKkF%m]OU0>$RԑDz"pT_}F`]_c{d{D7H</+3 }_/hg!b1S(H^h[Z2ϴː}4[j?~fo^<"#"]q99_U%3V*~.fĝKMFܧċJThK|km} ΋W!ǐxҊxI9ƫpՏ&XGoFm5N t;x,<N <ч[ycyqaijё{?c àoS뮻+\(D!go?zk/"p38X SjVz }jwΎeΙ";B%?&C+FFrL#b39e^yYGup:q %oӲ22~}dCڏQ)Fkϩ8%H^=ZIx;^?^D g,GɛQyp ]WV^%2/sw-|EQ<jk@_ ,:Q{2Gtl -8[=Рϧr, zVAe|64TjØét݈םi?7VdW:ǨG_JQ85VQn \xϣ4! iH *;1Q&L?b9o¿G;:)"9:f:0NƱ7p/}FT=$]>@qbsP:շ _.qۯTJZDu-=GS13-2=pCu9ZN[>TU)OE%ID~#UٰΟKFk}8c>{˜D d.A_%f%T>Fjs_wqb#:2[_㑳`lxsu(7|1zG}Jk|4mY=F%?_ Tu&qAPZ><9'x'usٜ03!?TsY|>NL;zuN։OC: b˜lj'ew1 CFSŜ1.$@I767ynQ<5e BCEs9qi%p^j[1wzw?䋼7s M !F7*h1}=wpQ>gP\q+(u~ڋ;Àއi)k}337GtEAV`-ǁ~~WW<hVX,6c!AdTوzW}heԺK 5^X/ߪK mUn%m>gƟweuA02qÐ4! iH0.x_,ѝ~)D-'󗖚+m"TOwqZH~_PĠc+& KyA͕0ur_֦ !֛ޮ~ ԯ?傰S'f|ՎW~~Ú]OāHzc?gO9p8F{_%ٗcP~9Em9D_PdNV9[20!/׀~":_}gI_XTaA x5|#j҂BZ">Mo:}|L%kIJjZE}(3b_u)q{m $Z=68 #=t峓";om7LAv;XQ[[s]Ao[$K-Cvg=!qg$Vt]~(n`vP++u72}/ok:Ս>'w[ I %ֲ{=6xd 󴵭9b!HMiMöӹfJ97G)S=^~RWKm`:Я ꟥]!_!EgZ۪t+=N2i4+EY m:\8n^CMq@\'&"szS~(6=\zƹ;qa$ y 9fN.[H> 2an<ve'T bǯ97a2bˬO\ \cEڦGpEY }Qφ5BҐ4gtc'9"n)I *EϏWqY`ʏ?V%?g9<iY5dyIgqy C/U;:_`9'^C@+**F&8/ܩ6k͵GLUk VU+g!n̕<Iה!ܿdL׻ r B{W.zlO> F 1fe]o8ձIkˈxQ_1hp!KwUz{-ڙ ڏ[芁\\#~ I\q>;+2<C1Qm|l#TGB+5dtDݷg!wU"OA]I>$yí7<[zd%ZI?9e("l-84HPyy~'`?X@foLs<Uڎ 3I?V[jD|^tJ1Y} Bk_|lR0Arˢ`v*]&\!-75B-^| ;zb vmKP ￿x} Y(޳-IE qq0ݴO ܏X;@ɭ|6<M3N 7K1Wz Ӡw;"5B%<F%q,K|-pzVӃZpߨ\Ro_vFNa2pC'NX?ot+ [q5:uˊKJ"xpǾ Jfw}eY ףi2 S?Y#Y"wnK%5lHnҐ4!}$#pZVT#rU 1fk?쪠/ꮤ’c4oRp<#7F^Ga9GC--'M86aMM3иfW yH9ot9M$C4c$J6ƭ7#:WACҏVJA>\=Q]As{oakE?jEĄ {>%Jګtu ZSV}5iEnc.)qWc-1 |(}Om>qǘBUU_\n|/k<Bվ#7L/x'm"=oNãxވ>Ki\o|@D0s }+%n6^^Pf[kbŋ2TY.ɚFCK֘N\$kv k4+FG_ uWu >]]T/Ŝ.}1zWTƃ߇:W-}m3C裏|/Z.ɴ8&ONܿݦAꦽv5 Gtm׉/t]w8FT0uܸq] }njm |]^ey2UHD-mLy}d\ !PBA(R?W P7A,<5|tdqiNΐZdžv/ZwݳzvO_?qy ގQMǨ{bGJIz΢!N"׳rqoTXqy;n]'C:.||os/GouU޶x8#Fq|߾yk<!@52 rp N OHCҐ4ߧArd<ҩ=c~LgJq7Ъe˶\̋q)eN'.b>}MjZ kZW:038E1K(qǹ<\=~ct8qloqF51D-g )NcF`ʉPiSMs89}WՖ:-IL7s;fVD9`cjσ1O!=16QK1o\cSf}gԴq8!1$a~NIYſƇy<,N$cAH6$rW_^p([e[<GʷX/sIE*fdZ9Eq{! Kv[@]{GʔL|pI_dPCOT/bim7,Dq>٧ -"(B=–6="nWWpP ̚5*08De3/4_uMHOgygVA:3o䛅-G!/O &PAp]-k|-0<CVbۏK]_EDsLHPgw# Hz%[Cޤe=wuѷL2wyG\!O^sW=p`&Dxq>¬iJjד@FtɅ-N8B]\d^Lt}|:Z<DyO@ {y@Q9؃p^*npv%Ϋ͈\9aRr#5|4! ՠC_fED(-?zZ\!sʏ-zsx=P\SxX!_ԳPp5YuzBOXds< Je ^W '8 ٸ tFYSo5Po1jkk p1} y? _y3쎢 . X+|{9o 4pBT` AP]|K1& JBoxvxv} ߐMiu(x6H<,զgoSDnj~sԛfanaMnV_-zs3#51 -[@~pZ1u'B4`ZwX0*)€KxPApv1.pM5 ق7۶Jx ^7S$z%t7V٢7nVWP*y꺚yh0aBہ)W$Vz8I~ѭmF=ZC7sLWD=A]F/7X'r>˒`wZ@] wu[!O^^G?4.)>Q~|^Ikx s#lz{ TqEu}D[xlZ)ZSچ- hsM%Һ*>z3X$e*y{׸d}Q*WRzG[?BҐ4:BPP [vA]VjMmndnb1||{l 9*ى#,q+{%bMJ3AA27<|q(7RV/>~IZg6LY7^:QxU-{|*moo6+}ⱮΖV:o}c<y]UnFt3u)^Np9PzCst/C>ƣת1 ɗc>ܽPV$n8-r o(ڔq\ʔQ&o+XVIat tڷ"a`[Gu.kΌ޷6Q{3@+!g?Ӊ⮧iα9K(Ez\{"`FE耨J˵.ҢH/Iۦ4MZv6&Hpow&QEcad2>=#},L\`ܥAfZ'TަI:I:맔=Y?"BSgC|//1BXzwd~WRB+4>Tnk? }q}W>|MR?9edt6 ԞOT$2hЯhͻ?wWȮ |d}-'1nȡӉ8yEh]G>vC"J5$L KPR]t 0oy+sQzS}G1x>^0;y./ʝD~7W 8O)~NlNWɼ['!OʴC)|,R'}'P{c\d|J]6­hLW?#z01/]o)_,~` ȸ&0|Qb1c1cbq47vnjto&Q'\|!->qksq Ge]L<~ RS{tł|<Hz- +B14n-Wun8:o-̵~/ Jo R !{vuCwOʿg%.\oQu/ΞhGNM랃u׾ A=J+HOHBPC]>Z>a:hwdY(MO _ '[|o*]!^|?H%m(n&cL%+Ob`{C􀮄;\u֩|ʣk~F;Ny?[ Ww7=;z "Gx²H<DN{委ӉHi<~wtݏkBR^Ebj&B[,yZ-LG-<qrC.14wN>y"^}S鷼_\YP)4 F8[-*m+㎎Ox#$wZMWW}ZԊ'pi"ߛ^Yݖ:. cTM7^y)cbճ5WEc,vWSEWH>]XFJQ?ɩԢ Jg>*ڠ\BTN}#}q Koa<Tgwq iOD.((ߓh8Bٟ_'k4*?St{جo]&T]o!AGxCy )EfG܂b-vwP" )g&Rt== ^K7=@%y>x]`pNCRtzå)dnG(z{d iyUA?IlG;Yo;#XyN$pv96z4*H{'Q3>gY\]cK>\gApͫ^>(3AЙ\@'lYtk(K5c|se[^5 V8u8RFt=|uYs#W[=[ ϵSX|"Hqל!E,4p 1D d9OA3y'q W_ DhJ%fI8FLf{@*7R?9l؆_|85˗~Ӭp>'Γ1ᦷh^ R$MEE?/0HO M8q֝Dtkh[w&G[:׾gQHo*'&ɽq̺| 1syLHϡ2_y*c񊣩v__m 6U^/ C|n5-+<cnR/6(P =DV)֦:QZO9z:w Vr2σ[࿷7Ҽ0>R9<Vi e[v>bHixq|8qkxJXT\þppWc~XRZA#)?,,L܂ø n@kQAE?'u eqHuU)<KjTk!(̫ \mpH-R[pMmXQ?ɸEw,y vvUϻ׻U'I[h]h^O;Kz0T4NeBDI[3un;\ZI1U7{[> 1w_<n)J8C/<Q٭! !,V| ?]c=8jKp!^Ǡl nS#Ku*_uԟxŐ-2n]:xsoZ:6$u)5~=.OjS)a8vlWA]FO{31rŢ᧾cJ쭣!E @_ .~Ë(|Q&iHZFw2;94Yēb%Mh:5gB'A%&KQ#!M;fB̚ȈzA.T,=hm{@j&{!M0M5𸟣K1z0⴩Ȇo)Wa<Y)5O: })QdІU-fOh>BkQ2#b޲ +o̲_C5ʭT\uu- Q42kTc|X>_g mN3JEC|?3:ldYeK)→{z_:p8XTH|]yna*mߥ<ؕivT:*O{px߾b6} |f TKcz?`XU.t)847ɕK1n`>^ʜ.G) %&heWo2uk&e?Щj?U:_}vndSO;FMVc2iYǍ9BTi_+u&&-G7 З>K򮝬 Tׯ~0=d<ͷh%g@iщFELN}cov8ϠT/n 2)CnǠB]jPp62n2nyεo;*6f_陂ePsUrm] Z[;aJvq4mqҨW@cH֒FƺS&?BqwT7BΧoH_} eK y#&c4Гhʼoox::/ПFq#x{X, / u5ݷ6:׃Sd'SG5kPLsΛzqz48a@J402(_xO@$Y]VXoBHqbnUzTć:(ODPULu/m]<TkʶNPp4 Pu\%R=4CcQ St)ꠡ,nwN{i#sJYo*-5;</qhǂ4=8*aYY⼬KoakE)TgqOA<i-)g; 3C,ؕXiOayߥ@a>= Id|$S4xHG<ӆHueلO)CʠcpmHki_qhZbQ^Ǹk+>aQ~#01` )ST͎(|VJGkADKz9y?oA9frxHG :sȑc"ynr|SOuzk:,"d]/Q8|$.F(A3\9>XG o\yBF;jT hq 2:qqש StJ~D_1~<D1" KHIl*2/'oTcۖwL|WkWozcRJ>_7!T"W 80n,ˢl[ز#^߾Rg^^ZO [Hf,&U?Z*6.OUzmHI]͚,TAlǁnƊ'(] `8ȡT 5+ Fls5swElO8IkDL1&uov6" mtF|3JhT-XHi\: cGKN Gūg%hpUgꙔ֣n%!3D~7bGWtYcT9?K`ݥO57ImM9O RUut+5?UʓXK>אT ,G71"a>|7j2nu8L,+[kw f߾-|}m,0H!a{K,}kdܶ4i1WxZg3uxI9GkjAd#o792(+Xs5o5(qd=xKǾ.+dxw<1x|)FsisOMWW4}Q4U{|8b`񝉲*O,.G|a<wBgc na pw֢Su4{۱'EG=mC}}2y=T֩S>XUn1 x)RMUVG z"HVrrs\mlロgTܩ;Gcۺ"nj'$bGڑ먡HxBHLB؏wV?_\5S,.9> :b|gY?ğ{W>* ƫq3P6z =kekχc2D 0/Qp78gG:K׿JT3ce+1Y!Of7tv3f}mo#T*&Z8vN6@9+h(c;eܢWLt:Wرx k/52g !7n)#G Dێg%}&>b,4K/*(fɔƑ@x&|DZQܢw3%\}fxԊZ;::VϿtҠ*nxq8 ;k9Z$54= ~"\b8F,S}WѤ/v߫ W_T~UpQ5 Py]Gu}yJҏå] CDb}1ұ [._]Iʒ_ }u;_\^ :Kֻƪ1*ƒq kKz>'#oG%zQoXGt/{'qh6'`wos;01`sOjydOac?>0*[g|+gc⊕K*:'R|yϟqR}QUQvX>&/vwnӌQݞ;&.8^;΋k=>kSω{I'.zcg3kX-MMb m#H:SJ^eBLW/L3Ư.%kFީ)Y(QqM^kpHYf^/g?3Fno`S3KQo}mY/<!30/^:DkC>g$1_NLS?w 軹 JsF$B\7%Q?jg8RcP/}#jgNLp?(6ю:BH z|!t[|9ut.J!T#ocm*qJfR*_rmy97̔utG&28%F!t{qlTu7q;7n`B[5@4_)mK W}"[0FFh*fEB+~P*U1~šb<sSҠ u־UCge{L|'p  /~г8!E)_5L|7Jۋ%J~xgNlE:HyAb<*8xZX~QlǾj\CO$%p ?ӄd|A/m۪J 硌CfInY>]Ƣu8<04U?asyV(Favq PzgP}jلG@E=54xQ7M܆;?_: :E#w/[NN*'cJW&j`ZO4( V#2]XͶB=,Mo0򪪪cԬr3XdD]lQ3ZG3s7oYHVgEzr.&*p$86UiܚκT+96M)<8F ?q{.Lt\ [D5GsD+:4߿aZdS*%b*w.̷}iV~ݘo![7//Fi G&GxWe [|z6~!Π>EK-pCjdr].MΓם\kz૿MHѱr5x_mw<tr ׵sxh7w~#mńD7p#:ɑ]-XҤ:#QLƿtRq]Bq k1si'Bpm8J]c,3aY$BŢ2)kTK/>BԩND$P}ґ3W("c]ڏ:?D6u$]u/oºa] g8[XzNۺ|-l^<$)~P_s%9cFgN{/ָ+Χ!Kwi_Dؾc|FQ?خN,5 .bBsq ]H#pkMt8aiGït~0*~͞ϓSW:$0wI|(0º4\?wNtA~HE9_@YcQ(Xó S1E/wU܃p-5d&1"WIo廙NNAaoάi6,Y"M5]Ak[yDhZ^׈^ay, # \:vOa{(.6<%Gn\eM_!~XlE^OyfG b=i/oK=AS'6ZEE*~ѶumuZYsY&mu>CMM{&?˘Ȣx 4ݍP=8jωQݞ_E$Iɠjm.y .Kb<*呗x>8¡TLQ_7;~qq,݇Ky)6T |Ϋw|r([tD`>˞Ç7owH&ݩKJ6yQM#ºU_[yW:>0Bz#ؽ?%X5Ynq9}7}"'h)<_Z$fsIuErK>GebT_@7w LD7_#8iZ?܋ Z 7dxU8Fٖw/rHm]1 hRWnӹj l>n}p sPmy5i-'9=+ z-s?y4leI:Wd鸉1~ rNuy˦ϴ5@'EeFnؼ|"%78œ1!Y' [Sz6)"ON%K9&Zp{?^)J 2'g$D=.7d'F4~x[3ήiRݎ4x[/NI'oz}= 7_ 9Nq䐲zjt !ors1BT0W'諝ob8F,1O C?:-3ۋq!DT>.LJRt:(f# W M(WXJ sERM58)ox7;@ta13OfЍgLUTo_,`Ojmo.\G̫ OOf8E׵[eȤ'}41S-bHD>Jy'"=椹_鵂`Es=?B dϪD@vZ*p߈=ws) ӕDeQ6*. ~C%ݻp Uϻ<UG_8Zĸg8'9qli+r1> ^>H=Iծ|~yR,KLOx|滺_ht":Kt.ҙ}"~/TњƴxI P|PS->sX)9n$ߒaBRvCF L%R3eS}p կ_8Ŵ-Z'k뭗'}@2"y"CGm? ;$ [Fbk5f>$ÇT[mN/px<2#n}7_{mOr2u@d+:F uٓB~yOrK]>utԦt_;7ΏiJxۺ j#5cqzy.=mO8Fg9kpqDӖw /e|w:JCyIqYRR܃c !1{œ4.x\mQp0-^qL/ZC}dŧ$ec]y3!O~>W=yJށ߅[q5@|; ](㜚+okDYb.Pm]x:̻{Gg;ۇUunVm#h!?ݛqni,Etuc &>%4 NZP)z?31#cn׽yT#i0p X"xB0yB?sp 퍬$ư[|wTa.qg?a1cM] OFr܀E4ٶX0^5V 8>A*v"q̮N}/f ׿]_lUaR=`>YZ[yLӡbbƸ"=<hE#s1]+*,\>:?8Řp^ܢpE?BPQQhA%%sk:e·W\Jit[5t++ p-j{t#TQAf.w>@c1 q}j-{~K M}X*RL:teAMp^8>Ӱ0V]ݻ-ۺёWNz|$bYX Z,NLy)wb+ե+5-"JA/:K?_(_e )+9\S?Mu.` gpEÆE#,s1nI[-qEd3;=g`?IGiu%xpG:H]zQy~h%Y^۟SM*|k[\b>H"Bzg#5Ipڑ,"]Џŋ`DQכ43;vk9BS ѫ1ħ>v9ͼ0!Fq0b2 fqXC,KR_;u x#|cDziqCw|Qb,DҾp „GV^a*)Γg4՛F - *mLl cd܂*'Ɓ>g皻'۶Yz#K&mʦpqnI-qspHGE' GcM3f=rVm.(ŮΦGf ݼSQsҙN F_,K.i.WϷX7^|L{-~5U4W^e\#3LdGS C^i69Zp8ӦzJ1nu-(iZ<|ԩ#Tg_+g y)hyb2|^Tٯ;~ _# AZ5L212Ok?|]ǫ z4looy 6G]w4ll,Y} ƟƔ)G;N cz:)E)*(XF9RX\3or秅϶`E˭dQQvcݻW=򼣲a_^ nq9Q?eM*MR\rG˪7OZm현@Y\_*,^Ny欋 B -1[ih(޺vCc (ŸPW~\ԏ̜=>R&I׍_:*f9.ݶz"n! fOyF0z+H3ٷ3_5=Ӊpq7OOmQfAW?.H12߂EQB(q 龙:Z(YȸxXZ_ԭ7c ţIZ<+E'8J))v{!H$f?~T(o_e؉NZJ7%RKeQבF;r @t#1rhq]bv]cwf;]3*yO8|o K<ҵx7CW:O ]UjvUǸF"8 ΢{?xd ?GO,|%Y{xޛ<"Nd\ 1_lFOڭWc@f)<-Open.p]F'o e$fw)2^}'W?!e皻yOn߽cǃ&dE]f}DJĥ6 x,g"(gIuw໼u:YǷJlw>;Š48zv/ɩ_5xעzf%7)4!npD5÷#ѷZ5<TQ92-WCz*<[[I5 (bNUmk:|S %,f=!|v~آ1!؇`\:b?#̍ nB>+Dž+ | LcA=Sfp{-2'/!KMxP[!(DcJ[:A5Aȑʻvgxr!q;;3={L֝a,*I#{E)]E;q|t4lM#Oc߾ NpE8tp|H.*Z|j 萭jUo+ QF"h%@;>=P\ KJrch{|1kk/"USWN B;Xn!<핀[RRY~B" LdxUeFz #=+P,)/ؔec/h10he| ;( _>--73I4xn\|n1}Ȫ027@ mRyn-y0N/yu,,%`_灡~Ny=c9"q8\+w:S=Qt ȳGk:KDlk(EԧD1w:<է|oS@^߿vΕO-nJ0U5;:jY]"b~zU[ݾlWGBH%v)oJC~D |xX×y\N3P78ƣ|"Y'}_WW&mnd?^4~FmJiw ؏bEͱV<ph1e5/Y5y8Q|7ѕ> sz}"o{8.uTWɺu|Uٌ z XM9谯*/#x;-s-Vc'w-Ēs_z{䥊 h[CMǷ~gtq Xwabގ; RQ#IKN:4%Ή>o %>i蓥o⬓3{89{vkrI%<8a<ӓzCJk<vN ,H-j>~jhgq6WRF}ǁvP2l@$X.(d2-,B 8HP>2og oF) {Xyq Gs"3fۺO~d47xQa3LPwp~m,}2>վS'`]&ϸÑGnBҧΉ:m.GP[ vDn] J'|6#߁.'>z]|f WSoomyϹ Ap1-uOLJ# )L3\:mTR]Db^IsFYX!ah$Z<;[;:."Ql*>D*>uD²?I D E.3~n"lrS)A@Gn|GkҵuMK::hy,:wU>GEe1Q1vLb164LSCyY!ޮi<b zjq?#X:>"P!z=y5[4 H@#jSNEu=;(pS$}J|OFeb5II/5S80xu/؀|v\㦟י|13H1\|ZG g,zc&+͢[lj9ї-% /MO4R}򌡼8C_ bG5 G n^/Ξ!o`u?_ 8G+1VTMbh^Bs}Y.H`"Zifaxb!(-r&:~)B͡.'2lhG>Yq?e Eo)z]D<7uh[IN9Eͳs9jĉyLz>!uu@l]A&h.q!ߒ/Y뀂ɩʦ pR~>8aԟ ֚o2eߓgBBm kPg|ԈL~E =&i,zTעfxGtQT lJ?A3!/"^q!c8F,?~eCW<uzt޿>淦cf*uk{=hc6ЇQo =!r_Oer*rHʧ1BE^;'r YE5֫Q*k83W`]>7p Gp=)SX |쒮cZZ_?JE#! Eܧ.O@ pu͠vS|xJ2رX-w+*rXwt/صa sV%6_|ԃӃHǶKO\Ilk']AAo{ZS^)R_])q 읠T,d6iK o֑5 -ܱX#4۪It<uqtf_ edS }UB~d\GXeu+ާzD^oc*{}xe>QFX3y1(pol2 ie9輍O'5(RǷ¸E:eGz--,2npIGЏ+rq~q?5aI<`W\2M<O_=obh-р2 ƣ/NܩWϿ'߁**Ej|{6o]qq RǢ]o\5z}օkMT\SG[QUw:]+&sLP88""! \~ ZYGyc~/ӶMH1"p5%z/yO"H8FYP&)JU%wZ."H6̳)CKCS3_5Du1 ћ%gE; -BpM[7Yf/¸|YW0&p =Bcm =k&}5? '[($/ z!]r<$ Trߥεm3:ff.b Hc> osm&ߚ4}y¼ {Ξ_$ ]>A'&9y3mja.+O 9Xp6(PVlw5 (kB /tz(h/au:tz?<Ѧq-&abb].G˭oi8Bo/>20]4 _ ʸƄ^?דp  IQw_ t?go!yʌ 6Q!=Rqho@]@9'aO&uX12 ?l]cիyek)._^nDIpx1GmUk' \4zۅ >G\m ǠLxth(@.Ή?Q\\5Um#D>Q2?]:W]TQq6+ZQ<7X? U!7"χW}_;:; j:?,52,WYkvyyaqw`aogںx%#߾bbBGy,#"]K68Zmɠnh<P]`N?M"A;N[X܂e>YĤfH(ϟGP'RxKǑك[Tb>S#z`Qt>zNA;\pQC!)>=Kzp+?EG4 &&iB+;g1q/sq=ǡqn!KR7NAe7-RM;N<Gp++ջǸ9giKIt:vg~A<g/۪8(rSd>+Ѽhҳ=yvFrZvM[ c~+X~q8ks]4~syU#M4rm˚i?2NQ/ 6Jw.@IC?5~gJek8udy _[OHCV.A HC&/_0H3鸚v<zA"$E0I>>2\:xbB7ML>Yeb,b,^0v{eu@[]isSE9H:0zø\HhmC~B夁ק>/}Oޭ+FA-".ox4,r˔3_G zk_oۺhh8ìFaFToZc|\b/4t}MEWB~=Cʯ}ݯͰn[-Pa : ꒗kG69K]:m}{:鵙Hֶab8.aj4oS0M>ZxDAgSݚjj@2yBBð8d/K<Y|zӄ ef˃Nע4Qg7.q|ap}jCAvoZ1o@OUgW6C ~ :N/+[εm/K vܢM/; >Dr8?mT=pv6cߤKRRu y #p}<g8bƁNxp:KZ}Eo4VK`J2w V?M0Gu$yshf_'8Ϸ+Մ} ̿eH1U?hQtܟ pk\<l|Q?r SEJ~mO ^l ^2ݞȝpyƟ˅Ls8k'qI}"HnF.߾zc?:*C* _/ڢISNHDȃֺ_cmit-D81--z ~FķeXH: .W6n8Jx{csFKakH9~wwI0֩':t*>U Ȁr,UVUf '>Nv@_l :@O3sSw.z .Y?wsH@%puP2n?H<b,b,Vl|^~^na=vC0yw4Q?aCzj|ai:ұhF HJҭ䯭5 ˡdֻ`Ǥ>}Vo<q>ÖȼuB;K:^jztk}.&xP։W(} cfHyw몇RHkhhyΙ(;{/\_c{]>.+^A-[4POzJݣR,p cdFߙfjN*Eh;mGٵGeZSPpB@snM夠G3QVx oTN5MM{D^ȼ!U\{v,(obdMUZjӧ#@hX&(heƍK8f/Y*->JevTV!G:r/+q <{^uv_10:P}|A+?Ik]Ɓο7"f`taSz=o@it]˪::;rs.[8*bFr r3$F#[vU筕o*ҁE/̢ J{HcFr_5Dr:qߓCZd tiI:Vp?GY Wt>U3ſ']*[\)!^̠M#͇>bQ9ng,"Z:7M:Ȑyvf~z&jm~s8ƪF)2C<IX^Ee˯W-O2/ǐS%DVY9;o<tCQ:V͞n0۶PuThsDaa1O>,J|ĸ&5sa]eqA9]XNk+zNE_>6ME9døv+;߬%Fމ]x\֫p~9jq鋮 Z}N:'} o$ MW8 8nT P@Ei0 RU s;ߏ#ka"A|]O\P@݊q<e)\訄2䣛xQst=^?}%9A`wvaA蟾ާ7b܂.<(x:#|/?rW,F   ꀟq<kg8t•N9!3̨3$'Iyw2zRǻ-`K<;9RzA#g1%2u+#sHS|UJ~i8t*xD}w&Do}qàVQfi,9uoE)okL@+V'UUni6K ZPǻ5HNr\mTi\ >'ԸAs[PI@T[5[uR#~d)$ڵb1w> Fl܆Tw#qlf c=Ѹv풩T&[p; ,[iRD统l OQSYWTN^A=AGA8eU-md=~`\Uk`|{L$+ %Rt1wmӶ| ¾|d[?~ %<`=Ca\g]I~DW֩=c@ cH1\/>PxsHSJA8*z[HuJpE:1[T4~:pOZv. )Wǘo卵N8{;>h\joǾ%ٻ]Iz!Z;xUK YFct~T% /MUpgjn+b#D^q!ŨR0Nm$/%2bgUn\JY"qei:`]%G-, ɯp7gQ 8eoL8(=EPƇvRg|a"yL9)ˁqO~ LӲD̫F{g|F)%9XXy PUbbF:=bJG<S?ܱ"RAuXx _TCꙡ9x{8@dX 쭯.3G;jInnYנ. R/oqgoQW4l~ n[}  }V\)|S?_:F%h +P[x/_gTuh_>:}\uFM*K *|]q~봵{KކS@5'gp'jj6ߡ9j"7n\0㠉wߝ`/8F\\c'\&Cy^ w,Gl-*,\8:ղsOZĝOUD}%"Z:ZJ*VRYvcѣ?x/y<8nOobW }!$X-W3LiQq6eݞ=  \ʏߢ4x^7_z@Ͽիhdi鹙kMpN3|7~:0R[,}''W;e}?S}6p: q/D繿w<`|nmg?@kc:Zs${<i o#+ۀ-S!3F*[ ]%2n;6tnH\QqX\oHeFictʸ9 qkC?UGϣC:iڲ׈:A?%n</Tg~Q>8Fq {$PM QYɇDye$\ߗO{}IFٴ#v*+t^!GN[|p!E-b p]Lu IAS_ĩC_=Z__}=F==T;u+Z"ޭc2QߔaP,3?bhyK񟹪61_b?`n^P[2nqI,Рwﴣawu|b,b,QGT࿸kh7и^5 -TQHoHi9+Ƿ7u| IJɗ9ZɰLN]f~l1Uq$1 @8?sa>MspXJ>#[hڻ0UB>|f5kȼeܷ>}#9*u[}HK]בWsPoFY/9}T;w>1Nf"\զ*DRƏڗfiY1e8gyB=sbKⰕ7<)_f 3%̈́VZuSrRlv.^/^MMtR5P\Cʟ?{oEy?;v'!}jR6}KNk["hm[OMuukJ+SGB&lvA&d(Y4ogfMOlvfgy羞.q񢽠qB>G5;tQ[>EE<\jz^݉e6خ˻KJrhdӟLlb,G~]j 穰TuG@C؄WT &~d1U 7u'Ӛx?$y񫯚qV{:gPүQD|"{1 h.:B"  R ؟=AAl_{|c?P~lL~|e Dߍ.4q a !o#cQ2B¸#oi'Z#s`=HV=߁7b}b-֯x5".,oW'+"uIv4—tw($~/;Aq,ˡy)2,s6׺_u}zcx0{z$,ce[ZƕYIuU#<Dzu;=;kÓ9Vl|!Џ0u!f8G~ybLQ̅2Rη u6oQy <svg fQu(R}#cp)kz%ԀFcpN{N]H4GV>_K)a$s55$!8wrN t8˜aFʻt-`~8`]R}01G@;eu߫Ab{o ѦΟ zxPq{!O@Ⱥ71Y|TqL8vIe_Xo,ab4J:uDr''p<\ĀR|;ޚ~gQf׈0`rWضq祼o^]3fs4ܖLI6.0t?3'N=?L?i'|bxOʾcI51Ǘ= ?ƟOENFz4/z1>G/_uy#ر!]yyP?y PpTc]Wt~b&O˲Xv^SWJ<¸%ꝙv/C7miΆmg8xjD'ʏKěd󡄳4j֖mJE҉k&c{ݻXW#\'24.oO\E/.Q4|6 J|"6J;|`?ߥ|JMMؗB-8[nq oSXK`XXEDN-띤~xC?4kh5ƕk~"8Onv8u? zQHSD&SD|Y qI!8jcH osz*͐s$pjC O'Z?J^-ŵ{3[?+w]~moa^5?5zȆ6n< ,jP]+=BU!w5\0*^`]BmzFt2̇ԗ+!n(7 μI:'ȷ`"Å@|@ 鹷fo!`ޢ q|᫈^=qyC2È AN<ƴ8$w;4WמeFmV~G7ҔIB:=U8?Nנ ~!TJWɻ</|*x$/>9kjC;W4?g| oG0RgJo7HEl|a cÿ5Ͱk:$y^ Kzz2o7]u0$_Z4n֛CI>/g:Ur=͋8Q::r<"/. : VuuCRS| m .!-ŅA_h4F$~u{mt+XćTDP/hnCY}/ba MdEt7dKx #̗'#!*ǿmtܛ=6  8wop̔rAxa[OI7zwa{8^57_\Hh-w"y;*3oKX\a|^gRTnH.;6=Ms45۟,Br+HQ[=q%DۖB2lcЮ<2cE4$(+Vݵs|!bZί_>>_ͻxPQ<icT]|/'M!k"ހk^_h8\9M.ʿQ4Պ`~K,|F-|wYagF}UEQ…B4Iرn9{nO}`/fMp5ɛl<F?-;m67:67u-7$6eƱ鋥mÎ3硟7|yE!qY[q2!ɷFF{B<x>UX07]^#[ZnU,vަʻm4k~\/+bq@e~>.٪d-no]?w"_V庈9 /j*QK{~Y.ҤrA?{Hh͙hKN cB o!HF[u%uXg|`Q^g؇D.yuwtߝ!# (M \w=GSez,czhG B3 By\Y< 5wW-HWO7Z01 Ww}XZU_ WUQ_?̻$~@Q4΃ij|C?y܀]ŸA֙c/*C>Dt!M'+8?FO>*VsQx#xP-||K: E,䙰~ǁ}qJym$CR:_^R@MT~g~ o1`y0^'& |V+?-;'\E8}]pڬ֟.EKӳ|dY_K󀮩i桇xvCK*'[voN'?U;[d^Ceҥ F9{Utkde%{2KJA|U;,s ʠ>e wAP]’I7$tfG.v5SZvеx뭗+ѵ[lP֭\N=Ill]9[jz]C=TCWTl.L}?-;':֎62~L}Op8?5~(?-ZAzÑ*"x7`5j'2o)aKB{W_hSG뽐wz#(JmhCk ähӍεgWp iʄ:矸.HyQb{j<.2Gˇ$_RG@=nߣcAqG!<rUm=mRKlhy X~E;Fw 8KC:y:uyl ח</c4Rn"lt!*dCFوԕvbZ[sx v+諈o.ix ?yoǍ;XTپH"MG1ីo 8"S?Wq r*Ix*܏LڄDY =%駶 H}t4y נ01a C{`  eݱukzoe{;=)<S6Q+ǹ~`o82 W\_!#c*4z8>x[X!a=4ݒsay~GwȢ1_O4z@{Z 臣[/œ7,FH9;9ϘnǨ[U/Go`A9|~O ēx/ [9}ח<s.WŤ֬`<&9pB&ۈMZ1NzO<zny*#^wUջ{Mv[A[ ;V5 3QR=ʋ Vս5e־][>!*HzҬ79$ԩ{r:K\]]єbݻߘzIނ!@3/o tq[ny@y QxFwۯJڜR$?םu̧xՊAؾ6=.Ӣ ߔy/a^ Qc<_( Yx^H|<u0P`dsヒﳕ2JzH}_;FW#qu븂oH\'XwƧa伨|1m7-WHHE<U0_1_{) 0jP QֲmT;5>^TCR~{z]G`3Aw]Ѐɲ=GsH]2ηmDcxxe ->k8N$x-9%<+CE4ADiVGI)Ϋ:JՇҨ?Vs&ѳy>$x01<|iv4vV+_Y0s㲫L~Dy>sy2p>%x="pC[҅`#^W|Bc֑ù5*sWI[}*WHύML`mzZ!8F|6H)JʻH^I<ۧoQ brXy`8\"*. RJ P"CכiT-hKT C?ow|?Ao)ϕ9-_*-}k䛼˙C\[(3<8"ruKW$iMMhS!&>bzYA7 3(cy%x cZ_mIyr u's2&j !spUg)3A}t_ᕠxDJx <$3R>x|܈ 4o9z: #:KBEW}p4&}I~-L_|d]yʷ7OcE #<FK&b"lK9 ~F*.O\E㼊_aKF]5~=9wQ.pKgG;[h/t[0o1W1OVui_u Caܠ'9tb(5Y 9tb0ؚ(񲰃Ǔu42L+h(jsTricD@|BHӵYt)E]jfT!a cm~QpH{*Q]W3/ g!Z7S,% :j$;dTo^ZgXDB# C^b l?` |18n㖐?s%t$=㚟-6tW_oQ8K<ޭqi^Dx5KUOEb} aRt4.8oH004 "mTqX#:\SUM~07=%K~5%$})O1+L,޸q hǞXx,?YFڧV.͌&>Hn>Cpx#ţ%1q~+r]ɒ>A^OmJ.0/V"=7uCOuW6}8Y,qW7ƺh43bHQQyބ4tϿ9y0ΰqru\ü%O,d(c>_ -xt23{OxKe*^R8i -Fx 3} RfyǷaX<WʥKV3++l6ĶkKP7 %0EqI;2iՁ,O?JĵQ0_ả^pOJ!Qp-`_wY赻ȼҲB~}<@=Itٴ΅u%*Q#U"-˳a cqH{á:2g-&W۾*j)|z}iTfHZ/|~PB%}0-^5|?Oyi_`+>#$Qjl|ɷxBqRp݉\t1$]YH:,č5w8": jPp\$^;y$(e<]G-٘;7btQ񛴾d=ыKI?ДsxR_$,bqzjMֶTMH| yv[Lr c$ CCa B~>u#N]-^[{wmgGS`5Pb݀DUջz٥W2zvɒT ֱ~Krx<ƺuLOWiAmd)(ά/_l$}ffI '@#'Bjm}}ſ--l}rqTiLlz̤:A)OhЍ8Ǽ%NpdP'zq~' Y#B'1Mu6j@?Ewy~JxU#|%'Цj;F6 Fd&>k0xϯ v~rp(O I @ ?y=P>HvEl>*C@GgJX*"ubxۅF<x|qú?^+ ?ewLQO3\7Oafb&dނx}d>&c9^<kcc(4^DQXiUUza+6g _HHk,~snXt>fC^wr]N %z<D3nۑ<,CiTzxhwm]ߜVֲr#DGx`+i T u'K +׿?01a Фa^#t |p3߯Wҟ_ /VR`A&N2ק8^&qRDѕo@byt?>o_0/ FI4eA緪} Y&|2ݐ9#2yZ@/Q 8^?%FªQww aހLgYm/.#űZnj<u,Ŀr]9~x "6cΊ%Mkk̲W}mme**0?pFx ͉Sս^mNӧ8qJaᦟAIc,Fx S7Ә×ٳ?Oܸg.ayV-m<czuՔ8z- SE(h%stNd%Ah<oߔ$[WR;yg_W7zrPO286nyjƲ=YU/7%IAXLJ X_Nodu: m`$Z@2 "I? tvBSVMma#鲌Aȏn"?tG:w~혿x1Agu_qޕ8<9(T.'3u&',b^CgGiA0,E``5D"q|Dk0.G|DR1oXżEzL3W1`dJCUKIpl̼W|OAv;&aGC_`?|@!LtWDo0r6 _#m00η?nM[GQvPoYwFn#%B[D]>F9F)~F0oZ901(!|Q!C*[-g_}FUIB@oBX ~wUBXIB9*/5 #~ ɋ˔;#!IǓ)œŗf À~!a=uH=Ox=ƓD{'Z' K#J9RZivWv:i׼?hj*Qj;Gת6&?Q6<˼lpxI깔u.AM1bƭ=KjzCxtG1vs( 1V8QhI '>P?_ņoni-M>լ&5*q^n'dqq,}NZA=iIY:"ILv֑q>I/3ĺkþ˼> ~5<ƍlu&qE VKLήS֓`Y).G8+oUHyW䍲/҆Q38OƁQǣ'INK*< Nk#yݩ˭c_m\M GcǨ{gd3RICKŤ%X >AGS nFk!-g<S&Ïi@du ^8x=H~>8q >AA4<sϖOy77ѺQ6, CQ\~01kilׇ~Ua ׶(ѾO/ kKB"DUYzr'dFxwnN=x3l$sG)AQ-a?1\x /œ8^7EOB~h 貟¸?LKs66ʬlSj|ЬU^OwW6A;v{}Z_ #bG߿gg}-}69S{p{{}Sx=Z;/hJ'غu3B"u1 J5Ǐ }9&} }>Ж?3zN}ዌ}.}2k^VW3Wkfr:+2|b|)Ǡj/n>'M0LY8.~XeLBC}W[rp2b?]i79g| a?"RegrM1?EqJK8FN7 Ays%HݘPߑ8uyHOd*ѯ)ǃolk!RO3jbz1aΧ04B^  | u卹Ti vyz}! Bjb:8j$<}1~+SK]c'iK>"-Y9I%}^U\ >$!8#IϔA"*]ES 8}!})1a cÉ #@E 2\ xcdddF,qx:PG不$}tI"+AuzSj)1~~uԗϷ?I}LJzP@D?F*":~>N'myV92qױH}pj-"Bb~HQcc̭.vϞWn3X8~’^Oet]cQBS߿׈iuqlj}WGȉǛ{IA|2?UW2Qvc*,_crٳee?ֽ 36O~"CYhUe<off'&Nl_f}/(`p*ϳO!@CB+u4#폲LKl<jx^ [ _<Cg댽u>7قl'竟R^Ň:UOpP/&g8ʾ+,/Ar  iMQn㳺v?5^,g* d(9_&I9%dq?K ޤ[O{5>d8;\W9:yC9p^y^<nu &zZ=ૄG`fLuס\D cec?,36>CH1V7kP*vm7I0g8VHDp%R;c(MXV9th߁  ==37L}Ӫx>ǺJP]%%SxRA!I0#* qaCg8N1h?1a c^ 5.!.Mo'$qAA@`]ɆydWBjQ(qcA܍-C'}砳qbM$/'eH|>W ~ > gɿOK 5]ZwU- uu IP9#Vo8x !p b p<)Ƈx>HFLKDwbmF>HqZ]JMסd4;.r|<yno+߿O@ "8Gxo+!N-x}roY;0=z5A6< ] _א[H׽#46' ˢ3b{>]9\:_6b~+$tG^!A 6/2[ &Y!^RaFNy`8dSqss'޹?Y|Դ?ȬV\4I76?L2>^#AfhXY"|؁߉<>|>7?+ şӛ~Óf+c[b)Lq\P#}J6&DY /iMKyIX{ ֵ~ʘdus;VeE':*mݗUQy}aÓ?>.v(Pjc[ZT<|xŴh홀+Q-潩zDSwJme#{!1[$o1_AcO"7i8O`۱EKՙiן~_)M.]ׅ JBA_5 oW)#eշ<P8C ³(Kׇk/>us׻01a cU LT_0G5Xr]*9mt `x`4v̉o1uC}*gbn9Pe6&~(]7OzHo:\q1hԜP&o*|H|<F γo1Gru'g8`fok䫲xJ9N? [~)N -|2't|h5>߱)X>Q"U?2ʙuue z/W-(؈Lٲqb<wRu}"|_n0]yHrr!ʥ-햦hk05Y:{lf 3VZMKKmpQmZS5A8R?<w?3y.Rh6oKGZsvUVVbT[3eOl$SeUD-ekZ7j~]cU8;FETUjjwAᅚݩl]SLw2*O-osllsSSi@%pPDu%#j~+ 8s;l4jhxE"jFG}>6LBaۉKݏzbÉ(O[9U $|SyC ")oKGxR)O#}r b<>@!_~xjQU#XW$<w&}==ǁԠ"nw=;B;cT>J /*{[<-b0(\ŝWP=̦^e੏$&:EL50o.ŋphB-IrĤ[z.}3Hm}ѺK'D{sy1^:K.u!x%tWo|$ <^ZsjKU#F_i WJیK^OzO" jo+8]/7cG7%Q7HBQc>?yu M3ę3Sxި:x/H#fqB{+wW7Zλi%o&[oE8ڷɓ~+LEs\xIBϸT j&BH5`u\.npz[2[Iulj2%O<25 0fMull>p*ٿT菎R/--;U"vR&B[US՝uap#/plf|Ku{{b-x[=I&zk3y?9@VGIWz(ȑ5[N}z3X!J!%NLɎ5a 'b3AeKɦi? Y-fѼI8Y[!BѰiYOĄ/3`V4*C@N_q58{N8/ +3 _^^x~0EAPdnGKB"Sִ밗-b0Pxc Jε^ OPOGP2 HzK(AYE WYz g˹Qcz<ؗ !b|'1y $!v#>+: ^g(Sfnl>T?#חEopyB$4:  :q],,@CccB1ZquR&oKG\W\2$q挗oW[h! źcﻫmf-[hz`dx1q^ /Ȼ"MKwݻ֣|t]~+N9O҉8^r~˯vZ\y/n}.{ΫGeނf]yNrZ6En˞fr ZH|ujt04zs~RJpϪU7֢g؛QWY 4srQ\mNR̡b[^Ӛk˅"+(NɏZ9TQ.&[Z)ϕG~.;ÇߞU!L|<5 &6;kk7i4kWi0%e^Vdc.Bi]LU*7g^E={ʄ.i̜^* vUnpo9t">cH>w*W7y Q~o0_b i`" x->4o(L1>vx}]21n+יN21P !L*?Pn {rѳAidQeTb <F ]@OEנ?01a cx-q hP=$'cp"}ުh+~2ҧͿ븁IZOQ}ovd:Y-"- +>8@ֳacxe9wPݍt 46̴rLk?|:uyi%W"&٤q:(͂{]Ǖ1uz{d/kqrV'n/fuɓqC{T<lbO;(Gf IT1Cʷ /70naqިC{k!1,<c!#V_O%ܹ@g#GvY؏8,78N KOU( ZT뫭'(78h޽/0z6-ou˖)X0WItH OtHn]λ t:5>>;}U9D(>UUEyi/n?mo?rt3S ޫqtm!u΁PȥpzwoYd6O(S*^yi69T8}8<Cy0nwm ?)NH먖\Wx\(= O?ɛGveW֊ނNQVV`_Qe 3[ l.n~-ts<oga[,;SCݱ&Y(ybyWμڝ"Q:Yfwha"z'/7*<rc遮YO|49iXW_l.ё יىj^r_G ce1ZK7O?y,1o:^4I&`>ީ\Jb?-*iq~=vkǓ}Ͻ ij5{>?GKA^?Qy.!lcM$ )Rj\~V˚&DscD@|Ȧ`a cX@ UI(8yu-싇[$+V-=o"Ej?eߵA#j>凰/ y dAI^LXkl,fo3ñX̿($sZ޹6q^SS#\T^k8TVT}9fC~ɀ x<n#(myTk];ݲ%"NhĨX3e%D,ILSєqpC3S pϩ&b[ Y?>~[../♶9iޛeLؙ:K^*a?qy8\<xvͯY>f^|XwNfq ^T6 ڷojfq鳝:u|M<'3G؟!^I/R>8R49`l=wybź }nX7**v |R.>?[A?w[B{ȍ$y|&@{]$tIޯ'!J{λтJw +㺣 HO:C R+H/~C}} 'q*IF#)Aiռ]#W? fUU!+ܩB#qޢd#Y o3P}'Y>`$ddc<:B86qrxx_TQy3 j)>] BNj!Ew*[f6¯?/wg^f)QNRx0V{<yN VZ/W37>ԏS!/4C.ב܇OI5m/ՙ|ՙ^"KE~0a8獹~g:\z^)O37rhF202oHR.љzQb>ctc,2ׂap=`'YG}AW BkշL :*'S녴+׍,B%n]ҽa c0R k94ysn9/*8sdԩ2}_\":*0:'l81w&w|I*x'lΐs_ ?z\|Zg\*JJ7b`N2', !űS%g?H^Ҽ[Q'e.ztGu0_ ]Ġ8Bن=QNډ ?ii>bɢMO{ a}D*%8_"H fh<n>I 3e˖)oڴҺȇؼx}&CyǓu m{w I% $Ց< y†P.]opw_K~w#7LKDtHBb4. ;¶mn[[n_su-7im:ioNucdRKCQr?Z.M]xM'DRHHHPg\ 6Vܼ~΋84_:7&?^d9{.-.I;O?JqrAseTR_A,\*.^yh~{VJV~L- ׌TF銊-gk3ڝv-f(s6SCb[#NN,Jk7)-u6 IFcMʮ`q+gWpm:^r|}zMYb;3y_};Ӻ\Eݍ^w+.?.7վzPשïDX̪I2$A? ?:#e(\`񹌂F.vvK(AEיQº߳3Kuxy?ySQ DxgpJpo{TȧZ7N*=h:s,2wc@}HP. =+n11a cï.!+x&䧪oVfg߿<O)R\71<uԶk]a=ìp'bΟLϴzoc"a9Rrσҍ?0+w(JJTQ]1N"+ue daサqqee33,{`2nq 8-8BpdFͯ[9B`B?jj<_~Sbooz?19r/\&)(_ߤ #r A9c8AaG塒$ϗ JCL"qz9 # XDZG#yGwpjYSӌv9#=$caa*SVfX<^_ %x~/!o8[e]qc.2i=Iŗ>tM|<"uXo<~6$y w"C@lt5b.29t>5و@?VH?)isޭq>BV;8}rfnh7ΊYԋjjwhZ߰8 Iy >DLLC ,X.(=Ϗx;al\E)jnj:' c\F[do8m2rTi&V/qQ}OeH1x10M/ߑ9"{yLG2vͳNAx.H߂6w֟Ҽ 1^xS-|Jw/1FxwpM%3u>%b y^B_rUl ww>j<$vk*SLta_\[og2XC]Er})tx7^g PS$ wD{SG N<KS#%B4ϙ/?ļZRL z߿01a NXԞb7;dUX\{^\ku2| xDp8!mV a]snFfZK!:ا|֊`s 9}1V.ؼy X7 <w2_ea=-o.3q0 'vSjKA./ `b׮<UmRe/L(4Qa6~gJ UR<f{|}$>ַKjwr@uu=t>Yxا^Vz]fQurF8hPDWYyI-ϻp]*<n&[&mTȠ x0_<d#:>ASr=}d]gR{hEX-cޢTLgG1^9?ht_!#+Wrȓ~˄y ;Xyd>bDrI{@8:8Q݀Z/WCTQ1OqH|I|\>2׃>5b2/ad4WLGVşF{Vl_'y*_VV\G!J|ɲM4Whjo8 Uy7r-Wk߫"fwXHċC*x,WHti}˰OxS>)ek#|rM O[+>8x\;)9Z+|s;+܁B$(:+[3W(<t |*/l :TG8^%{ueuݾ>S6)lk)/4ǜ/-. mXH c0`YRNKŒn~Ae75KSg]@JʝUBUF#vD3jM68.=D Yh|,x)cGr:"&lxM6@=;p7#Թ[9=G{kaN4nq_wPVxc};GO&]ЧA- اNyJ݂ $ew k2c]@׻пa~Ru!)'g<y׿>#? \Y*s]FC> VuSkQ1RTިqc0"vt?U٨4q.nIw kԮ{h͍Fk5^<-F΋J^ıy;cUz Z:YzYgkaDf wC ^U5?wcc,!8ʏvt(.ٌP$3ŕ. gtnˤq*/Ì <){n5'v8uL)/,wr=uiO5Uyb+~]nb&;e^G>,!mۘGc O*^R R~0#RxCb>EFǎW4=?6}[-P5u6VJtX""v{.JsJtP4ΧiOq". %=Wɔ~iqu:7+*iu/1a cw†?tDB7:ڻuY XUâNgo9 >l lgvʺ&lYvSL-Yt[Fn"TKZHb\   aŲSoGM)Ypض܈U!ao+!2Q$<|e7~r&%_\_0{}S:i싙rV6y3yjUξ}bh>Uܡuv0H4NySI(y{ !zi{ 7֍P7?E=G}~KFwWIe8?`-D~9%o}KizѷS;Ϲw>gTC+ȋ rѨ< zCh +~"&{TGjtO ^qCq(>> ??_u^<N$u3Seϱɐ }zPx*z/@Ii[Z*vjkw7)jkwyj\U[,lxb%4W-eq*w-ôS=Sb~BU`g϶H!׎Y_p :p;1.-ۤqv0eUy7а[׿V!O\FƋnδ<*QtkٻSQ}LʋobC<ƅ$yBr/q_ | ŭcqZ)T UMh3fowͽ+6-󡸑Ab%ME[ZV );"cຓ$W01w8/Y^1:Eb01QU_!!yOQ;&C}CT1V/BP|q{5)Κ=;]D@1ݵsI =%roZe{n~kuVhk+ck)J{NTUA!`HĶrVI\-MAao9\˛dgy't?bVVfG+[uuڝߘȺ .WP^5c_ryڿ>F~~rqFI6΃e"=UhZTm:1.\]%H(UQQ9^0}Qۂ[EAAx-w\t<uHf` 254{zmةʏfZH֖V]mG 9a[qѮ+CuZ!>8Gc&Ή=:k1L< z&x8k}7<}Y>(XJnkBL;!:z a b?*}PQj/ IuX?qvDhh}V &.PC@}'m,Z^v< i?Bu >&Wpf fO(8G;_rxϕ#˿/qOXJ&0XK.{`tL*\kN҃<lkx Q;gm^/L?_XGKlkf˘eH$7aCJuq"_'Rm៟RgM1;"qK1ڟըu{>iT^@wGo6coF8q9-Bw)o&|ANrdf:|uZBdK1/ ' Ir 4r_|\Qhی(N]-5^G~x >Us|Q̿ofG'柊("(_㉱at:Zdr]ҳ 5Ƈ|&}/U>@FӂX9x,Һ\ys<v a--6ӕC՘B<'D\y !x f'͉9 ۝4iT\'uOfQ gL* K,E旧GDV >_}|?$Eyd8gJe91}OE4k._./Mv7k^/+@붠$ [ɾ=Z)=GC!܉ԏNY$ S*!Ӡ6(3Qa(4u'-ڽnN>vyx$t\<>n ua PȃO]JŁ"ρ('[rMAD(B!Ky:;ࠁ׊c1nH{C@[v8={S߲ic[şx0}o-Iu8}7n4Q'c0 t ty|$fHh'd$-̥D}A2>'t/$_zsiȁgNZtOH] 3 [B[,R<{i0g#FAAO!/l?üד*L^{(ສXKNmD] ~Dfc?qS\SJMqk~_KLD=B)<FF s z@O:o\y _n`jMEs?kf7Z(nz( W\ͪr(n/̜ibIzt[ci9EQDE`+nKR~B֌ll/Xg<\ 4?VCm3𲛿~8\E˕} o8/E=xin[IKl׉wל__~qNF^#Y;޳ 2O?E;`̴4Jt2JB?DyĦ$e| ,Z@}O"O<i8ao#ږ,/_ _}e_{`~0 K5}f>WXRA? ~Iay0Ŀ-#Cnty EHLx D | IoA|nuP7%k#'ۧ1-B[o~-yoAR3?I^xEϧY7S Lu<ň묯==ujcר+)3Q(,?s2j/wo5TEEŧO?pqWU$ee"J>Ɏ[ O)7Ohll.`:`w5j4x*R\y KD㏓C-jC-"̿UYi3 /#h7 (~L[;3[pÆ?Lv;857LZ?Sբ̗TK߶C"~31cԟ|=Ų2cm|0>9oKUnI[BS:3Ys6KBys@̟VR uΑYH+l]f zGɅW3w. ׮"Iq*`ϻE"("~ԅEG}=X?1+? B07e#s6?%nTI*4j *)w*rt [#gŋgf)6(~_=߃[.VR]/8T:N _gT}] /rc-AZ{ɽiNJ+C>g*j)NS5%0WRmq*('ܥgL! A]YGeW6uQ!>T ?9#3nc0|G cK$[-O~r ::Id#\n4xWEp\Ln2xIZy W%4ǡt! ch9ukU~_y3g>(D~?KfSL *!uq7ꝤDs3w%:u̟`B| ǎJ:UI~DE^0ǫA{;k QQJ¢` 4>#''OƠ=0MUV򼷼<NH>ȖQS+o_@2{tt 5 9Vp4F{-l)W` _Imؿԅb>q{ *ˀ_szalyw60GyZBX{d:?z>n x q.d.̇bC%kL  G8w̪F_Ŝ剱fI'oW;'VRok TN+hw_\Q* ͨ*6wsJO+)*wf! rP\,:!FT/"P~wrU{dѝ"("~j lޖ$Ybhev g9sg\==o<2Z:NSG ҈,/Ѡ}6&S+,v8YILʝ#ls(=Ph?h'cBt咽tifˑIQl>4c-Kh6;_!M$tt#%B/ %oImsC-L$ShD<6=d2x>O5OC[JrqY9p=,x<!+ |E5L BNIhޅ12'#P8N?ZTX:{,xɈ!Bˤ6V+m֐VzHNmoeq+~PwTΐ&<qR HZiFZ}wZe`b5*t>ՠP۶mf"LK0ѡB&嗇5ayQq[7=7 j/dȥU͞G mx&d[n9&/5wwBBE'hkvx Bcc]#ż2.3h= &4;<Gۋ}RӘN)wDh {q3-؛+Z<Gm[{V2].uyH 捘7~1;j^z}ӿG"~3oBEĺBsfXi} y!XAÕG6W\?ק\;t>;~Y sgf!%B۶|@_}W577\m@A? "("_Ǻ9v$^g<J%_N!459>nϹˇB3[ЙnVSӾsXáC '߷Dop2P_Ynѹ?omQ 3}C_ %[ྩ$kE`z@!>>=<9Z/9di+~8hGd;mt΃$uDOd,9.S (8ǡ}5/`.a}`nGK;,eOh%|, 8>My[q[jI"x{Ao9B/:O福$g0 | N~{ic |NK6@c_{ {)# 7c}K%:/觇׳+2&<@O[3!H2R_w]>'u0B<Fx4kB}Wm] \ ^xPzW~ocrI5Tv`}T y.$_wxQLS)x_]GLk }F|$}sgj5 ,Ҽ I0/9&,!LfMCP :(.ɊwN4bB [l-A*Ut4Wh-(|h,=p\Ja~N,_pY\@~IF]vDfqCE s#ȯ^$w":>WPHElzcO*&˼7meQuQDEQD:yv 1GyD/$3 ~߉}qϮvqlUUb_ES2W~&x^jqZCJ=C=_INdFD;%%8 _j-z/ Qt^}<;蹳E2ƚ]A}]n˚5IJ>eҘh c t%3g bkU ZEugC3ݛd˺CJ AR{j<f&&T8yadt/^<C:=^7ٷG !bG=)y.[D<ܧ/xBn G:'`+/i챗 :uKNH*Y`4 "c|Oo{-ީ2;ԃ|>[nyZ> 6==u"KOW8񹮮:dҫmMD O/QP^I_~Q~+^c_Nb*ՉʰF$+91: 9lխ<j /(lqd|ȨTkzt搆BG7k=GOL]*g+!י QE;"f~vho8pޢp.ftuUuxyOiWW$>PBOOBrQC_Ӫ̟F @؛7E;Xx |F،pU?FQ:r;Zc?\dhZfoS ͣ۬EאRɼBDEQDbqc'):]{8%?/4IZ~ɯOHHSz҃O@ay\ŨnJ 3_ʼns,UT_|2{՚[^i6骏gu"TP~R^I6;3[IlaO_NgckTX,/a2 YVz$llB+ZѼÇS+5Ied0W55'Ba9|wؾ:Uz|<!}-בk(g7 Q\_Wc6E|P>8*:RbN:N?-:&a?HBՒ@x"p}5-df-oy :Xw֪P=_5*zrfЇ>0oYymVwhAS:++ up,~ΕEEg֞6'3 nfq?_ihyv[#(̙޺yOlOnضmOׯy2BHs(.Z63{ElYrՐ6WLOQwRSʝ%AqݍMw'ڛb{ԩd\E)s ~-&#ZpޢƚgOe۳ؐ**.D^ uy~%\T4nebBx}y_2\pj%daMz)׍G QVЌڂw;$Ef);$7 c78 w9yJ!i+ՋeohQ/"("(1b1>FU-R%g 2EZ;+RPݧYrff?#7wժC-z&0Rb6/eU護W9TΆ Nf 7` w}6:%|@RTOtT󏺔 y kw|aAs1!GgV3_@rܙ#e!g5Ao=ֳ_C kHo!=#'9K_GmP8:Yc}(Ws^8Ϣ u5pN3&ک j񜈗)ι^_xNԫ~ۜsR^H^g qȠ%C>vHno)!J .P;aD~?h[֓o7d4a>d|3tZ ZeDb92յTdLOZL:QB2~#20|HZ2CEn;&l,z-gɝ}vujO>zBдɵ2߽^Tn7!h0p\tJՄX1oP2`Ytlԝ;DP'E/5|睕o':qßpTkQ?,+߭Y$9t.e_~p,t'LFsyn>d/ js^xhO>!kk L^=45>&`ZBg xv TZ#F(;& T;$7 Gcͨu])p4=0W?bBW!SDEQDE˱ʑ89 $ZUqSmh}u7y@O}|ͳURZ_ 46~csXwYYfIIIYI/^7L5B:?~ՋSl*H}v;0/3x.fh͕%cY*ɭ؄ 7J" ]瘍6UgˎHi$+=q=GyI <˕'-NCR"K YI9vdd# qcY1UVLOCEx s L ܟظio{o)>|m8P'h%*Dh-[,ߐy- : @o-484'5:ums I'"8DB/ }~$4j: BЁ3WZ(7R+$dR0xp 9*˅(x TA6?T,U]ܗ+Ñ>49C뮮_QD/43sJzxxů)cĚ5K/HÕ/9ohZ܎-$94-m/CiFFZT. ]%wO}}YoOGGV)"xiH|/=q|"1)ZMHyDfhy CJlzs.BZ\٧QDEQDXObz ExSM/c]puBߕ̩Nlr"-qЇE*pƄT0?/y[ @<tB.:?cRN"tmBf&qo-w6y!h!RsLcs^$(ߖE:_s"aT&<79th\]ӂ="$د_k}FE2Ч7mܸdӣRI>iK7 BiBB(sQoa}j'ᾼ ~t9 }zhD7uv->('5Ru2_Y?Fc sCZȹy":e1_C8F%UA]Glp%2^0 g?oC#vZ؂&asa~ KwϽN.CPsM<Go6_9_#a=Or@0ɾ%o?">tc;,?삜5')_ޭ ٶm՟G24%v=䲠>ˣgS> &X[<2}>f>uuD<W^{_ǀ?ӿO"~pl<Dx$g!Z("(7îc!PNISA:^iEo i/Ѓq$CYnVN+dJnu5TLLDܟȲ]]uJ长O +KWz)|tJe~fd֝<uA>ͷy}i$ 2LxϏ07 x V;whF1Ѭ NfUNgEeOdԛ-9})))F'O{?Ͱ(_{<3k쇖&K_HL |߄tn |wQ [Opwդ[yr>A̎n^A`l|<& ~y|- !lC!$8D .7߁u+kQ^$XbG_hp-ǎ 8/S&yAOmި~V'球cb=ΤG16]5ѩWƄh z^(zGyO柎'ܲ~O@ Դ$r~@Kz:nɒEz2nc_xɒ_J$ 9q4XVO^Z<Vf uvVQ#\[XU\_Gy#>)3 rڜ{">ɈfYgLןXr|㨷俐ǸO"~V<1R#e7.䇐o"("DZهx 57Sr>$E[Z'W4}j_YyxvB#-+-nw/XM $.qeRe>ejfэS~xT?_j9_=5 E5RR/`IwqT%ij]-K zz.5 2toH Qtш; | LO?=55K_<YRICGf%Skq}V%2>UفМ`xTV_a)S< 07Ak_ꑠH"~i.; 530|,6u2h? M)`B5ǦpN.G1|ӡ|x~6c%0|8q2竣 A RҹBǴ0lN@Ίm5$5N|@} aw:J"*Ұd08Ϫxsl$spfO$_DH2NO?7gϺʕOGvJϖ&#!6 dhk+g||+':>T]}XҪg>DyG8ObC<".U9!da~fھc?KM}q+5n[KQb| %Q۷gJs3 ~ќˬqB}T|}l1B}H9G? ueSzmm~t# RJ5y"鬅H|*_1D#~HR3e:ȭ+"("9xx W Mk{*+HRWW81zDRnľwUϞ%!ZU廿lxvvMLIykv ]B9} :xn^Ϥ>M8>~;W72vK|-CMWoFcǻtiN_ηFNHSC~mEš'~6f*'sX.7T[՝̊&D+QmgG3_u4L)ӭ:GyCA?{Dhhr9.& &WlF&[\/ICaߗbQk! OHa};_,No E?Ol6 +Fm"V2|J"x%#y$喺di.xI8>`rm_&iV|ŋx]x24Euu4uSfG_I([7yˑY4PkH+?>@8}(qjӦgsG3חvN̞#guC/1TMK=ڜ]adka(O`y6Pl#\֦UԜ~O{<fɸ>4^_b_gt>2{>Lh@}XJYs,5"ot>}5#%&dl>B<N>Ж+e3Y|-DBDEQDE1y[fA^ۺCmf!f5 4ZBy-52JDwSB:NN9V߻@WC~߻ǔjQa<CP?c6ib̭LjEσOE/*oeZu܉[zq>VpvrPUnzXz5-_ JژꣁU247P q |awm}=5_z]XJh߬U0 AOk!0@gsn8իI _/^zrU8_U٣6cb͐90ȠUD9_x}xo= :PA.-1n1XiH| E %q>u?,cݥKK/yJx['eL_(>4'cwُqtO>ٺD'А?mTev|8eY%<FCvdV|Z>~)Xt'_t[V aK0z>\ݾ+U D'ykRQڂ~.>TwE(W/|*Ѧ;$7 C<F[("(#bk/|:opJ^ 'bH>KrTX֩o @Ajƍ>Sq'c s\;ZN}I, 4/$%߿}c0{cQxpɒ_ft[_@g} E$*~G ̩SJy4:*wh}^e}cD04>dX}.6rlz<;_1໠S༂Y.dBȺq^HG`^H#qjp޶]6W,߷TOw8{$#/破?vzA4bBjB3zXi[ ^B\>ķаNF ={KǪ@AwuW;Hfz?ZA'C?y%_vRq|D˭'#T}n|k=5uuG㩞^Sѹsn6Mmm1/.{N5R;'"ә'o|O*M[׻]ym6 5JJ PƽB} ]S<D|}I=n˟\W GuI7H3/ntSON$/SaVgo){c1pQ^fJD;cp{sg.4.-jZ<\sKDEQDEjW&O+F}{(2΃(%a>LGVcYq^u9ff]*8@r f{d?zDX. Yc+W;;+|d[{S_eB}v13e$jjN:f[m[/ e2E~9Hx~8xlf;,}Kv472f>sX+SjLdGRxO]eOgI/v|:GX|J8s)z-$? WkqMijtj_~{NK4 joY mhy^oGKL3:AB:ƂLFy Vލѐ!,ĔkZt%*>$6VGoECx &o}_@(*'Z~X"nEty|n}x@A5~=}3FW;>vlG2vQ@_X67pKڍ|;a?FWO!\+̟PٳO(9MK_oW+lD =fC+Z$O"~p?jv{g.mZ2޿<G;"("(*FlX6ܲc >sp>z >۪k6T}'|2?+d:;m6YWTTexnKܷ5 3t\kxdvc#P xLO;,{ɫx|R P 1P*PX*{I3尟so@}` y,ubFJ;:.1AO%l:hX "|dj K_UHoatFަS+-}=qBCGf~#N<>~zA?Q{WpF$osu.?@:ϒGX?u^= ґxBzo+tM[.Jy?EC.M`0BkРyP53,㑆o:[ΒfH3zQ_n_O <է~8 ֤Σ[ߟT8ۥ4`Y0ğGD5R~:󿉿ih׆fn&P?#P #D{@A7?E/-U!+QCQ/zΙ=Moo֛"fk("(7 .,FcɈ` 6%"5&|]#/=T뻤~|38ݪQGWݮYꚚOp޾nw cy`.P^B<JDCJ1 ]\ ߘ),ϗDQ:~Z4_W|ui(QWְܹʵp}zr'07{ \`}7Oh6{;.Ys>5hBN:'`{Lp׍^r3! ?-g3_(hoKMHsTa;6`71X9:bz^Mh? e8W`M}о>K+!D67@=!@1 N|M|b2?/A/kļ y1Lat[24'B3ȏH4~p!9%x{%17XsF{t_o _ 3F닓qη=us_۶mP:3)(؋m)CGGŴ;5رohD8m> 8OY؟?#AOէP\DRY0o݆%c^/?]ِҩ.[#_Pqӛβzq$"("?O]X~/C?v[sinS _Ox*u+TZ냿xծWY9G,**<G(wfOT[[Ywn]Ro$+*v=~FmˏI\uK̗hI}s \ C.]*ۄsCMoc=ukJ:{l;n-PK YGn<FC}68PP=%ĥko~ҼTWK5}I_oDUωFA]9%:, I|V9ޯR: J:38~!B|$,y!\s1#-i*x ш&˔`?N/9d-: ]w(taaނ0x^z2׻>Wco,y}znY;}mW$Y4VjtH:IF+ͦ_{P=04來.p:Gn"ou؜μȓ_j$0WAQp )3',WQmRI s`;F0/~s%oǕ$<WDн,q=k֑T>GБMDqQ>}:7lp~$篲e)\H9>_+Q/qNT1D;c1nu:?AMo$}*w36+D^CDEQD"UKdroT7_Ox qE@֯B5M'dtTClz1|*37\<rǩϜX5Iod(kfNñ kuzXA=MSo_\tzS/ݞp~ K<1(E~yLOgO`Tg ?c~l?9c/p# 'WT=ـ$PUq>?/&g. n&S"u^ofו%YsnXn17a7R tՍsxL+_驓X~sOO'UXh6tw_VOA }݄:=䎢8#tnv~uޏ`>j+47̕J!.h#) 4Xk<*%}*9$؛k]rWM~VW8nk}yok"C3 Yk1]]?I-kjl,>/hN~&[!7E0>23ALs4\G"O }n(?I 8/<?@DO'ssw<d~0;gz)3U RU/}=\!/Kۼ5d6N'cз<m܏ݺ}%y9N&J /Wszu-= sRx8U&~?UO}CkDm8uPꊅ iPؾ}[91s tu<IAMFd-q6o_ NĿ(Jx|)urj\4DPEQDEAر2T0_%{MK7ߏQc饛> K<Q'|^{"Sx<KFrooFWrrv.>h2S3J4pti}ao<6zI><_A}NKQ}p>T7ǫW#Wjrm_n y-/ l!QJ[}(ο8}-"}YWCņDEe[ק8HQk%uuJ q+&84T 3BŏͿ~ͩ6l'Rb9R3}FANBޮ =G &wU_u?()EU]%%Ydc#B%[914#Ϸe,\}qeZ~3=˼PgP8N-yȞ;F.6Khƭ43xy!8μ *dy|K8K_X^[cI_:o7r*b9:q?@7>~D9r'8crxhyj^gFn+H<[?q\./\5Sۻc|٧ J[!- LiFc0|o1s 9N_a6(B/CsXVs,a 9[1O;>19jH?+YU[Iɸ,oOǜO$ȆjS\U68IB.?"!"( KϗQvMP5n9ʥKh~.EӉPu=+wޠX#ل9@+':upӫuvVRŬG #:> t;e?EBIXo7ϛ=y,`OP`żEHE~?j4VCjq: !y%p&yA|K p>óU#)JnGW^f9%i' w(:xKUKs[IQ[ ZwrElQWWO."ll[Z_NUNW.s$ZZ$ 9rd|P?v|"m,yI4PtKtG] 3XzG&;}xyZJMPv%I/TWk9 y/IqIPoȹ^{rr]mm9#^t4y`#}ALc/wIJwL8$B#&}Wgޢr!/޺*ydr__ƯiIu-d>h#0 P_Ѣ =?ȯo !j-5߷e}v8t3Op/w\ؾ-s?w333< )7fۻgW f@dqnm?W - ݗ>h#ړѧc.:Ilg@ɝO}kǏy,{MJz("(q.C+# %.eH}A]]TW^6}B1B=>}=9^:xFӭup_=;;cRT]].m"M|uD, ozyЩnO߆|=8RDž[sd0;O~iO_i¹ ocfօ0*aMHA_\l/\{>:// 1s>41g84Hy?)p|BCCţqe$Y5Nou8?ML]ڠU'WC-2)(ȐM8Ot_m e ->YUnz$ߖNL3 ]GRtU#:r$Mg1GK]dɮlFzs<Lz-@Շj|Dga$#a8rKCSC쳂hTyZf }\GG^׏+ ΏIu{[TjFn,;3Bsi5KB:is_om'1I#UW/=Ϳg N=(S :%<5 ?tq[4YQ7}^tr;*̆hTڄ|9%"QFR&JEPEQDEGĢ @2p>GY* t"ˠpMԮ]H~%׿j <Wy2:Lw3_@><>2>(I~2Txӈ($zRm߾2d"2"B@<_RC|sܻd4x>F+[zFEmKf<0!8_uh-dLXgO3t}&Fl9^$inv_ ! -. #"CyBB\xLuTK=nKrא"wwv6<HEE/ܺoW(K^/$`Boѥ˧gg'f?kv>Fƿ\rx 嗧W =7'_4ШhOhY$mm'RxNi,2??}cb9&?Ǿ,jBee+z޽H/H'8mٲk5ioim>~~:@'q; :<MO֝Ԣ(jy#B.-lfpnG?lc#Qa}.Qi!֡?oy /wM(}Z->1zIv{J~2 k>sAA]Z裄.݋ -4}0F}]t &x3QD$#tBy*!u.!潊("(?."hk/2c3N|е\UgՠOZ;JҊ՚g|QPرݳS˵Y>}Io$%7>D :d;7΂/~:qw(#r+|FFaܾ}$kLNgZ=\"FIg>j&.P{f8,R`fO4@.kn4>Yޞa#wA}vwt͇x9:F[S-i \JXˤvV1 ^Ҵ?vRZv |0wrJ״u@wØP__G)tdtj<h-9X$HmY5愜DGrInP.k,*w\OxTΞ-iP]]h~^#a[[MJ593= B”d_fKV^,0@_?N~m_Z-Gm~]:jmzlUR@GR:Iw#_'_'68!GwC>'K@-\Z6KU=qNDQMN߰gHKH^O<T l;:_/m?{u}fFH10R6yBB]7F) Ml_RKxM M:{Ȗ1c[&QllӀm- _=3%[n:yY˙sf}6@o6Vw@d1 _ɋ,z VQ?<T58,G?jyC<ư>ZxarjjL#PPoEPS;Zc'BgOqZ4aoHa 4Ch@} @Ѓ,)q)f/ì u{LCPlָX*3jW[f|U_f.؛pĖ54D;ڛ-)u:: q8)X㖿NѦ'|БSPebΣ%}(E/Qv}qpȴq//%t<b4j YR!О|^o X-(@݂hi-g Zpg<Q__>٣s<%$Fd<sdFH4ӥ6TsH /xO)גQ:Yt,l*;bTf:?1'[ kkI5jk8f/]Qcǹđ\kq[Vǔآ`7;S#e,:P:vw,9aι/nr;]0Xa஽|ҲG@͚>s_N8g9MO[\iIgUgop Or{xq?b8ԋ_e ڸx WƧʰcqP&z=i Z iaZNm>Sd;t,Q0~v{Q̈́?7#oLh͓}zUC 5PC j#ӳfQ'.BәAbnZ: N'qҽ GM HϽ((ZTCu1I{FϟVl=Ay:?L)T%pֆ(|s5?H|<+{XVq>e6Yg_bV(TYyvvӦ)__eɟOxq1}-)}waceJ]7(o_+E&,UWl[PS pzߋRx1{t$5е3'^[T={|n˚ݍ%F 9p`A=~b`?NsWl';:_CΏ#EEywMwO8u[ iTϟu.v<ʶN<{3+u̱,z]o 44"<R؉UOEk6GtH]aMn gZ-szg%8u蕜*g8Z hZ Ȃ<d|O(AN^81P9n ZoA-Ǽq]՟# ]tͧSNRv=x:6G̈74ӟG\uB4 ʝ=r}pn{M04[gc$`Bm~ b5W 5PC 5q'.jƯcJCW4xFuOXZ cщ1 gvklR}>d# ϟ?ia Wq`.h\oa9$KI%#<a`Q/nyȗ=~U䑒);wxP/:zATFz#->Cx(z"ìi%J|%cz=>t1Nqk#…)ҥV>ĝ-߸w7ZQVZoz6>FY&PEY-T!x]=551&1|_klyDxbL*#PVbst9_eYK<v-6oKkN!.('rƳPWwdnUWщQྵ)YL OQxSxq6 B08"KW+ORrNo1N՝M8"ꡀ/F# 5װi8^.ǻw$ǫ o1Dd)6W_!;=z}B3,e PGRo}/h* 5LM/4dMj~jjx#LΤlgd\_FXǁfx҇W.%[1>R_cJ75<D@JŕgDbkX<%ق>)un(yQOĿ7etaHX5!wP,L~y (!CD# 7rpemD8A}leZp$<qU<E~ǾVt<:jl*\lf-#Gr AD3&-z/$= ]zPdㄻTppW0\BX-j=Hҙ/[=4t3 X˦w,ݷ  yԘV>)TQ#s ŒsmJoNBU "Lf0@0,],TN^'Wx5I\O!y_NV"q.E|:+_ I' &)cpx'gOoaAtqy/A^VAqC]axY=[ TüYɳAQM~y ]J =&WU1cdnJ%x 5PC 5X{k>djX-8bl8O#W_4k-0?qZ5P%r]T?QE}% /08> W^aW3J-8-)yQneQw K0oϔNn>YiVc%h >E[ G!]SSsVtlu[}<]5o?XAY-BEGyCo!;jhx1OIp:~!(wO\#?_ ёHDfPSS,nuM/&V7Sq<N!VQΧoQQ 7BQY@TK1_Y퇢_$kڴדG$ƹP̧ #!ןDoj>8V' Ggx3y궙se,ג}QXԅz&uWOQ<j}8uwbHʂqW/5@m9$k/bQ3Ceprj4<: 8%{ hjgŠj'ErD9#ͨ+ڕiÞ9A(q^'8n̢c]wd(y@ẌHh %j,` ў<qhypO>:]O畷:j(=@D;! zp;!?VwoUnVl䯷pEp'_>ݻCA4BY[[J^@W7 oP,3vq+XC\+r TTVT߿NY~TIO oG7 mPF!N@/[-`TUϐEuZ]铋vfT=+K^(#$ } Bڊy |Dn?QCoQzisꤤUh:~Ƽ ~9<GxH,ٌ^*@GИ)Ӭ_XW#,j-OqMh@ofN 2!AћP/ Uאj$͟UAg $KuY48RqwT@sSY%֚we=..`=4!듊< Y41ALOa'79pRJf+y%w"A|ځu,T}NjclSoKTz|(2#Z;|~((y*MMv wx_{?.W}d 9(}UGیeߣ*;ܷWZ:/ܻH:q._gIkk- 00QB/J3˼bp$R4ԒʿyH.1пzycXY'>Qdv٦u&I_*0?qrCqtq۱ %Gퟴ仼A)VaQ67ѳQQwo5+ux_W "";zFeCf[ u BW./!k^&k*q Q7=#AIc\+{{^j|Q4PC 5pd:( :Mh,ܕˍO^G6>re-nxO?J{ nU' Z"zES2$YթmScCT"5YX3 Ζ4I yJ}I 4aLpkBaPVOnf|ϵ ڳgiݟ]]O1 |kb|F -[h }Ⱥ/~G۽]Ek8t ip8 _tt&6 3>~p>[TGEp4:~tzf54G(0䟞>nfw=R  )*:cZ̈5U܏r ⺟aQ>N /NRjy?6~QRX(b]à ')Γy[Ə˘ 毀?DJ_-:~w8'je <W>@AÕ+(cm&;<Y)XE=q $, #GRPG\FK,1_ژ$0] [0p=qMx XǓ0 7ׂ1㓎6<.L|cGXo4W 5PC 5W(Cc0y~Vߘ;!"JXϣק~h?ka(_dH\ ?ywa?y>.c7Rs U݉Ji+QuzTHuO U݀a^߰'' A7^t5bpF-g,9ttۧ4Zl<ȑyH^Ʌ6xc3.QAmyꗿᇿvz)nժgb2!T^ezK~$csQ0[@Љ S͵IP<#M*Cee;2ǎmc.oYˬu68ŝ!ֽ2;D01"Vbb|<. 1?P#BM ϻ{~Oi-Wif>°M D0-Οf#^|^\!`BZm~9v(xw[rś07Ãy+Ğ6EY@~X՗֮S} kL_PDm~hg<F_}G X/-)k~I߫jտHFu_3u#WBê.JxO a["9ޘ`R%O)9_h|բ.tc]^Mɿz {qʺg&x:x %u`"+Ji% Qa݅߭4לxugsSrW>yykS!w[6f3| 635Y 5ɝcc(_uBy?e5b%u$;[)Ql!E54&-▖ӆ{hZC1'sN֌c2#Ѹ~^[]*)TzihZQYo :G*vPoskÛ6[d 蚬^6]iI }o?h'18_')So0\ye?/N&w0Ot Vy<eQ0{ߺSr<)=yT}QfEL.~~duR)eX&Y;U],jV*.Qy2]Asv$/D}ML9N E*ff 10)1Rt~NUC 5PC bQ2/~K!H'B4'bRaQ͐<) ,( ATD/Chnʒ0QP׵vx|:{uMaCߔuSi*/b9b'0jةABKv׼`AtkƯ UU򼪱,Nt۷ciss`>ss]O<{āx^XOެw.@i*yg"!O#GݻWxw([&>%i.|h;_L*Rֺ-roQnj O}ȑ\Kz r6H?(*RH4֭{n-~>wlmڴq_=j~w'&@E>*(A6CW X#e:})TD*c^= 1UƓcW=<Еz=R6p}m.{>X}*4Ȑ5Xg?UW, !5'z|sFhtj88Rc ^#A2qیb~߫j4:I<yG4=8K(q⇒ /Y͔8j\p*6t RgR^N\X9E@ͤoH]\|ǎb> ^F^hr|jc6r^p/رLJ.šZ7ӏ8Xw#͛anˡHq@^\ +/tfv^Q4']Q#Py^J|UcJEY.h?j;̚r*dz¹FOrYg("Oy~^IIo 7 }w}"9V9OY}8ԃh~p%h S|[:,lP}wWhD-5 =z+Ғ~uIx oVcwOJ8cpy5Cz4Jo}ֵSq%vuE櫫Oq6D\;S56 v~k1bqkxcO8gj7 dFZkh"Js(sq۔8 {G$2 g8Ex_A Oy >b} k_0| %Ux ur X/}Ll@Q`&dau2^'e^88YR\݋quv^R\uu]JݰED3-!k替ZHHѺ/]Uf۽t2EEyo*˷SyU^}saKT)LキF{ Xf3 EG_'#z?#sZ&m,&St[׿|f]cZq\Fz'f!Dscܤi߽|Ŵ"o Bࡎ _Aa=Zԃ?2cdqbGyA[4&y1U)S|rnc#m4S:^N$gh|cUW6Cg) S?":O 3[ɁGqxdHKt7μCM:+~~k1C>iἡծjjE(^7T{FۯA{z$5`8GUqn8o9>2+IYpk-C> :Al .!HX ;ЅK^ zkfDf԰uCϞ4@< <|D|{nD%[z<?ހ.p|á쪪񞟖l\'/t HAd?i-\nem?Yl=yϹ/w=f:?Yk=:Civr$tWٱԿcLGN#FA梲-|j\cb>2С %8jlp\nkn nޜ-.ǫWg h_))30450gEY'kjf@> s//|' pKxc|Fi|8.n qz nރ؇\9mp~'|ާ^yN]gOPşǾ$fwT^yq3Y]hOQYS6دU-?^C8 L'_"m'qjx#0cۢ8|k(C BT^׊ sS54PC 5|')ާsT^%|>%hNo5iE3ӟE~J \tWu9c&y.| g)+cuZ Qg>#/@h< w| > ?T|R+y$'@M'a=bUdz~?x.gT:~=ȇYUoR|]|^n Xd0_8Fy^s-G8ߋ~|/:yoj"pU:a'<qxp i>Ủf!Y-B3׿n>M~_r$$l/ɔ4ھx w_};TaCWOnfj+(avu*uKĉ)=}k!u?3@}HŪUQ3N3e}tvfe6Un >tb$;@a)Jil,+k~_(7j('?<n]ө!(E5*o:LWc'`^)_ %S0bqǯHF0Dr:^}p/vayv  MHR os\C o$x=W=S[[|+5cG3hFsO0RUC 5P?W|y0o :| ToیaxZ=+Au+D#BW_\C3&HTQiH=?M?/tFc{s 3)ڠb?˫َ4@q:xpR1@^HW\\Vw zs'ED@C*Zb_!tZ<3 \M9W::?pLgKK\UWw= %-îQl?55w g21M62VsL tN]u|0Mo?B3=rd] ngfn0~E֬Y!@ڵh>B6Oć8t_\3G>DOq/(9N:gq^Z-u[@7Fa=+r>L' ̷7Sh[x jӓ>J|t X9ga%G@1s|R)qxx5),T.<]_cu{*9 iGEKq^~k x'Nzl'~Q4zx6)46xumiTjj8sK h|Xm[t#z*=S7MӬk?11Ozmw~Gf:v{Ђ"W!WOC[s eSHy3j3]k/աc~5O"k7ă"vg0kILM!yxsk 4B)I~6UcO|Tsv88LÎ˗u^0" aMx~xٳGgdOs{k '\jO.]2=1E-^fdn~>M="v^}q F gVM>B犗QҐ% GD|? G䗬8oɘ=6?Iy<mqy;Դ޼VCHV[[>q;^M@^èJ~'b8ox^^)|al{ekzwϯ#<9ȋ>{p.F;x ?o1W}^\u>(?|[@.}xo$!a^2j(y::E<ZҴ,nv?PC 5/ y(t"jy^^y >p7ŤHF+{_5@CBlG-XKL);Jx:s6b~$YOb&ʆ,SWPS8ÏOUg1/@~d0i=e=בDZw{hjø T㲵wE̟t>l`>h_|W)y$63"z|!36.z2Bo<d,٭3a(TQhE/>xI:'5HP9f~ww1IBZH*"#9>Ofޡ_e1vrG'xx7o#+kx ]_0:^KKW&1vyyiDߟqƕO8Q >h6됿BL}QU׿GU61v@%ȋp@^D)A=tyls,I G'бPA )4JEMq:,5TF=dczy ?(7acQ:Ƅy&V[keYV(;bYWQh]5A5q}ẾE}= ;L?]h5k^Cx!+Do~PC 5!!flhoQx ު~kx%-2q\\ wt*+;ϣu :9/Lw>e4HձtW %#7cuxx7>&@} h`_|5c7qw<`@<ثo!ǃmအ69@":ͽ*ռ|Ni[ɘ V? u zw C={~}e8 ݏΚ3f[o~HoI/џ2Qnjz7c~8QIɆ_=pOA?w͛]+!oCї|о <Ft<޽ie54 s{"}(s4j*y;/~2xIa}U}(E%HEwJ^\ҿuJaa|:UN9 䫚m'H(Qquc !)w\Щi~dCprd]So/@޻|5LLRW}-~R{xYp `5<´Řטctšx'~0C-ݿ!|t6^9|ڑjj8-1o!χÃo@|[X>`J- :?5n; 5ވ 8"xnOcjH|!B|6oWrڰ!'brg%b]X+*> 3a݀nD}NwD^Bp6/2yJ: |vie?VZ M0J\&wJ2Kzr~riZ v;1^Ét>c|΄zYpl,I>X]ɍo'ߗ&wMJOSL?=N4 r<>cί[voX,^\y{#N?y7]\]]xNy0WnK'!1~`_=!xb{ pyǍO55Xޭ{Pt2/@4NOi,>R:c{#ӗ/:\,`5>C^Bax>f<bR>LΧ$' .e"'Px+&AOV俪):=zu /WB<XB0oah<-T4|!5?/DFQSSft^҇X/fo4p01C ԕ|-9X<^nH^'Б/ǢkD|a,#~y {7jjxsP?P_N?E]i"o!5D3_o$cEͶ6gULY^e <qr:i&/%}QFOfVyW 91 z+4i.+TRy~=)xXvHó^9{?kP7{w^ `Rd'q|04yf3)%AB"wS~c ]:hT][EMvTW{.RmdY%@ijsI4?:^qEΝ3|5⶘J? 1k Ϟ-QO ƜȬ3Nj,@ c7I™rr;̬WiI4?dhfSŞO]%o׸{du:}>np_2B'R:EZ9I1y{SSO:N`~jy|E_>|zjWM4&;%W<Kr\8W(,8^0SP'PS={2=~2S4 n^/6b} u=xFiQt‘vc{?5~dƒ/H4ڐ_4t9n//_kQ2_uj!XP毾sZ eHOŶقXq]ik_Oxy KT%f+xٕx8rӵ?^fy%x F[`l3^%cMPT­g_̞l:?l|{ҶƋy+<!?ŔpNlg8O[F[7y_y;.wJhT8r<s:!!ZSksb馦/Nk߿'%O:Koμtwmm!{X'NJӏ'X~dF GEq/Gdo р׿>9#[@ogLI> O+ZTO4?C8īҙλŕgIqDg P8ɉ]uus}>U?7nzv7"h˓x(O#͈ OJ^G24tjЩץ8u190?aBT2Z)@P̟DQ yXO"hyZ_%U^ghVQ)*u7cSFiT{=Wy < ~GOgt^c)x o2~V/f[?Y@{ 4=k?Pח׈4S0F1ycix 5P?slYz[x~;[YyW'eddc:ÅpKwa=%:|:WG)W7:nڌ.2!x > 8<D\gۼUi93XXZý[dG.E[SL]E8/|m,aJ~ -яPx [Wy uBv !V#v!NwK m̕$:gm9-r?nA Oإ:[C_2x\ׁy_dО=V2B}ݱ90~>`:k8%Uˣ>{kwZ"= %TܘL;&?d">>#:uUK* ׌gʩMlLaZacV,NXxYLIތp~S +XwS.\m g#K!|8úf\'c=>JR%_)s$d>y7W8r\y]-Yv<vQCot4qFxf4|>+cL)̠|BqN>('~(V`'껬<ҴD$TzzJk~j.O Sa]zWǃciʀQyx1]_P_JgW|a >@c {l ɸxtx8[(^_DnzxOŋ EpALG,c NXiY?^j{@/ ~KBd$WMQyqRcx IWL2q0@;NӍ5=1>Dzx=>+P}#:}D!<_MNN^Q[] ^k8=89c "ȘO={I]t(trQtvc*+?1Ma89N[/# g 1`}﹓Te__7 S?tb9|~+<q# /7fUYܪ?v@F4чlQEd|./׃y<ﵑhkQϯD/&?N p:pрx|1cݛ*gܘΖ1,`^c|Q05*<w~q1;T)L-sON~s9QE铧у y['[m75A?T5ů^5PC o2[JLF:jBL_ +lx T٩kU VN`R( `~?Jb^Y z͔0 =< 4JA!ߋ#cu2vEQ@ ZVwkUy&kPlиbwti1Xm OR5]HPXtpm5,+?rrZq<O%7 ߫Ꮸu(+x`ݱ%([L}GfRw CW~Plg]>7Iy _/}<õҜY/'={EᄏwQZ'/oDGw?``:xDp[NO}Nhr=_[mN}TtnRsTvE /I{2֑ X˔犏 ]&籬Ūא/װ|\dg׸'Ux ޕXV;$`OtW\0@e|7yyNx-[q%X"~ľ(Pd6pi+eZWkq^koPh{}tI1+^>x.QyN}j(HU2w}^ZjC<?b 6-<-?l .G"k^ׄ"*]XڠդiTǣTk{SxO[ [Eg3 uXs%^:O_ ln:#(r}ޕ?UY}H#ZLlW!y!dg.`\+IW-2,ԓ8P1ďK"++5Bc;uFdyF8Nιe<'Յ3~?6mܱccAx"P/>hoA4X?;' 4+6 g*T%_ݫOJыPVs(;&[T۳k?y2AǏq?AȌފ{cHˇbe# 9mܐAX7 D eFrC~J)>9H{L(ϳ6 fq#E! !^~q~j:]4/}&k NV8~W.rZׄ7߫l$~O$7E>oj^U/0 DNºe9|0-z|DdCJ19<aek4X"JfYg g<e k yEyf֝d:[P!z}.> M#[=\u]Q(]Bw"דc#}"e]}}X?O(}aE )aL-lw8xP~5I}ؗ,)C{ 6ڻ_Ct? sX74~/d#v+(X4㺸q yޫ֣ [L?w΅XSlcSrwDNU(]YFwO_+YܐvXCEn}^PyyrL-:tp>*AOZg<StDQΔSd suy7y>+281>}Rĭ :׭ď;൲i; '>O ϟaV?E4fadI1)~f./2~k=yގ*|4&%+R^#{C~ݑ t9ndk$xCʠɔjO~jc%#H7@|͖-X897zIח/0_д:G$xfnU%S /\ME[l^_xXEP:=8V5IIyڈ.qlF5~ B{VVϾiq\Z$}eM\W!Lױ;"a|ǵa3i6BĩWFO!P*Av}GLAKwK TOX%Ґ9qb (ؗ:;$JBt**ºv{=9y<* ) kN[ `®FDnڴxG>ނ3fB|O~-:-~zG?XO#1>ݴμwIXT+}9/|iËte>b{: q/Ϟw9԰P:SN,տwp<Q_Ek%Twl?屏^D;-~;淈[m$<yNBJ򀮌 ~'u/Co:%m~Ǣ,aRWzTzl8Rx<S>58x { 3l?] {p|I־6?헯LXV$r9y|QTךeoDC 5F#z9"e3&"z:KwoESo`|y7 **]Ƅnyaޢ='aN~"/s+y9ǂ^2U!6WY~2YWo:7xa|A9t:N: hZj|eu~u]4؝aC􉠋s7GPJBnVy)z?.)M2^$. _㾍'L&,RI{t\#Q*mǥJ@OEGԽ[r-\>Fg"&3i]VWϿyӦ>fwmܰ!G_w;.w:ܸa}>6w7SS_[nrºWc tmusL+]9峥6 {;+㆖vbS7I(]<Sr4]S$aR;{ c2y gPQȾ<uvCk=&3P:`^bk{J7.6ٺ;dbWq^!>Pރ|kh?Wcw0>)n8pw^`׏xVћQLcc^8VЬ"ܥTfOњ''ijyDTE^"ٶz3Kqq{cJs3iGm#cJ^׃!fS'QwozVb-^Qj>>0 qu|B+<&?&|mɣ[z<8WYH4\/P61#?Eu˰zCFi<͢M<YA/z0xQs} zLpcKRHs\KDqq v>-yda^3y}iނ6ǔnlpu2w~يoM*'t|fa-Ie$ |q eUľ߮ͬ~vNK-)FE!Z;|w[L+N"^F*Z,*)Rce&˪A,aQ <Ԑ/xתOv-6.-IHix߸MRb{PQnBw?Z/qTp{J=H|?"*V idҼOLoh L|?bF *]vSi!]ӒeTxhkq_.Y6D}N X ~˳c~n~6l|*3|Q4W 5{O_c#?')%[LtfBS_ջͺV" Xv|M`ns?[D~ڬ׷;n8t$oja^^fy뚣[R+jA\݀t\J2l|s$1Rcy& *]dzMw9;ˌcϡ~Q/!D+q<՝ay&ԁ'pXXDA08SVJЫA_Fo| pp~ a%)ʨ|EGߍ1 zRN1/Ip"]whC&x8"dEd<h7}<Jq0 F]c%,S]UHP|u-I k;y=YVwq}?B'(ך"<{n:\Xge}M^z@\@jڻaBKֳ=~>żow o ~^yzu:u@Pks[s[6CX|S^a`;Tuӌ^Ϯ{WQ zp|*->pLKJ^oh@gn)ݻns֣CBHˏښkXMLXO"S"^ʦn7q ?6or(Eެ;R{x9~ H 5z_|=y?X]-''1Gn~<8Cy^qNk=U~ކ|>tyh%O12oO1RW(BqktvQI `t<ϡ;u:0&l=Ud!!3,([ia9gBSl=laJ=Aik{^C,9fpFO^<"Q3g2 c~/k {jRx >k@{PC o*OGP/ (N[@^oe@K/^HzZЂL<T+խ\+_νZ@78 oBcy(xe{}@Y~:I-xD%xU_HküEC.E8.~3ߋ+@=T?+/\6R8q^Ao)|b4|G/f^VyWy'G;cEa`ϵh3:d)8Qy\\.]7WHot(ׁF`P7p~ܵ"2Hýyhկ"`%+).%'_mQ/MpV|`=jZov|R}_ "'pT\qW{^bt4J{]FQ@4b^c)< I0{m~sGz^n<;3%j, s ntzĞfC'mݳ˯6[mS<m]H(Д]hBPȊ Kem֝}ߑ%YvDH6#Y}';dM. NY;Y{U)SU{yOGkZ~?~ -[D>p(ٽ>}[";~ZkG~G xaRs^7+H8=SeEچ0>Dڿ92"PUa1T<Ϲ$+8r1mȏG:32N[ OZ1ׇC:7"2?+;{j)$@.n_6nzK_WMm\(RUQ2R)%}@iP=OڮVұz<_91$<O8!g'fSQaCՖ#B/_g; (  s\|,~uOȆ 7knōJ?sx>_osX`EQ+!"{wl+rwy੯5.Ve>z:uGyרLzDy`+U3eʴ%S…e?:-j|xZ.<pۂ[Ԫޕq#}ZS&x>׭~hP~amK|V} AÙ8̽LG2W/ሆ }OlDr>e3qnwo1l"]-BCF~c߂sx '[-p>8}3 X׼ƍ8m _,ٸQ]~H[i(}z/ }<Wk}f@@{!"[;F^75Iwm"+z:̽?u.~ַub_r-\|>%͈X?a9%>&াyxpw< Daq,I+\l<񣅥ut:li8={vl\n8V׀yO}gEie|i4SگQuqbױ3"yHM.1}&ThѾ )SP[5}<Yݤup;;Roa}έ=ME!'ԫ8?yikٳXt&~Xn'ǩ5ϴ:anqHd#:'5~xRA_H̻!-{`O:{ )V<#SNŘa+aNKL=:% k vli,,C@ ?۹<3#_>7s}sG}]|VWE׃ս>M8||}t):nxKdi:9y^A3-2_pz`h >#o\׃ɺaqQZiX::Dc{y8ƫ{yP5rPԘ2rDer4oN쇮X,@tL;5ׂP:XG| {ŔG@1ԧ#a鐆ԮW@طu"-!O:q(-MY|dʉ #:vP>⫭9s"O.uUpL-ч*-Է^.} a ߼'p_Tv^zSwSL2Ja,b}7)ZX{1e/:hط_F+~8E> m  !%.3W_/8:6x=:hp3g3NPuE[oѩ~, k}5>asǨ6,[dDtw~vO彂N{}qKzrV5Pk?l`U${eQ?Ż3N 5 iom~ | Z'1?uD}!W#`7ͷ>xq}huKW|N9Zw^#ltI)r9Z? 碀|K"}"4bO|訮oE#rOo2e:kz82^0. @#wQ0L??aܐ<GK rN#$DQH? 5Qo4Ok#7<9A}k[upН}zF_ae'J~"me-ulzvo{5׏p|ivb~QSc\Xż 뷦置\so0}wn5r._#.3% B?02ezq)-|EbU-PCSߢZhմB_m!94O-povɞrD| gڬ*9q}/ZRDw]aj8yb264mmsCyMW}Oyεzc|jʔ)ӏR+5C*߀!qiҋ։,Y<>x<:*[HF:W+@Χwr'Dh8%Qb3NnQIŠ+#p*!3M8#2<!ujuP;gWEN5ZK|Wc̲zn3ƀHC[ߺQ5U"jooC::f`gW7֌xL֞R!NjsU {6K랆M\[<%mop+f&\? 8/#A߭lj$ҟ9b5B^+TrWHRDE2q\xnBߢSU'5Ca:~jIN[ȐD|~  ݃4A?Dуhfطdʔ)ө&xHz}9^;e^FRvP!l酾Œ2lOiˁHM4a8%K {+ț.(k!| ֑I3/{T(:}ۂۣ;6\sBNVD/|~Ϋ|@'Bpz|Ԕsu˕^Iy[zdtxIַA?^mY43eziӟB3޾mد(-:cfn]yR~x){<A.<nM9_VXG6$7*λQw:0F~ sJ0㑠߬Cu(r C.ȳg4\q88os*j9ҁ/O%?eʔ%\_)_R:rPF~p}:^/g[H'Y?bHOpp2U.U2 |Z?<3"$we].~D}۞y]/ Ae*Vk<r-1_㼕BwZpSRsSGr_@3+p'ØyfYS碻Էס#[`_<۾t柂o!CƉojՒ^bozCoQcWC?DO#6_O;PN p/O*+[h&"|!<G'ee(74xF3/ nl¾ޏ YsS_M 0#SLξ_㹾FgN! WE"pQG\R_A.>Bxyᢼi3_+*WTs=׀t-.aQ#}eܷax]nzbN9oŷ?w/_W?1q \$Rj|+ו|Qg47c?oyo9{5?Oxr9f%)5.l| DTk0eZN14sطP;_Ӳgθ3 -x5P+f+Xub?)?z&]_!^$f[Gre|٣B`EK= G`:q?0|[h-\*Ȕ)S 7_T}sA؂|s4q:7jq&B2h㧫b+Ϩn9{,}h(2o9s/{*摳a}ڟ;v-"L^a%>_i >O?2/.[͈wiphnki]k!5 9f m=nN)S=]ԈM&Bl;} 'wuoGH_9oꡁkos>{ee~/2[z]\<e[Ч<~oBߢ!C̜u>p =#:waiQU} Dq?}TJF跙)SL/6WucH,D`ࣔ/,հ @B"k[Ea@1Yѣy GO<NQ9̻[8# =;-1n: Q؏kߺx{:~@Ck,jpQ˄yTk|KC Etz}&+V6KqQUwPTY`_kaRxL?Ji]fjׯۇ4v|| Ot>}۟ˬgRGJy%A.zZ`CY  ys?B_ <qR|7sլY>.ڙSlFIΥL+ _+y' *)HvKת5OX0IWiy..L2ezp1/.4k8OO@R (җ >BFD 4'E؎K:qQ9^J/RבZCH1rNȅ麊1:!_iӐ}esU$N:Zom_'+Z۳ FGW ׸ ~ c\Z{ﵹ}kUwAGlǩ6|ZQ7Շ?̯饡Ogטv<n ꢾŽx&{B}MRPe.ۨ_"~o9$qoL ?ylE|[d0ͳ>Neyx /ߣdSJ?}9dGٿ/#EnCFs>]|O{ ƙo)Sx @QA%^(_⽞N\x#] Cuzty_yߢT`[W7)ɥ7ηuzɚZ{"8n]'?ANԠr9Z)έ^eGUǬ#z*ۢy5|~2}jޫoj׏_ze|s{x(2q*Ve1o9]<T?]Whյ׊ [hLp[Uk쪴D[@w \VPއVCA;] c~#o%ׁf=DWuXVطxt~-2eʴF^}xGKy7tÙ35 ]G(Cn 9%??ku7sJ^cO!MC*:ӂ߼k_* mGOCw|je{-j2㣣ǧ)>^VZҷͿgn<kԒڔ qQ΢R}\ٺ λy{-O3utmzZ.៊?Ȁy0NJ\1WH^)-\ ̇˼`ƬT^[$y'8z\K:}5B$̩in5qCz>͝?6[>[t<NL2/n飼`qˢ42p_#}{)~W*_B'4-2x'W>*N(Pn訿{pFbַ-h^?S{=_Aq=b}1Nڴ>IE30 uu<q1_4:uF^=}qQVK U÷kំݶMzohZq#:EQy g y>g;w/ yج*CZnPOIyh |t2gaj"mG:$dpUK!>2eʔ{yrQxx&QG~ނ׫x[{݈pWFXx񺪪a+tV:=%,<ԋدOD *}Nɤz6KЉ=y;6|.zx_<?O̧qۭ(~L/~EyCo?__?OxsvyCB$}Z?!3Nm 8#NOkbP)Щo!!??eb 立r23} p-'$/1Pl8;(\ƜQズHUa JR 5;X"$8]u[|x|uz|(x<\z>?Ȕ)SLkAWGw4 ג2;!kmk ~^ Q$S*X! 8)P'DڀO}x/BɍNQ~ʱ;T<GqK <߰Jם/_#\5:8žva_"`>ӊ5罺ozh45k^ƺ<HC k4itNt^{=xLrV÷8y["ۂs2h޷@oOUhf]Է׋"-ys"^p:ݏ9%gTpŵF}(S5ߢ .+yɔ)SLk[w>$b}oRp\+^xu3J4ܺ)xr09R9ûd|QF^ ]y/R_9SމgW;FOvjkdx(H1^~ŪfiyMy[q莟b~(}Z A iՉ0u%pQ&wjsqu{XsD6H]k/}D$gyr-}RmMv Zk0w܉!7C#F e11 O,Q<.SP_HcfjF:2h߂~{y<'2^~ oL2eʴz }|,_pkWI4QsoTJ_3ku}#5U]P/['ִlN|3$@*!?zuUӘ.7C}[(Ƕn6=z-5>_5:}|"\:1V gr Uw/5 xyGP ϖ3nkXƴ zij1*5H|^O{=ygk/ӯZyGGiFq߃@ͤfRb[N~O27{=>\q2eļ_q6 cH*dR.Y>6 )C}BI?5o)SLgGϏ9E ٿ߯Ay"11;x~h-()Fo!h-o93} YrѤ})?}Bcg}!޷^=New<y-Q_c |okc0`Zs%M{mnaq!:J#ZFa-/K2ũZ9"?8Wu5?ґ  T?w/ޡ`"_ϧQ)l pAWHEsiů XdЏQ#N8)GHzf[,h̀Цx&[rVۿӼطvCO2eʔi$B_}_"k;fo(Ə%2aoe _T\PM&adT ۭTV05e/-q I=hYQY<F03m<_6zsQy`_w#Hڃ}2[ 1ζfuIOW{o*{-o=?{]בf52_czMojx 3eǏo9?o^yq&8"/< Rab8!(Ȍ+A#t3O [mufF2 ~HqX aY8$P ط8*_E} *.t88ezȬ8PO5?eSL2ezq) DxۢżW]_%頿pCh45_;OZ83¬N#'"3q'x w<3"a>v!zI}_GOQO\R`Vǹ]Iާr~o۳7<y0[{5Hx#" g`wXgQtJ w T)^c\^cM-5ԧv ܫwCx ekgSș&x.?=bKZ6=-|~G_kEF>M"ƚ+G07g"C`GésȺ> zXy]i8<2 @ yW !{H:DUT\T\A*佚WOiHM{x5o7vȔ)SLV[ e(}vxRw8PuD?D:C? 5RIٚ-DuΧñLptCE-TAzVM!ӇzηH0C~V.v}x}ġ+^]`=8a9sTLkQ1uU 2(彎9 M.xFU u`{ux-zZطhJ} |4VG=7"U.UWġM)㺀 >{nPܾ0Vw%ya"mNjT;5#SL2e: }Đ|7_ Ko;pQ(G :"ϑ}Nط.\.-f+:ڎ`<@94#s^| #.1ẩ ʼnڟ}Dk˓9ph^yks@253i8罢< T{`:{KoD{5(qQ+_:X'Nt^+R?5-zP-BӴx&_P)W?]- t1]9>[x#Ls} ߢSb C}qgn¾άS\uQ]>2eʔ)ZB Xכa)B~g&Ώ7{ tE[jpWhAs9vY}"pPĒ\5O#4bI8yk,=ޮ]?key3Lq:q~[E{f>ӋQ}7e0X, CW5/bkС…52_CgFYŜL +W"ޫ٥WJ?~ Էckzܭ^U=#MbXRl<,eNU7;O)xDǁT)IH$a/mޯ_ip6WNO3tOF}T{(2eʔ)S稄*` {52Q{O| uHΪCF /+@.i_~OD +.~[4DrJuIdAާpjiV G/>ڦ:6Dk~N2E}H×4Ax/+Ҕ^W>urnrKx,OouWm}=} 5Ey<-_9TG8C!{9t#]<a_\QGќM|a_l8\<$qJ%z|w|>;UnB pKߠL}p : ymf\*p]9f3$L2eʔQ{rQ7=s(#zoI}I+|":3rJ\ 7^99G8|V\1~DWJs6h~9p\$¤o0qsb֒y(It-z2 }}:Hy׃Б~#55c |`>KRt>\7&^Roo]y5f%WkGVd9HzE[;*Z59NbÝbIP 8 g a)8,-ɫ?!}S~X]W|BNQyd*ˣS%w܏Bxi4G A?-Osz*>2eʔ)ӏZWX%GZ} Ndˢw8fvn'Trԧ <Hg&CYk!a'%PRt_䤓ڑarN9*BgüH<ӷ-.J "c15x#[QD=E)*xcf^^u6l\֯1z~bk`>^#Z54#?݊T@ҐT?Msow>ЪiķP*qPʉ$W8cE'g?Y\'oiO16CC}5c;ei^ƭ>2G~e Gt)?2$}@U- O=L?L2eʔi ]C0O yYw3paWMĹhCfjf</80_3> yc2b,>Fk7kchwhׅZ/2gׯNԷR^+ծ};X?ӏN^^bΚZm &ϣ%S;S| |#ruе䛿KS$Ev3`Iv[AS07IsI6Y܇9>^vyg.CUuE92!fHvk.nN:9#<&'߬ LDCa[C[xݲ ~'cL2eʔ)U{}nǼWT{4%5.}>(J|_u':G@nT~!-W]D9z8~D.mWT,O wM{tw#_q'NDyzvs x`tB15;ק j(\jItGR{=uF-WUہ MַwθyNs.'S?yO&WR0!$;f|*<rQľ>^ܧ 0#pꕯ20̩: 8+TsVNR2O 3Ec<Ε gN/CFSyj}i0)SL2eQ{|]hݨs$cq؁&͉9k$B N!FkDd?IWK0miq&}i/ g*hm ǵBױtC#s)vɹ9cAxve.Hq0u^iyA5Z{_k^y>P5le%9^oG_OϷ wՁo۳y^:iڤKoj~f]όAD.'u77:!%w>:1 ɋQo<q a xIa+l̑S1$!WjJ9qE0gHWmr~ B >rVN=詨}hR{u^jEz0hs]G1eʔ)SL^-+pQlws(G4A4>e~%Quנ/Wg32E.J-bm[X<Mp3)|SI%o8Q| ߳Zzj)|׎M9Pk-72eZ/x|sq:oe؊U(ܳr{ y褼5ZjGWUD#{u^1ԧ#Tk>hd6?ߢ5έsB=wp.uԇWdgCA$x^<G)gKA`9V- ?372$2 s-u|uC~Coa"O\s<oqoeL2eʔY*ޫc}g]2^fyuЇ:~/0%FR<W1"uGq}H]IsEiſ_z-L];4;{Ę#d[bx'pr[qtؤV L^Tž|+x7o5*<gZ?k4ׇ|k[ly3-캦o!a Mkڹ\۽vN恇yHN]2>7ojX5ȑ8m8; 0YO,9W* 5ԈOl8$ʼn|?'/WV<-\e֕:=|2שo#2DG7SiMCL2eʔ)Ӌ[1EX$}k58?BRMf^g+_Sn}h胹dTʗ 7^<22`)ukƋ}ڇCGii`.RL^L)}&UxJYfFYٱǹa񮟭~U|~qFBӬ'vځx:[tm sПWƷS| q!$Yw <g|1*AxspN~2OxɃBD+4BXÓ_wL<}C "H{OE#~ *S>4GnS 2uSL2e]"g_(.e{G^m7;2`>B/xHGjf sh=ku6g!}Ftgrw(|"O/dT+| _DI)Cjyu ʇ,rtmel&ނ}<l^;_ӲzaO~mKׂ+q%>hwcLܺ_Q)S[hXC TO!R?uT]>Wenr%fG¼ [x?5[:"#L2eʔ)Z{yM!_E 5<Ewd̟;sPmVPBþ nlp.'+iN;p i=lpۥi(xn.Eq\/09/ ˔) *+V,e$hnx U:߯͟i!'HD<%{ gQDkhpwmzbODM="P@vlzXti~>'z\}pDe~|Io>F.x}sD8>zc׈svC4VB篛8GB;D}L2eʔ)SYCIPu^vɤ<^E^usDS+PoYY%KV!
}|H'5qiʽ{_(#(m#kٳn}޳ Җw[LmO<t)n˒=)Vqm-'rȞ5s04уoygF۟6[]OR2@ ǐlgHuˮ[g'K? ۨ //JwuǑ>r퇣@ ijZ8@ u E獫HMOh~B~5_>1n,wȋ&kD"c x3?? A@ #EDquO>ޤsORF.Buݘ|5L>՜?;DrE^' %x pA7΋H(4Kn~_?B$B_|!1E\sY74@>~(Z@ |eG(oEm%~$}Ww ż/Nhloy |vUf`GOq ~ѻ @`1@ ,.F*$/IWїJrǰ+5ƖCx sW#xJ?(Jn 7v@ ̧1萑JW*͘vKUy1gk(.7w(g.um k1@ x+Bёxڸa^l1m)tȏ,Y8͚<F,׸m2S y{e%ĝNetSK_@ \s@ p-RbĹѭ}W<&)ȅ}XDY$+at^cw$f{7u^Ν"y[}@#x kҭ-P_q}&^7%[Js0g|q;^2d+*`^ty@ c@ \ͼ$%-VOh?HJ=ԇ8՟,PesЎ[Ĺ=D=C1Kգ<=?\wҹ("ב<9@!x gKOƌq\=Hh0'[Ď6[TT$ףP_!2qR)C8Gx yl!T^㭴.s_KR;kN@ 2@ZQո:9{$9+l0NEHfI<KkOPAy BP潾C{Ra!yRu [1@ erx]Iv=BȪA?aҝK_,yɸ2Fm#506"y ~i.+k5E!^wvNv$ 61@ X.Cns+ёtm(lrhPCd;$ OOz(y FCL"[0/a[̹ /2˖ǘaC%})rhx,1hX^3:aEAE#mE>?@ ?c@ Nɤa2"t/8e^8Go=t4 h\shj+|ah kJ7? b_1`/C-Dx8K,5Fz?qyp_"Q81en^C.#罞^jNsQ ('x \t.K{ m,"IMsar5۝a:/ӳʅzg2=hM薁٢L|G2Yu!r\fN%dccW{+EtZ+_\=6u#ձU[i?$~b~zl\E<1*l5z!Q!kxJ{y8ch|@ X1@ pm-{ c GW\!x)`~cWUB]JY :0$G" _gbOMuV~~#6鈾o쇓H;~RwY} : 4֯x?,ᖫ12 _L4*X U5"F!-vX~ҼדCtޫ~!2׳?@ <-En .,oQ 7)O&!XD._FfH3M[}U_yѱS?;N6^?`-z1GmsmH}kn'TqX.=NhFYu#UAq y.%Kcbݟysk[˸.ԟ ~P(]FXk{ d>@ 4c@ #K,o7mZh^HLU?ڄF^6Ry.ΟΤi)⡎F'|f_5\?Cկ14A*-v\Fy2s6ַԟ5< 2֠Bn~ÇX T4"(WݺZ.kK<n8bE ASS2f?~0v]=XPr+Zюߎs+*_8LVKD a+ T-,='+7ΈF9ƛY^t_2kR_!Mķ1g~z/Fp\}D+kf{]ԯ~<6{ Y5>@ m"o3FC1Niű+p G㱘mXO.O"(h{&6{7t~w.y_2Eҿ@^7hFrz^_k{=Hec>@ a-f <Z0$t&pȃo^i @HV-z4C|ӟ75Ni^# FW -RѩO=lwWؽYdj52>d^c5 xkܼy{ -E^(y c@c 7sE\"zqo9#u\1}Wvm_\Qq1;c]֦_%oc:2DLG➢֕0(װhyQ?kdTDա$Y(zy(k$^{'+E0)IjzR1%ں#tЇHChY1~nh.Ck,Fu25Sx|,ʥ|!>pk=Qsdy{x Y`}6{ X:ϔ\|@ p%<.AFXoҴvO> p9|:@(?15et202UBfBE1q7 LΈh9|^cy y5yYs_:Vא_wfFY^ÅM/̽_Q[i)y<i[ +1@ puqF.4KB=z Ӊ>nWC" FQ> X1=q -qܥ(a&7mFWXD.p[d3a+~ c%5ʮCs^ ܞװY~⋌x kk^^C`5B5梤x.ʙDj/ӾaA_c ,I@ I_Q1g uf?pe1iGKwuO9Ӌ6_s?$}?I=ɧG\WXd7 =F)n5FgH52QXbu(jDX^%P"^oѝ3*CoF E}/CܢG.#Pk@`+<.bO>Hi011|BFZ4 FއsQ^V[E&V`$k5+|58kOt#7JZ׉cz&$ P:;<F5Fs^+kG 4q$\<Qy(=|^l뗑{#t. (߶B검@ I SknybB9 <(FqSjly |) U¸N3"rP[Rb^ F^cey8!YϪK }A_cy Q`mE{]^{.i lc@lR:,oQkkWH] :VxkRPZ頋 oR"n?XlݶPLU7 n|2z[mqSۢ:g9tҧG\F-by`9"nQ(72UlO7װϱ(0FrY݊\&RӼ\\{mG61@ pu <F4\cةjڅFǿ֨ƅnqbZߨLH,vAQޛ8r([#.s!oOc]NRYYĹޢG<_G]h/s-TR:QW¼N,A:5Ne>.ּ׷Һpp_KP/ : j Wu<E|ah<V39DN t6 u}&/y s dD~mHmQ0-a+=}5?M$ 1/ʱx_[to[Cn$"=tnK>a3VmH ^^RY^־5sFE9CE=Tjצl (֯Ck"{m+օ1@ pձ %0'),SRcLimh+O 9hJN#8⒎b{&5X0ރ_rj$%<D<anj?P ޏ1KȽ4 VK??g=Ph~~9o*by .;WA}nD41a{^݌\jkErh`y sy~աS.Ph^}͇!^{JFȗ?t"#$}U<N cKG=n4Pǘ@kz:>u^|}-"#~Puo->UgH\?j>^88jϪ+1SMCs/]\WGX_ yw0ʭ)(DsM f&1, 575kX^ZC}97_' շ(<qdREx+{I <^)Ih `/(]"?w~ k%0Rm3聼1UGV_'sOu{W>=4~U6t y;H\7kAuEfRkm/`0eN_.+ %Ο3%1>(UR0ay><=QknhjkX}Cu(א %Dg{۲{&Ҡo 1@ pu0Gi#z~ZgRc ?ag(#/zS7.~w [|7kC}d c )=jxQ"ECձox>h9VKUA\L>vYF 3Lǎ,ӳ.}m/x/WsI$W<L 'Cu9ȯh9 mɌǸw"G'dC|SdFzVkd<QF^#)!9K5,y{}g\| DAH'h>X\s[$6CB'$7z&p A{U7F3;<]H#5$^$ =PCqP%/>Gz6-{O {YIMf<fy,?a=~1= }ICRc^7aW w=Əcwk獧XB(>h#K{6Qq5FrVܾkQi~T^#E|ĞF@.ἆatzEmZrzW t1@ pm_GFq>#ُl_1mpoQwnm㯖i}f^>؁,Ѥ,^zq#PXN](׊Ӥs#ǧMOyHo _I뱿8H<u72 qI+FGM]y<h󆆺1Qu\.XBe.FIRyj-S+6Q$UIܾ(pk6Tڳ{ aH6ix@!x \܀KO}qs=O7tF$ ub:ѐ œhC8oѱ ,om x}ł7=k@q O~:u|0$)ѼR: xN*Q3N񩘺{rcp-~.--רtΫ=QM͑+kLEddեq\dC5xPF >CBU֡ptޫ/(q\Z5@ p<=^׳ [z5]j|}N|{o3Fԛ4zx,woCs"~`=R.'^y3Gɜ:8%W_pmCUK[zΏi| i?qt.I1Q>#7{"r)@r-l`*E<Fk2{^ tI^k5k`6}aZ-}Y^ټxS_O@ 6RG>H."j~O>lB#>z1$4 ^mO㗛;v?ϜAlvZE?xqzm2ۺ{d?5H!WoS$߁?.p{>Fv\j|F}im3xX\`j{ >p_Qi^Þhc k9Ş̼Fۙog} f-yu!u5uwDj/ @W@%x \C$@[_Zchu.D84%0=;{>#@V> chRz|nÞAE.e88\ "(D햕G_אx-2_+㌩8?ay s aop"ZZԐ!"Nٶy 伯((]N1`_o4Jk9oc^cb}C#Ei0bypy <K梴{{d7 C@ 6x6iFd /%ڍDӏ v(@RM<ļ>_LHbd7H&dch 5+s[j:ap1TO0܊"l ? 9\4ס|?]t/ƕ\!x)`~cc^7|D~U",Px.~pª_c$1l9 {y ʜ֡ۮ^kdQ pe`J,?ɼ\@!x \94"q6N5qT5<];+sg.GEߙB2q5s튂+ SSv#>6kdNoϳTGGTMs#i W1`>cFx{)F{n\DF{ ËWHXk[R8ay±:F(%hm2m^>9 gWeVװ>zRo^_l. \i,J.1h;l4Orzߋ8܇¼ɜZ?r!W{|Na8"@0^%49îߋNϰƓP|_]o4*]g Jg>V# zZk4<ټ35*%,G%Vh@yҠz\2Ve+kޯHz7[1@ pus^7| _c<%=hI$.F?(W<'d` 5p>c`|S[ _| 2vr&64Ŋ},..?" KԗE44+XJ0.ԥKey7 xbGh279ޢ- k O T7ݬ柔AVH^y˰D^Qg L^tnzi}7.tsq@ zkhu&x~G"Q'Zh6F*u!ቇ0G}|٠wLN9}1b1n7 B^ݹW!e3N 444BFMϓGOṵZb[5Xo*WJ,cy%vag!q}pST׸ge5u:Qi H^{jzȼםx좾qF=rY7@ 978)cXT{x5M&es4D=~!]3]3Qz,qr'^{;N C I#q՛qҐA<QǐD<ټ { .D|(^1XX|9'mHa\'b3H/FJص.*1kyFCiR^ñ9e0P_hא ף`V_c0d=d.X7?_ W7k׷(2wLTFIvxPnc=yK0>=/m}sQ1QulR?/~ qڇeu1|9&5y^s2bN#5I\`;ra y#y7!IL݁KFz<cl! X'CY1y b۷e//yFCqoFfߚҼƑp!:3DkWzm}2w(ۼliM<FA42c-vw6-1zJ!!tS-+wBoGt}{}8'ecWD:Dc&oP+zar 5/~}@w4! by;3]5Һ~".E$X,x~x,3ʖ|Ӱ=1gLJ_}kVhߑ}֧1$ A_nٴߢX.a+QϨ- Ct{kk7#!ӰFaj1sJ5ĕst.q;gΜQ<?@@ V7  wڣu\A7R~4zߝSsΚ?!MQBģ\8/m fu"-1}exZ^"W߰>'J]K;=.}E,4ʡB~#s$_gvn~X~7&2TL/(- *+%A_(9v75/a9>ÞŖ_ZQq^DJ&AL,;Ҙ:qۉאkW<zRy_@o+}aGjG]R@Z&x \t;ȋ;Z?6}dpS\&z7ט׍w+BpQ7\Cnm8`L"Xߨ_17^c0Q$FRY4vH Sgu~މ8w+cxLU^aQϽp:LjoHv7o8\vr7Kѳʇ+DsmpȨOA7Y\ ?{^y͈E3C{ !a3y k|^R9^uQN^_I^oyM'onP@)5CzPu9߲/\k}O;^W_7"g?[ Y|E{^í^EƟz7C\ڤ,ɋzmr Qx^76k~Cay"M>K[sBL+> #}aab<~Vͱ=Fx _s_!zw +!n*>cQf}FR$A<wd]\F;y`y  <g=qy kTLWװoW<+Qv_ {^}lԒ@Y6Lނ>{Djo& c@߷v>C~ICscW߈:5o5*<C /y<g |\9z:U>V`>cܑ1{ CΖPT/g,oz ?LEsh mp׼8q:o od,Ǧy~#j2~L|EDF)y74%oid?8Q+" K5֦װ^v{^/auk9XXK~c42m 01TTz5'^L\n<%ʇZB tܨ‡Gz|H&u=kpי7#o~Jcۓw=\$X|~ GJhoT1*e5i51b>DĉPvE!J܎Dl-Ḁh-G'4 [<u! vʇ&-]!ٸFvЯ F?5:?1UibR^b:yb~Ƽ\,19CZy,U5"$!s> ËJ (˔H6o_$J<Pv3^Úzow\9\P+1@ plIz I˖ +.SyqGHh9Oz-y kj]zz {~{cx;Y16^^~]F^}Vp߇<>Q_1\W1'z#gX\iy3NxZ j0*k%7ݮR:`e4оq=So>O}K],|x^ Uo 0};B.5<5HQ6{e^2<|Dż ?n*)P&I7~TB`Y!5Z#qd6yy=EBmgsS˰ƯB1Z}bL֟$y=ܚ?c% qQo)1v|QyP3(5PfVkDרkU5)wE^ʼ/* ғ1ˮM">A.g·;ŋěz ;EyNա\!:U?^9O'ZV'o[MHI譴yyi{t2o|+47o M$9VLo|'ޚ㾛ߞD~3)wм1e:70=,DZ }z }yQO'g z5cط 2W-qd~0嗦UU#Iq5xԉDC0]JRQ 1Jq CI7cT0BkX=ǒ(6gk=1$DLϵxKѺ_s71V»*K z 8pRy{G&*c@ J7RPͥˁm_i{\([: !-n#wy"ɾmɬ+ ?1ҡ%"a*o䅊 c<0=wJ5_ΜFyrXm~?dG\r:wV[Q וTek4!_6yB9y %׸EŻ Ej\Fg Y_}-y6W1vWQP!7ax cL^mT6 8}&ځx-M"x l>r][* :yRǼ0E/2"{뒧H |<aI?vI~_S~~6G$Og{HW- u&smϠ)uKjcjQF/p?O#K،Hpo1H|,&oE{zyr֕~k4keLlBlQa;Ǖ?Q_o8.G\VoHr}F/lJvQGPM&oEzӉmy^==z<6B[gkM'41[.tz R yBЁ ^W!%a!#ƿ$G6Y]>.U"o=l[:o1()v{GƱ-C3^'ٴ7"x<F9v8TM:GBO^4_X}8~>EMp:x G[Y^C R'P!C鯿_Nlb'm>tTU1Hns Kaq?L]n NLݓjwHvmm)y?C^ׯ?S\<鯁>'㗲(v>;砃l.J@g(Ė% F_f"? } B㴼ςηԉs5{ ;Qlt_%moguacl߳Z^9,܆Lw:Z^>2kPXcOWIg(qYsKȔȼO^864wH#=BfWA/v}k[ay'K+f9dc[8+Kd^C.R:=)a57^xpO&ΙU׼~}#$yT1R^NmfNՏpqTj_ǣ'[Q?tg.0_F&ݜKܺ{x|@ 3Qo1P82_wgCioat3adrkQ>XߋI!Bs8w`_gڼE,ayoanD,qfʿ܋cq "yx o`&&~ ?JJ cQ}B-/,z vqZsAv<΢u(8`):y<GyǧHC=eq_&-<ZN1aU=ڄrZQ@"i2.^@펲Ny h|>=_N2<pK@`PBmyc~O87.y*kaև{>b@V7|bdW/0 Q"@|,an=xe<)LPg /fxmxnSI_ jc(c Mz.=<O둷ȯe-!FxRr=F)f ;3y c kk 9a6k<"iJ8o"i#pd7ʡǕO֔j_}yvDg}W`u賁?y㏒y~K5^ 01@ vJH2-i)ږMgay ;39Y/Fn? WevQ"=*ʮSfuORq݉M ·E?l)1:QyC8YИ\y<$gYy⹋([_9{<YJ=F~^>!*ר$3yrQQ]^ӿyFD_R#>c7E?{Θj<nٮ5$ΧlEFF}X8i0J\0o5<,anza*xJO!\W+Ɉk1@ 4X>=nd._>#16]a"V8g͚!V? e\ݽ+,>zy K}-PaJ9T>I]7Wp=E;G^}]>2nqyP㨪6_d򑧣]c7-VKH$%CXv{|_Qi]c&i?r}Fy罆'0x_Gt^㾉 I$pZ<hǼ|g[xe\? ;q?*?G1kbr~.][ĤnY6.<ԉ_-k\sI%4֯i{t*+/L[h%dׁ/<]ԅU,yՖ(]p 7o#NǦyS\7by +G)8ga~{P΂^'-\捔>-?:1gH4f{S mG?yM]S7Q }Yu!CJy>+?FI>1/~xLLKxyzר$u(=`5k7?ڞrG\χ+dp ƶ:93y/z5, 01Q~{BT7\ p<+}ܨElzLۓ7i? 739hQA\sМE!|_ʾL~^ٴߎ}v^fwnW#Q䌺<w8C\aNezχm9cǢ.y gX<mÿ?ޢ(s1E{ '|F5yr4$t:O1sPLU/L"O旞't9(UՇ8X~q~p8ӖH }0R[,6-@ K>ckd@GErgy(o^?smF2·wo$sQy(=Wcδ(KOKW<_zEy$0 |匟|UbEC,oQI? +Gь~vbRE~+۶r%|Ep[.>C{oB ޢBB ('gOɶ-~d+XԏXcW XޢϨ>7aOukPHV-p?u݃ Ӊ\Zmk^{0+xc&ڍIF<.qWK^/=<Y?'>/}P5pql׎Y2eik{ _E@ p-OFKg '4 -CJ2?zoa+懠X+!%}YоՁ~nk;ԇbsCܐR{n)v1ozFzuC21-}^<E)>61!.':/-PJ4j<(gJy,a~::smnyt"S@$G<?3󸶻|q.EJSdy[TIkټV5&|^my<8"sQѻ[h83ׯXKFnDz狰66r~H5!+i~Յbv2;g|E^5V΢?~sQ~u1ۗWzEEzy0gy7:Jt Ʃ @q\5zp96𱩮DBn)朧e1*ԅ$r?zu$EfQt.IN݉5HPI,y(aY1 :uϣ~=DKRb~Wc@s#B q ?@H0rsKu"9㤯A(Ukrw~ oh_ |Nys|[Xu& bK㽅u"#Q_cr-?qϧ|\?Gʮ2oACJ,sy9v/|/QV}'Xjyb~ޯ4"ydcKs^0Ҽo"ϵ kDR py6{5ԉ=Y.~c n}.OPW Q:r~ fǯM'oyJW!5z]lk+$x &\HBd !!"jr!v_a )\{J,fY[|>}~Hߨ[,+ROעq7(AB7퇾1~ry}mk>|o_[s>p(_*v|/QW0Xű,oa/,-b)wQ~nBaўڸ\^v5AٸR:l,Y>٣|,÷3ZxEI<Fȍny2cϬ/RgR*1ocu(z#uk鳁א%gP>)y[^~z:a>f"x ؒQmp}>xR[Yp|_a(=zo1hU"ThjNS_b}; ʬeD}r;[: <;#{(r]IbE(<6uуG"x ׇbqYeO+\x=FɜEgyJh5PVa^C9h:h%H$.oȅ+nhpŒԕl~</ϰ>#7δ ׈dFK5>kPcrټwxd.ʵ݅%x ؒ.Xy OἌĴtŕ- -BnȋFOYR{kc~Js"gY%;чӞخ.;:?ޢǐP oiOQ5@b'}`8OH>m(>#1_ Jp[991,ZyEi __y;-r\.qSmx^/*pXFwL;cRe~LN,~/;Qk4"dFƝ _c5=YsQZslcfkZ/BH7R2J~"vS'4)C,КCyF0(emf,s(!X++v6u~H?УM. L}HD>|[;*Yԉ:t5Gqr}ԅ0?a~ w<JBra\xƊC*E1o`盓X5 <.to29tVlOkZQոZL"{Jb[1@d4|Qf2ry(:5\Q_y?{-w+; Y͢n6R[ rs/ǘ ՇY8‰!Fd,w~'CN-;El/esr~fq:o^:$tȿ !߂>ay3S15.BHdh+X¶baњ)D~#xuB9QZO1?~5b:}yϞݬ(ew\yH qsayhpǻU{P|kj畨'x׸#o_:"y {=a.Fzp\y 75.Hˇ\oy=CW czpe%zF?_D6o?Gj懸3b?60瘧tWO62o47DBbuSl;w"%ga~;{Gha "Łd1o ԜB)p[{X4ѿ`sy kơh] 9RG[<Y%!㍏Ѩsh>oOOSBwP8}- <=98W w x/{8R<"~#pdu(\y3cz sr}ОϐyaH}-1r<cz<n}p/zVwDwg-~I}_ V2?wp>oA<m+4r~PfBB,T!';wA\ E! YZ/2н]D~LesUpoa,E[po<E{^G*Jy,_uKޠ'xp$Qqtb}.Nul3$<n#{ۯ> tt t&ؿsEA -gLI>-{l<zqoXW(mT.q2ﵿL*n6e?8c(Q>g-}"P_~>&u!,oh? :?$ /pKXd`Bv]W{ޢ燌Ioz )lljZ[g!񬇯)zGRXii|S&ꟳB0s}<~?DoQ.|wJ5ۻ<NWekG$^T7%i Ϝ]ЉV8N`9uVl2?+OO[p&m}^ÞװOJv^o.;vw\{eS<87"pd^'9"ab%d+VSR2p]ԥ-JU7{hٕ}C+,!o6/]1Z[[Ԗ(-ly,pbT}) 5 s^Ǣm{pZ<Zuø<EpHMO~|C$50^G|ޜײFsQyx˶y(cPng)k͔ߎd (_O$Rxyqs<ueˬH}q Q/Eh"fdWHeYX+JyDj43g1Xs$L"n$k~H5,ʥĈ5yz,᫉(jXICz$=/1-$ \^r=gZ hϖ< 1NX:%5dr.-y ;+e5!MF <aI{K梴{}]yvTqoz .ĴyO%Y',xJ NՇ4c~B YXN.>NA(gV" K_W:!Y@BzgX9 +_qlo H$½1{њ<ƪk2R~c8 Gyo*Yýhv9JHBGQB./ԌLj<|`J cÍ<9C~y /{ 5 k}"Eqg>A^k\G潞n x pm3$o!y%ܿ2WX|ܖi ɟby9,_+8+Z2ۏz\;#6/]s#[!iWؽE!Bg?~QNvH_Ёo=ӈ#wA1'gX> =v:9>@΢EC-,bp۽&q1+)aQb/(Vu%TSҼ:Lj{4dx2yysW\<܊4YcFyyw9vUf}=*R~{E1Gz#5 \{ԍ9Ĺďˁm_i~[URǞbm$3?$%T6"WQ?@?/e/]_2+x91XX+CďW-xꙏRfVu>Ͻ]"|W{|ZOhC~1 Y y ֺ5WU>~+eyق%i]WO欚Ó|Ik/9aEs5k,y +1';6X^sg u(> ;oy7m2)y<og<:SQ<_Poz{0[懐T~]sdpчr募`eȝRM>?dޖ`s- pN(nd^jyFՇ8܇s+,.y s\d=6RS84JjBk<F)oe"Y:l,~F'T*/`/8by|I*'ygk?Jd^y;d>k,~۹E.nDfRQ{^D2_"װ[ǖEư}CQn^ mTT/[V$R;.a^tM<WTAP_~ټi&0on}Bq/*ùwɫ4[ 9 Wm~HPdUvNop6[4~\GiCB(^jX{o7/WL".-SќtGd& $Bky 'h?pZߌrX&}%څ+ҶP*3ǚwR3~|o&?ΫG8|KtIz^UGEaP ߣSSWb:}!?7Z=HC7뇱5,6*QnQn)1o漊kz bֲ>C`:~ݣ\6?׽G.k \!%q3q #bC|u[2?>4nmzy ˙"9l*!ӷ\ҶybUx CWr>8|Yĩ$UZ z̍< J힢}Y1]*g +wS~ 1& #( ^V r~q?fO:Dϻͪ3qcbn yይ!A #rW;u&R?M%sbf1xUoy2 'G8(;Q{^#P_hא ף`:5?sWû7L^y5>$x p>=կݸDrփ̟b9X W[Xf~Y˖hD\Zc̈0~vuinHp,s'YXZp<}s4o#2F#.x `jQKT<?dy [pAE\^ϱ3<D[+1Jg9(cxgMk۵W_Cs L+F0EyyNry{xa#E%CJ;57ѱÇY4?O#&fg>=0/LGApeoO8IMh@x;>=do_1񪪾WGqs{W47w 'bʵxo;&fڱ(kTpoFf7lpcNz+<ݔzi2w?n lMh_6G}u(|h^LJCdZdVh,">DPG2ad!9 mQ)7VM*`s =j973Jz`BokjaK}99ҸNGNd><b=Ec>6*a+5B'^EOKy^C~/%IyZ1>Y^ESS]z_8>Ƚ/x랍/?Dt?'^9~oH|.mkm8״vԉx3̯xϢ:ދ5\? ;X^y F^þ>sJ5Ց.h۴q.?DXc_Uo<Z > %~<ݦqz yru*vV:?nR }m-CPJ *,IZǨ;9"*c)uylt^GǎuFղc9(zd\ouvCBDsPk|Yk>A7Go9+|&{ooIivy E*IZ8[k!n".B=lIvh0=tAӼ޴v7PJ_[Ґ)i3ʪ ZNSieIDkߤH#͌f4c{^ɖF}9Zp`=>6{_ ˭<gnz75ԡh,΋[Tkďįg#L|?Au(y;p.=xmb~0RᨣQ&KDV2=5_L-@GSHNM gNDCcHHp?ևSC+ᷠ!1$*rmaG_hw0 tzݿش1I4s>  x>6583zk<Ox=QףMKS0iƃoy^o2ȱbKY-`rp{-yiN<nP=S};qk7ǯAu׸>3ݙA~v ^ױ1#}IᨣMR/+`9$vvs; inqY\(^-̫҇JE_c~H`?OȎJR}Yl}8+I]<8yy> l^/VU*NSCnQ'\`(TpU1 wMp!x chkxcc|zO{3 ȏQNo&q<Z Fl1q4M[{KuD-(:! ʷ_u=w~B`V mȹ$곬ٯQ̯pek3F4ǯF:#@^``c8ƺnW J7>3zp~!!:CԒP]2xd9r\ ב_u, ZC=N]GeJ8r X_*cHe8K~r~!QC1 QJp>7+֯ghkLgυ`TKJ.ɵBo_~żQ45?zI]o^{-(R/jh:]׻6ApO׸ۨ>i) Br5ۯ&~5\DDz^C(71Wl@y,{%}5~+mpQcu^ȷwm/NsN6N!< 9<|!/ƫUฑ}~ wT(a:짐׃o ί#:nQ/?4\Ÿ;^s?G  n^/5UJ!J*u?O\8Frcp0KJנǹ}1$^˛5sL.w wa~yJ׈{&6>޶Jx}sBo̤o*g{-J|AٯQk(5$\^56snVG ۃ.c/Py5xOw~8QGU*kfx#o ̠)ܔVwlH(WenSW!M;| ! W>_-:VO~C^~|<[-凔븇Uo1?Z~wT1I>p)Qn V mcEQch}QR_#C7 V(נ*?ks8y u/6mJc41||:{ dVl6^`K`پ} Fzn X6_&KN>;APFygn+$<c Q9SׯAxq5ukר@u(!cPb_be{FaoW5ᨣE܀\c7CnQH:bi-ι@n` J}-ςr8)Tm΢.#iK{t^"䇘B>M!Eedcp1x7||9Ǩڰ:ΣOn$` WSB]KF?%!،s~Cd,3.|ڛ]sknAVM5w_ԞZO_{5'&0[H*n=7;+2٬Gt3ؗAqE\U]_k<Rq_h[ԯc2׀j_@סy9s-Eyq+{-\vny71u+" َR[<qZ~H=~n%Z+cL~AJ>zƇމ)P]fiq!Kn#~ |E3yU3C! \Q+ }z1쥔cQ1ҺC .cȵY~ n%|bD%H E5% >J2Q8cPzk3+egfs<Wzʮ ~^oKtxMx =FޫH[O'Oi]5'na;82 >Slz9E <EAM5|%߆1~ r~ YNfFq"}Da?2F\ARkt5ιOW|C(u/;G}W6~v8"meܼ1 r0Ux+'@~̜[ׇjTh[(剘QE/ vm#罇G,S{ɺ،+NcNx}#CBE1VrLa,m1s ץx}X,kVw#08P\6jCaB`ϱ~3E?F5P?5JoM 157AG_fI_}tFKBgyvj\3;l(>-klMk<Ʀ[\~ S_>50w0ޯqد}+C ^QkoGAȷ֥Au8KM[ xk^x5r Y_yևLr}qJC%o6WUk~z2F!ND-> /?Dυp p -sT19s _l_~)z7+2t#y.OnguߜzO`dp*eQMZxn/K?_F\|PX1; E+<K֫cK,xo k(GA/kМ}5T5bWPƦ F(5u(Iu(>fԡtVoyS wg{ܿ%y'pt)([2-[OA>v!nqrPߢ1dUK~H~ͨ{,2$۩)HC`_ *} ڸR? '?ĘÂSnE3vjc8̏QB5HkOpPjܯAr1x3974O5 7~1ϸVq^"!c|oƦ{7OLwjd{_`5>41c[waWA6q5{l>xBa46T_P" Y?_\*z AlZO|58U\j ŜVk%FF_?zI /Ѡ5>>gr{b{,,#\g<5e91],L2.K I}A~qLi~?[XQ"W}8{MW(坺cڰx= d{1?9"V+&Y`RRhB\2nz~1svs<Us ǯG[!9Nۈ^SCRݷ\r/՜ xOjK~qss,%KX\c,X!m25zq~~5qONO2?|XeA$53:@u*Uj~'`R !}2Ec:L<Q1䪖kRφNQk(֝׀\DT~ g$ķ> F0uJ(n U1] Z@9pn4=m}$}7ʹzCl-ܡ!>A]t_N~HC,r:C ǰ:C;J*J5k ~|'Ͻ=`9\ϧnzi! ?3u8ӟ8ρ\@O\|~#9"5 rnQMg~#swZ"7lp1q*GWTW2 0}G5,Ba^ǐ.!QH]m{2z~ gDu(9g#"k5Fr 7Xp/m梈6~&U͝]s¥^" VWy!YyLnJsWs"> \%=Poa\~g'?D[>C2VRiݦ[Uy~ȶ-܋>u"_Q?*C*gk}crhz E+8Vn::~Q篎5k>İwru+P#=9ZſKo?%Z%p?ꨑv@.E|9Gzk Yp>ǐ!\7^]kPU9[I} u(Acy(0E@}CR= {(=1zkBə'\MP۠R-J9"jZYW4E*xqBB1wD>$*A>LF{1>wcXwʼnS<|cYg?|Ê)cz}MkzՓ<Zy9YB^|l6;Ex_s>&^y x_i:/W_d\Kv ;&Ctm )} `(PҠC_cl}7ѯ6r=ż׊::~ 2:8z ~ 9~ N35i5 '&f`zSFcbLf.U+E._ݤH~/ć>'᳠8ù '<29S3Hufq\gaf:z!px{Z|'M"?cdTHixKpf~)c<{8x] .w,9_<'{s 9ZϧYkZq-gF5&؀.˵?^BY aް볳?q~},KU"quuFŀWIs a>l |+rP xI/Q{_MT\5o:\Re] 7@cGDzW8F5zklۆr[&pj+N"LB*/׋ZHΓ鷠¯+?$-SpFmB1?}8ОBs E^1D[[PAr r3~?p*BXvນ_/ER?/Kc=*}~4FѨ_Qa_c +Sg Cd}o!ϻ̐Ws2 6' l,\容Y'c#?1|*#STPoP.MAס(9׈Mq5P24hj O38F3Gcw`eiD v>gh<?lY=XH! i,Lʎ?SBM~\}895ºAW,n! SCj~F!P᳨PN| 6B~=׻[(c,d\B$W)hkXנZE-~_~U*}}v6#2?~A9gS+|!g2 hCT 5)q ŕ]\*ݾF[JOͤ[RL=~Q3kCx6˯!CQѯAot0#Lk@aKؘ~ޚ/tN3|n'+4./DQ>*rO|}DL}W}7X{F{N% N~B­x+U!|tj'O^;p*TÃx]<(X.wTR1Db@_Џ!,i?x ]SM,װȯ!{ `=ohXs\3&9kyc5!x_'׊oDKfzxZ9* re.nf hX--)r?bqIOk44V>*sLd 0&6 qZk_Cɇa2hد16)@%u)a55 Ki5Nqa} -~?_x<ł?׃zCYD=b2X?9h)*FbZ\;0-}8[<sC@)7D9?D<|na#wAus @8ZO&Q>\Am1\ 5ݯA\~|;qBP(.? 6ׂ)ODz.eg/&}7": Nq--^V34o~ejjXr ժ ͷl i-a2!'@yy le`/vRSæ_CRFP]_: ER<Tšpȩp-,ȁsRlg~>C@"G8 [UևXhd{Z~Z-(׎]"WfXu凰c~!xE" -H<nG v@s8A~ (~ z]PNn1pgN\ӟq;XmQ;\+._ }loA{8E6<>Vz]v]\ky z!+Ua"fy9h=?xq~}89EFu>&r,;(?f-TCNvoAЯH[}.ԿumK8E6pOhܯ1eUzy~ \^(k(r_#PVwBj0xqwp Gʼ}^ȷvm>7_r\;n>⯀gǾd<> z=WPuCӇsPPS2ae#4?ZXϢ2T|J^QT>^u*+ "pg"P+ѪrFy~ "cr| w!WpAw."Cu̻>elX~0D艮ʿ㥉̭eT/*/zA`}Xp @Mm>%v֚*'W qƇbaK9-梥LSa<Om)pH'\?1*xm5e52iwUֱ.AsP c8 E-7'g 7ի_[tl KX Ҍ-<GC:懠k-ET]N~yȾ[gQb4ҫUrO<Ck(,J+pݎr5kb_Cڨ_*>0|l("HkqA@oQnW\D hQ!bO*(yjqeC؂xq߷aົm f~ :7k~UQl>Quam~ š>//c2I913sUKy8XYIw>#R=:yKA)5ʹE=aP z=y*i?5hJ{Rr$p8y󄯯&cfo Oq tՅ\4[DYTᴃuC~Op _V,C+!p>#TR|WgQ=tςP Ppc,Mu8LGss dМWrc@q7r\B|BOަTӹ$7nP})N7a? $ߺsf8֟\}(GϜ~#465yu8̊䚾>}~?>o눦5ow3>//9oW5I2_Y2kg4EOqmߐo5*A5(ߐp%73t5 ;#LB rsPҨP-agn}z> V:xO0'Cv`|~H79!Vr ,P>Eu8ƢTcȴyCgyF\CѯQz(s\9]921 ކRe2dD>O| 6~A[~qٟC\wۮ)hFNJ^g2`.n+Tϯy5;ćg{;~ο򑾦5BW 5}68ܯ! Z}f55bm8k24QԅK9D6N_xDy] 繌a@ȏ3SoB_ >?Ri]B>F^}AB8V5V9'8TWbǐkMn߆w<#LC) R ~1O]@C\ɐj#~)OЉLݞ)=b>n~ٞ AQC3>#(ߑrAA19[5Bqc~ j_C/¯1 xk go/\~]~Я( f-XWqF泘H7fbgQY|+!QS,UYhUCy[vXu8L1䪪e5\<NW bmԯ4zh4:|Ks :i +Ow8]wha7 nrIбϷ㟲$ c }9}uVO+5X`_C[k_LMZʏSנ\Chk)5*T%Ϩk~2~H__c,\%> }>dD"Z,r CDiީ9"vY eZ~1sriC6Շ<Z_Qq ;,|0D}juƪ1d:ˍuیc(=rQ j_:=Z`]R~:*\c~snuϟo7c -,hc>'|(;FZ~omƂkU_iݜu^kx^%\cE9,(8ca_r'`gRlg|v'?&]]p]!|>iq}xDTa\Xb1ԅQ-68#/WnכbϢAnpŭ9-sc,!}C7̯A+~ xFg?ߴ.^G-ݕP}%s5 x׿im"^JyAX-<se3'>5 >T%~r 5ʴ"^ޫR ӹJ16-3in;-鯁M<1lLi X+i{?ہ֭Q,Tԉr'$x׋S?ԫ<?$%NQi/->o=P҅h2z1dzk]^h:0ʯy_)Czyq>}`T\-^x~)W^hBC[ǽ!+g3̷/3>u+R!?z<P=vM,B|Ư2a!~PV_;npb Qkݯ!W_x&vG:cHsDnc߂jl"*,xCb>R}\E!&UϢb42?xZD`_hxB?p-4I#Ճd=;L^w;j1Z ՏQOQb_Bϟ<0hD_Z' CPV}p^[W?/#k[;M׷2=WA&Z)4C K/; ~-x^]Rc{j{FT5j}FE5>::)?2Br4z1~ X@?:P'k(ǡ'V"ѕ [Hu_1[@}qny*^Fp6+?A^QR)oqZvX1p:X,~zjO!1ίQ!?cHq S\*PEuB{ =F3W?BÙ`Aȷyqh~0wuw)781m|`6 " FTN8/9^#<! FPY<ZxǰD/wpLLB*&r 9\CuFГ"U4=?$Lp9 -UHZlJGv#YQ;}8 Q-qC!sgR\-Z fׇ[hX1dJ8FltqDrCh,ɡ YZ(~_\~ >:~˅<:<uam|i3=%~A/kyQr#!8_wBA|e#6uu0P! ոAA2 g~/Zx[_dF<H{}T^Ok52ΠS_#< U5E1k8t-a#\[LSFt_5T0DS$/%u"w#߅D@Xi}ZC^~|܇BO~<Bm]zO/@* y\6zGN"кF?Fc`~ ^KgP_FF1E_Ck:ajЄ:0#~Ap χ>ܟ:fkl:lX{"p}_g@]wn&qLf|䥩\klEwb|+}gP]h~p%oЮzϷo[uFeuUs cs?D,n'?r8)Z{Ze_!bt+`=>vYu!},D()#TgobՇРϢ[d˰z*pLuIs6qzW1 _l]~ YQ.(@<!q>{ z#T*L^/;RC_Tf-h ԿP3YzK)L'ne% >OW3~؟su<q G ''㜾 l ?Ux?R8z `Ujx DK'ǨZϯQ4FyhԯA_5@DIV0zG s>{{!"?h5oAC +:@ST֋dH>rndl'YL^A!Zxqd˾܂<S?g4XB}T=%˹E^w;j*q nr`2PRLQJy(XrW_\#7G()0ZyVF` 6+H&ޠɗV 7֔_PJרN]W<W_Z|ci5 \Z^~ cW]xx<łBڅsը[X{%JY paƶrav~y oƹT%<i??Y> C+mXvXb}9F{"9w9 jo׷נu([50os$}s=ZE_`/B*X?p3D#Wԙ$ E@ EmCCzU+<Zũ W8y̑~Q3҄cx_{_B5JC5cZ>lgRlg~>zz-]\f3x\}-@ue4YO]4?C5+Ps_d5N[`=PC]_3ϨxܢQpŬwkU֣Kcr?FCcpn:~ p Y۟n'Pח.@1w [*Eׯu>`B+r9=z@il+0๳/[༦28-nnckt7,k4_#58A~ fh2ϷG -:^-z,<Nk~I߇?f~XI凸:o7S_~Xt 8MiW凘-:~r=_Koؓkgk҂l;q#~1dc8f?2%`ax[}!W㸔gSnBBCh"'VF|B^*\D$Y6ًmֻx@wwyNQ=8't;#iϨSטƷAyFЏu'ԯkXP_4:zBc1\=X'ރW3L4z@"-D A{SpT/V.9Elǹø4 MV+kپBMq<6X`!rnaXNbO1:Ccg aX\C_hnWCX5u(crDr{ܰBS9΢ZFk։dSoq,h9ȟtn9VVoyԅlڍ%~mB2D_pX vS2w2V:<߿%>W ѯAw=V_Fo>UݨKc˛Bə'?ͅ9W-\@9~7YP՛"krC4W _VW@?P]^PE=N`0,?:W矪Iu-Y!c<֯1TUs~ j_#FP/3ggB۶7àexMFQK{dK܉3qyq'w".' q'~x>>>m*z<p>BnG?㐣xRt﹒.w~,{'KCIup5 gq~ }7kP՚RkܑDjk,J ;`27Sb!Ŵ[QГ"zrMV!gAVڧjUmp wxUqW oQهs?P[S/Zi!F CʶoiSyBQ9t|+XvXu8LccX/%tqա(5d96 1Q%r-~=! }3kKX5(Ixr!'gQ1ʉð !N)3k`MÄo}T/l,4p~-F~ s cu.&qsRnpS!nQ'/ iF}Hv{v22yB+3~|qFRAE 1*`nQi>D[PR_3P,v] ߿d1p FܠkQ{5y \C߷\&|*^QKDŽg5F.5+ Լ폀YD=z08ܱ?2xMO@c&Dׂw^#W<?))|]Ԫ~{Zנ\}ոwbHxC[6r_cAqkBc;oc|s3 )EnPH~}-"g Oxd\;? ҽd}_Ay,Y,}8+)7'<_ Q\Bu}Q!J(na<?n܂,<Qy}XSO1 n2jE5Bq+נZ׀KQR< χaL0EŢzVt.ր|#_h_ޞtR5j5z_#Xpu(ԇѦVϛ1|m'8 q@|Bʅ@arjGr^q#!j S~STP}\~ z=:;!Uڏ󰠅[YP6Y-?$^+?O0gaBWQCt ]NfI|}hs;!j{\k4 uR36x{|+iާxרkD\k3k,8QkPE<ÖË204hy(]. |"*S#CڇSe~`EԁZ/HFpOa&9bp + )/Xj~zCbdnAyEEQO!p((9+%ڹ(6Fܯa>f5HRXQ~11ӧr q؁kPz9e <_X8~G<MX~;5ί14 .EA/cA/\f;rXw6؇]ZBT[~H`ǽܧQaqg 1~ ~?LgAC:4p ,PC(G0[+ʹܐ ERyՇh8-2d;D$c1FT*[090X򌆹y(׍֡__57+jUvT;X=9^Uag֯Cvk$QLB, _NsܦjV~H3yET+bڽr.1aKIPǀ$>T? !P Q(g=X6W_!ՅRO$ۣD;_r * J 1:\c'F u?|?VS{Tv4F(Qw7˯a0o4x> @Ɔ5FEd0C ﵖ_UhoQ~&s|:L|; 7'g 7ի(? 맱T1>D|\34JǯϢnoGA$HC&+CԪ_@vga-Y~C1u}W" 0'?9}-Q&-t}P"JPw<7t;e%~dht^8F1Yz`uUy0XgJװگam]J}10뿱=b0of 5iǘ+PPa_c_"I~)ߘW;MFr=)?1 ӡq-)q ]qXO+#X)#B{H Z,~BsAP^O!t{懐PI~Sd}->yE!F$!J,"Y /nuWS11:\cc'Cd^gI} W5h ǯ9~ i~ }58\1p``G8]Ǧ{v5rF%c_C}=J}} F`_#-l_ÞbAxwO)THanq憜šr~ѱA;*4''DIPe@9طGO峈 շ1[(-hnςrQ'm-|~# n"NQ/ϷSH\O<ԕ,!1<%oTu>&<"V{p5HkOpP0_ Z9jF9:0)-.vXn_qFOC he 質_^ѧx)XOL[נ6c-KSSG$j,Bk~Qx_"yN%I~wKWP53?D^ϢR{8b_37PL 6YbB)?D1+* )f"\_<wј1J9Un=Wc\)C9*8޾m5~2ypbP'u(ίa-1jcV[Cۦ Uk08%,CJS_po:9@wyBcłD]|t\0d_x!J ݂j? yN],dy*Yjb4/?IBye}8!*ϳT@ͺ<v1Rǀ| 55vpmFobr5ۯau }a_J~`Xu(q 𼷘*4ǯAU1%|}7~ 7uq~ X)Ͽ g[@O$/(/dK}(Յd< [LUCxUʕ!*gZ?C*ψ[,M~N!y\3GW(q<s:CFm|N]մc0&@8c=Wcd5p RU)>Hkk:p9~1yC~ F=h [r>rt m@CCkK8F֯QmPC0+/LFԣy>߆_pK܎iK)޼[~Яs%6?i]I|#YQ]!goCTg >4gИҬ>J!Ţ)d/}%_&C}DT1кk&ȟa,M$8OV9X㐏6ƢҚ\+rjT_cQkbrmX.~z9(}Ck<@ Uy _+֠+|赁_p> ⯀u R7vY eZ~EC@_ϧvׇl i] ,q+~-}8>H>VWQ[.d4Q짩,X!+ԉXZz]w.o8#8|+c3chįא jOF\/8,~ =PJjEQܯpk5ZïAPr Uk<p<C?ǀiB?V.LN!W!UR>1MCqx{-U.z!8yU4AB6o=峀Z;zCf!}s '4Tj> rAOxv5vTc,-mKc9ǎ6ǰ̏~\'OO<|!7h.ǀ*ݾS_7x0HKޯFѯAנ)Bx~ FJzk@GB  *V{(_ϓz燤d#o"[4o?zC o]i=PRCIz}!rry&J?n^NWV>! J @Q :7(ta#;wx wtvy=\O_ְ|Kr<=.}WKpZWS_#~Ar(/pdO ϥ_ۺnvJmנZE~} ɯq6~ *﯁|Z 7k1C):,Ϣn~,? I>-7~K[!yZɶ&l{JY<nZ~ɼBهX?rx|LCd.r^r!<v<'Kp:cicb###qGSl riu}uŜG9RQP];{t]A6Dܡf59 ~ ~q%a8Ů@pz{8e?فWU̧!K8<~ n`_l-kT5(0˯5vįѹp ^rĴtܢv_ Li~ȴoEUjo_wn-};塟hb]zWx1ԤxB5 ϖrCt#伢I!]yQ:^>D!Mq8fb3X ^CQ<O~].u}O9E=E_(5W_+O}+e\` p\|#'Andz _*=Pbth zy1A\dž5 u(F518\<jԡ{>hkXk Q'Ŷ\hU\r{@~Y@zii8^:~zT;Ϣ!jŸ;NǤgUR\-Z YhIB4,ԍC-Nh^Y߅{1Q>91Γ'Nx'`BǎR_`ˆM cws9'*h@T~ܯ'&^\>l_CTy,n-:!:|<Ͽ֟\`L <cApD58G~ z] ~ƹɂeځ_Ot<PרٓgPאp <6Qp,kAnR~8ՇY>Sh~!q-7Z#օ*Q_,y~.Dw? C[tS>R[ 0x"\([,𺐺<u'Zm.l#`9p_ aZzBQcэػ^xǣl}φk 9F,vh;h~/7Ӄy#k2a`ڋk4ͯA~s1<Yc!5į?o5rks^i.ǯT@k1Շ@9޿O?CpN{N}8㴲$y?jadE"߮'4+Lz=+L=|DE?N85HrNUNo rCڈ:?q#ׅ+בXZjGG}-V2Z\d_ϕ^a+>:vrY:|d<XsD/Nxv7pPvFs ǯQM-C1ܯ!{UXWr1{] ~{_#,Z~$@ůAsQyV+? FZR^DO? 90h? ?hϢ~$^o1qq ) Vq ['?$JXZ!UZA>ϴ.8yx$<pūo@R0Šu<pu1V}d&x볟-qKs8 Z<=}-.Y؅cTW?DC^9HrQbs>y4?r~%Ro,zb m~'bn̏1& r8y^|~ Ґ_#\> %zY!u!BH}w@Xz!݂u>P]]-YPӧG:xWhW-CgA~CH}H ~>A| (W^-ս8tL7<m0s)3cEj#Z5a{z:yjckzQ.J碰]weh}}'U]~ (%h%jz_<qA5=vTOZӯA=::FTPpb_ -?sb5xUxQ~!4gXD"z!>S?rVL}կcCh݇Y!E}-Fct~[H|Ю܂r|B [JDY~ dPU"UʍqE1yvB/~#^gq2lG(G[q'sX xcע1 }7"ǨW_$(>}{%0u3;ÃC.1չF=ƫXqژcǷ7؁gȹQ~ p ֣}Zϣ<B/Ϩ8sc$8hr^cKvwy(ğqEj5(H7ѯ9Ӗ,u Oq߂46c#E4\g窔G/C\W4'?zb j۽ yD]^Af燈%=6-#|*炀d?)~;*wy{{_dmgs L|\~ [u4?*+bkyQ2o wЃ֓#$?mJ͛7Ƕw]ve?2/v]tZCu[pv122H)@,&Bc5Pgc[ lڵ:#`A9w)cA5 ^gl 6ʀz)5;>=q^ʩ_ځ_ԫ?P_|5h~ Iw'5~NUU14a2'?^ONC@!fr y}ȣ!-W|6ևFmeܢ>14||4yI$΀Ac_Mh.ߗ|R2<mԶ\ OfW7(I ySy0΁J=[,6O;*Pc9ƹ; :sC3<Z|{^>8{돳}a}> Zw1r J21Zsx5kdE!rOVmz\ikoO?vW#Uqкڟc49FTEp~˷begO1!`r;p |hպ&hzA~c#|R|0@PREFosk&q 8T"5,n䳈WYz!_i? '?D70%?*TJ9!zCԅ䙿FuAφmHW\p᳽,?熷qw~BE?N/Tn}BS XR!twT{<޼|u'M}`ݺuw^t;v޼Gܿ[w1r 1bǰ@bkn!p\B.dQE[ao|w ~_o[qgPw̋'Le^8r7slz>(t 5jTI~ ЉX+Q|bP9PR_+˯A9ZubdfH~jUPФ凄H6i~8\ f},܂cV+Cf-*Ŕ~Zmc?p r 6+r~< <B MF dpuw -t(|b; Lnzk !CP'U(X寀5s*>CչE-s. w|k<V<_;Z[+:lG8AվB,]d޸uMw\JV'<OuEOIq<300e}Qy_PcYF#G<g؁OX\~ u9Qbe],q<!~ Lځc()k,|uqUp ֛y *X=d!\2]khp= qz!&+ |߅Be,b-@|¿[@>8#Wzi~:}mFduuNk-D g>x{wk_;N?:{E5ר⻈S'TT/$!mǩ½*TϛUCEOb1Jc5Ї>Df1rb>^s<{si_ yKcp۽{=eQ.D_Ǘ CZHuuT.j {yם+ϙ1x{x/|Uk%75F94ߴsQ7~Q*_AEF,uq4_;%<qѧkuäߣ<ywt}Зg4:ҟ/\%~3.i^o[?L!fjC˖ ؗLe``jTMyaKW7Ǭ_Ӌ'uBITgNMg^ݸ2:>|&^ge~j"*Ci~Hv~I݋Sk̃ 2Eg }Qp:1;׸A?龎S!o*̫ jh}Ϟ= عs?-] j]CqP}p{bUφ_8}ŕYciߌ>ϐ~~ LϠj+wVh1r"(CJX7ͯaPRll_c1GEQMuM [\~׌u#|} ?%e#5Ž{ٍ=r ) _qBXpC&݇-ܢς*ؿQȒyjj9!p6wdbbݪ['T ( 5?zwp? '2"?9Z|:^R9';j\J>!z`M]Hf'8%ixyq|mm=/qիW2|3{;~?1,ۻ;=Cz/fVu8FU.±\#G~6vm( 8 RߌR?wGyk@5̯sh:4aΏA#6?h__ѯqk_ F~ YJҽ^t4y7yCεɟB>.^x9T_wrgg #?^1pn+ CYP_2cTMiWxF Eωe>qw(9zI<CZojzߢ"?$CJl\K> yQ bp07޽l8'X~WXvhիW?=|35)ȑ|*KZ3D(}-nB*Z Ǩ暭|Kr|?;Ᏸs7w)ǐ+{ ہG7Ϡj_c`i:]8~պ? { Bkug_RCΓ5p9C`U{ = .qRQ/?dC|Lk|^kj? ҡ1?hjW0UC?!*ms ]*~@ᓞ3>@{|;Xy*q[Cs.m! c@E7x z檏}tE! <c%WpGۃoЯjջG=;<|swy) kSȇv}>uշC :~ yv൜,ɷHήo?5 ./{3Cs-oB 8i}ǭ$}>jP5( 5*?߰_*kkk^iȘ/v&U#_!P Q-rǰ,? n!בL^wT^_qC?g~m}}y^ax~Bsw ӠM:7~v8mٲqnlEt k{%kZ? |J5rk c=Gh~+Y;H7||kAMxB:~ T:ؽ{u@߹c"nA5j5&cVq^(רkγC,i|v5{!ֹc};X1B%ߠ ?-NnZ+||ZՇh>FܢiY> | .Q_<Lnu6N߿ ] l=>kGhrt<yG_iS9SsT>W- }!#Q{c]zq4]7z{orA^%> $gQES%]=qf_gWn;J'F-5$XjYl)rԢ7Ebs ʮ ![Zb!mq4-IC&mmڦM'cmmZaCl9@_Ae/ ɷd֠z2g'޸"0  FȯqYO\oN8Izpϯ!;5>*)y{G#8=)Cf c> jB>e~Y 4o_|kf#d@"Gxŷu*=3i[t y) !p!U1ϢC+TqS9]Yt&*ofu.sG*O.T$8 +%WqEKzpp|\~|Au;b_>ǸTx߿?΅:kx~^z)gV4ъO<3ou(<?~?Ln\󶓇貌#.̘9!gZͯ?hc}Qv<Y%|е>Nly]QZ^GqȺ>[m,bΏu(ejwFo59.Kn߸岜W]=,Ag(<аP8S|yJ;aul 1l&Ӂ/697CDV\Ns bNsgnQY+Wyy;ODE_<,lO[οR2eSfxF7|e2wm<Y?߰"&I>| `|<<~SPgNjyt?okП54n\.ڻ<+!ZC'kg[8F`m%a5aBGɎ8FG;2#`yҾ_CN^\ࡿ~(~=j6M8Xe)|_9>_27_#Tgp}Pkp~Ejq0޽ 6^zyE ƞNhǼ#!=-r8 3z,[r4EuUv |GA+Z8T]M8FJIIi)OU>f' Žk?g͆HC|g׻G:wv횐cժw6iAz>%M_4VˣGdT37|(ti!O4z>O] rI҅k|j:-5u03\#53)gjrADNC"5XAO'k]IG~ o_ A5k\\/n޼ǵ]:͟_Ľ8CY@S0͏K~.r$W.]R A0_pӮr@p w:@ @Ys o!r|Sx9=T]4 i5L%בdru-ٿs|R6]~1h]ﻶ}}i;?|ؠʧcn⫨̛7 tY]!7lp\qWr9szv8V/2sƌuL]|/d`r941^T-W {yFG~ c1*g"(F8F~ ~ ~(_@A_Rkp-א.ԏ oYٻe<U;"ܸEwYPUpY"Bz_)t-\cUgUy5)81 i5NP=:IwlE9 %88mX&D`iܗycWV);w|(^J| x駟yV[& H<ѵ5׸;KMa5kzB=G~Ai9~gG_p'r ̩=ŗq4J; ~kcM4i3lxvDG~8F[~ QIԡ눹 8ttg9/C\`\?hcٯQ=C9GfUu1zr%ϢBryԣH_4R;s-\8 ~ct?<C̵ʖ3u Ea)m\!9T;y̥K򤋘s3H-h}܆qåBRS\^&=t%KOM¸@с ϝwpԧVΧ!|~@}(vx(H7R[}w^"1>pcǎ.S<@YV$y .,Htxx85j^Owݵ^k4~2d̘!hjB' "yW * # qǍ /QǍ<~ݻߨa@˟^?)ó}!5}k5zMhP)U0gvN~{< /~ }p9cxWX=\Q>=ƭwƱc K79 z'qJ@CCCd zcun?yxܳH Ԕ$?M'>γhy^賈N`h̑!Q_}W_S< iÓ+Z>pP^kI./b˛8?kt-G T ptbDp Qs-Nva<RhbqUNCr^g}LoZ/v1y=U: <$0ڒ'#<ܓ7KK?9>Y`Q>WE/Ռ%F:l ˞^./Nd2$}g;?Ͽ51&&͍7`b /oWAvyPǹ PWb>vaY_Uh8сv^O~R})|驩j- vQ0HQu_q#X64zۯQ&h5&{:X֦?2.PyRu ;qAiMlU[wfB{$چT ?!~nO"<EpzzBTq!Y;[!>ݺ#Gs>mWx׃70hhI?7!m$Ao`x1=K?y\LV㱠Xp _~8giOT:'Hy?Uc_Oh~*[he{ϵZ[wqi4+*v}9/o1]%5rYƧ/qqfancdee}~ O~1P誨m:tҿ[Ұp9&fL?djc-mԨX<^D2$54WЌ9%r OF~oOf(쨼 ] r  E"twX<9k@[Fos G!\"&pfvWՆĠ?q묃r@Ug.$H ¼Lrީ)γB&ԇ\x.ςw~%Nv@yid"Cن 0A;(ߥpEFw>}>_dns^PR'2?Z~c7$8xlSI_K:v<iӦd -1LM17kڸ˷ߚ>iMrK\&&I*p27 ~1x:*AW>k@j#o+qeLzDCohjbbPrؠ8ez]r q1|*&_7'Fz5!,5ʫU8^O˿9Ea'ueEN1=u X?㏕&"u~(jz.s`ks(R/x1x-{> 87UWɘs{ڬ _CYtT⧾cYt){IbsGH]+1 H|?z**042;P}91uަ=0_0߰_t|Y1r$udJ&͟w$ݱfO[ l ZG W]U/3<c+fxp5}8) 8?c{$1?416jY>%]L'&l$<yԩcӳrg^s _ZQ╆v/?8ᚃ),aؿERk&%xt[-fϛx6}<#0P1<+\s~(}^;Yb.W]=Pb]IqX< bӧK gLC|?yAuwX" \ Jq~qE15nvWx9*J/a a=k/T|>Q<ߕ>HE٫QG" 5Ό?uԻ4E˰_9F}YcUǮ4Pt>"4IEg8Ưe ,'v4511AVU L&EN9TOIQN,B>A AA68.ȸ#$H[g/ qZ8u705pםe <0=2!Q7e\fxݻBD _x 9G~|'w2Wqbvz*o?k֬9d[׿ÓoS\#8e\$ni/j{˯9ͫ6,#;oƵm68͈yQ?{-C $NܢS!kĊ,]E[ Yyѵ/"WWql&d:y{HݵxaF@ZcǎI'x֭o'],Dpv`?Zrq'(.6(`iVjs0U$$%rPh3/]:O/yHu5DG53 `FrL&k EL 7ߤbk88$I | :A_ܚ0ށ~&2$<Wi.^Ϫɴ5S|qMAJJۓSv)=PS(.鸿= vЕ<PZq k|Z'cyR8ZgdGy> Lt 9?uпU{:W0 B5/<'))z[r|q.snZl>Γ =o`8Pܹ@xݹCR'M|H'ԕ|PPTy:еio:{?t%=^k Xk0_wIoY(:r3-V%F x#!˄%|ݵD <몉&f%:s͹3UdLQL.?Z[6 [y!UUǮ91 ~@SQ)y:/p "kuҨ/ڱXgknvk#_׸F5{ɯQm9=`2՗.ٸˎsՄWK۠}Ia#zo}1ZXtgAy,7,,PxGyU⧾H|jZ$@ah:)_6g=ܕa~clSKglT`=vmjRFv]FZ9]EE?`6D&8FQQ/@֭o[Ս7^WM1WirTk 2/h8`1)RG&b sWJMaccvK W51O)v|}U븾:Sǹc<6~yRdo3IK<*+/jWO~{hM50~_X0٦Tpla=Τ<k~>1:ҞC ZP5,17p94f91Klj<Op^}Ϗ&,/t~E 1eއqi)/' KfG7wn}+Mkѝzw`I"N HJ8ϟ'X%L)Pe%\?T;UTD05GF%anX -9~_r*'Bv1ڭb c=> i*]yȐr\#?Cޒ$]8/o4֟<$ cϛ>4d5#T+Li%yyȟ% q҉ƅȚ}#N$Tg9mY.w{cb+?{MSDyٗT}?am[ICu?ft=EOA8+Lwz5dy}k@ŁҒ(#c<3,?0#{-  <ELJY$q| .&#'a-;>y@ɓOWq.g!!>s?W1+>(헭PuDm0Ւ-gͪ>}:yx}^^ʰ3gj'O˃FAežFW: a.83})>M37XGCJӓ =f3֓pz`\s0~oY.0,*C']XqiH}ӄob)F}f~r#N3c<2¯xj鼨<p솆8FhbDs_&jzYKg7'Q0qܨIYzlH>\-yN!qԄQ?PTZ0!:SgY׈srgyk4g(rS%?rxqOe*^t:'iIɎgyXT:Te=1E:q!bG;0 s_tۏa.>]\X ;WTLfWQgΨ7(:Pib{8ե5\vZ2*b-| | dT>˅7Vh3!+"FgH90!IsZr0z 0Q@nnn?<gJ_ Mw+_u}у/'LE.oOrQ9<sA{ːV!?F4a(7 &/]o5*@f:-ICc4,Ɓ[ؿjygHc_/Oъg:Sïu(~ 1?(/-[3g$ $m񋎔aJբ9 vmF~fǰ_cn:/[\r߂C>/#\IETmںucEg7sFOR7 3<x ke?_n{{Nna p~KW|<? #& uyAjRCryL 3!^Տ97'&P,vHtZ/}\.\e_s0z9V.]qǟ!X]#F 뾀<E\x||k8qwӲkړcd>UხSNsg@kPn .OD:zY:+nwx#2ǍLvIODoH[+gzz*{1w1<]_OGen%eܼh8inёj ~3RV~:b`O=1ʥZ!=b}r-ӎ8Ftv?½/Q*2}\̫h9xaC~3gTV(S)/\ w~` ~%]vTH< {0A=9{~'}zÍ$q9%fg_a`1>[98﷮d :驣ա<׉3u$_|RN5o #)LfaݛK xTH&d!qkqÆrs@痥r|0Y'l9*{qJBRbOD]o5R嬃׾ Ue:1nOon9#ԪXuѷXxkc _\C_(P d=1"mfe|z2 >Շ'#,C+D6wy18sivy~I OR11*N}~ѬVŋ Ϲ_Q__P) ŋ t#U]cY xT0eee5.* h >o^oڸ]1qzؕNyw&0ZYB*ec+nqgHk}!\?bt(W<sy} <gqH@~/7C- b&{p|w1 ƭ2qq8 X%w~ю"PI9^DCXESo pg_U#`gMDե0JVj 1 ŭGRCHs?f$LD\_ׯ'ىlpjpkp0&1£(3~&O~?˟dT3|*Ir !<@.A> Ϻ[tgqAe MoRÿg2MEK(EJr/LjO+wTP)6|[R:E8z 51giXrhJΞ:<|\ zc 1 pPs·*yp^F˗:Cy}F̒aʁјyGv RW2_p&!v,eLj¾ e(>7cP`gZVyIPg"?<A5ÆRX'2L-Ch%J4r]:ibaO͛g"h|~h:՚k@dDASI&|#ѝߗi`x^P4qCX玊~|ٍb2Ձ!m_~D%!/oWV17#1:"4~ Ͼ(]I_`FՓ?X,M|Dquars{}z=%Lf3)?F0{AC:CQ? Y*;ͯ,n<{ T֥|Wnqf% .]+$wryT;<uYOZ`Qak/qyn[_~8$%.J^hjrD(HTuGXORCɸz?Os*H*?Pt`~ g}ۃ+F`vz*m\$ؕ<ϴ!`iJdO@4h^89/?k&Eb<:`ڄYv[?zo-dr+sR''AGSx\uuu ښl jjj[7lxGC*⧌s=#>p<)E!U+IAl ݞV_U>~L=R!~1bЇ3FEdcȁz{}]fNLc^Vu(q ׺&̟:Ro%32ܗU?X,cV9cO&SA)Ir. z'덳sC:N0DnFgOq͢ceԦM2[8zYq\ڲ1"deuezJN>mI7[nTsP~-jupp m_Oz *Tby ;ј7/cŢP^Fڒ$]vװUD &T#ip㺤+CZ AWcC2(Fz 6\* A/W?׿"$-"ns@4-ЇL HHK\&hP~Kr9ՒMqVB32f!]o_M5Z4dCCM"'{,9HVkrB6q*v=>ܲuTz@{ft&.T5\ _6I$/9-VWu}U..9~6(Y :"22! #G >C}~֤ϏXO?1Oq n58_(55Z`j_DW} ~|Tv\PD~:VTTD&(q 9v@q} !ݮ 7 o^8zlCJw~8:pʧ|A1CJKa1l <@=ȉ*>nq);rhSnz>1Dʎnj8GF|JzatNR =}<Y]vmCȇyϧ켪̶j(_np{i y⩧O ՙT{s\ )v - ˄L ZOada)qgUcSFF{0wJ޼+w~{;=,'pԩGM#x{ .^6-bi=5 {ڈ_\Uh9)'Ǝ$I+!ۃku,W%ȹ <>›\Uu䖇*$hch⤸<p̘*߄PgP+gjM#cI_G ( %¼j 38 -dQ׎['9ce3ƒpR8<[hxT]B(y";q9!67cT8{anDŽ%p{p,MNק С!ku^-!]9ƶfώ8F؇a;7P1Ws_w}D^|_x5@~ᤔax~MIϳe.&eb({5ΙR4+kJ5W_I`ٲe iFoRv;E|1f qdHp 2d@+ٳ ;n`îd\9wyo$;90o~=| 03F9d iς(N9s&=Ȱ"IȘ;CſZ 2.a()]?U[Ar <)8 /XQk O[]W~uKAmpVv{ºv<MCZ.c}0 ʓ?jxvXkjZlXl>w$ΗIy}f 5N\poZځlyo\*pW Ck=5dIJ܏˹kbkmK_2q|xx*tUa~ҶF=.KPx|Ľ0V;"(2WQBgPlz%c 8e8O .8\^Ξ\q*B{>^+6p«FS3N_"8qoPqxaU~_?r!֞ ZRz>$x^!ʵ;p ]>cS9b[xoe|%]H|s lÌvנΫwW_mѳSWSO:K9I=?Rˑs̗"X ZosrrnIqcHW.В癿gO-1p*ֱʭQ8q ekfq$ /L3{>7Fk|;v!}v}s15t]PL esP}DJA"Ybo?^[!(eA1M|U~wFˇY&OT?Ҧr ɒ'I55 NsmJ%{p5;8ǹ8Wo"a}"ט7sf=Fؿ5I)~O+L˨ms4*:|, $m ^'$kJ|RwZnar95>cF[홅 'G}cxG̻㵐_#0~STs9=K<O#8!񸧚,uaԘEUWq h~sשCOc?, zcp> HByGV]|mfNQ^W7s>kl6ЬϨ=cBbBoiSS<'BV{L2r-ϓm89rm0=55W1et {X4k5k1)''7Z#/:4A|)`_%igΞ]d1hܷsv=m1<kfy PO]3a&ْJP_9O-ot8 1uc駲Z>zW]r-kn!GuueXmmͷ՝B+>|w ڛ 0|2 7/y_ }Ш67ZTU]1 '>PQb%gά5 .$4>eLฆ՚ 5j"-p̙IzA%̟pkjb9%ʊا}33JN]e<OqH=Hŷ(S7~-}x[W-Kg[g05 hV P>4$OXlӋzzbv<q?z}7of τۗ8F[\û_H;Xc\U (,\},9A-:Rk*<ƿwcO0g\\aٚ$鑊#1tC !~[Dyj3\L7N4g ; jf:(;?eFGy29*ϓ0e's^jޒZf͕4F{Y7o2`R F~5\}} jK/|zRx,r3qESO=fpIc9|֤a<;}nk14TRG7Z -.Z["Y0 ?("= <r5yD|Kߺb*+lJ5KΉ%K0r !/ߏY@[kjt8`.5vn<b˞oJq}eT#Zx5$RGҞb?ͯ1^鲽eX{C}U<1 !32Sn9:n$$HZEC3Kɸgfrq~H X'sy~ZdB[' v}{K$k-aꡣ{?c?‘a߸J-,V?ǿ;~6 j}^{odBqaNyDGjٸFgpXGȳOIT9y'Zn~γoQRm_>(=5QO54FY!: <ҟ2F8oZ{挊O?[fM}JQ^Eoڔi/_ui\2Ja Z$Z x/tq Zr'OS#)-cojgZѼ\'rm Q3'?$I00L9֡ U]?;kmQ[$xnqg-ׂn"sRS+,j7]l-v ~Q]9Ft78nڱg8VHoGN<l91^oɌgDž xa^V+)Hkkj|KJJJ /Z$*>><l1,^(pC{9gݩOtqtx:_p9쿙3Ng_[?"`ǽ2>زeϨPgԷq[Uul6"y5[˫Cz7_\c!ooBT:p _U_ x.(xEgWQ0/s*ϜJf@? '>ᩎ7`a1OUJFΪ1Zp>t5Ϣ[p`,-z)ע4s_?cckFxϓc8-0)?9<\tGs:i*\e!"<!PZ#y/k ¾nERu Mo ܂ۍ? U}]NNU q}VLBR x,|_XwH<oayŇ/!ꩧe`Ʃ3XǠ'OQG0#>>ɞy+㱩nMfr /Vt;vdkr Ͱa|a2I }9Dn!~A1c&,S=,QsST響%8dawcֈ:ޕWh}C5pbjkC<~>aާ|ώ7e*Vsf釖ΏaÛ~ePi9?gkq`o+$ɒ߫S:2lHj2#8y{u !&ՓcbđtB/ms v;'d*++yx!ܜbx 1BgPH)SF߂tpUfi1L|XANq}YN%ym;6: ]\l|3(- 7b3pS;O* jh[%EEW9FYg}_pW໰x5 8T}Q|t*a-8dWg`(WD_FD 8]G:L @^HJ霼)â󳘂@k]I~_Q'_ )A/xښcpJGgg'ߡs3hJd|cyS2Fn 7;DL{ OLr=IEL;v`0ϞE…' T>WTQ:fӎmjѿK{c+嶴1s}qiH/a[{p׮͘ˆ9&7CJf7HRRh[H ![$vÖW-^攂K"8w]lceSНkt]”>?4+SǤƅQG:W {BD> O PKR>x90l 5$l޹s IϾ|3\;DzC\vF + 4]zxxx}',\Xπߙ7o9uV^ TIG._LϊXBO!xMK#R7[mhǁIx>nguD^}>C<-<r8lA[T@p i(-Zفjj+ 0_j4jJ5e3vcSG~/GA5u?UqQ:fG ܼ1~}>9C<?nk׮ 鐆ԟ>yW C.E|G^q ϬQP~T˖-:OfWT} nʝ;(rウuf(QXѿ/~Z;sPb^A&GU*#p܂U1B Dk4g}6.?,k@Ӑ[+ Iگ<)%1vQjfWhݿIx?T*vy0s{3P7أfUΪ,}wJz /3MjEdZGguV{1Ǜ( 5ЗLZW1Os<9ϡj_3:nh 1a]8/s<Hl{ch֪UǼ!8:Y\ķ'Jy~}%1Gyo׮m-e؜9s:I>sEi _IKZoMRU`6M]^xj̇*0*6 |߂z5pG}"ާf|gq:LT'({{^Qq}E_Ɨ)(/rj^ܼWJ\u8U{xOW?^g[)A6>[ 0K q?קӧdc>P0{V*P 鐆JAO~pעO/o˳+eai"*عs;wٹsw{z|󙊥kfq566^T}KD.+liϯ0arpNXR9- S;nk?vC$O6leX^^!Z.4595$} "hoc1|Xp vuŽR"׶7O{<{wѷ*~ZOsuq SrM|7I$^sL9r 5~R)DL7*@Wľx֋9㩀ƎgN |F{KW9:qܟB?ӰAqԿ3 v}>\(wɡx*ųG49WիW߈yU*fzhn^8?h${;v`@"!W4COXVTQk#~wMqW@O2)z!hE,%yejsVPb^/*r q>0ǁaZTAtGWXyJPssSӊcVϿE!ZU}n!Pq(Meǹ #+x~P^!h8c`^>#3JkO%~}gl 9IZ$̵;l6H[yAj)_x>Xt@B9iry5(I؇+ǰ/8^utbܸQvv=_[  O׳(9H}k+w98ϟ|tk8{JO60gjP?벇QԽiiɳa}v-: 1d4b())Ȁ켽rhwpד1US{玟[KݮdW%8䩣F ڛ_C)}/^Å5{髪cZs gN*>B J$B;9:iNs A㝸Lr9J† m $r sy Sҷ9J*q-*-P1\Z[F[?Rw\8F4yi5%,v6;\)RҖ"w+,m/*/!,"=XA9@~ @E~gޒ$5e#]c%/|._HhN^r/` 4/F=^<lQm;r?Y]aj`zh8|#DJh l:?<p^ٖn޶-أ} x!s &/^{Uv lM8Փ f%4=YOk~{(7҅c$Y9Bh&ќ:9)qDӼ;&kmS-8v >e߾+ݩ ?XJ3Zb6Dctd_JVԆotG.v%q}fO?4:qI؈~ KkX_9˗!5G'\cz#.<\*z+pۨQNoOW |'=9hD[njF߶,[9X㙃1jԨ8-TQ{,bKK~{ig*uȑ/1K9X"&?_ed|!C>'{㳤XP~;J?sD3K+VxWvIM -C:~ .C=tqB̽'+D+pVU18jZ,HohJ,JZ? 4RTw<(^N2._̻d@_Cھ ӀML }hu{ۋ\y_7ϡXnW^[YbEx6믿W<<oޕm~f'd;/OP+N(z%9{{gs`Gb/뀂ݻ߸] )KO'OrrDZ`;"gq[I1V9~1g$bm~j{,,hxaճ*v (cHA1vjewM;}z{JGe1s湆Y[[qz[7lxGC*T\׬4ѯVBJyUļIG}UHC[4FWׇH^m}% ) vk$MO_~ qƷÍ^[~e\a_3S@xzٲw2a =<֨Bnk J:6Pk9F~kT|4) 3PBa)QOp ƃd]9%^ܢt}fAznggp /%*jA`EU*&AB#q$'| ˅K47B-7X]f:W>Xs>At<D7o<ϡCZGB[߉*7WɊ+"^zXQl߾]q޵ޢ޽t}Jeerxqʧ9~ztr<:/Gc^[nǺs߫N[Zq_gEjˇa s@M<9n5/8|gϱU&cx~ uHȱcOꍍSxܳyUmmm?{E;VYCɩch5i9U"{e)./<_/x_`us<0_Fyټ_rW}u7]$?h|gy 'òe^&It悈<׈s QV)Gϑ>4P-u!j~vFWW+\ 3,)%56·to q#3[k{CP K]+TJ1 J jy[;+NH/]>"33 qFp4cC= aeeeHvc䳚hl驩s) f9;ƔJ7U!vP&ÇTz[5Buu*l;"h[lY-TXreĤ4}Qeb;ؽ{iuD;M#bER#:oUI{Tܢ"RNS?uq'Is`j 3JEX3՗:pV\5k9{66e)8?c^/q\_F:evM ȑI0:bZ]xr Oݳ *-5$NBhXkG0;=}N{숔3$iS,Atv1r|* ?ϋPgH/ݿgsZ~kwi:rP_œ?0[M"o0DQ__!.{7gQZZ1\8x<q*)sԔ/1`n0 -~ZPVV6! ̛3H,|h:-f c}} i:qM9a!sh13cw<Deq80$ ߧ51!! ZOO_5EQ'(YnݤFjƍff=BS8~~0:ujD!q455^i£_p#ґk7%h?{BWTT,r^'9P/[Vʐ\͘~Ǻd#yMm>.wcxjCCCc "qk|R(,e$> :ǓC 1RS'z޽,yl/OeD>ñr@:3TUVB~4@BnÃiz۷oW4﫬"LIEE<å^ٲEҠ6%I;dZ9 ,uQC>&cC'h{gG9Ǒj&7QFw.B 7s ʴ"hj\Cļ r- 1wS։ƥ_H.zU{c88Ui]4ZoY.1|+6ЍT~~1Fla70/y:|hW9˗<%Ҷ9ϓ˧>h`x pB0gRMnITfLDu#;x0dEE***Vk Mxȑ?&g4j(h#}g`NƱ?OzU<8!9~ZW[`ʵruKي6"xnda=$̌OkGgYXc\CvX&jFn3ˣGjNA^;T U$H΄oPSQly\53FV'߷ÇCc8Ȧ+ } }7<vܣº}S$c$!GUaRҒ,FD{\cƌ(G&py|*Z'[_iZ qW-r ' 5<GFqy7 PC<,f.s`ED>!<O> \9.;]x:@jJWQ$eq$짞}%!:-7?lw >}7фH>וcpΫ# 77;OJ# v)q@n~=91ƙW Cs EM(cB'<eq(& 8nw1ژ};cvR-޻*[O~9`}ۡ:-r >z0M(Tn>o|±WgA^ߩ8uT5:!Vt-j+++ﲱ'logX})Iv?\J6JUOA=ddYp^,0}TQr<F_HZ<hQ$QRmNuC$TB ~ޞ+jɯe^Ookv۷/ۥq׃Bjժ¤4c)I}e,lnf<AsL!ONOU_Inn΅Eźf3:}_Ioosp c_k\pWR=mQ7xEZ[5zcC\f'tA8o[ ^97$BPH։qX8?xji!ғc;cy ;۞/a-N<wMT{?Ij63D-?C-JUB)ar7@ʢ"*R7,jF@ TB ,]i -ڍ6PJI%\f~{fMZZq;iL&yv[̹Ix>Pp q9Wx޷z7q'19W'6eX;hy}kǀч~8r.}]R[<>G ?)ދ%W:pWx23J뤝ąiz"PyR/3[ƒ!r 14)))R!90bi9&ibO#W/L96VJh]kHQʫp <DY%'Ϯ򷁳@ +(ŠT?#(l| .P1j8R~#<16ʮӗ3#_H>!C|+@ds7 ~/.M~˩}# $<ke6;MxKNiZN 9}۶ J\t(MYfŊŽ0gP>%ju֩짟~ _+<٫tk_Z:[QFuN yչO[v]ߛn?kJɭk-qd&{EgB8F}#'h-7vCl*|8žc?V#X>?$dE.jmcXk9o 5+d'D\B7 t/6K1ҥ~M6mb/vr,sq9>zTqx!X|<`>n,m\NFq B+޿0ڢxe+)u )wDfiyB7.{!S5ޤ>l__/Whk[TKי=0h@BEgΜNhu%!t>?ݲnNݨS-?=}jBW7#F[@Vt()) :PS-8O9[ ;w)** <4lL\$qHF=<s-Wq\Q%9Ƅp_o u\C9gOzyCMNiKq?n5}|יך7u!?)Ј-4h^cޝs?T{*{nN#ibbA5x P_;XW_sN@g->?LןS| J-gQs}yRKώZʸ,o<h>Ѵz׸zL0 9^.qWWϵ/?ēV ǟ`RB?ws nQJDm-Q}Fyynb.p#5%/-ZkαxnQ.'Sc@=ySCm|O_>#;H: U9FHL)^{ q=tH~㩯=_$ePW{o`up_?Vѹ =%-/b槊3t3bkN$ˉjmt-y|/EqO2 zʠ~%Ete6G{h^5ͬ f'" 0~v+yrZZztsNgVXъ]񤟁O#b =pf+?87>WiOi(u֬xJ<֮Y4Os.\GS a ɛ1IPbpG4!F1' (^QHcǎR)ʺ Biii5zyȐ0'*S.@HZ:ڿo_?T}%1"_p欅BA;pHu=\096:t'J"w52*\C&q|Y:j_=Ʌϫo1nv凜 ;VsCPU-Ϣf~UwqpTi)9NK/Yr'gu''J,sB̶kD5&L[ ʲÇ!n>\V^_]mK܄>g~*N>pd vmH+uOٗ;V[0vW'v mzg<!2V o x };wsn~ݻ?1f|كby^TQw w!R71M w}C\vMsUI_IѬr:߷RL|ƍ>m]Vq$[4l)Skcb i)q ?Sۗf i1E&[8WI{P`)p1?O^6^ > Ѡ ZѢok@]eXwޫXkX)kL='\fAA=F%S_TW~ʼ@F-Ool:lX3$Ϩo54մi&`Rh0gI9wssTgQ- ˶w>ldYؿuu<okCY2KW Oƛ@guH~[Gm*օTk ﭹ'^|'wʐdSQ˖}V+IvYVΊyDssEdϡO ϭ}l<)=^wڏc}Q.BTBv%uhg> C}@a%WN7dDiRG\fdYSYeoƱق,?X.xѫ*֘W]qF-:v;Hĕu033Ebp~gy? `3xj*̘W\G2رc{71JQr+ד5;w>4<N:5x l6ZpESug}͸yr/ I yvZ_ cp+}/,-eWnCخ5s sAaU!csWy.8=R^Rh?}Syh;܄Jp D/M/d囫ט"s9axϓwBޫyt:Z^^NM)?sΣ 5e|(+nټ CIHk} U 墏g/u .[XN ICR0KLOvܗ.<il{rR3)-^5jLR~~؅?dHͷ kM>Yo`vYOEcCh@^mnq~!sçC* GnI͸=<#*^U7x_o-7_9"__]s=r ȷ"9?s7yj ӯu98ƽcDp&MmخS320g(1u%˵PQG3Dqvi4=dWfys_*|@Iɞ@ixyQrҧ(柎OgZy,#p]zވd[‚eHary<+(40}%vxb~9–2~aPJMgd<ffX&&.id]eݦp ,71=BY}LB`:HnŕN擞l.X6r6lY|JX߰Z8bG{C:K7㱩S_{Oas}!/qM  vSxԵklaVmu scؗ uN瞑LhYp8bܵ0/cn "\#68䧺s w%<Nu1ך^\rL65u<}yy111ҹspjOTnc\_+}<{vFY qc22%p$/jOﻐmȑe: |Ú|׻kh-{ zk9'z!-D~oǧ[r qyuH.͔U1jngy3nOMQ"չ|V^Wbnn/^1(dFQnxDFңGvα{r㓶1z DhӦov;He?eׇ:xX =/_!I9RvqY\uS;pM}uVA>z,B>~mru񁺕3gF螺OO!yQUz ’saڹz=zL|VPˮ[ ,kkAݶ~:h~~$Phnaxa8? <Bˉ;Y6eUt~T4whiqT> ]Gwrԩ~BDCXfJqj2lY6$_QģGKC(ƍej;vxGÿI(p<vTyYI~^ЕksEϣW'>eg]KABr wyq PFɐ/qYf_pav¿>{A~*MyR<"Bj:XoS~wx-̈́_׽ M{}佞>k;OQlݏxzϧTj6/^~[gޏza3|UGʞ B/PGygߛ Ӵ>hרCkhoTp"T|(2'v>:Okܤmh'rܞUkשU8F#1~>~k=##CGɠI&]ֹSh+y?<>v͚,lzzo/DZ<~/:ykB+ǠGJfo@e}$m]yʍ}}`%Af2,J89CQ;O AaX k.;ŠO  aG- 0hStA鴴$|; s}_g9q/<ϯX& ~9H.ZϟGlNjgj5B9 Ny89>E9]Yb(''.BP!F#-zC>/䧮hcyUp W pWA;{VyP[k>v}>_|:~ YVr K:c2̘O?} gX0>Juu1asxR0d.5k2io rZi\pVqIp.6q eyVR![w9pyHbW<l7 `KwSSUxM1ZcLxq]9|NŁsQrݷ B;{砯ehSO7 9E.Nx΃Cy?߅gyu_J,B so6z[}@>'qu|?X=wĮ{}%u݇ʯx(o>o5>~/(#%8Bbb[ui(ORAB}9Kֵ@~8?5]a!>Ǩ^8 qJFj{ԺJ ga'T |"\6Gx^EEeZx]zwh93y`ziTb=_+d0^'<L z:d ǝ6}wڲ'?y9~oK9PsFzBf JsɁ۵!YYdw/IqssH>(_ŋ KfڿGxe/ire[n]ў6.Yg>=aa:[StY$ėb!~,'v-+- nYsf:`\eeJd&<ȉP7 ȉj⼴E1~u~kc$.\U999ܐv\ܾ6oU{|is ԝJkptKprA!Wmk>t$ 68<&\#\'[).^}/TX, u0PRuv Rv&ܧ6&LO\HKM%yD/ٗC+l/AH[ Iբ_| <^qo#9^ϷST9迺)277/)=}e,5P$;/nm \gExpqP6:PuܑWoqNm[1m |lp_s@x^,)^4< wQg(idzY >O+r_S] ?0?tЯyG}u>88_<pc+v#j.瀯8FCZ+9+WhmC7,ܗY&H.m\_H: [aS~|! mcYB "E#mKbLΠa:G#l5{:vWJGeBNTrݹuxAܼshJJ0^388/{̽fK* mӮS7?OK;Eǫ]N @R՞gZL Gz;< @<#o_iZ0 yxnd$IiFy@!y M"yB?\${싋=$^0_UןDGˢ,-њJeMڼ%Rs*/]96u2Ü noA;v謠c̞=+_|daaKYwn*hzQ|߉x/rO 77_hGR&y!$|bqJ5_ե["Wx# [5kޛv\9<I8 -1P3po g#d4#M6腋oQr5lҒ!J2</g9,[_^^`5BuRt9?T?DKYxk|'fJ^7/ C '϶1O3sF<ke W8p)]{]/* gs.} 3<Op \z-+#"MvF) .:"rd0_v1=7k/)R16-'I:xE]Zk1]%SnBTc:CK!~,W.CԂ"'hxnQ]v|s ׬V))y?r޾|48״$0|Wr\W}on}iP{5t-YٶWO\F>Wl#iZ͟R/@i#i)z)sTEX: 1h9yijaռh) x q7؛W=52~@Ej̖2-\j𥐽~|Tls >"]Z|*:uGW(vVܮun3ޏZd>ٯ-1`>uArD("Ѽvh,^b/9s xVr+Д)c5@FPr'_uF6}IQ&$g-OLl橞plZMG_.5ò&˦oB*o>ZBQSxmXEǁctc|@calF4//O~Gr|Q^?>,cH}fNd!WZq"& _m&_>H/peQI9fe ~5 ?(fYO< 3QKtS_FEY֓GE!:??cTf>=8Wbd,&> O5 akg"9w(|kudː}NA_5\dzsG?7\c^w__4V~ǁ“~ />ǞdLJ.1kߟ}S4scwAccG?~ظfV|4\wnqaO6+ noDj#y, ~fTBhiv61*95wo{1LuYƴ>ۭÂKwJ*~ğrܻ8%8Fr{1șWlK 3#5޹YWԨ'vy_'=BUgjˋSﻴmYruz? Tv}@Ү w5Z`>. ؾ]v"5nee,zpy<LKƨg>Cp).\xI8@q c}y8FKxx<^YS/sJ,d*+8~T8^6}B?>A^c)p'8_Tx%n7 4FW^yE:X<qAx_\u|uԾ_˫-;LѢ0?A.fgCRO_3)sG<t+v'9KID,"~h#bv&|-1rs8Qq }QwOiioŚ:vd?_уq =?:^accҮp,yr&{^r_isy[0Pr|#?EpoTgpݍFGuU/m_}\cL>JTX~N8}yo#N0 "΂"O[okI4<?>ق)Z^cJde{ 6xo CPz{$G͟)1 biDU~aFBBrLn<.9^ҒC;Ǩi ΊfyDG+7떪[ڮQ-fy!~qSHƍ^yUfF;55+AUHж|G[Nr&vEN#C! W7mya}gףPytŲ7& ,4Tѯ xZ8/湅C~=r@|caaޡD+3[<Q`zW# I%.1\e[f|{$G.3{Y~|kZ~t[5k;I-5}p+cѢO1X89d/V80r<p] uR5,oE:Asv7n1^ڏ7x6VO8zP^6!I\ $!1_z 1v4nQ²s( mٲy|F:0-5Yȷ5ِE/[T1_\|Wp =jYksyw<.1?C\EoMjZx]{5 oKwkܣ胿[>^[F׳,~]nI2n{t;v Yfe5qarJQPރczI+<iTFc!>!u< ٫n! tm޽$3ө$AsHD]z~137Ԣp X ? |8}qYAK 0Gà,SysÉ&]*n[Cxsm^9FYy:'R_aR*aЂ;?d>W+C<6ycE3m99Fu}or>}_ٮwV|4~|5'i+9oOsiÊqWV߫NxT5A$34#)lmU"pq1>0.W;C;LGύgCkxM<ďUܷ׽[?1;e$ԟ6<?]; Y9UcOIQw9WVַ\7(r GVny Bb:ǸUf1;U=p)u9f3?ii*8"}9u 8$/))|oc[YDħQPŧFx#s~{x~'iߟxӑa?VkFpcڴ7>|+=PxrTrO7Frt9 w }+NGI e%j}dmna+ m*3Z|C7xbK <@O?YxɡSM?!K:PH?3PrܹPk51khrŋQJާ{\u DxEu0Sh/fOXz q Q'U3'Ν9Ny^qu4 ;Hr?6xi9P #h. Kn||>c޺CY J~!wE s c-ג*J-oǀߣOpLj_ٮwV<4c23Ȣk;vг1*互vk? -< A{>(?ypdE<DDR ڿi יF`40r>سkPuq Gy|NVv;8 姆{abYw˫sg}ݹ7$R3{1g|(yIEĎC/'&>BOﭘcǎ,/Ha5Z ץv45}R_ E{>\Luq~p>}ZU#h.\ ud*$gΜQ{̤c AZE]5N5mc8Dw$ǐtߡMFQ 'y|ϖ|jus v_QJyÉԩS/_.vTj}tc&8''3ﮜ3 R!r 3y&. 1YJnǣf ^FW1@& 5B+JPnC QA|<y>Ѡ;c9VO? YjR?7IuZPk/[/2-!OJhiC8Ixf~Sҝc!7_oA 燴z QԖ+i,c8x:!_1ݿ.mԮ Ln/ }quY$ Cn 9PT]a29bm[g@!`0.dxn?{x\tA #O4|1 s0Oįo.(qVDFzrHb<\%W0g$Ѫ[(*wh -:sJ*cyYBQym_zg~_CqXoqm)wnܢIC# btxߒy/~sH%9p ج7y}BU->fsjWIL2Wv#鳳ey4$4'aw <˺gʭ$u\#x P d}=uZ{Xa 6m < >!`*۔)c'xWV,vU)1<C.py<fZϧn[+&V8lӧt;kַe O]E>c(`SBk ^p<UǍa>UxE~w3 ˕ iÞVns%]:z`$_}\)z՞OzQ]b_2Z<JOXbR 䌴8 OWDCys[߷k֥CyT~OWHۘ1V}!s{8EиSO4C~Hhkr }P[QC]ݹ M~{yJ]N?gq&WV6!o߾ ʮ_Ͻ_^2EO_X ~QoaPŽá?Kxn!x w)mHejrB_Ǡ[Ҥ-l[y M&Co` Uߗ<MC>o*0*su{ٶyCW7Lj9R9M|hyV :?ic@~>=E9;\\oǀaxq]v:y`:ϝ9M7nNhٜ*E-dzs pTkx;[$^F '}C *//x@xWtcX5kr Q~S '~ފ#fz c\x5T{`"XpvZ#trNDh1&nG=FsqΞ0vp,,Tc|b;>x?)P￿}^s ?sf9k ZNGCG'Wk4._<& =U?L8*W8 eSy;F=7PcC_g=>пc_;h{ Ӂ IR{ 8ML,YNWK<R $Ķ XVs]H]rUɬ PǨb7?.yEc,)G7I} =-2QYQ'4j=ڝ<+|ʐD ?1e{'*y2+ },!o 7kğb#~z w<Ι#C->V)%9{4'jآ(c_2>Piߍ wK1s03/ԵrYB~  }E}/<nx>&t9%l5q0_T!V*/,, 9;0Zcd맳0),%KV(8uj26+ǐ~;)#jy:<?!=SSqyT|#}A2XMRmW0"RKX<[Kyn2^?^aH=RWn&s΀ l΢~y/ yd qbS_xBD\?h)+UTA:|<ib _N I$7a=+X4k;^zE?;]^0YfΜ,}lY`\CСC|l@AM-/ R'2d s<bKV/}1ȸ(6f#G_S9;nK ^iBWcp#=W[qKnG8q52lO?(wAÃ\ ׃4px!-;8g9)xXg!rfuUM6+H~x==mH}=1ujfꗤk,e9z~ۇ vstOkL eB~ϋZcpn*懸Y_hv9Է*[tbФIRBםv_.^PWзߒ*yFo!7)D2ġy{UxG})4qR5u=B-6A_GɹX}n*p ؽr1L#::\?N$&X81JQ-*7;3Iu? y~N\׭cʥ ں5z+} 9 d48|$DaӒ##)cDFZ9/9k;3f6%X_g Z`6ٱcǛe`#EEԀ[!7 ;[A# #jś STTEix{+#y4qw I(YYYM%%%s OS̃]۔5^ûP<Q!)CtAWlRX2~J]5r1;VtԒ24Y1*hΧĄ|_:uo<!N1/7}?gr޷wSc9Fu]aK~:~|R;ź}?m)AOg2Ç?> .%t|'~׳_O-vaz*PĈ<]1j7w!*-Ώs'b j| XZxr3p?P 7KĿWD$Y9*ҋ<mPrϏI'ڌUsjU4nW!\ >Oh"[60:"WTFߖ5kV[{?־δk:t@Jo̘1C 3>},rR)xc@Pr;vV\c\OvǙK&JK(2 s*D_'SJ#?JiCǂx8}|A)z i6Pc9F63K%9CW0f=+f21}%x7V~UWB8U|}1o)"98|蓑 @A-1|"*jre݊^Z̟\ F ;?Oy8K"^@N*#g<=&?-J/nUҺ+d;z [hjchUu >sRSYYV`+h@H̿t_ykL[ 85jr c^ڶ~:Vv\^W1iZNZ:ur ;楧$g6a>$oR@P3p9x0Jklfm6>o9}:-Sp=pi>1MppՆ(-H, }-S !::r͝c@vڋ*fr naJ"4 3՞ݳc85:6 !:>x圸wL(?q1pbp %68 ]4ҟ"*ˁp?(gΚ9]_Q($$ .}u\Rjq@k(},a{R#!w}ZS}ŜZ~>T]3jwt{.V11v9Csi,impszf9FNNjg39t> :\!a%aM $1yq Oo2&O|~ $ќ ~Ʉ`ٳ\0s&HH?? G6?<_;$OPiu=a A&p >o1P>.CpԊwE:{=GvCz*Q\c' J>vl7KBO:5+ԣTIq%N1k\얉>K}9">V3Sy'8{XonȢ-2n>L`h1< !mYsƟל#Ufo6_|<;8nO~=!=Dn]9[a}Ww^R X5EN Sд.&>yzWy덙|^<ٝ,5e,/o8 OzFp ^^FK)5Cು9rsfR 2+j.Q3{WaaWQ.';ۯy!G%R1_cH d熫4PÈw|Ϝ"|wo]g@O?RO+&JwV}N>mKz]tf[fjGj%>Kp_ ?g2\Cހ'јܗSw1u*M;O޾v]>d'ruA1C<z|fJcQZע-|2_9=ApKy=Tʠy¿u\8mҮu/ϓU 4I$~s N߷.D6nU+<t3 _a!9":Ic Frᗘ65StŔ$ϫYTB=H?O SJ!},HAyM*=!$ЙA6w~%A[P:V+ǨE5k^JO#}>qp$''?B%E/(P󯀿:?q?hU$~nqg&>~Νd`OD?n‡p:{Yʃ[< B-6=–&~b'_mW?y銸${-vyy</ NkļL!߇wsgmy@49'5u=,ۺf-S@cDܟF>~-G/L{y]֛_^C䕹/濤DS45{}^ٰ9;Hg8@ܜYGkRl,+c:p '|nǰ_Gw((5}H UO%{zvQ ᔕ9QLSK4xP? |hv SqظrS Djm`yq}O՛Vjg-s'57<À_^-ҨO 9aV<ƥs %Q  Qae/pf<k;E{B=uMh:RTs0W[S}8[R1R+8]Cvs ȟw4+ѣ"a^בvmHx ~j٣Gg_.͚55@Sǐ˅e ƻ/uA* |}x;;3_#:? 2Ӹw"i2/ǏӈBi%C$J ~& 7pr<gxnon`di$58P"y$H m3g20߶aَP?< }#CKK6r`;cx*8cżFg@[V,Wn 5cU#,ԅW&!ˆAz<<7n)rs#)*sG@2-s~s֬6A\ @$E˛1}/۰5+=v \i&{A첓BPbIO^CŢ {WB rTo룖tԇ2hoc{z%aw x^h~طTU 5.G?]-s5RJGzΥ8f禩ڤYQpFm8瘗5ϊDS|H*8Ɯلc(nǰ xC|о}1Uh.:XcUTɠATjNY)a\.|ovs4>MWQ3GjQ#tzʙSzAsjhuz&SY9Whp -{VwbyaԊ2Urs6㊇<#[}\pcfq<Vdx<EN~<)r|QҡtD>w8믢<eD4gZF?FZO\E;y}.,;n?HJ#:;; #I8rnW{I[W|velll2]0I1]32>?04=Ua>g7dۏ2O?%u*~ ՞BOoނ u{9 olQy\?wXcYpr#uάNJ SnAx ?]au6$q; HZ]#w<nlǀ~{To?s3GK?p08F |1H B[n5rh}l۶{=FՏ9|zw*y75K'[蒒$JTNTr >Wxܣ- wrG[d  |p5ѡʪ)Q~Eȓr2\--e(+\6RȜN4udR/I?p$fIytd=lQ -E9, u*.Z#|K}ʺs""E-W~yA2"\?#u_+o ()b=%>5L3s.;{6tdeUqFsq CE#@w޲e'V]mFQTtiv der'F, \o! s( /ZBN|+~:{+>MT}ҁ%-azǔ`}{yQkX(=}Uw= !|!O: CF٤sC9e٫5?h V~ ;}<)7 w;E|07|oo|v{(n}X7,)Q^C\>\kT)n[ܭ!ͩFA ^ ps8F,B?|d%97oVWTk_7ڵnU!u TyR/1s  Ga-gÛW\&NrA[ ?.<u쀾SW4I^p#O`[PR~v8/r[X Hd,pfVA_RIYϱb^et ȦŖ%KI~Zdٜr QEs0/JK`,x7*ǸL. *Z攕{" Ǚ8F-Ghܸ>aɓMi<?˺1kOw݋E)(Х;bc?R-do^7>!FcBNfz~׬E$~][}2v:ZӁJ"il}Kɪs;^x2_o57%&"Tːg;km`Z)/ȡ/TLQ=k,2}*,?srO|BQKHFp iq ϖX0k?xN2dG۷o,%;[5<hiP||0G)7O<CIИ+*p׷C$\OzDyU Pp c_Y0HNC<iW`?ʉu*+2k%C8!5sZe@rr_=*=m)К%2}ӽX. Jzڿo!Yc #ܐZ1|)Û3 ǨkTUM [N~zޤ-vu]VUy֭ߡ UիWrRt/ CZ{}z~Nm5CJ<=zNmWhi|z *OKH$Hd]N[!aY3[>E8-'(k: ,lV}]I_۱C>Sjnq«tWy? 亮 220M|<wp[{L-cu3z.F勷wCqxqrrUp ѿ9FYYgqp+!#\WV8h>Ԥ_r5N~k۶od02LLL̳bSQQ&b>:= r 7sWgM90E>Ȼ4axq ]"7 T}yyC8"O,B3TQru>6.ӑ󿗨|W޴"!&fc|9j̒2":Q2"?omL,]7Wt]N .e!_efm'ޯC^GS. <׈]s\k''33OwFFFFTHܢǰx=\J9",=Sψ8z$៹۩M߮($[7vx}ΘJ=t9f#>|ycIwq?=uqb.f,~ H2ivE ^ُ)+I@E4 ?9 ^o-5|<kF)<ㇺ8vvؠMM$:Ep:m\)dZq4gs1)OI6^-@svQ?QŠIOAe}$m]ZZ\S 7&pӇ(qqqP<p:L 퍝( ?9\8n>ڷ'<_0TlT/**k=ʯxamԥ[#(rFiKSgƭg/7>C-+VӖu3;fș^c2p?S̝≇5 ;c\ɪľwčBeH)\=*1bcJuhM$l2/gbm׳[2^8FA=xs -y臑: ȅ,~ٹ{^5|s<%\eeX& ]ם6V0m.^_Mo#M;i T<!n*/+{xp'}4&,+#޸_Tsr׃pܰ[w|~HjGK+mf[w4)X/]*fR[V"qf-š)~Oy׈xKTIII/ ]o=i"~$xYckp>5֘ӧN3hITjf-mwט(mXDm]cz"mQQLoD rԢFڪBPIZ*${>$.E+$yAkǻV3{gcP'~51z¸j|׳sy}^$;}F h%;.9"Cu efZEma7!aBN!Ǖl%G:yCT>f5B NxRumN0WhW~t!R/?w1I0I'SV٭. moN6DO(c[{kELOZU7H,7Oʗ:/js߶Yܳq~:n؆Plڸrk7rذXNϝ;fu*4cƬ1+xK\018F!y≯_˖`ZЦѺ~Ζh\oB}}<B}̙3}.Lx<:3CQ.OI~k<|~@[ZuheD{S:O|K8UPKqРjØ= p)A3R"4M+Ai:cU$B?ZVm5H'R![vEL}Do] ~r5qrh_yP}aYr>םelt7Gۭϝȩdۍc@=0q pHL\H8Ci]S3NzxJn\pb}7(##mٲ>|x2^t5F@ Dϧ[+Mҩ]')K?J~+x?RK6xrc Ǒ"|s Fpb2x| $_EGGG-7ҦZ[ty=7Lj&u%1<8FO% ovB́=n`2x$TTT xգCC5:P"ѩuw._}&kTF 5o!Ӆ 1 =SJ.'pe_0#*<n9yq얝bHRKC*+ԯwAcp-1'|'-m-Vn9K?% ?*k)ϵKUSۉJ= *9g1+\GO $7\u]4<טQ_lq_ڸ~Bе }|D{(_?/+C ٫˓ސ B }К.=x3>\"7"xGeng;nZMo3dp'-1+H[]HuSmZq8mŝ|'{y&@V<Rhp~f3 ֌&M؃qqqp$#QJA}ɺAmz{K>ȞCSP=XI#G:r F1= +#GU6gd' #>\\)XO1[T=](L> y?Mrƒij6KXWkB.W.<NKrøn"DM2sc2Khϭy̍V8x;hJ|GЮq9dTIs8y)M90^DJ墅 OF ۚprDcXv%_4o݄ϧBӳWWV/ens^wGK_ԏ?~|`RSF(1z[n8F~ Sg1u(*ū_6[9cYk#Xp ;Ni)e9@5CCu5r$s P f.B˖N9зJcq63?+zԸɦH'?wVW(Djh}q~%ǰc:u^oUeG= ,o\F%t\?A?s B_FvkXz#a \L_h -Tr mǘ;EW~#~Gk <^ ^JSF!=u=+w=aшQZϦYىٌ7B CCyχn*E^'xE[|)5>>ذaZ/Ȃq' c?+QQQ o޼yl(;k+ϔ_:KBoja]gS $<< =<K<u3 㦗:A^nKNN"1;q jB肚p)>SdA;ՁhP^Ͷ~t>z{P"<`W +]Cy5>OI|)"UaA'/cl՟J>aO7]!;jD,k ~A48޹hڳql%SrSwdOHDCr'^ ٚ8Ƣu4ZY:y卩ē~[EȼUӦcnJxߩcb<eA>ˉOɺK8Xٻgp^0|}aе+%;xe|w/=Ybا4 wC!]G(^'GB1Vۺ ǐH^њ%6?5|f%9% ~xb9sd}hqqrIS& F:_~8Ά| `Xo-Nn1W-n9ѣ^NϏ9u/PHej#j`}[Cކj|6pGI]c0M\'Vڙ[,z IMu8.h-1V}{V΂VVYO/kQy)CVSjUH,n!\hAr[|)3[ w|HN_C@F9"g}y ~,:~'ս봻z,v/?k?J>C~# lӭDL 9E MEHX7K I~5-mz{ ۈ8.LnsNіoqgTKS_-[~Y{OsȽzFxޟ] G;I޾g;9aa a̺~-1ٽ}޷iCOٓ!` r"$` {[9p?Wק8(ܟycذ3k=BQ(X |C7z1Q]<p x*y [ֱd('~rOs˗Bn$G2Iޱ*I0hfѼv0?͋ ǖELlgΫ:+;<UߒQ!~IC}8ƽF9F 9FtbփAU)==rzf>o> JJJD۾օ^)*RlBIgЀ<튿&"|_.-16QO_\!ozxzڡ'O~ ?\!_:w^7޺l5'Y.qMo.V<w1B(eDu.4/7>rT?$-V;S+ y1(gls}Dd/8rV}c*+*<p͛WU5k\CxZYOWyoEװҥsW hoqZc|<GL?q㒍B-OOOdVVrҁN5 _45)rCI9!?7O;sq{2J$^UT[R<ilN_ȓGmG.n<G@^"'SD8AGЙĖ+N7p3`/?Sj_ ~*/pIlEp<9AL9'װ#TpbsJ[x $y^ȕ_7:Щ$FV~ͥWtHG]{ݽ0V1>ϖ3_ z^S- pq # 5Zc$R`#DU=<izߧu};?J\u&3C^pxE!w'-JN+NpySN'{Â?^xYFQ99`% dNE_JX<qğq | Z.zAHZ|erfNkq\P %.(cU{u&Q>88x-:vϨA~oW</w \ykO8N]ʹl W\D&BMɠkS<n,?uMZQpyp|aS&zt1C1"8R1 <h6Yi3ys q=D$7WgSaaEz+dW.k ]qKkJj$p|f~ m8 [GNi juxo IGu"CDːtkd ~co>\ʈ Q2N1iw'@79?_ ydJ<z21,U/*gk%z'6[Ӎch]ʘyOgEyqk,czM5-Hۼ:X4c3`tրqL@=|`>ʧi3Lh:&pȐ'\ukTIɕD/sKg2srfNHIx(=Ue>Lj߱?A QٓN9DEۿSn"ۮ~u8cL,sq8 VEƜ1~rq>%Lf.P݅ez+׎b/!Iogn*?&vl|q*Wn~Bm ~b6LU!E7s|G טr{hyʈ*uu( cla( yПA'hˬ10d4H_0>!UG ON</Ye<[Qx)AK⋏@U'Ac4'n-Zhm<q лͯpq'?jݻs|/1[(jW r%_<EFFNq_8FУm;iSU#QWˇBbΎ-1jj_y+ԩ2&M4g7CW<;|@!?~"H$hoo7'sAPh" IACp ,rB~`9.9)^(=EG+⪕S:uU-14w8%2ҧ9|l,oU"o2ʕ+bA~`EA_H@x-T)a4Uf3_@|_"!ͪ 6mai<~\߯)t!WkI'yyqu˰F2x]#23xG`ܫy~a ]+ b܆c'v-1.U.~s~~9 R42?3H]TT!cfQQsv8􂂾~=yj`zjժ\*.{] W]bzo5Kcv8Ƥ?- 5LYF_|]@#"bU>ڈQBj#Ǝ?rJ8r`-܃u$f_`̤5>rq'֭#w8[0sFo"WW?e|fY kJOO%XKL}`5a4.Xojaunf &gjq/QkG /w*<S!M,{ݸ;:q"qwb"Mfſ _C\8k{$S b":3ϓ_~MCs ? ^^P"b=n}T">ȟ|<c~Gd!]n9/M 7kzF\w1+/x]-;_=mL-L>4:xp_Xji?6ju|qj|.= =ߕ1||m\A\ ]}V"g#qYq [ jW?Fw_SuOU=ݝ_ǀ8>~Vyyynf W1c 8Nx\~oK!<驳RlCn7 犑3? k N$Hr-B|<25ܗ.D>pʵrqm1eVKb:X)C5a?}4aЉ}Vn|1<[cLmPWri938~-7'N3,ԇtBАSI]u%II 'W EMeǙeV۶iM*e\5>1u$b-B\de\]lX#fKMi6~Y||SOg2bE7H+Bkǽ1fpr`Z=ojW;n޼Z9Sd{g2sjJ/sDSLx|ЌypHaypӊ i9Csc~1iRo4?s׶f`Wc 'E.4 }CĶPֽ ޸aPp֯IbCcaՒ?A\yGM>. ܹ?o6+W5rDg b#G-HH/d}\c/' #ER6%c۟y\5#g"TTdU_%N\Q_'2:gڛOgl ~EI!pY5yF"?TqRϢ;B_au:RbDQԹ}9cNC<ZvS=g3:>|0Dp7cfd۸91 _{ȞHU?uWi}gQNv,p f)8FL5Ml/ U!_w+So7﫵}V>d]}Vg^b^p?nPʪcTtřaǨUg #~~111(C3g{333׵ӿ=N~ /7onPrWF}4"|~_OP!_d$^y/A,-3j_@[Ucox9߿>?L'^?yJ5#FHݫ}.P8yrY1H1s1R@5hnHD{ӷ PV C-Q.!7aº#9iK=_oXSZ,_euhr7I Ãi9Xd:Ip:k3&{r&,π.| +UL24.^!0ep<l̙3rVΝ;;FM7?.X12[=(2y 99<ן'λ{1 رc/ 'C3xFg(g<Ϧ,E;\bOz( 3 8t~ [%Wh久k1@ {!v?ESXEQ>KKyaՒ ?eFQaФ1@A93u!u%KL4H=:<xp}Rb2Ug~qt_,'|+wHS#??/Z1cׯ׽I|)X6-˜H^>vp- oAS{3BbΑ7U迥,2g +.~̱Pr@QM~_5ɚ*uįꈏ( kPî1Gn>^*4#eS.9KQz߉Cѹ£>5ĎٌO&%g!=b_nT{>єBgјfm='HT`ܶiދ 9 H~+ZoE;wC޽{ݹErr'܇HMM}#4ҥKoA!;Zϰj>(U Ii$$|f7/mTu}L>38-BD9ׇzn+.^ܷ S 4HPx8з[@y[zFW^VHP]cXtTT?Z}4;#}K<a]cl5K'C^K{XGLٷ*ʍc<\3G~cw%cD]{xÞ˕42fd8~ z"!xA}8Fh򂭳ghdYK:\WYV6|< Ln|1ܸ,Z}iuuVu yyl|~=zGgk;N劭hc4Cim#dIFYne# aX 3Ǩ}5 TVVvcG7d@JJ\jj~Xp^~BB^O\ 1beDԩSi$E\@Ǐ  G6t\c[gIJ4SCg*ES'X 1Yf1C򐡱c_Q' Sд:u9:,bAtw.`$?Cf#+*gc㶯n0۩G F%%<רpGi'5Ŋ4-cvHoauq oSq_.B8NșWu-ϙ+|3_'72\<EgGWTBlV}: k WJ!x ? y ^!CE,gԭN@<{!40>!}ZY}<[9l EU_%Lj[3mߡ6Vo#}XeΟ;dAfW29ཷf澳LīX f yU!!WN`x* [ozTݖoЦC9ju4P5 [9/2 GINN&q~-X>|$._<i-WWW?gG!.^hHHJvjC0PoIu0 '!6ҹq ݺ.*0 m+}گ}[^ Tu}-UٷTMW]^O#2:ЃY4oY;q I>p5k<( ΥvU}ol;臰}yB;NMH>j3xK\]Hj!!le-ܣb̙魾J Բ O0tj9<,K2$0tj{0we / 7y c-,鸴L$>(Y.c28Fvv_%~=c|OmNXn(hg$1|P *++kH;pٲלt'ۦ#E$,pu5)~:;O35B>_cq3_QgEwz}B?;p=:m$XJX}?)qh&-1 Axg}|_I_ѯM"1"ԣJ ߼ySqBQ8?S_p8F1Vۉ8hx]f6c| ?|rɲGY?LeQRQ'=6+a+/~(485Bȧ,?E*.9F?W#tWa;Op\?Rj_wSh l"$#pr ISbׂ!tXԯ>c橨%KUk?~=ۦS }Ϙ6Q?n-?t1>۴MVD5~')W"QHPIACW vh1aIؘqC%ޢ_nU<oزeK'}8E3+#[NnsuMhѯn4P2GOTfrPVI^w/|p'߈#Ãdb HҐcu)+,놕^q=bKݮ1FȬRЪ) Zi$XeS^z}WcUs 26~4rVGA?X <Į[H n.\xjE= Wd/&h'ʢ".ħ.D2"Ɵy(ӕaHh2-ߢh[؝ܢ8 .]$~^WWTT!|lEqhsjԠ&p 5r9R?h! $XHNU~kpp6A8s/?'Azq]vP1*Hcex$Xk<~ݻ^qqɓA7'V_?1sŎӟ^XE'kTC ~B_U¥_=,Hאyט E5&T2jG^MIsU#//sr2+x#̑e]b'|e~̘6Q^J8qG22c+8!Xj{ȝclp^3.SV GO;kGښZ+#~fؿI&_ 9agemP'rpb2ξ*⹆+Z0DPݭ')Xjpĵ-Ch_gS)覐? >)3}WdKG o2Oy+2tQBc3уš: `֫ӌxcO@0̽p_Æ cx]x-/㏦ Aq ߫}}]jxM^Uu˵~0?O3hģhd7:I͎I0Yj9i""[uzo_B=jqzQc zS=fwnр_xM&y\RRGh (KKߣH yPTx<>}BXWE|@_j9Ft}W[v0YX\av8g;գe8Z5륧w8?EU?_9C1~f̒32NAMq^C?OxVOQ(%%eSSM), jA#9i/w'IK /v<!-:6-KWlG.^zTTT<+FY͛kmŘ7ܢ&ijxmj999{3SS$rSlm{1>QqPG" J ]v%clyzskq6+ @g𐢒۸qT.UYj{v3._ W;?5TARz@ ip ?ڵq'<\TwԦ0vđ04z!6"c;:Ǵ4 #)W >i82^g1,@>D>hH|6f;9Ĩk,;3w8ƥ~e)@?à޷?|K81< >L>+ԅK'Mj .=YY$}Z??`:ݡ[W#a.t"S.Ovz'!o$'O%~%dܷqoO_*aN)}T5MNN/L}u|ىђI*auь5\= G~w&DFn?]|D6Sܯ|+(>+:8q{MV$ql;y~F'Sb#|ט*[ȁ J N4p bQ|t0%VH-n֙3gy+U6u+`8O9}㙐i"^$HLZ'_Uj  SI-['\tz߿ևo N9uon]9H}{Ksaz ^'Jl -1vb/7<҆u%cu%8Mq#F<\^ʊ<!Qx 6sTm`QntD@}=dĉbPgRx8^mG)޻@\5>ʌnxSzu{urv޴X EEERIF-<a~sE8y}E/^?=?֭[B\8r n/r@r&b";PƓU35'Dk%z]Ud/"*mej;[Q㲖cܛ?F*FA=:yv~xtʇY ~;)vwQlΫ~^ "vB^kɤ+9NP71?TwӼBWV*pNI۩:uR?eqkQ+y\;Zׯ|;àի^ Uk91ޖc4_4eem_}.ݿ5yKr!/?UR 5&u>}iCVq`&Лc|f+:DӦq}}-yT]CN:ܻǍ/i(ɀ?,Ѹ/j6B)݋323ΙE#7:|\}&_Κ>$u8k=~Ⲃf blwTsXudmP#p1u?b4VDԪH pN[gwyz=unkVY+?p=)y<i$u4ԭ,[6w xA6|exQMA/ܷ*Ez]NyQ*Ahi ?k֬Za.\8OhB֭ _$_-999> o Bʢ洴1<pYxcu؈?52g5|⪈;qNy~ːUgw"_{}gHHrڶ 5Wc4;^/?j*uzZ-19MjUm.H [#HHq/xJk7ZH*^#/oUބ[7-O??/  7}'_QcH/_0 {AԩX{zJb׽#q`!^}V҈E|t-gHgtP/Tp=|I ?_\ n?5Fm5P̎H>+p\&k4ow?EKs y_ܔZ YcA%hPO1ɤPAA4Z$/_"}K,6J5Bܸ'MQ!{){׸~?U؀cy{H/oq}49"&j $V0dGFNh ȉ_VJ-kz[Ftcqݣxc~*9myZ?/=u=ϘTnے0Wn;9ٳo\ߺv~2|3r<#9 ]9!X7 /0P[<{V^p$9>DY ҨoW?v;HH Hu[Ƹ]5i*$&jhpdi]!cq]Ɔ*K$irpk6'y+nͦ;_< |N66SMɃ_6>4aFt9"u:<Oh)WTgz\iS$v=ȡS'A}J}_?R\ 8>z܊/-41[=(X.I 8yMMMq|ϟF{ Lye Igg}V[/z۷O52ŋB^s-W<~gOk*7}0//~:.dzdذa^={X$YV" :s<3߮Ӫz\+qIξ]wň =Uj[x IQķޝg?DGH%hrp|Y^^SgKcx8fFL7PC<;[?~J?ӽ|+>wr]|3 yxu)YPwwmsf-f?R?y?ysd o%Xn#233X8F)B& S^M+rʔe*%׬m6|>?%))5)K"mEE':y_gZXZyp}xrX^>س}S0^]NVNJb~a^_ W!h\&i4=zN_ M!}WĔ+U?~]ҩӮ:Z!LCz<6'\XQ$*=iTl6[/ȏ2JXYY!Rk@p;k8Ʀ5K;ME~(2rG?2J\@ą@ȗ"ݐKԮk$Vu:B~ԝ |PI (*nn8Kcsտ1њ9+q]p-1Hyz2]i Wp|zlI+V[1dk1y^ȫq ,?Vw<:b_Zn-~P`7Pom/PSѴܿ"7R>%K##Fz8Ƿp4P8K3*~ph<##C5nMlPԢE>T&.N.!Iܲe v&^/hgD-YI8֗Up~zZtPPM|~t]?ߊyOkzCލj[h:"Pk?%;o,b'n8T+WmڸBmƛ."JT=)‘W+bb=ϳ[nyK\!JpYwO)-(?Ku@~o/lo _Ç此.^|oܢ^j PtwƗ.8#-zO<,F.ʄ*} `F Swf?@lϐctn3YQ'"r613A|3?Mhň u񣈏f:B;^[}!јXHG?W]L3JB.t!9@noq)O<,GjO:+Ӂ orLʏ K_l6FSɓD2S@픴?_GRH;bɼZ$JW->d BD(|v0=ǹ_W.^j1& jU^CHB_aϧ'j⸑;C3GF)NR'gitcuF J_c_0\~R uSgvq c.߱7{3?i ѭ,Sj~9ƻ*^Mi#Q{4'ng 6.6ҏ uV\tI y;[| װ۫'Y%\>I <m;?u8?=hoU:58Ǚ3g*&3\f?~|)|8y/H/3"'>Qo&1c~>/cDCr2t]׏Uh}\O/cGNơ} U}47Ɏ-9>4Oz>~ӺuŇ-́ʿ?01=C}ɳ 9_$鳰﫤gڍPqq>.+肯?ʫߊ/)6ǘ/HIl}}|B,X:!1.nHVĭ(Ī댤n3,|ғ#nFŠ_q=^ q-hn]r7 (v*ro7hA6,E.S'uy߯b#x/̯S_9qRq]ju'G<|0zl.NQ?ߢ֧D֯: M222AVZz-wA/uU26M.=џitо{a]>a>ߵIO=wxj{rrYG ǰǘpZ#^S~mcׅWs `3[/qf*N:.| CỴ8XaXsB -nf;ƕ'\ܢ Ti/t7s8Zi=lߤ)f:qx?\E.:p-B:;tqxvw˟ Nˡ/!h1|Y}>*Q'NS L{u8ƍ6 t@zz>֠#F=qiBi99ci$,-#v 9ز_ ßh7"|QTQ\.Oܼl'm^K_:S~{38ٮQ$~=l719_xэ:wź{ 73nQͶnUW%| }"bG|ktlk5KJ<0>5 8pJ-}l"5^']^aY)rEA->ygNuI0[PJʪ 1c#q9j^z-|?d:qÁzOƽ_ !E̵}SVThfơp'dz$LEÂ~QOg(/\E.#Ծ9Q#Iee|+fv0 g/&{Wrv1b oF"ԙ+=>,gBH^y8[-OMkjg!ŁZ_%m7- KX&.N% ׀:lfyy{I!\Z׭r_ ]?0cT0tߋ\ ߓc4u?UyM9o}![8º>?B4ksύJ | 6އoA étܳX.LA ~Y<Hr__G[9_l"}ӌz}D"q:#8 IG{A[@lYVmYE2WNRS^V7bz.CcU)O(_)U3azC3?+m}cRA!T321n9F#WQT|/ECX~p)_y⏢<c>\W}KYGiiPcy|_]T2UM D~+MN8JWVŬܢ2cn1PC뭛Q* M>sk=axBS))+ /_>,t.qy8LFV/j޼|Y{6-[΀ŬC ݧ#;;`Ы] MJzpa޽l e{~+od#I_@2.ǀ~Ko@_RT7 4U{?j$WQm _1|yI,Wkx paThSkרv@\I`}]rif3M_.W(y(W?NW~~7*t!Uj X?ޜ#Uf57\j$i.8t(e.#̙j!ࡈt=p;ip1//t$;=ٴq+zĈA==l݂CcYD_kua&Q1$롮zE8 p"Y.xAf~ٽqUkg Yw"__O GAʧM'41|(aޕ\uGw)E0u(W#\TDJMZ!u}6(xbٳG|̚OTliAr~ٱ|gP`&k!C_EkouϨ5߃ch{ n~~^u[8C 5oPw2`lp=~:𕗅̵$]uyxz!tP'v ,861⌌/rar:jU߀/?ݥg%Tj nAܢGPEw%Zj'"_41r2V%N1u8J4ǘ\K yKUDje:b\fOaNyxјA*=u-,#/'-㍗[]G'WVAYZzqL.P1٧+Wbqy(;{Cv\a9V(@E2DxY uZ,$Ϥ}"8hWwه8x>]9d4/:PF8H(OZC1c_}>Ǐ h$5\{?vc^ۆ,tn>/ḧ́ ^2j$P#Q}n]qhNNNq>.?0AY*~}+\PdchU(ǨeVZ]eؿ?9d^j[5eAI%\CW05KFU->5"e]ڹeJ]ԛ32B(ëk!\pij5/xqV% Xycui|hasHEM#bWSCI].&u$k Y@h䈐pbڤ11pbQyv$-zC~$cKq8ߧP/]šW NU8gQ"a$-zX<,U!'Qcg-VG,Y&.aHuB.hRX~Df2M ߫P^i-ՄKtvg4=uJX5t oyATIZdx-yFԟaq+z懚~ Iքf<S1`4<8x g<yzۮ!4N'!B̳HlOШy釯G$3"A6yyvˇ}!oq:a~=ܳ6&|@[y_B AסbZi{f;\}D9E]ӭ) O9| 7?]7 *G^j%u8Ӂ3[w}w1br\s g>B|q5oGw-ǘDtp!tt!Gw&r#2Sq) Z;uhw.tlЖezBix~oAE\?JEg,μ_x}5{kYQqۻ!^,'d>{?<8)OܯY?]C|d֭XD|S "K:dff:Y/1V H>_L:,E/_:\-R(y_ {#>Mki4ה)#A8ҹQAsFkP`F!b1|.j0aRYh8q7]h251>kxvOp3A/pkSx5ZYx3n1H>IQ_Wn\XT5P]P ~7XJp%&Z4E^ML4VP`BHOj6 fݯS,055j׸CfṆ,װ| W]1#<hs Ot˥i Jyh'H<F|G瓣Zc,?G7JgV:kg/*ٚ0OK.)EM'RqE <HASJ?>y@I<sO$ H[jッ!QUBh-"nܪ]Dk{U*6ƈ#"nU Up(BЋlm`{ՠVhY}3 M\^0Lys>sW]Gh`{awL) [SA& ?_F~EQ~ ~{S&eڑ8c)fѬ+\}9.)ANvO ۞:`۫ϳ{chyka?Ku<8H!naoapޏjroiGG䙴RU5Ö#$?ՎM s]}ps<Õrrg9(?SZg!t=OtIN>z$R'%Mdo&-bYz)~)znA| [{W} /Q)rLq +Pa`-l!^xqhQ69cZ8{9_7cp7>i"ٳ͗^C27+GR)];.]5%a|?N!0Y&ƁCT§$vT/)Ý<Fg_?-ChQy3/.x{&ovdu#!SX2p Aym{B<s 8aU[Ǒ<{TP[sbOJYDu",kGv6IL[gZJoeB/65sZ!2C1/+x2p&$JٚE|gHUz5p 42O cLDԆ:K Wk vnMw3Hi9|}I<_FCR4^/@8IC+&vym(*Z u%lw$-T[^Fޭic<!QU%mx@&g=2ykX"ѫ0X[7k0E/Qr%ɁQ5(Zq O}>>Yo٘{ XcY/O^ xmkf ~ DAӊcx h)sL1 x8F^kn&Zlyd{=O"MMn,u<5QJ~Z1Hu[YMÚLu^Ij 3 ɸQ R>t@m[oHBk$OX}Q~D!koys~|eq O$bKϴ{5ڂF.]dgWѧ#~w/FoVc?$![_xKԳ{cL6Y7a$}rZS]%=bt9g^>f+S:N̼a2gEC$,(?6TU^ 05V}@w(Jm)? s_Z~?<K<<CHj/81n<ILLFi6׮#17nQ>l@Qˋ8[Gyŷnu2"YN7]gY%%%h#bsM +Ie6fkN=!n%zKyGwƭ]ڡ5N/(}1_ȸAcz}8@@#k[m|3DӜߟ9}Aq`g͜g ۪vьzrNnOW438E-I#~xҏk910¨n ~Qz~[0N]j0ˊߣ5}+42r$cPp \=A 5HVeGԁea*(?{?{z"PeCrIȹsR>H,b}! scq~$(.-Gaߕ@OtAu[x|앛F1'qV tjƍ<ݚ5vle֨h u^%e/zvlhςh8w+`@ S}|:GhO\%UC $w9q쐹s5W.g^d"Άc}\[d8vBe>ƣgc:'1 CctA&$Ht4s9|FM8I* GxyE]U<įȝ#{u3RWC:Ta8ǝ>KOFס^}9Nʐ~e7oY>ecjS+YرC>բ8Oџ[o qش--<ݴBe=,P uw~/=O5К9[<N:?sѧ|tO\$~Ee2{oAuF\NIp埀̋66^0qK_yS>^dEJNO ~* ]O':gd?Mԙyt@m< ]Yl*ϰ(Iyv#z,,v㶝gB/A!p!'V<DP& h&&u70/4-@(5:- +=%wx@㹋}%Bݷs&CD+< ǘB"Gjmn"ulies;dLKc5~(He",71U}3xҗů~5Z[JJ8nA|c:rpyEaE.HՄw#js7:?2'%Hռܣ](rהEf2tфΰ%!u};2FLq -ڔQ–&,T۫tr㈴9]| .Bkq`c9`"{M/:_̜</7'ǓaD̍7lY\l0LUvH>g4H#r¥)1ƑVXe/7H|[O9k!ӘЗ8Nckăp VcJ˺|Йo~6#sG_&ۘw[+yc4|{'z$S] O9LwR|6b?ZO_-xi\AGĠVypVЕ-rkӚ>ޛ7oޅ/\Rڈ] ~H]&tfŐǘ-$#\Wb%+B vsD Y@Vu%2|(Hª8ᘏAkdROBK/^ԕn%9s7<4U%0\\)5xSC`77I~&lrQ~6V^LvM<@lу }#ֺ6t+ "s奛h>EU7Wʺ=Mc1_r\F~}]!g{j"9NαK?@R~#[ 8B_0|>CZ^z>GI?Ȱpgxnc[B3xȐ6!ܲΥ&S녤> ӱo+]͛YPt'њ˰ JTJG3̍9=OyB>[pLpK=;RROkE޵[XiAOo/q&:ڜ`JST'$﯁:䴴%E?/QJt-l:&.))pʩLP'}POFtNC,>~=.ڵ=pAˢGu^y'&uΌn *n*t?rjAo;QKcPTaS e x!Z׏M1ㇻʐF 5xu;{ugz[QӐِ 9ϒ*B<H1rJQE]Tk{ xpI|fy;ex^ݜ_m㚎 E:~Z]C=[EMMGxN۪QVNJ!3k(~ Y 3`AsxYzȿ!oݺ% .5\cI/(I!?ZoD4]/tDhܸp}%1+In%jDH2?hFb߯עǨ/c9Ǹ?&g[`&SY 9/0 /UE?AF.hex}uQZq \ 5+]Jn$x@r1;24M_3=*^wu;-~+Z9Ϫβr|<˂%0 p):A3&(9Q{+o7n))IP4],qz _T 5NU+ "< fE5|Gl¶i\WO~5:U30=d:@A</|tH=O[.#ڹu<͞ރnӄ[8~oB)YA}9)|ir xC)܋o9V?=9N{Io,~K)Z:plH oIzjξ6EWxsےuMy t붅.+; c /`}i(]ݼy)Vו&^N7tCjktwt|\~(n}^e#M;wgi\yxzzTy5G 'qN8&. S}@a{/uQllWb< .jsAOJPu(IIIERBםH(2O fՔ^1:8Fy/V8h:qO4kQtQ|Rnf`htd%}3ߩrs*qd'2B&J5ǐ%1ڱmu#Ml)lGQ?l;c;dz܂aE>C䔫 t4 O0 fnQkCF؂_']qx-`h]y{=z<ugDǰ 7٨^9@TWTۗUH;)TI홻""u{ޢVy^Pc<sc(E{(3e84ѵkڂ {1#WHk~$5ⱟqmgqfJqT]]* Ğ=r<'9a2aH }.%OYA>9~7Q q󢈳*eZ-N]rvg?tQ &u(T7j2\h$qky=.d\o%DMH>N1l߿^&1Zc%qO8{쫢鴴<'j<&*$ ,thxYP* VTK }[l]S<@y4A<r[c$mN_>$zI1$DWax7<Ns\jݪ gnL8HGcT>ǘt0 &/'M^NzO~j'6)5,1Z黺Y%1-U.&J,?߿6Ҕ^{]D8aDt<>32$z43p^ Kg|}Q ͙+db,W WWsV_U0޷X>}2Uڕ{ (1l<k=Z[glx /YW7WA(;cӏ;b3`:g[TӁ:8TNc -XoMlvŋR}է:o}?(CnraA%㸉e>q v'G&o^ƗQKNuΑSˑH$B4|P_1sӿ?ۦ>uzg%2</ukQ'IHH sY 1ykAF ng4Auw#VյD|lo|No CF=ϿC N {`('}L}p_+=MR_~%QOWұIIR181.n|& Qcп+|a6m>]x b9qY]3n>+ZI}p"* ȼVs[hF}AǤۨÛg Kiإ<I_6U0+a-BxN:J%XMAt@T3!c ُ2"Y>=Np _bp'^gyFi7| e?OD J /{V)x#w"#Hb#w_:8P^Ґcl7* t\6?++;PW¬07yk }+|1OZ~S#DJKƖ9ӳoJc#g^{T ۋlEkbxYs T:_ksFx|-haٗ;K"\I|;?44̇~/@e |+ V1C){^̓JQQx=~$Z-H1G{v,Yכ9oL1/|-~5$kdVǧviti50$r.L!wI=~b6a0>I贴 =wf8YpOqn>s^$_#6%:&Bb>%nuC-f p}Wyޞo¼<|>7~į A;"el ^/y$[_mCކ4jnj,mx Jzr`c_w=r3fg,'w;\9z^?ڂbs;Hd~¬t>9Q9F)r#Gp<<@/jۮS'|۔Ȕg"Yǽj9n9eH$X wr$( ̼}L|lE(t=r d.Sth{{m8/D*A}vՃht<mK;xסּYasCFafNDH@p/sp{Ӗu+w%\_V؟K48ƃWXې CsÆyo>M˧)xVq 0[4maΚ58[{_vurP"~_X8% ǰS>$mb t3ZunBt+7T427zOC=i~ ϕG(ntǬR_O9*i%_~_E6Ya,ˀG,V~:y) 2.Qfvì>܀mݠdGpzn0 !HT>:rB8J^s#éڔbl)]W7lرm4ux,9qP}n_1DEj<prȚchFyރ+Yǻ ! 禠QmZq0|\B$ϝ2_XyQZ1 LNǓ<8|^P3*>DM# Rp QǸ}5ÂK焿牊2˧%Rqud޿y)~am7|V#.p23ۂ?ZSSGXٳggJ 8FRRXǰиbbbӞ /d)jz{sF-h"_kK %z2J“㐃>n]A,3.={6oznٌ-RC> T*R(%uάI |YW722@+@1S.SvyH:Iܼ{BnUt{(%~菾VW+z ]o쇮ĕ?7M"zsscuvȟ8671~ѽt>p Ir Fi_u7a$;Z(= ;Fxx2,lv`MsKBsL9jǥE3/|f`; tj۶ 3Z3W)(|wKEL'e}h͜@zG]_dk4tj|_ b!kw^a2DyA\9sj?leJ:@%8W(:[9Ɋclkpǻp~\W2pcp~Hqq(]Yj\V;ׯfrJVq !2I^+nn>{ jϦ(ts6BwsKx^BR`7GQ}6ԄWԍzj tnUs\6 n'Hq?3:~/~1:W ۛ<ih-ԩSx\M&*BڭxO'?p M+r |M:gb\<ԗ0l1GUg^Jz1g̜C%rIS YE˷!Ax\A@:o6@}ݜ><;y>GJNlj\{9yD*Ÿhp8 KQ3<} +=O9;}lR> oaW7RyՖܹӇ+ mf3=MζNe* V\C5Bl|8msЈcdfC1m>>] ӭ %#*c_?+2%mA\}4'TnO*$śIȻ X%mXξB)HxFDr²2d<Q[WLj tSv.t-dߘd _O/40%q<`o z6OٻPwm:ܞYE/2hY"I#?}sem3oyMCS0mVq@ V,8܀_hyߠoiU_PO18HoIJnEGf\0:ݙo)UUU/9 )޾0(BTِS\V$3 :]f5)ɹfq$(E(970pvn/=vҨ噠Wzp+ꪎpO[ʐ(oƜOp*iˏLmc||Ã^8VOܼ\OU[!%uE]n<Eqqxv@HJBIV,>Sd}nr*AU~՟clٲbNQ}A#NaRNXQQٚ&sq?d]kzyz>zOSX8:hR8[ EU=WƪnPOJQjQHF~,چ)J-Y0H %ض럂8ƙ×Nw['[vC2-Ց!̏eaW(׈D17q $|qa^ylwzIUwNk>ٯ8>p+ot ̃*"<(Q&Ioeb+SPU*2Ł~aMAxWdd#Ct:^1s gp͎k\/ QdQ+OǢI .]wϐW|ti}=_-:࿨c}'1޼~D/1]alH9NѴX8q银%V}VV@}˧;UtQzoPhm3pm< Gm:^[sp k0yu&ko}u(#2ㅊN]R@54\9OlE ۧKy&Ĥ8AH[L-,}@[LKKuxΝY!ڶm[[q:<jqX: F@c܇c<F>c~AkpO)|K&4[G%3)w@%Jݤ+P n:?MrQ=A7-Br Ohj9[v-i,-dDŽ2xe:ї T}XoW8aNo\}z9O [2 HMkvDyK /y CHE8;s'竴FɳM%lo}U! ǰXe5ȎԹQ8u7K O8kqlR :sp\x<z^9=7yvfN!(:`ERy q R97z2E̍S# /_&}Tnu!/7wL*2\y8q =>IR1|mա#)g:F.)3}g/mזAO'=Gh:<})9g.%%Og-T ) KPe jf?h>.nݮ5 4u ̘!ZvTV+iU1aV56~ x^yMs. >tTxR*_~S<8z=6vFhcx;5, |d% =ekCexjޞo|OXO>sja;x)>ԟXCc;_:UKdr lk@= &\ _Ca[`0^6o`d6۝Wf#7Hi}FR1~\/O5zTfn=d*lcmQ|1|})%IC!#¨=5 _b,^W{'($ojÂlw1cutR:չV{3HvQS?OhhW x?v NGx#8/s\鏢zzzA~^1Jn?_CW[_=R72ilQ@so_ Uڴјcd41,6p= S(d('obO[\9!TݝHmNQ+U,9ںk HV.AM'1A]9ǰ>*{/e>m;R Z\];uQ7@Gߏg,m8[ZWH~Q_M dҿYs _ZS]*<=u/F5JYs#!a ;|8:uiA6ׯU)Hvd)K>ǐpa+\4ċm|E;ء£ql=LU2|%ÝC8Y0p'zǀ }e9nf;c@7enM)w7J+0pr&>~ $m$JCL6k[bG{qy0_֥yK~:qrpb U0 P6٢2$zBC"@"3jJ}i|T&'#'_xVa[)įw5u(_:Ј3=7s[8"uIDqqZ}>p;'ld ,y.ip~JJXi.Q a= %B7.Z0"%4yXaezcDZOsO~fmjAH5"xe MZ5?,Z_ ǟ/qH<W͙9J:K[_Oޞ(c̘!v&<47;﨣iC`K\ 捉Em,:ԏVg<!BzEX~|z>G ahRg}_fOOt>|l>FDb+ /;5[D<K~JVrnk;f5c%Wt]ϊr$$oc:>6HJ5;={,1rUl^aG|,>I^;bcQva+Ib,ĤX׊2[}bRxO1itv6"Yt? ,\wC \{~NT NRzA~x00s#=>+B*7g u|s_|?w_t߿pw-4Q< CF-Q~̉ ٭1"l]{ |gܢy B Σɫns|Y Fx1S}+m~~ak/y 3glӻw*dg7v2ϙ3cbbέ*m]{9$)cD"EGu_ёb%1C. >}:ht*gg:o]gy]WOʺu6&IeeU'E5{[~t8^9j蟹|ǯY8I _ڿMݻ~. |+=-TRh߾ka=K"c\=ʆ:VEp|q -$ w,gq2t I wk7x:`ގcuo03rF<6Dף-r Mm7=SIw)ATMBO^FGwWX@݆Y|gxq-Eja< ہc1| N/V!5?o84BGMQѐc\Vt٭1C2c,)Qzaz5+G(]D$hkqrqxщԿk׊5 e$92C8s6 6jdwg]8՛W="S؃a7t?5׏k%+$_sL]L^ #5Pd?#Bq <LQn򮑕͈҄l,mz1]wV c፜-=n YZq./6n CJ-yyWOzm;gm[MFoh \CMJ'1 V68mva)\Z_~[~q~l*Tk0ZJ@HE/[:eh?n/@U/t_ox=-7<_XMtIѰ*b)餷^LzǑ#+tW+qq3jc@V)9 %5sJ?9Eɕ*kda'=r%^'όq>,%\u5aݔb)y n#BeyeZ1 $Wǘi3IhXoLeѱ'ܹ999`w>h۷N#yF׎HH} p NtGfQ װ1s*͚CԵ[fWu!x 5ܐO'րx8t9S t}<<(xTa^.+l+r 'P{j2xoFWc]>Q+sܶ7^-[{/>8>*ǘy1'>G˗__޿RX<B @GBvݾ+\_Z @~ 9e rמ={_:KLc ha$!ѧBI[TWWe%zrK[F8Gveuh]=v蜘>G9ѹyy*|>]o7QSJǰfn^V.17 ?U>;œ~=]~zT~mm0*Ko'үrTyLQ!< }H[G~c6^^oQc ]|[l?aߓ+Qp[WxKG'~^$n|>&KΥoB7gU<m9sqN)!.bZ[csdc,ѱBg'/tpsHӑAO?}mܷߝAE|G ga{ĭ[2k8z~VPo^^^C(qxA9ԑܸ~!e#u%rd9@&}G"M@޴FHv0@wS6x=/;VshJ;{j׭߰+d;ocME24} j/Bscc|i |!(.Rӵ3Is 0?c2wZZt0HFE]FFF3Zg }[I֛pŤ)<88:/5~<f(+#`"ӧ{jbLˇ6u%5!{FtbAVk`Et&Ю_T|'0 ?h16R 2p>S_ؾ-ń/z Bqփ4:,#kxJ LſvS|:%R:Ǩ|&91n16~(1@~!T,FgVUwkW7Q#I?%䮨ʮpFt:\c)|_-s 8uЃnZ*†.uzW/Y"+āC[M_z 9Ʈ)S.BMI2G+8[dΨ?[ch9~ r~Hz:{rssO;.}nۇz9AewN/QвH|Iㆪ1tRs.9ULyW$$rЮ]5!4j?)g2<W>wju_~Q8wXx]$rww?Ɏ{e$"ܢϰ$b  磱yҥcC<d4q1:a,S^Tnqn^$[cKMHoma0bq81HC<,uqվSH]Cng [t{sTd_ :AC&:{3&q%u& G(V[d]N[@ŧ| ^m1^?bfQ]Dh,5 m ҸzVNjj1J׿F(soPٲ!خ7TaE>ޯD7!<u;GsZe'x1cG w['uKH\e3<`>[3[Ȝkp I`:C<^[Wd]C)&hy]NMf nq\#u%`ӑs$W0lt3V1AKOլuAPo~Vv'gsQ3[_7\z|kBgNG۵(AI| JۓrJΞXt E~шcX8ږ9FxLOdg?8 }R1 L~V+]cۻ['PE٢vhΥ~#MUucʔѯ Bxچmt][w2zp[[5psuqC#L %;}4"m~RTbQO[>"A6~$`d; '1l8ƖcixsP LcDWڪc4R _/XǠuJZc'9!n=/P|ň㈇%̚SLJVm} =.,ugKc%1fuOGZ kP6pbp}U<AԘc^x^K/ $hۻBdW8kBEVZEKEN2K/<z稷H~5\}![,.. y&I!!J㩳h:sPPtjFA lcїŦ*8aw8wK>.>שּׂCHO=>&&M\iǥmFPiZ|l w}v^m1 7o5& ҁ-ٸqD}A]y~:.9h<_02RÉ;&.@KG 9źC˼逦JC~bb{Ք3I\Yۋ1ڋWyya>mug2cdF/PՠϷ3(!tB{Wr_=؃x1) (a\nPМ .Z4RSRe1+|oBicx\oǾx%B "zD-bdvU3_YxYE*w(L\S;a3CeOؼζ ̓u~*9Z)TA\8z<~X+ʧgwu!7{Bd? 3f}®V21؟U(^16eQFk6 ^ 5Y+pQLw޽lպ5=ɫ|IGGFۖcLy699S):)isB#gy61j􋲵i\SiS>^+6!ã˥pQ<Z=7 .'6D?o'\N_>>#w a{<~:k2-y|,6nܸRR׋ߐF)|GY~1Ah2dWt4תUf jmQr\ʃ^$gj"ZJhE(u*|=8e[Sy_q9ر^|N?m=Qx:7p>ps} 0 .=؃x;XEhwIo-Kxh]|Qԏ@Dwyg )Gv;?#Ģc( )}ؼ'G:^=w^O'EN=}Q>M۽ǐT1#!U=ەdegC5Mq l{}cMٳ"|@yVDjbQf@!QeޒW%BA_p,p6I~yuJM%_͖9掓)N:Jdz`JzWi v( 2oWQhTRՒӧO'Btx#-.K ȳz\a{~SO=z8[ÑR\; jhק>--_rn|w??Қ<AGGХK~l,O, +ndC\/w"jÆ O.]+?zlꭄ#IӒgaUϟ y`h-@0)>⠖s{ ^$Ӧ]o߾/e@'eNJ(/bI}c'_nwW"d?(Ljֽ8Ɩ{VFyy9u\a9FBt~/:3wδ@urڔضh<&<⁸E^8^F}nȌ)wW7"Y#{ҋV| G:d <nc"tL٨6V夯"wbڵet s mԩꅕuWWA]I>lWx\o]Y̳[qX'a[I]ʶ3:,¢XM>X۳+1|I9^֏9^; ]d2c)Vm@=U[8V U3(Pm < .olK8g bWi|Ua=MDyF:]gc̖l Fy> Zms[K`9;;-J/;+;j>;/ѿ8&Wsf>oBr6T%wFm999T5(ŢqAg$dn'w y&QK 0f a ++x@Ku%%g_"^wͭ9F3G|6HU t,~L-2e81Hپv_kOϸJ†K]E1~FNlJotw_tϾW?'Nڶ_,2w"5w2Ч3[ .y*<hXo퍊A= WW"D- Cl14bra O@,b / rxH2AΤo>Xs]TrD02`K,EI8Mo5s^ϓ*H,/ٿ{_DCp*gU 8Ck| U2|;p%\c R3άOkwwQ!vH˃gES87Z6ϫFʌE~W\f mR*\)z HOկ{Rx1yky]<3)2*<?gP!p}ڒx}|w=<H,A~<v\2Uʞy>Ͷ6nB<K<1yY+1=v yy,z|? 3zJ߈x .lzĿw $OOڼdG{::曅2Ayj5vD{nqCnno8n}T/S8{)7oxn(Hm_^="dc@4ˬZ٘cjѬ⚤99ĨsB>p #9a{":9a=49+GG>ow8x"9Krž>)H 'VOXgGW!Уհ4y>6\jSa8!):GA##=!_a-P#QG-|?ѷa-v->&?z<K?:^?6ǘ2}h }WKeEE 9ʾCl҈[r ğY,F`YJѨ˰^X=pr5`dįm1𼥮2͠;骩};3 7Ļ!͛`~Lx#ϟ'oԷwdmy7=>1:JFJ8qq:#s~z6E#ۖ]U>:Jzh@%S4GA938|'}b=]o>߷fe_$3ըwXpkGzKLR*=ƏqeL)bwO;$A,.-/?$Z%J^uZr5uV5ݝ-lA޶lh#o^0KDy9o)NWv}PNK :Q-klcdN D ٻ9&/<mlDD ԪpZ= a}TUU\^FsbȧzOj5u{eV-Ӑc[Ҏo^=#e'4mtfRý}`߈Y |QYznS5uR<Q,5x|\ik/!ɖuΤϘ|]M{!uVnDBAt[8Ơq|z.;q믆ǣyJ=h ORB? @H{$ ԗoܰ=//Nl8FVt>.U5"պjW!iov҈ϟ6muձ;q5$h3ǽ^NC]kJ\GeG~;^]+xxMۻ7 t1')׈kd.)5L(޽{3B*H .o#뼼 6ovrIe i4Jx+n0Kp\$DL˜g<#[`JW_9ƽ.PxZ_~c#<5kV1k@§>#I祿&kv_Jj7 4^E/{My\/t}dgb"zJ (44T^vPn_+U'&^O?㸰W5:&>w*u6En3ncO<W/͕8nw?[~:UZ.ȶZt@ {8ڱNE31)p|,^955 C9PW9Fj ǘ<Ƈxx_mc<7V&3Gۃև=ϓUeNvDqb*[Ī1Qnrk ӗ%(c:Wfs[E3rW 0ؾGEST֞eE)Cv<Jk;fa\bJ=|g 6`TiqQ\2qɵ2u\*y QS6dE3Y!#t-R@KLds>wF@ҴW.vg=s^sGi>C wCz &:9wJj3I<:ۖ['[81p Yn9>7.^73<m-JzNk~ѮOӣ_ ]{ ۺY<s}ZZCם=P#sN,3:IS8s"/u ?FyLjc9^Yzzzv#'<͞8RQQQ>A K|'\C1L=-8^}H*s"Y_u&q?*06=3k%=wϿş*o?1vHCXt$j/vɜdUPiPwaB;,r.JK ]w|l0\bX/2HAdrv;Zx %Rx1a1:e}%"$h131sЖc9V_ <d v~Cu#&~ۈwokb/9uu筜?Eж+s'F?uVX:5Md,-'̗:2^S^# \KטdNgL!5HLxDpPFF ]/ڰM*S}b\o *!/Å+h;<og7||^҆c-JMQt+?U|qQ?'J?5.-:ٞ^J#^^λ!_7h*B3.zk<C>K!b<ŸrMKU]ˠͦG… k)SgϞ]|;>=Ջ\-\o 9Ɛ+|^M2ЛcB;z|7웷r RExV9gRb"tTЗk7WjϞ9Sz3ҿlgy5(:= O1ȿUҁ/XNS s<h qBR Miڵk|[a΁{>O}&wO)п]]% pG)=pbcwVLi|HC7xǠNUt̍耺JY$01v'&T/edd0P"}p X`r{B/}q '7rmBWΦ4St[}!/;fo^!|K-sK+v:W44f3T-E;2+N@vxT*F)a+m>^ ǕGB^w4T[*)Ln-1HJq._r ;<e!*!&9v\/rO/0PV~ּ! oa>CBG[]tT@(umϗ} RQ+pċ2a\!7W,JI^`hrp^B8ߟC5Rnܸ1$c9l׮zM;zekk9uVck|;Qh<$_C iW0F>)P`]GjUd$>m@ʞ9}q.@?2]Ci{qL^ǝ7 u!Ś.Һ_f<,kx]}>85B%gϼgz7E%ҥa0ҪjfYQx?G6T #W\L.ABpnT+3v *+&ʈslvgEz9ƠAzܠs#fo-g[(}M|]o0V׀ޱgTW!?BhQ`c<QUaZhI \q\]-\{|[MOzpVRW<jMbtAǓKQʎ))XWMnBCPQ~\avWB_>p Cœ5wLB`s,!ǰ/)*U"S#]4lXi[>rmG Sgki4* q|g/Yʳ ܩfqRDDw ];"<U뚨 P,$\#!aVٸ8<IUC$%n)K=XPVz}l8On?N֖chpBY@ נ8 zme':vyͦǵ3>v,=% 9jVx]Z#),>q/,m翟|rh; uEP<G~].qu:+b[~@յ0z?HOəswS[c'9!BϟwpQbԩS  )ċؗ/X:R*#^^?E״WEGzJNN"jMHMIqC؀?瑃_u X&yC8.@xFN*0Gj}GrV ByB]qq_/7^ڢVMFj@7usV{^?F1nF\/0?6tE"SzrPg.'_G-&yszaUɴ*!4-h+ԅKXT;٤< v[܁c8q OOהG!N277tK}ޓ}Q"$:~/HA(Mi?SVRRd7 5MHx,ʾ,:dg.#idHxi&+0L 2mb%*8k'|!pE($.~ szN'W:fy, /C^PYBJRCF5Ѩ.ׁljL7-3:uӵ=n!sI݆ð{[Mx}ܔ8o7[/?V0Ϭc6!︗KJΒew\T~–qwvnٳg ?'脐6Yw5yn.Up`"az)Tl p &*ؐ}%ǁt gLu%=W&b3Dz^9iT2k{u܈NGwGCsgK٫W@ k˽4驩MZ=C?+l 09l򂌵]K.^ةdƯ?Pk|7\Ԕ5u7+qVq?*L6؅xbX{ cPT BFm0P34]q0߇{RjN< t4& t8Yw'܄W]ގkSH:tk$xR7~E+Q8` W|e&'y1a7k|b\EW_%}VuyHN)`io-x4ǃ^r}8?XU5;kX1Ŝɻr1:պfN(&44BnCNA QQ.fzjq۴}`Ivt$҉vmْ'HS,<r uRTj2ՌR}̉b~7`󈫶 F⋭_kPŃK/d$ۊIaQ>o%OjoXo H\-:A(A94$xJeц +9{qz1vOɼ@2|iǖF_%VO;歂V WM8Ea.9ngyN&Q`unSh'NTl#5k֤#44Uca3# T?cp}%1D1m9a<̭k1ڄgh9VZA1 _Sˠc_qS紡24P V2vq<FO _)obi6HjND,{8N5HU xOV?] !>Z4~+FMEEBoHuw1fύ j'2"+Q}4q~JD>L"VUVRRe7 ѹ)=|8E9⇮u.^td4m(-}2jo_c6 ijAɇr⼣0^r 駜D3Po!}q֞gYl;$n4ϒ!c8wHk!#T3[3ݻw߮j}dR͘-̚n1J~rB뭡pP<_Pa]؊mfӦr~_o VRSqq\p#E~߸cJUOM>'SM*˭ ۸hKC KIV* c^t\@.玏u/677c1v$/tmѡvyHwĥ+θPsi_|p#j0fB*Xoed 2K.^E8S?撚^HPpGF~q &.<~0^ɹ:a} _@0漒]uF@w1pMcLξ)tnp 1&N4+񋄰)}5H\xWYM.!z-w11Ǹd#Z$ |zֲcn"&S,=6DvL }e2 ]8uKF#gSFF넬] ^+9CgKޱ]|G gOĮ-^ŌXx {>\k=?yƍ]A/Gː]ɺY9֋<W!Q+ҥKi0;ayV=OWWG D9uٌϔ^Ǟ%OA<Z빦NWbIDد?mll? x<vi!HNN#OjtebѹUA]nhhpQ\0/PW+WO>x>sVZ  B_[P_/1qwm9Fxb+Ik߰aW"&<|y*<3kLunN˰%ɮCI=k -F7ٽ(aBJ ojhRkNฅ~;q pbA'j>j23di 7m,|ߛ& p A_wl1\JR4g:xg.M!H:FĐ; ǰc~`1' To/j,q\E3 5h#@oմVy i͚!DvgPvm9Y1ٟ~on_=8_ Ljmѵ 8ESYUTDۡ<h{W44Qʕ+#Z^g4I9Rk֟L<waH|=6sy۽AGAgCKc*U&=)h|KE;xMv}4jѓy^<[qr )ʳ|ybٗ nO<`ڴ=U 賐B5\z;&-seuMPgtt6fI"炼m=F bo?n{9I~+0{;ÿwN~oQ2{_p8Y#i;9ipArHW6~t;a>UIo&p:Є+ $m ZT)ͦ#J'pP*uzJ%]'Dܤ(JB.Yy=l#<^rvxJx_z\0_Rq C2gKw`hW"-88$1c(*8ctAzإ8ik_ބ=Ln(r&Iy'b&t-1WTwEhSuY$q\J*z^q :_&qvRv27X aSj\kX罦< !^?ȼ|x@˳bDy/{1na瑺9oOxa/b&y{{K䌎kOլƊty_v3ys:rYY t@} g!s]\\b84РeNͼd<1^bĖ![ثޡs90([0BΝss)M&'=ߥyP\t*~… k`c9tpm9F.p_5 @+gqQ1112B'Ʃ6s -y$F>Iց˜` XnHXxWbÝQF- p52Ph^+t0Xc#¤t &mXwvc+9p_\5lp,?&/–ia;eEfwO۸9ɑvJE>k_ǥ"5ki4g]zZ*ߏiZ7aʤ%߂u.-pVYIFu,_؟+*}}V?[g}c^Q/m)t GGx<[援y3cMCov[Nm2+\pA9ngWk'EH5mux=G|eUaPcCϪ (yS0jVWx_-J>f6u㬦̜C(FS}̝;ې/ӦHtTu&GQ}o_!Okݺ%åRyҥ |IPy?Q8FQq ԃ˲Eo/Ucvo5[tnANw],p +~7MW8Mqݾͮ+]!뇁n";^syp Q!2_:q!l@*\9S}:zR‹E!NaaU_1BJ. XrW)mל+x k־xdÙk(|N5Z/TEnF/H3ޯ"TpX}%͆%55obycܨ%u^cD(9F%8_GKohыy/%'n7PwV_gp*HEf'Ԉѵkdֹnhh: 58/x<Ν&}l]/VK%-vY٬J<Dvouk{s^j-^*6^<#&&|:هm?yWn߾p~y_ӼݡUaMsՖcKetP҄:_{}Frz$}zBPQQS24Xn:4y>+2bv>VsPvRKn#:7C^?'򼝈.8*m1'RBęy<2OU'~10L8|LIyV:蘘xK_6Ċhxpvcr |AcWW{.WhØ)dm-kXKHHp[u^|l#ZFo0A׫y%,}㬹oJ!Kɼ[t? _lqIx}n,vȖ<b>'qU7ww Enq0I۶$mrs:"AcDN1c[,Bj!aT@BylEyaazƵdߣz+$qʌ~C;"[Ħ40/1ݜߑݢHӨ>Z 8>Ji%2{oWy"~8q 7[t-<V>>rBhQ*)9S!s`GUq\C"e2gs%p<a_w3sU7~s] DEy7Ex}c ,_4Cx _G=b8='N H"^yJJJZt>. &{*CO2JE#ǢbtӦ vҤ<h֬ ޑgZx8ţn1%=?x*(ej Itnv?s=r"gw}L#[IUYgo|䵥1~iDc4_ͤi_іctfg6yܼR,B岸: ݎ N`bpGٰVb@_=}#( 噶:dʏ9!FŨH9~#)3Jx[QACˎNG%@ZEL Uwo˜}Eu17ľ'\]uRD裶z]Eyj'#p"q͙1~'N\÷!W `;MU|_T g}դ;R)T+6l؏0^TB׼/>εmGt-?ѵAe-^<viyk<t2={%Ln9FyyyMT˒|^J`½߁4'|S0(r<v8 otu > oky.:W^M_Õ+AZZ:eeQ#8n1'j坮4-?f(gS۹@ϴt6 \逮PmMJK[0odفZZsfYtOǰa<#%H n1S\"- BIp#!pjJ1b/(7o8EYf~ĎsX|:u``ȎpEءr"W{a] _rF(eYwN:Iެ?655ݔ9z:>?ݎc*Ty%fkzYc=kl_Ju]FFrM"\kNĸ8#w|YrtLoOwt]lX}{1Vo<w9F;s ?p# 0way>+-x%T,^_! ֿOZ-*?iZ>uEVOҠgd{yEFwIx-g4ROZe63*(3?R2Fzܷnnޢj}pe"rySQQDLO笗E'y8fwiy8wt8^pFpC]D>8?4߼8^&uuU x:Hp6!cQy(,b{!:5-h]A&8wFejiS5j!Tqm#8h]!n1CrLKiX ݉ch5k,UH;ZX,Ӽ%ٜݩl]B+Wti=cIҨa "OH۫GYUڂ2j<Ol:.Ǿ4w5ڸA#|&j@c?cco?p )3 /yA}^ۗuٗ9jdݦ@ɨhכ^=ܨ=2xN27!no/ \?@_g!uUQfฆ}0H$dʡD,vWw _Ǣezna:7l$sj1hjN{8crxxcjcO^XɄ1Zƍ̛BB(Iw/p\cU B^0CJ l<drSU5FʿugՁ{ic#U=trRf2Pc67O׋^/^jet^'<n9l;%fWoG z{[5@O^^Ayh[BR͒Di/#1|1uJSHX=j3<Fc՛ BA^ϓ?U:TDnC-YKQKۜd[lc ׅ . |0Z0[kzӡ~Q+5mcXL uѮ,Rci1BA?HyK̥n޲̧ۼeT*l Pt`J0`? >j+Iq<1222\Rbw6׹tMtb-}UwZ'<Pq]Ӽ"@%վj<Cuyg> KLJC?sl=>,?Ϛ5{5ikX9Ɩ'~C\=z B8}+ :C b)oϑ,9VmLd<ƣsP#q,ܘOٻe~yJ ڑ,`P.Yw݁s~jy|w΢jy# O2F5+hR?_Z>/N7Rtөn"Mxu>5fn!_6ž.{^+s&}s4:w)Ϭ=w)4L0p?mh8oaƿD_U3>=Ct3U9;+ѨKq|}#=C|*g?%osYqD}^^@8r`~X^r !~S*V8^~]뫐A۽!zwD~q #k@ ߘ!xiXcCخە+;ºu;aͽQlrC I&pȐזs~z!/_:˟y|ԯu^1B-$W'&r 1J 7Ň^c{o>r7nf!dᭋA5K iGA># >Sʳq kh`~JQ!5F, N{:'A' 'h]W8K=FݹLo7䆒v˗IЈ֘As%!,ZT2|^qm9}ǀߡ@"BeZJLp [kujkk7༟YD/l_( ^wat4u:/ }O4+ XvO޴p [K yAgƍ\ag]qfc؃a<D3[B 4a]8r}zWıS y $n0VTVs<O^^g] `ر('%zzpe&dֶdr&JXT&Ke-6)i"KYX>-ӱ񾑄(׿G"q=<H,dcQ9?l:(cs5 :J+!1hkG=fcΪ=Ý~; Zl6',ʣ;0uފuNlq[z\bn p<;{q(//_ zyu;6c sh40 WPWW7 俅c4c;RG;;bTۻa&5G֡ǍGnю_4~7mpCꑂ!Ir $C8ƽ`<(#,Plm춐sqk~ NYu[_2z3GΙ8)7)^Ay5 5$TZ]υ<3?`OHF9b_p+3<)F)Y|}yE`?k+k8[Dr-B^¶ޢ p!j9,xߚ.v&7cW o,(%w] OՠyӧO=LbW[[ yݰvё/8:#Y^hq<#\-SX\j #|;5?67oL8|uT}`o8VQo Bת7=a棺 czj=*1T=n6dzp~!Q !4Wq/sAc?*֙1,{h, ✽{ K4oP1:5`R/6>3Ǹ3X\v-?1|ZoQ,n;אgs٢۱J5'c\/Č,aHMD\p d,DA5 q<|P@TК/TtJUG[9k<ǬH,D 噳(1RR>3১z`x#B]ƃ'N9ѣGG>f2 SLS^/t@ qb1}HH>q+טu55cTr! ;6:HGr&.u+b@m- 6/vc\|9憿3Kba/2l!`$:L¼n jiI9| ǰZK0brGI^]H_.΁<6>'|rlu΃<e;eM)wZdZ/ }QSsnu ؗŧq6z!][@ZY/plIID*N{̮wk <a,ϼFdhl:i.g Ԣ s(m*?cX0#'M~Г*,YtORf_dh?!.%eEC(*nǰr 7*  EEE9 N= Y2W!;[BC] C8>$Mdru?G̵IAs$vNs[88fC,tY;hʃoF.<M3+-AZ=O=y衞R)#^BiOIy7'M'T 5tof@"m*/$GzHw:VU'e2>eQD>-Bj:gg3hy6 ŞQ^(fA.߾~ )+{أ觳y nn)9rGw쯰?z#ǺԸ(C`z6Y?7pBYt-8y #W ?=kg4X̥%y݃R`~k˼q<ߪ<xQq c.i:/ wKC}-󴈞 ^Gk\ 4[u \JJNek[t^y/?_yz0룄/<yek5n...,v} Z7ϡ> x͵Q|Uv{1;P'`+aH r+ǘ(jk>#_^ :|-@eYپڲo-Pڂ ofРo5^K%%gk<b_$އ&r &O1E6MOY/o6zgqsV`5p Jd%1<PHF26d?Psռ.+~m6:؇7[t>/k370\ j~62BaCM fMn ? Iv?;\(ܶnm &4N60*΁䘱=:qWzHP!_{O|}0ǻh7W/رX?8+F/۪2Fc!@LIպlwǎ4ܫZl q<M틏rsksv699R,2䱶\$W_]k !}PO6 hğvG_%K@yz.q LR)KGUa/e݌mknN˽97@xi.!wwBSN4p> U?[Ee۾m/#zܠygV򐶮-ax=*.W?{@8bG Z0(ysUe syG.^Z|!CngJ, ȟP{)-cWc31&?|Qr'D/Ȟ؟z.c~xKe>pq =fX$EEEQ#app%" qlgo޼Y*bc < p NǓfj==KuXt!qVawCnBqW1 R°`S59oYU~gf~1_3đ\ح; F{҉ ^^[F{^dАǷƋ!ǐpcO6#xN2C1{K=]q Le o+dOFVfE}Jܖ#*%ٻé!<L/ZVq:b|.T١#{4 D>:8,0m=hY,V-)֮}jA@Ek!ʣ_G" LZu<g(27N ڥݓ-.fiu9eZ <pDL?(mHTgר/VPE/[s(ęw-zvnJr pڲVnvcrUE\O(DL .n|^pq }C!7O>XAI&Q-hgץEw#`@* [;C`{r|Gcr<t[5ÜS3yoM; LzB~#>s^ﯝ:?l :O^֏v1с#n\%g{HdN s,x()oW sr2 \p &oC;o-9w]syCtPy%VQ%s>&Qd./W SA ]Ufؔ# ~BB|O) 8]k2K\`[6k\g=vQr3T*n˖EsBܸ߄/1ѽ3ׄߙ-Sg-)+ g)d,ma2 *P_)߼kbN&[eBL8fRTm)%"},~ >| /]HlJBsy'mZJ8ŋg~[l-z<Wnظms[9qp5 ݺ3F l0OňO>s:5t%Nki?(So2-E>qKBt)>瀏9 tp3׌}鐯aibZl@8͑q:)$.vN6dn9ǸU3aM Í <N~ӧO?L)aS#W_+: wk]EhXh-J)g8#&x>p#!!ߗDΧ*zB go"+8U uӗtgA!SohP.?kcL kیZ4Yxw]= =/xm/bGܼ?lGč~agf0L?`e6x>b2+ n{X16/Op0"&{)~#7.~+npU3-u?%ĵ#߅Ie# *;ndzyQR+[XA&}~ ^|΂wg % mt9[<$D0Ī2;?-wOS|LBfQ2Po|(<lٟ|Ruvh֑ Xj+(^zyyڬm׾>;t{>{r;&Pqm8bϼ2N0ƁrwO*Noks OX/@pI\B!eK8U9Vu+Vy,Y\G׮Q=l33^DZT1|F^ӗ-]=䓕͔:9T߾ƽMBc6 ŝ+ἵ\^~m9q ?Ǡ+"6_p^{R qR> ۯoY \/ ̏mt3~AI*)7̄V=ϥVO7v9m:mcɄi|Q0TUYrܕ h致˜7R=>KQ4 Y0oE=cXSw. 9 +ز9XZ%) _P{u["՝T T:m9U 07ǸCMLk/iÇ123?\55ad^{N4ԯ,Vl2F_U2), * U8q۟-ZqfkA(!<lX[/ώ\י&Ѝ~DQz 77 R7o|\J}3n䡷Q?${1e ޠ].{'!#:<>mvz./sx2sr xIOhD9 L7K)E?׽AFT_]^rK^Ӽ¹aa:#GC>O ǩ_HĤĤaa u{ եdd5nEJϭ 3Jou8FzӧOm@WeX̓Ddzt/;޽x-sdcbdUׄF~QdD.y{FvzcK |s]JKSU@V[@ |_u&Rorxs-4Z$*LjZ4)LJ~Qc/?3+Wx Vf/% 8Ew>2H1~FLZ0C;1l'b=)X6Orq&6`դ>`Pٱ2rw)3z~QᕕRTXGdX>iUi+Fe/Zѭ}#=8H_{h:j*| tlG㷼쯬87puY7ݡSP0qsT*f߀q|tUѯQMSpTϐ9,DozAJ㎈=jϰŹ (Xu ezqyyeH!r}ߍr5eCC}PK~庯i}cG#vԩoSrkg\H5R9ߛ:>Zl-}%ϼXՈЯ*Je.mw0}oUHq.r ܐ|6La{~W~:}M:)"RcG7lu)@o:79 Eد<lܑcxL6r㗬v֏L&Amm]dwѨc81э='~Xn,N~Q/ 1B rT G-k{-B#ն?-uR,AU~/V:̩ܢ=HwEDc*_FK_SoYω|;5;g!`-y@斱C@fH]@5ԗr'Q T&mmS [/x81RDgE&#ď:;ulm%wp<8Ŧ}IQ/ hc+F tf3gksZȨrsiY[l\@.ybl~nGsZG-\êW s f#!oSyqK2Po~[֗/ؚoAt~ު9ՙ0Ic?Ίf礙]صrn}]0>wg݌aFm9xtg<-<_7GC|-Tp+6!C=c=ttq\n?N^C<ssaŞh !'NxD< v>"ȖcgX9ƅ vY9F#ON8yp Ϲ C6>=Y")%-mVbx=gGy <rjkM]9[mT@qNǃ͖yC<b?qwЯprL=uyHX=>鼯dhZD%ox2ky]/?YlO\\gM'oܯzd u:vʊHxg0!c| Ǩ/|ZebU cU%('_eܽZùcYpG<+ǰ:ԔrʝZ@}B<;̍I)ᑸPX!G$wKص=v6qd~.G323I˞d t쳔dn{0J)?qb1'}n\R&DJ|UƍcjX(SU</ۉU/{˄K\=՗:jRUV Z}їNm! VOjeiьB^+jE B5ʆ|$o@ {ؗ156.wW#cQz_(7v0 6z{W,)+Ú#O("Y1լ,<Bb4*Ǒ}˗ggdo16cJ\O|,[M/&4`l_%^'bN=39^~bgè/&yc 뱃J4?db^LJc̴pwXDJ=zמ[o6'g3\:6gEqZQw=~_1Ț><}]sتH$Y9ƉM/"<+h:%@ΣK58 u5f@noݠQvo'p_l$x>|#{i'/-ǸA1Z8FI+b^Otʤ9 wi>tNl|K;J'n8`'Zx;f)aWtE111aJb08n1Ėi!HrKVѣ^Cyr/VRWc?Ybt`ݡDwٮؗߟS*n -(.ʖHkvM3}cP nj>ٯ*.-XrÆ R8_3lK$OiCG "RO8p_~:e6\3E[N:5"ac\^!uaOtզM^99D_\xUᦼϺo}oz|(?_ʝb[~{]WRrB=0VF c<gb-~! @Vn׍іKKK?߻&mca+7}__<b8' E/]w ^qu0gƊXAq1̗pt?X,lk=]s o4532i]~7(/5g/ Nl_PArq0D/THK..TNL۾~y_~`6?c懑G4)/!f1JݯbXl\}Q5d|MM~ӊ|6'iNSk+,yb c5dH !{hd:z$h}qƟz"m?qW76}8Jh1&:H-nnW x8h0=_}4q[ҒEcEp f!>6\ö^ckXP*K ~{@T̈J0S1̛drQѨN]*hFG@KE=*aHL.`Bfֳ y=ٷY{||o{/VgݭCdYI$duyiXguJzPgߙuwƣIBqr6=AX}6W>>~ojw^솿XSoщcPPx^Pb au h E}lD<[ >ГӦE9̎bأ~0oZK$3qԚ'+Ǻob-n/,z[i V:Gf툹H3!z)Lǐ~LНW66T ~\5tg-)/2||67~M$8>'Z#BFw8Qc 6;z:? 9F'|?,.Ch.[Lݞ|ʶЗ>" UM*_ʟT,c“>_c|HtJl׮}qI466> u)Ԍj~hV'х 'eG=C-weo}'h4>ОfGzQCNu~5p&q&~_ǎ}t7DNU 3$&Oq(}循y!U eq3O1>@W[3m+O4 Y loTi{:$[4]-@W_77ԓԀhժ%r$73̌YRԖ DVǎ iP1ؿ9ƵJR Uؼm{/i;%Bܬ{s27M\BZZP-ڼkFmġ)Ix>IN cd+ ÇYd$~H&t<R1-~Y82 ]A"C6EK'fb~w0Y> 4}I"/ ­#=E<R3hA:ZGmWFn8`7k0ϟ[œ4TtEH c<QXy di,8q{v8ơ&q^YORO E[6Oy)U?!ݪ5wlԫhtF O4.W~[/u\oРc;Gg$v5ƱE]VI1x릒j\\78퉱4L%cHCs_Å|~[^3|}S>ݩjwO]hH  1k'<i)4㝥F;g ;*Z=ì#dd{ŀwCAf͚efSeeKtA¡ɰrsP`숿~C-N+䣻A݁Tp d=@x#fo%w?yC0z&wİ/p8_dl eA M#s,{zIئ؞;;:Ny k5FCUZ#GHh15#@c$Io7oP^B81kp)1}V8Ƅi 5vnx ?nS!*HF$ɿX6q ɔ~A.yv]9tc?aK!5ʆoZ"9vX>Wx9LjAդbTi!Xˁݪ~h,{jjj顉º7:xve4EUGq jEP(~ O8D^R nxaqǰIŵ쥲hZ;BsAT^8q@l1k(/3$|󍻎υx6I~+8gt9ޱcR> 8h8VTϰġɛ(0JPqqTzboiP!?W7I }T =AO?nu$ζyz~UAoc|W^e֯nA1vnNB#!~NZ@y!uKV?:PZ| (?SgqY? 5_?,K<9o'<2 [<,#;:b?>ꡆe/q#Bp y=:ffm`ee؆榥OZl21s8Jl8F]eC1<r'Fs.h,CݘC`}`0( n=OXЭh>MzPII,O .ٚ1H_*ԅp jllc1x{]+%_wWʑ t?‰(Qo:S.1ߗfd9cA02wg>Mq5>iq_{JP jr7`|P=]t-xFg~zDݮxّrEo{+m$/~ lqh8Y1QV^87s}>T/}$R^(qrɯ-8d1TZ &;r*ljxtF;/D_~Y{x6;tl?K2' ?-e\DOyy]t,Y{d[Xn] .n1 n?o-rPJ:xo=% LcAԼu[T@>'|,M:8`+'S+Է3X.wܯNe3hkeSYqh#.z9PZ\Ô"S䥧 }[;2=!Am%puAT'N뭎z_Y,cER' iܮaל*eˆ ԝvnp]_`J:4[|}]sH_^~e'P҅s}16o G'Cgj.W! 5n+m!3v}K!cǰ!_1~z hbL 2"X7MxIush-`t}j^%^Z$7y&X'3F?9a vQ!?f9FFOq8͟=ii._nB>ZH{ N= h5%P1^h b{2$'vL z=/vt@Su8F6q ֕c@ഄJTW10w &Sd$<߾x !wnS`#iu_G-ݢbL%F)yy:ij7xkq4T#g%IH~%&ڹ#y\Z6yӇdhC11S)w~sgϊ:U繢MGw1h*I'UrAE8U X<~œGɣE^"p/z`"%n̐ \]4`apZl@vʧGV۠0Xlj6 Y 戯߸/ȗ|? Ǯ8U. =~%%Gl1hQ Zkow1H1!_qp_F8ƦߜcؘyG2wx=mx/-F!/qmI0ۿ_i}b.*.6q?MMTK={kF'q RD/86W=76M #} ^'/ctRI<GSqh奅)}J$IR6yG?kq)8pg\'~sE9us_MڙEF3+t [phN1~g3g\wK#^$(RȜbkāP[0`ռispe/IG\1:XeŊsy0 @zJx oq9- <p}',;*݊\=|0I]ݱӵa;IAa?ݶ.Rg[n}px 믧d---x_zqެd;CyY+F>F^j^HBE7[H cwB9֚!m1FEoq3vú-[G}Di'~t]G˝ 7cdi^K#<j<sOr{MޗU˗Ju35֍+ ڤt*…r,q¹]{;밟8~<ڙW#hxbpn.g(/@͑WL_jאGUEU<^Pe ɂPMv ߲:ꬌ FUG6kD#T}U-pyr6ۇ0?prP^NRā1wT]u(ަx|6T*_ᢏ8<ܭV&ya>PKjU͗73CL4wҨXIJOL]cgϤ!e[_;qS4/1śR"p IAKCT>AOYGB=Ɗ#ߩHQMc܂uLr_x ku?78ywj3U~NDқ7eU)"LƘK E۴Z$#~[sTUTύS<kHP\Aw N#<Fw|ue--H$#7^,[B$\?I}Ct?+ nmWzDZl|ēI 7xn5uv4fsʡghE,~ 9aw!F{idīH%-}|.J9FLlRdc LJ͍q r[Ĉ3S#+JqOMO HI_~yUa6h^}Y䷃۟O, +ho1V,U?;m7z<7)Y/\$u8 9#oMXRG -y--'%{@ڽ.FnUZQ2R賳C g~Ijg 7)3u4xk2:1ٚOG}'h1(]Ţ3ޢ#vߥ}m?Y'kFRJƷdk:<3Q0Ÿ59)AfSڔOs]bEN<أ}߀bt0y!YXk *EGbh9wDrg=RWcâ6T, !BaGy#-.hgi;-6zJ{99-4:F"fo]7PbEӹv e=^(N&/?pK y̼JVs6IϜC!wTC}WnN~4MuASj|[$n?:^ڋRRRZr=)$[ ۉd] $篂,][ Whg$-F◹u?n5/oh,{ݪ爆":] jwг`8L+ s}ypDQYsY?|%:)ܖ2ؚ$<M@1 В/C߃yS>#ctYŋfq7Z^Gz"S?4bcE(7~ݪ..]4͵I cEY o'J̾ lO"C8)T>eݗss s)W<,mfsB8u^_kLxYCBu{ާɼl=0we</ցg($3zO*D%(IP[^ p KBm\\OüݜcrbKRHR<Iǐs2 ZLZ?@a/"@t23%ѿ]_X`n.֍0j77+cx޻R[K#ji"&SOTGrnؙc_ipvR疖=0d<i2?:=O&M~}u<#>Dx+J9èPĢa#J J쭈:Pla0ghZᆿ玿'6z0-"~H&N3*TE%n^^W+ bS-Yp" ~j~=L?Q~ow_ׯ5Hz{"5𧛚,dz^Nu/,>nZ;zaZzmQg9F\@8NEy"OOuXEUUFYo&<`\ߔGh8譀zr>KхI 80.y$Jґ<ႂq0gQ1'Z՜T{kk/ң/r~OckK[ ,59'pڜg_h("^5PgՏᤅ6e ʅ6w.m$qHYߎ+e3C7shnN\[b (x.tpw'6;9ƦĠp5' mU\,DB',zQ-'ww,eQԀԨyaE׼5Mo1:Vy%C]}[\ fҐ>1R~DW^f@|huh {ljOUE{ ?:H5"4~<WzU[Ϋ~:uO|G1-Bsl'Z|])4Y>Fm{h\??K A 6k@?u;PH xFKTW=O~R8OdL0ބ%p/"78Q<㼂?LmrM:,7=f܀ :Q& Oc~<Kۗ|$]Z.Hأ|9rc%C~BvR`=!U ZuGd|ot#.D8>#ij:ýغ@S=]^WG_dK֪+ͫV=?M%|r FNS ~JJudkɜ +} JKKܼM9cjo=kC݈3%kGK8$!Ƈ}5S[e kUqyQtS\*ޫfQ)A gdN2db~;'r7Sa7^Q/9o1t{I *NR! o52߄({Q۪u~_R<3;d y=;zBkc%2C|%"\V|cN_Йkƍ5jd_:T-! Q2*(7jt?P "oZBa[^URgӯnA"R4jNW U,.*wA1e%=$5)y韑c96r H~y'|yDŝ8 jsz޼n1 #jp |~=xB#>o DN]9hCs*t,(1?95(xG{, ;OO?%C"hNQr`Gd HDt/[A?cgWDGթ!#\sɞLܮ*0 Hgcrϟw?z:F6D ǀx>ial#x-΂qυcHl1Kl%یk(aojmX^[`?ng_p! GF<xE ׵yێ~&''!cJ-D8߱7ugϞ}&S+-)IJ \wraSw<qpXUTTܟA2Gg|y\-z$N~N΢S_8['{L~ٌí'E/NK^zFgD'Ay:B8Eo-Rψ+r' ܢS5s_&Ua c8B61t@p p#ĸhWLy)(ޡ@1* "vs сyXzZB=qJ0ahPQMK{xvsb"Bǣz^u3xԯ$PbúxmkTГzdΝ Fy0b_V!?ڿVmbw^GB'ӏMM Avn'qZ=yO>z zLf?Cty^̃_NÁ[keƓ'}Z:ދ7U  x ܃?߀Smْ@yA@[)pVuCtQc!+<g\@w;O4+sd<F!N盥yxvuR C{p\_GbOs~p2RS~x?A7=A%b-{ک`= Xh9֭_Dln/۪ MnП|~D\r؂~ѩ#uX?_;ZppxސGfN֯4;q%71RaXQ )d:uW16E=" UxFW4J8πȏho\gioa^zλ]ٷ<xұ+K8 H|rH  ŏ5}3t3Snk7ߩծ?/'d^Juv憧zB>m[HJ&C|nP_pǯ5Pոįt^âɓ-44ʢ3_ssʝD|.U,¿x\B.Gv zJCx^ڑcluߟx+e/XAIm5 ?n7;,[ <7'ե!r ec7_RT SH~'揹?{|o}{=U/&8rGG/<jx(T -sn6n6LˎznZ%MU|" y"R;l) Qx4`  nP6 Kk{^l/:0wƣ븴wl6YWWx6 u1*+_QߞcLjONv7r}Br ?>^*TWo`޶%uk/\ )I#uq\cm;v ma &[7u D䢣ñf{Hh5$d.]JA;/an߿+TG?}{ԝOf5.e(;;ît7cNwa/t;G=guɦѳH|z l뵾>y$%ݸĄ =L =$dysA!eN;[ϠNˆ FG~o= PM#%h;y L\89 y%oh1ە%^"缾bJ%I ]/{}BsD7Ý`Qվ-4phb?ěJ?O6 seUO.^0}?  T&'Kx?? i5#zvinD#_/:,.^KPmeOFR٘]v2Q@z՜vò͡w#\"ZYK DE"/B=0:tGHyWn^4[5|ob+ySD)R^qAbixDQA‡Y\O75NJubcsgf<b6 R1xCxklPigG;Mvr/g4ڒJcU@~ٚq1rjjɛiHa\ iܸ?Cu4?ٺﳏ79}Xs[xY;WrXJYC@~[Z'mMHTmߓ5qn|3=sj*Zm ՗yXje}L%^#kN<Xх⢱߲?%Knq]18Len}Mx p mZ5RZ%M}6q"ns"?V:mXs}C::}CX\cdmԤB=2=^N$|x)-,xp ԙ`2hҹ@tTWx8~ }D7] |w|{8xQCkg?<~ .\#AfԾ͵B$pJ5qIEl-՜ur̔( qn,mߌ֨M]ijw|,WOhM{ci+;Ѿ֔;DTF ζkKeB= ,H 4(_B)oǀU8F2ԇeGu+KǸu9'tC+?{xhu买ڞK_=Ϥk(u@m9A'p&[EZ#u[[S?7pP!"i*mH,PS!{͖YJXOS$V8FXwXvZ-j 𚂷1hGXΙ/d}0AIvoHP>Qm).c^oq1A῔cw9|3Sڹda ?v;lv7|nǎ=ԡJ nu栟}K[ߡGgxA嬋9KU={CHiPIw шG܁pi{ w;ÇϲdǏ&؍Η{շr l;l;<n>Rc8UsøRWֻ =nu8,\t5J g:cHƨ{;G^Y)hެM.|GWъa6dx xNt<_C;X;w׺#lxxla}ޡCk<12tsY$ePEyo7R'񏫯A k0w< ܂;,)i09-,zeǯED)?s음1r;Zlp<f|wNN܀|*s!ּk]Gq7klQ_l<| ~>L,~X$-{.'o")SÎQs!ߒ{5| :sbv#w׭E?)A ~ ^+r$D<j~~E?/ppcwκV ')fݺK*x<vyn@=GG6'?Wj975 ȗƢc|+A%K_n5$- eu4` /G>F CVʬYclJWt%į%>^U^gP.h z1,!zu0yc%k,.l`QrR- UU@o\3$*.?Q1 Qs <: +$ZQE]!:O\؁{ac,=3%q;_o~)G+MV"c+אd&.eL\̳BTkbT,m0,["d{i#Lș+x^,liتfΜ0bQgt!,H.EO*Bž&>(_Bp P37-X#}@hܰGB|bbnPΟJ_^8 :/qY,\2Vm@ Kg?I [ 7\#Dm._AvUJNT;ºik|iH/ EZMzB]P'cK\7MQ$R{"Gdj$2gNDVFxAÒm`|yiq 54tm6++K~*B֣ktV:;)xr ;a in~T@8_cVg(y=4?=? sϥѠ z9 Qt^SډDG~oђڹ?k'E^]-:a{bW7e8g/>nVOY q#KVOP)༒WϽK~-Z6Ə+/4_<[(lx"kռ5Ǎeo Sk555OKQX6?=oRw.8u;9F p crA"尟_ ]Bعgگ;t?pӧ+a>ԭ uK<KK(joj.s@\X$}hFqa__Tw1#ވxn{66xaЌ0/V8#(OHb/<m1pl 0j;WLZ|$t|]"MhVm9/-d}_aokP1qe/X\[6>vDL *$*M w8//" )ᯏF H$p *v WH\T3ᅶ.Ƿ:Ȏr-UߠW rֆy@7z+ \ݍ񽧿2.L'~fO}N06~WqsзJO$~䞵KzB"`ΤXbBJǦ AyN[V^o;?7y^Hǩ{j44f?F%HB{*8 uK'sbϓP <!ٔ#N@x?;8Q{ t9rܧGA, ь;2K+StF.\FOu#+p O;@f:)fC%3M[A5B<_E <gY7 uO~\M;! i.0t8xSZ&ؤsY@MxroJV gًGgº<p ?;+¿TXcӷRIA!wM@BSgqƭi x X$DֲKbWzS0o<S=c{b蟝x3',,`xFQ7 Y;r2ˠaA1;1ҟw7/O<~qEF̔Da cx#A/ #J /C[-kϑ qQ Ow_qSH RwKM8 0O7n,|iBjԾ<XqΔ5j]OOKi|kBN'G/fTʭɰ.uQtZK)YJtѴGE]qs\y}~:1`… 醴6>vW'x;/3k$)xK3qk@|L˗Q5?7ѩ(lsJՒ\JxR?GuU" EQ Zxf!]hOp4DzCzkBrM9;baX5Rhp]quXSt &_3ԛcެk<LBmǠ⭋71J$Q&r8FZ82؏z o~K1 nI<UPML!|goN\<2N8-\럆 QTRt|"ieF`2'Ե[uc)a8Fq$O_!csyU4>!+ wǹs1x'ص}۸gLKk[z@?}[Yo1P%t1q8FR+J7<:9A|Rrwp;MKK#С"pn"sЗXtԹ)+5V{+ |aճe}lI\g XԊo.#@#Lx|ǃs؅NI}Prqlڼm{/?t7Lsjs}I5*p MOǘ4{7i[2W 篓"l9_ճoKr Rs/@@OoE.G|$5Wކqk}q~`>7nŋQp +X"N Z@Ztp ]~g^~B$F19xK7?Ry?Sم._Z0r!~ʻz+<myYqy=U͛/F}}o3f֟>\0k ('~G$ٻn~NpxWU^/: :(EK4 taB|*vET<W+,manůa>= t"IY*a\>DoA)WA~G~zݶ8%C# ;s3q:Ƃzec(ۻߝzu@MQ?y5~Azl:UЯCRD@$RQG3<$-̟WzZ[IEVg/6~H̟.۰սL)*ޛTG9ӐC!|8N~Ax͝ibl{S =]s@βAtxڝdN$k-/E7^GºB=U ׆A\S͐.J/.*'àCIZOK;& <kx/1t|*Vf5Y 5.ǮP13^g|~Ђ_1jR?1 R}Ը(;):2'B $b%g|i%gd&&~\]H}Ըqrr74Ujy`ayba|M~e_o1&?!u9_& YuOWy ;RQjߚzm]$6\gyRm~}p 8%I]j!55 3]@{<FGŢ;A%_[n/iRG(uR3j./*Fk5PWq 5F))Eok:kuK")T$ѷw$%% (m')ԣNzZ!!̿Jc1q1Ç{߀>^4;1 o'L"s7WYٿҳwx%ϠOsns-,nB[t-<З?/C[@yy~yE8 nQ%؉ r=}yPq]<҆LEcC, Y1a 1S)I16oZƠ=;~LU? ~o1w W*c~GImֶ0MI?q9ghupi HS{ E$+y"'NDfyn:,"bpy5䓐:!DkgfdI^ m$XBqqOsڒ 3`l_7-~{3gF|4Zv-~\^i,<%NLkܟqU}ە>*_ˑ!\y$|iU4*'a)O$w׮[Sl^1y%6{WLWCq =Nđ>]@ЃM_:Id@<6ಟ'Wb,=o y&XフW逺n.0j@O .Y|Xg~pjy0 y=Eu:E1?2OA<lf|u'e& ö&M;K"Tk=2JyHg?ö,橘K>x >FA2PoiI/^CPyHSJk<g+}W(jc4+ EAus:#_ېvn]/Mzg<-sݯgq߇S.?V+1"͵[j~t'Xu1> |Dyk'46~R5}7OΘ%7\8y~*)_--5 pMqrcucLl?;E%<sg^YB;w4UD Oc-[; Af oF"ٴS_cV$NUp?%gE[vAɟ[KoȀH?En<miW˲Hj-~{F9T$p Y+01\5X鸽`4!9?r"95/~ºp b `8x4!S[W.<m/x _xǘҮ٦ zg2Z _xZifl}U85:W͡#5jW;[ehS|A벷!$)nS^p6u㌩Xe#g=5-ohvC#a^7I$nJF*rK8k'\atp jͺ4oa4 -$L8c斍<8NUy#j Ƈ.~4ME'$Sk01WY"x4+* 㺿:Kon5QJJm={!̩"1R!SI<B @B<O}Da G cN㏨c8횴^*A~Ok5LnSsoiވ\o1h0ssPT4K#N zCNOU}Mza ЉH缏[p W<%FOU|d:"[h%/1ᅭ7mdf (&Pv+Bc(>.<;ل3gzsɓ'} ؖSmܦdp b mAzxԽ]עH 9p ?[:2wA˕u,ҖGce~nhhh Mٿa|)= ӌw3s>A+ǀu엧𡒺6n8ۣ)\&[.03F76ĬY>`_άYݒ3Ynfqab{9c{2xfwΕj Ͻkܧ/u8-%4&;{- qx 1Vϝ8G'*0-&b.5o 1) {{F|sC #?m5]:{@YRdv"~Ngس2)c$O_fr mo_-jAѠײ+,IVBϊ 9 An WG>> ghßI_~P-KZpzMH%oAt%G&VCmzwX_Uf[S?Aǩ<:d/'y"՚?X* yn:O^0-!ztG+a t3Z8.ud!j$7#Ϳ6>jg]]]V~̺ ~>#W%rt_z6 ߊ`/& 63_[O ?&gY}^u좩#xߕ<5Cj-uܱu(P"}? %$WodiTx?;MMt<vXnԊ ,Ĺtoy™wGs &a=["'r}Xѱ"XJ>K/ E\,~I⴮Y_?)̦7EI]2HX:Lj2k5~Ҹ1]qq1c@N#ƺjΤmyh廣ݿO*-z0N~`yC#Epwb`?{[o[ƔWY_q Fљˡ7VVՠa"Ng?WDq Q B^QPv5%ɈE)П"x`~iڭJl[rCNU"43o!"-p<S^P͊%A-8ݷE۵cNr~7sp [d#~Ìq$#)*L u@qU:ȶ2t2<럎s?2}Aws("MobYA*vRf9uQ݁? uv|="܄H% O򺗬~^nE[=.w;WkHlLOprR_WT]ڐ[8m}<Mh7-lIT)䱻 Q8_x8Voʠ<nI럁|"$h?+++N~]"gR2/Z.p 0ͳ, "%ؿr!< 1䷛cڵB*p <t<םN7b=;n Z-3ۤsWq!ױ/rs9]=`N eva7vFs|zرǿ~hpl>j\0g'3a ^bc4{>݁Np ] 'xBъO^If >јqknR$&y%c-<mZ8c$0mI4XwҥsTR<=> #Ʃޘ,}wnO^s~djl{/cSK#_R fT'Nh )4](ڨ# N" FV#ZTW3V<z?k/ߏug1qCRm54XSpo5> $6^u:;i|8gDHLd^럁;l廣x)Zu U&hhuV1}os+=.XftrYr kݙ=Sی5ꤴk~MQ3-W)9'R6"b?뉮S+CęDϞ$lr<J\;q Vu.X䕹?4MKtIܽ:>"NgaPl>*x!78[[Kuw&ʊ,rn+@eg㫄!6;vĽNA|QA$9ch;7HXԞ7r- WG+K>0. G/as44'(Ι<xZ͝ⳎwoDU9P‚ 7|~AߎcmsߚctAt.TXi)\,~a_mh)qkih`u4ieď>Jñ;*5qSeH\KYB uHQAXڸF_t|ՈQd U;vtS\8F+>wU6o~8ƻDV 8c=χ*T~Pا'3"F4!j-ǤuNq^7 Gs_\:C祖a_iI#>ӫxxoW~@#rCc$n˯|\T@TD+#N"0ٍЪ9=fZX%m6m,;+2ZdNct5( z|#55)|rdZim*^c >}\?׆l"K;s~ͻNe霜8:7eD]x{RA-ALF9tTah% c: ?7٩_]w~^~觻h|x1byx†_}wA ,W.&ԉlzԉN|s<7~G* ޽{CG5G&lJ+-?12}ϖ1bC0>fb5wcd|ֻ1"aT~% Q:Њ#H|kBTV [%x #$} WXo\&ϯ:k9-߱>v8eh44tJv1=a1ʹ!`xKBwǍ!AE/W-8?ؤBԕ81%-}TC_|HkEn4XE " fcq}wNG/{I; Xh WVϑQaoޚp 9nY-ꀺWrT9]A<#̿qHc`_Cw]; r7tҚ VV[eNI 8;)>ϟP%wq~֋xWxDygDA? KO =D%-NB Ӻ[F]K=/`Ґ~ԇ:[+RKv|Fy`im]s.o $ND<{ǧ[ou-CTZtFnҵuGj#,YYErV?fw|iEh!:,OE/qbH@GZzrͲ.NM_S/wHPEZU{c^peKKEߊ -߻> xoRfΧ3LȬ= τ%*c(8uZ>st<Ե455ֲy / o#^s 1wQ#:X'EFEܼ)Ǎ;n5yY#҆chE %]n\7cNJhSRS=\-9FTcbc6zypG׀p /X'"\#kH д]5c sa%QNj q|~[׊obC8EMmq  Ҡ۷wG#$q_">Qc=*.Q ȟcxt>cէ6_ܢ[9ݨo*үj}Tt.ϥ( FchgJJu@yx Սʿ6bȅyS`-?}n}K/6B=w`mnk6c^>/VE ٌZޟ1Ļԇ ?~,/H!C-t&q|~do$M#yiSި{U>Q,U}8AvAu]p #/TFcp p :6jVp $P'wym[kiC>m"-7变Y=>O^9Nc5RHI5XC0Gךƙ3},{o8FŽ3(: Tx- /EaaaTj`~6ļ<{<2;tkC;^DWBԨ,1ԧj_٣#z6 [FA~cWp .swc(m"} %.Gm=IQJ(__߿X5OE3gW`" ^ [LiEV)Ah Z#x& tKlLU0h(0O-<':$(=v-pH4WmvoWu,-%7ʵ =PGDP;=yC|). 4Zm[PNiVf%+v;=SFn}^6vDZ[]}9y4|pEwAooI#?X|]& OxK6}ߌU|"ohȣV{lrJWv$88T q)w87H[_+kD#CPxxKiݶ6C 5C:{|^h[__6UIп-O08d2w jY1_6MZȜ.{Rq܇4~}6j:J:g\5ՙՖKHѯ8GtS8A5Q[?vLwD<ǩk`-7r+C^AcBE(G _eʅJe//Qpz؟$[Sަi<g&68FR| tr}n~Se/t"Ii̳χqcHkF;ٓbuvԟ<yOèoaZkc,rbn\5tvrN9F@8ƯǸcq,~I|=6Zp;~ߓ:mpɈvn6[|UFET_uY58kU) <cjۧdxid=<XegLo@?j/퉴 /./pq ; ;.\Vִ_O֚iQR[(V9F?{}91Jg{b/ 08ƨ$Y3NT]{8/g^t77Wv6O*&O"lK#qRe)v"M 1ɇl=m$5 Z]Wis˰EJu1Au sDhŎ)uzCpFԉG+PN99${ċ&׺ dC~I-˟c%a 5YA|ڙEDnguhn.qY}vvET{q|ߥqzWؔG,vHf >ߚƥ{|PcGvќbҶ1ٔz oϷ1y[Cݑvh`nݶ'O諳T&zW1cކ~;D1$C|Kv.pຼj.󉝉F" irsi,"u(PTo`y#|a֢XEgƨw}NE3G2:[6SP_2m)d@_Щ|>&X=oo<E0ů <F+sz+؊{J$^y aʛ|jCOFzsY'Fsr/Gu$/'{ y#|-O4'GkU:ЩPh:")Ul)K_յ۩Я|+ǨZW"M͕^=<k]M>Fq!X7[ l=G'[qUEDb 5-oOkS7j汊՟WxtDr˧Ӂ|үxٺ"-<*yts{; |~?j y_|W4OQ~YdGT«xWҼRȧ8`t> I|ީ/+r`x }Ygiڭi%q~ ':_Hr[8X2gw 2U/YϾGG*C0UTԦ.Z<zqccE^3bR⧌Zъ7yqY}YGڧCq=> )^y_~-hcSr"Q.r"7PX(uٽ<l78$a'T݌(eԓ&.Ј\~AW 4Zϑ@=o? ϛSfz%/r jq\JnNOjКZ])O<>Ɣ2. o,X>I̗iIFq kpM&=fZmT\qcHly{Eues6}lEg٣z.eWq 737]ɀDAo}R \݌Uay u;$o3]gxw vB#uف{LLN=-Juu] ꖍ?NÖa^NgGA*GB(=l3L[= 1q{o1@|Or92OI\){ro9IZ!m_j<aG?Zv=t@қqk7.M zDed{ub\=Gj99x{o, m8FWC8gEEG TpGu?3>\d5.^[=m;ƍ{虄LPy,p H*|8X/U%BA=h~~3`sssG1k֬2 |>7 N9ŭlo'1Gyx Es1Pmc;}NK!OLݬ҇wnjᨴϷxwiGCq /BO04C-b"6o:kgNQ)A'pވ $g6߂w[@on9B՜p<b:C_Ga}g#bK8VȢ1r4ܤ_싒=gⱐnD>Nss^(2I}KKY:,z l[32Q8^ꢯdQƥ?q1rc|u2u!)iq ~Z`uw|-H_Z3}Z$zLj)% {Y-woKSUH,qE Eҗ-_Q cxK XUec/5Ci#;\дkC\iV r/y/ cFY26RBW_xxƙ3%K> ؒO'/>;+>GfQ]u_S@>s haHLz I!1jC=CϧQ\y%$8Fms9:^]V>H,8[+Poe[Poh>:ൗ c3?EʽVxtmVy!ވcԚr71|Ó/q[DƵy$_öaS 5,W~-p "-oSj] O~<"eO !֐N FF1wQ^^RI)IGtg| 7#Q1%E I y111 aKcb8Q;~=Jv} E<p w9QeeGxhVV=gN+M# s3ϵ[E=wc>ʇ޼]UhxyPW!M@X$AHܨyb3~B1y<_CӴ#%9n1A5It)Umu)8md>?U6m/7ǘxӨE%N֟6s7ȾC"mQ]<ޑϖkS{1;ΖUHy[s[:wӗ@?I9 M9s{JlۇUF1x;l1 [F w2 7 _8.6&rao[ vKG~myJkꏯqpqٳ> p9ر#}t,;gqΙ4EԜ9x☣(BWג_17q`YbՁڡG뫂G*!]d>:Se׌@?H[>1ꯄ7n!~f?9'ĐُXE,hOT99ÍgjMYSv2ʀ;Or2ןK[% y}G[`qdRyIl5f̓m[D<J9Q][Ygč:p4sJ8lMt{H$|  0n+226~g'zk~u 铁X]}Ŀ⯈DahwjidkROt3͕%kji.ɏp )*TxslM)} xU#Be2d5u_zO\xl`XIO݃+{nY_[od)^9ĵu|H_+ Blnt<߃ltV.KVQy35ܖ[/t~$ѹ+TЫroĖ?+ZAGO~3ou|]uV0rUY-τe2&eh3`{/Rtrܼt35.;շHݲ~5]GϨ+T k>`?J6+:׎~CH:OG>n' jVd??lv>׀z?m#g\cZ8[c?+櫂GcCFJ(F EtMJ6u8Ff\7<ZXs\E{;6<[KH1y<X ȿYIp8F|RH8)qH氋o1E/ \ֈahP݌E'\O6^IL1Jț?;t_ͩr5C(o/!ߤB.Φ٭VC=~f[ yh5VF c`сBbc: 6`5 :U1boZ5'* f3QȾ ahllGhٻWkQw\3첯뺨Pf݊nK>}8IKt6n5oZ,onam9F[=C#'a i> 6܂ ܢpկ) +_hEt(x=mIF=О3w` ^0jvr¶ fQ//1_B^wב.pZKǰFeHÆU SQQ!j!$Bmyyy[ssDMܺuk'>BՒHR hvy$#;~{쬩6Z1m⋂*5kh5 !eR.x%eў=_| $)>$j}/3g(ؒmpiDG1G_(9sF A*1>0LJXL{޽{kMxn8mϿ5ac{;25.n|sΫ\[Pn[ѱ't<XcR8GvQ3oI0DsT|[YVPW? UłU[z g#3b..ċ ~NEپ]Bz-GXtg}xnwWs(Oў,=Կ SMS@X&@'{vF<7gԒo H#Oag8<pU]bY1‹C!-LUǒMNUO+eVZ$[ P-JZ8EMGf_:] sݳm!IЋ}˭q7^"HUNX/9dZh>FJJUZ< ۇYj)7HcMlm]ֻR{[zJ}<ߎ"w{޳dIl)[ s>jU!~ݗ-rЃ,EUi%A   ;;gE'z;xi巬?q0B^9j=dqիYI/Ww"%cbcT;&PuuUAGu.^2w_˛`k[պFZd8n}dHʼ>͖\z5QPzFK]ɼa>|> 9d7V9m }vfS`eUy;ïJ5˖GĠmϼj^㤛ae%&\ccdTkql9gB>8Fc9be"txƍ2"AS~ U+ /^W0Bdz\b*k H$Z8cKDb[YMʕB=L* \OfN}oV5#hj@scU(1[z$n^'8%m\Kwm7˗K{<ZΝ81̲ʕ+S boFM[O"c􊄴G`AzW8yz7󌏚~ z|tqᾷr%z.fCw>F9.)=iIآZu@+zH3X6u5߸<>A`(O7h~Mt&.O9ѢIY84cQS$k 67QOdV硎ۧ{ "k }PkHK^!V(jl24yq)fWQgtlgH柁cTWWFܘ>ݓg xŸM iҖ=OEe:t].XFQXZ} 7iRYB>6LMG= ܒMs.X8q9Gܚp<x|0y_⏯cG7+TsL? dq:U=}yN1L&-ܻmd?nH٣gL5hž"1YRSo<!eTOWfC}܆?x+}c5?]6al}vۿ`kOZcJkWrx ۑ5D~=d„b<ؕt`׈~rrx~WleIQ*ޥhr6@^]Qf䣶I|!b?9,&Cэ`V| $B]BJtG$DZGZ3.:7GN+8+~z{EyIl'~J3~oNq;J,yChٷ{G%,qow礶*ZL m8қ{ t7+X#H~ Is'w5!YԸQ.=Js?:Ȗ'ӂ~=ZJ:C={eIP:=p O8?݆{xB,*T˂c&@UX o_@R;ݴ䧪Nx?^'D.=?aTǯKYԠTnxyz}I~%_?kOCbPC Ġrn$<5,ڛm.y ΗXԁA 8rqc;Y /9P@ꀲ@Ǚk\`5 |5<\1n/  wc#G]1wxg`^1syEFfx6$ݿUOc~x~lH>6ujǎc?'=Zl| kWqE/c]&Z7:s! ?{;Ewc8r,Dž Q=jk#a_,?q нwCA*Hj <њ "= fo/7G͎:fsi;֙8kԠtRp@l|L r AeB/XexJO_fKS r") ?ݶDWXvc>⑃Oܼ^$mX#8CAڵ8iS׬;u I7_JUʬ(&! B X|QpFb2=#ֲD;PJ=%dz;B8.9ohթ4(&1q~>H֭Tc%|Z=yN 8\1s ~t']`iL\3x}l+h?ػcѬm[w-Dj$^@WoHop^Dӧ开go H_ :M[p w P,Zyjs/_5YMJ͜O~eq;缇#Izۚ22mZ\K&}Z8F+߃c0݀ctomzNm@%,י3g:l1Ӎך2 )>ϞF1v$$t%4v&ńOŵr9^>D[:A 6@o>_} K8z6{ChXQ=9W^"~78fѼy3 SbɢH^1|܂ c(ʽ!&#+kO-['O @Ёxwjߞг̠Sg !aWҫ8ٿc ~?ܯU& ć7a@+"iOH@PMy!nLUP!tCS͋*KQ"UlD'NtTkgonϏ'@ /qk_O-yfLT<EJJM;BfsM5%((OYRk-|B1C51ͬW{mG]?U?]m"RQ /cDK'|sAz_IS9 Kkv]#ϫ~*EuzE<nt1xw>ƵK{Nl>GzWcP|=%oR었A7 ?,fE}Zx+j1~qx:u,7o:`E?<d cgh4>\=բqC댌VEȣ/-sb3xփL$m1uܾI<<?w@ѝSq5؝6\%p i:EF-0vb zL0'f26Ldz#A@PDi{u~i7rlq~&j`qߕoN>Xk-7hLA2?_.0DAA uRbWp%$})/$p]jCTDkp ⟋Zuc@cN7Xk9娙 $KcSFFw hh|}Ø =wme5 =p ]AE9¿YAPi.p/.PYXiCwNxr [b+)QqE1{:Iח x79Wve3~4;z&NWc]xW`_O>ʢ&JSUЧ1u̴Z-g>>I#n\WQg!rGy+ >䳃 kDp<V^cwN<$V - _[!>=jgDO}M⇐&A/Mp{>t@G^fl#2F<}U r6VԲݮ>œ!m]eڌa, ՀgaAtJ[|B/zVM}@&*F#|6BIWǷ=k΀~<p/y -Qdؘ:{g+8ƴ y8 "^8\xǂh</jVkEGL,Urډ{k*iK?q[1h{5h~U*ܹsn㸍#Tr RJ)U͟? W;RsWO>Qd oϙH8p d ']UPTTD'3!y+ٳg}Be;// N[򐆏=P'nބ$jk[sK6nL%S8Dc8No1i?Yf{Uf%+0ecC=rYO__|U_d.8c6enܸ2E?cWȉƿI̠`N3 $ڻa'ӠM7gno ܏9ygMX}VLi<λ9m[>HDGfy;E> ȈKݥ8@BK|s;^/< D xwvړb}y3oA<onF{㞽gr|q_SwH۴-I[@(ʢ'L'x<uAW9oɅ0%׎?y5CfalS>@\'a"y >PGk4gk{;w5JulյqS8ktTWƽ<\ApҢMϖf^{kEx ꧐Na8<&Nw%_C>].m=ׁ\эnz* 힕C (s- >c+yBy#:<y ݰA>c4eq.H7"Zy~Pu({AycVrؿM]cru`O|CuocCZAI Zi -ZmAuHj8"y ^=bsH_1u}BP)*nc>wdpˏ::p깑zͪE4$z'N,l0 Q \m+{?yCDQjxxOQ3-X}?R_Pm 0^簢41 WMMc3bn1EPU>"jÇ{s Ǐo رc:><[t+  <ot?z!ϼ\kڽG*gl, T?h] Ko)㘝!CL9:Li Mb!O% @$eC#Ń9@@s^kXd[jO-biEM<!@֍\h3j*Ioڷc)㏡<>!E?koci1,&@<'o1FcwV9z@wL5+,G yO })o)nfW,pLoݲӅyyZg~c,vs ߭qp Zc)KcL<Ļ/ ~Ei Bu_@UuE5f|msV]]]^|KJJDܽ{-[%ΰ`CkvsrrK ÷p.7`[W&Lø5K܈1rwXt>J \}b0o=9JynثW7+YoY3|>!/qq:cM,O|/T,:D^ПEe{6>T!ClaE05ͧ it ;EQ#^z}-}x_G=ϊ/iBQ^iEl}!q!$puѶDӡ>doD?\Rzև"'(< ߆K%//f_tzҲmr zg4U<ԋ,e,_ t2U([ݫ\rҏϚ GE;GzX6Xv,[LXM"?6f_;{n}><ҕ5W=3d9HV1jҺm])iP}P,kĢB.ehz x*1NoBq\/u;כoOh1 /mjj.~\Rl_pAgH4؝o1eDBܴ^7XruT}5{In| %stRK+>òkˢ׿/!BZA2u%[$~㬿H«Yd?/l۟Vf-hYD}.UO?)Kг e<VVjͦu̦}[VKt:9/=LWߔcx_8_/H헔UaRwΌnU/f]ϝt* q*.x'\e+A^KQ_c)ԓ4;Rƈ8Fَ1D·Bj?wϪu!-\~ M#M+űv6'[q?@LmHa+-}DH~ߚqS1n/qB]%ku tji~MMCt&ƯEz>=s6P2hɧ2ޚn% n=p\z!ۿ5hͨ|ez<7xKKK>:c>h{.3ᱭ<=-o b ;AnAK;`OAs#,O''ܢ8-ij=S<eqsQn=LjcZaIcD48-L#Cc.Ab 2.h2H^["(F ؉9ƢvcI]|Y9Of `?B}C B("l_tY6:z.^}X7ۃ\mE}}=g˗=eѰ>|Xl2$P'o߾!g3SH'>$ o'njC4粩Cbz1|[J-p O_/Q#t ԕ:ϝ;s7*%%[ϳTnn#]=ǘ0≏dB_?NS_^Wv HbֈyiB tVļI_]lN> A?Ytvlܼ,HjCΘ9$nW?0ug%>ˣ!FE+E6mGoDGG/@5qԨQ9Sy/(u0/4="!|}^2nZM>7ȝg~n٦**VYA/;O 8(SV!uwWw75u_kk:Zh_6qTqVo/$(㉉4;פ*e[Wۙ0W_woڃS_ٺ?gz 7QxBU[W\-+*wP"kK%<C%(>6.v4-SkgO(Q7: R1%x|=i7ǀ#tUXARbs?"= q~9mY_--۱"6>Wle/A>YSgM5/m:p="p ME#97DTpG.0rT3KΙb=/hscYJ @ęּ hC{M_%"{K/\7mXɬoX`ldt])x.wTsѭ֑^<1[9tF-cs!ܟc]osBs*|rTW3!oyQ8`CEE!W/5Ek$q)<^V݁ϟ|am[GK]}9F<o/_dyPFp|I.LA܏oSdLy[d3A|5qG߀cOX]3~%y{Bi;ข/׿kV92F~#2N6V`s"_ 耎]sU;X^ƾqKmH~Wch;^jS Qӎgk ztFF#{,_'_IfP#0;Q,?A-^ B݆[?Om8F8ƲuSVa!\܄gzg3o! ccܥ̐ݿpc>@n9ݳdj'KV0efn۽, $țP#sP)lǰ{8ctܢ͛WgtK_wԞ[| 0?ӺmF?cJD]pAwz*JJD.1Vy6FGQeiI|ȇ)==DA cqܔCZ$ߥTi6.a(GoڔL1}-$H?X{%\_[RO|ŅPW :svo4:5JgL⣧"_DuGU`~e_kf1s-Z y?|R// 8l BEitzMIII?s}{#B1/3ļ+Ȓ"T+XXD+' 9Cj:J{srD!|Exn1|dpI|Wț+?Wx9,AiE &HyHefYVV߮k E?Fk1= G_};μg=d] Uj϶L\YӔzK>2Sy@ˀuk?BTfJK-G@ޜ:unK%Ē ?VҷKkVKRْg=Eo 5+O35d;(|k WוP5v'D{QCLG| _ԕ_Մw^ 󭐇2͓O>xi̘1E[:\y{CvM]9PW'~5"#D,_54ı1i؟V2kjG-l!v8 8cLn9G]?}x3t9#h7װ \yrmY{Ċ' 4saŐ_d_(v$1^,ӎ]Q[[H ;=XԣPw1ڛs<{MwKqƝr6p4~yb}݋%mZG`೼ȕo(osԆ`.rU)}B_i3Qu2K־&c^ Zƛq _&Cj薽 ~'1BȘO%N=nnqkfcɚb]1;2,WWNcg11MqWߟD>ZBT:CT#;;8^,c]67|z١ȟ l6}dZ3H݋\&4_{oBz8Ĺ0\=][(zx-i-bIU8~.?]<Yf7w>N81/APi o<FJ#zy/dwۮx;MޘMY51@5bHD4h.3k#g(),?T<x~ʢFM֭|b!"ԋw~MtI&2JQDy5Nx®]uP96+f/ uNsF'BMg 9,P޺\ytx+)̕4pV,(kg}S:ϋDbrLQTv=_׹Vg4Tu񗒾"f4 xG!C>wb}h5-ZJΌZ 8(/@&p}-_ v% HZTv*-I=C߁zZ@;AR_4n7WO1OǸg3<{:P|n3&;__ yZTЯ$yRC.*ws5xgcER/ :a%m!ϿO?O  }& ~L,NQ$n-ܥ$SCׯ#i+tbE(3C1qȌ-5!=~e VTsUuGLz-{ {=rEf e믿eUX^LLLEa{t'VU*k|@ =~!SpDwnIGQYY;f aA'Z䖃e[74"{\W( 6?<r(*w=G +( \#\}1?MzR($؟̧ ُP? 6A S ׀ U5xHcb7TPG^,Zu:K Axuq$޵,zѫ@|,,ZNϔZ>9ӏ?p=OArŨ z8VnP8 NQxG)D?/D7v[ &nI|U=Wܸ`Rzj]ܤ*Sz t@ou@Y ͽa>F;Ž_7$QJqm[[0L{w<s:RAr7}xZwnp r>D. ? ^Rcߟ[ElIc$>+uL]H-WK`sbf܌SFZខ=U1~)U7覿.l6.6[tgnP͞Z}FN>N$[_ .hOBP׸EK]կbAoM"Fđ.gFljA+cA >ȦT FElϠ{1Z1H=~DY@kŋC1nf[mr3gL\dsOMII"Ӂpl;!1׶6B-_ (5Ƿ):&ԝ,}%k$Yd*ؗыEu!lsW'6vʰ-_~=.y^1.h7io*PT[WA;cHúP׭ҲIȻ} %G3ͧ pӤy4%*/I-R\=wlZ;gt>{-P ڳ -*^3GFtTvZ(r]ԚWy&OP%oG#©ht6gNR]RvgzuVj-bd/աJ&Fy+(omtRiJT1,^㰟m]u./=" kHD,*ۻ:Nޘ|Iee'=KN^ #*b2+Ncl'+4r8+s kJ[b{ n>˨W'`uI8CHJܦ9͋3#?~vnjl#,}s> 1߅/xx‹Ԁ:|}hg+\Eg~(i3:t 7O{qCÇ%@> |}++ESht=/Rk<5:'(B9e-/#mpG z bTTOg(9%p ows.WE,*!RB^wndxN9Uz.@ۉ ífXkE6G۰g7;󀦮D$;ocRv: NSLU2S*ڸU[{bkEE"ʪU@dE Z6!Ў'jyM Vmu/5 777}C$e٫p +iQjj;M]Ǵmmr@UWӶ&!nع x[e"~}ns-lc848n[_0щc(nXu0Cj4%2n/na߮X >Ux\$6rŨ CY{9IIaLkHDᙴ+vJB;D)K _ {Ej$2@E ?0s"Ʒ=vnur>־k,$}cyykj.PpqGX%L\+'N$0wX/^u&kRJtIj2/ RN>:$(2:9_juUBNy~p].]rϜhkCC8?ԄCnj.OhTPY^>CϳBc@6N-懑GjQ~ 'Wp!TA=O$뎼kFjLxw?sa%d2$:[u+bx>Dء糷/ cMy~wXǯBa<imP)9~|BTj=^&?d3˗D&)^LٙݠΘWSM9J7h&*x}4hc 'ka\Wtb.3Q ,Mq-^*a^-rSDڛܢd&">5S<}hˣ<1~7?r*~EJsfI'6u@4)vƣP_\V0]1#F_{gxV۴BЦ|,PzQ$]"G+Ӣzn>/ !r$3Օ>-UZpvVH t p=QkYo6K*8qpG1Jlbsd1sr}d렔C)< +Aە($&R1wcЖ癑2S;hZ3z%31-C\]O#,\_ lo9{@Dg:|B0/X+FR-H tiXkBurΕGR%rb׀<q ]Ѡّ|ԗ 14.W)-a>}+|·Po!ѷsgH>ugvJ&CԨi|BGC UѾ3*(>Yqo:<a[;a=sHWRuVf<ԿA5(^7rՃhB 1>62}ǫq'9Nc8QWBcT|+ÏK|)ģsxN5RN]z/jDAsB?UXXn[.W qwqR~A nU0Wah֚ꇡ_WyYa]x5!_W_U%30\ޚ9iഠ!/|;x~CytL}Ba61*{\C!k +pFr.]ZZnF'2<kg)}cuDD+wxsIww#pK|ylʓz'cݖDॡ'ߵxyR= (vMy={]לe1|:f; %!'p[$<|/O詐t{"혟q ||1or-ASq_%7>x"{d퓟:qx6~D />%Rp #\~+~@*7FG|O]s|jf&@dYЊ/jnqўY:C=_KKDEq]͇|74 y{?NbHRѕ:ɐ{˥J'Bbhֱ,5,6>=Qg?r)q0y(Ɨ R>DFdflfbRWaF_ѓw|Eumm?:@Wlu߷b>lǺ"nנmk/|A?z7Ľ[O{_eW^Q0Џ}^ D v`bT7wgg7x-KÐr#u|sϰǾӾs3'u/ii :cbڄ_cXVQRド,̛Wg8 Ś-k_ q}O+z>_<7y*܈r/ RϕFNOft\CwT_EϪUڦuŒZ q=onx&.IuRǠGP]?DⓔtdWTЎq 25!q|:0:s ٍ8MyFPbs|cՠ{zu` g8wj zeIqJ&< .O-5&C9x ٙ]tѵ IEӨDuL2[,)H]{_oq /@}aB7_`]]OG^9E?V3tj~kR,܇etIv E*%'UHrrre2 y%h+/Vzo(ɍ;Bbfoi_:_o- nc@>LA<i~cQωMCd=?nnT_./yׇ@~Ny42d/] y4 iu4Ŷg iſWgg[H1+5uWN8714&8"5|#dۜ-Dݿ%v1# fv'0`9q ^w3#%.k%%&kJ2Ͻ^PUeo!t!zO,'&Χ<7{u52c x7K914MH5d'z|u8%~$NO(ΉrLHJ}Sdx`|yɞ#^nIk 6HeH׿^\&\cT~K΃}@斖,}xpWWe(`=w#1}I167N,s7e* n,ϲr}ovǞ?LsE 7z kk%>9Y仓;`+ykC3B?i~Pwq8uyknK?G]p!X/2>ii_!';{>8?^,R|d4s |=Q٭r51ztg= :OayWU(-r0Y.恣/LސGJ*ATUz[P(D}WRC?_O0粣F` 8])>!F#J Csu&|pP;胼*?ȻX.ԣFD|+ܹ  ]_IvJ<ohib%y23&Ä~Qw{t;|  1Aa~uJ /We7R)$]FYa7<"㙔Efq)<,FӼ<Ds%N79=pznI%2pYMzQCm:YoOɑ ;p#T1=_W"xu>>u0<Tq(BbJl8=qSXkk)LOr?9ABybT _t{|x m ג<?c^ <۷MT]-b|quш[QP׃GY<cV9Dsޞ \|ivÃzwbBnBS^n & !ϣPN 'nQ ܢhhKTc`njZ/t_ti ?+x?R4B5/ ;5| d}p|?u.2pq{}}=x_v巶%Ov!9"!~{rv eP_u\ԩg:oZ"u'<39nGuFgI=BcGp$}JԐ8=e+KhY|hnq L6䬙i :S'TV=bwߓܢTOKH1wc}˄z8.f!VN$h샮e&z;Ý.+<8˃vc =؟cl<o2 W:8ƴiƃLvwKDAʦ& ^--k,x_:u*q3nAz2X `uk^/n!:0zܧC9iXݤ#;cZu)a3S`T:CcXX MI#288G*nQ=G*LtZ>OD}oIXǸJCw}ʁb @q7WgY e>y7Nadd/퉧geJnx$Jub0ye3J\LsUðqj^@覯̤|L"h6r.;1222_8r0OV;W^DIIũu]8/:GJ!pyNku%R ue|"C^d ~GqqmFHnF8ػ(Q@RE/z6qx~C[W/nxPݙ9f+Ty/B^ŻO^/oE}s<6wZ-@֝ͮ[3oC>F~A_ucu %}{ \oz꾌h8ryԍ؜.uPuPJBZ8^ٟ'y_" ?Js9MiTj ~=fx=^) 35Hؒˊ[,xfA*nxwd2.CdMp<>^p/BӥLnjJ>Wa@K09ݮnIOI8uS*|"<s>YC%<̣-H[MYy6޳CAɛ78!}?Рv4t'W8ۦ/5<Zsj6 $%?˟9(l 8'7#jNe8nF!|Z@ ~"#8>F172"qܨiE[Y'G;װ< >;-x =~H9wQCTHw-7d&S)̎jUR|||git]~5 xB8 Og {x/&56R@r_B_~meY'x!, >+$}e{^͵s<X{Zw2kI&e"1<ݞ5yB_uUzʔ<Yem{yQ>5x#Ӈúϐf֙2Ag}6@27C 3hVL-rCJH0/}~̙g fXp+yu˷غ̵hw>~1 #|s >vl'-9FB\T,}y;[h"Ƿ5j .fOtbF0ԥl38nQ|n$߁pw -.`0%b~raDd.?-/jy{Yvԟ8ŋ?coɷ|9-χNhii~ @[Ձz,frF33d%zRޥ;ۧڲ6ך/acJ3b/9TLLJCfo͚, cb<g@m1pYO.4 cMxM5}CS_iTPVV6fDG^Xonnsb2x_sN~=phNҖ/?"AK"X-JCՕlܸ1BzΚ5tN|s opt?|'ZO _T7G3<Z/ջ?_ҘΤ)i|i Ӭɤ yFSJ -9ҺݳaWE02]*kqEx,\LJ6[@]Py~PuPWrM{6;dR Т(~a&"ѨXnZ&O\Cԯ^p&8;(n~FgCy|e;z_ˡjUHR<"u|r8oU@ <k d;{_J,c*O~ CX{GYSXS_QMf,FդFZQug/HqPp|ZhpkzG<9%ĄcHI|)x~9C 㦏K}lWqe?Rr&O<(%~R{~Nk(Jr2և1@]0qb?q@=ɾOMbծ.ovk@]@J>+73uЈkS{: 3Q |% c _Ɨgoq4ԑh}s)Y̧mw<W{r.Zsܢ_C.> &gJ rNS\4b붌a lL%7|,ץ825yǫvFzL_?s={Ju%KVO=(*5o۷zʘ9nYL1rk9Fd=|q) ^/5)Y/s( fPeeDa%G3eUΏfeu[=fS#ا}asT^{ VMCaa+~*| B(}ܢf@G3}|2}% 5 9L\̈́O?U?ulܹeST>CQGΜBI_gjơ~i1M/DhƌŻ>t|~rb;Z"31ܶ #3>jEgΜ!NO)\~c%åqF-㌈r@Mx$>l6W-TF'.y1W"=; oTL+deWKR1j}1IFep$R2~\Z4⡇U#ݫݏ""Wć8l$o}:cW~?\{*gF3xyk&֡HcɶJ\Kt$:Ym6LJWg4ڛ;tv` ٓȗ_'JB'!S$ myE1臻A3<Tn 75ULEz{6!>p4T`P9=6K)`a{pjl:wU|`y8A|<9h?oA$#@88tn^,xcb@ƀ_@KPk='!xN? Et6-Lћg]M<1>G8Wy}}bϩ-SG5id~JjPcmjG>s~{Ac>~VGbS:9)38? Qe2$5mc*ޱQ S̉cvV+^_L0ǓA|$S6Cc H2;%&Ǡod?ct\؎=S jf4eeԺ:EL* bb4gZAKuhUWU=#IQQa!VS=f<`dkTcC5z4 5\#=_QHz\17 jv|:-uhB+u36v7xEp+[stASDN3>1v?^*ۡ0KVO?k> *?EǘC1t:Hϛc$ލ.S1>]|ުJ]1wT(5-! ?7ik׻x~kF)c[{B~ÚMbccrdVW[p Wc\cOBqʬ+b=*fіW%ly>[v)[a]\i @^xukn8Xx?Aj<& ~L7$ ]Uk Oj| G0TSR@o_c4pҩUOTYQQ]PD|% ûj$Y҇6{q3Տ?8j\D廚c/TA#qk|@? _a#Y1:{0l FJ 4-Cn$GLP$\<ͷԝ9\ SiQb{?8/JKg[/X6ǃm-/t4؋UB*78r tDi8|nZ[ۿ(ɗ%ޓR!uv c:'v-#>&",w{2:z]5,{*Ay|A+K]Dyd|Oj J҇IMStvc߃Q|b8P h(#d~-'X.i_۹Siu7Qyc^PS?njRa|8{DMp<#^`_2}5(v[ƏzQ;Qj2oÿ_88F8Jigz$P1j׎gJ*%蟟egOA݅W&[3[2 73k8uk\F!S*$X/Ech# b8$eތrg>91ou]ȑ5uu5ˁ_I|ӓmy:tl藇1VA4^ c \Cx쾥F? .OQQkR1|2jEq=OU?t;V'R2D-:͂ŷ}B݌vC?v2 ׿j11s 1u8F8cb]IHt<Ƒ-;THtx3~GZ<1775H^s(v .;|~aܓp ;yCԄ[<aVg_!?t]-m+6Ŀ&w@~hbv0w0 l6[n*euj8/,C>ԃry?~ߐ3% RW@'KEy<ȷ3Ei7dT ю>\Cz-hf ;L[v~A7`t!-RH}asNG>ٳgL0ӬV%y.O?h 2Ϸ[C$<_x܆ !$F/aƓcWkoc8y_2$3TWE?;BUe⭝:N2C6)1ko:>|iT= &kH4+~D f?iW+XEj1>GMSQȏ JR/y&'\J.8аy !yFEO!|!|[P xf~᡻NAAzv|g[_hQ9u=9΀P<>67ܗeLT_y 7?+ocd-]v1=ѷ'!CK{m )XŃrG"i+]'(O ckdɜn\*FQV1$5OVh`Gu/f@2܇6P7ѸgQ18e/yWkHX{d$TW}9 4yFzm; 60<2y4,O?YL)U%R7R Y{גŇ?z8(N'x83wv[vǿ챿%*Ca㈗>펎! _vmwwrƱ 1.)AFKKk(sB?Ơ75Aoȋ2GGiZ=pv w~ΝO_/]YƯ}3ԀO?}O a?ĀM^nA#Sߓ.jԕPU{u6X3\&!9p=2}_q`|&,F PG+8Ʈs[bUg\dBIH? 4mH^<@o 儤2䬝< |KaOs46nsah[H[xwm_03zւ<K(3^g9V]quƗ5<Q-q?n2 u*r }q +hL'v#$^שSU%C$61qZB"kGc4%!^YWo-z|VK~;F,y'(?=m'?j4y@k$_ )›dN\1Y9YW0.y1H,:N$m BoݹC<) ۰M/?ׁȑ}I|{/bZuu| 39qkz"vWssŵA״"~> u!J?<1.<qq<KpKN{o#G⻽AAjP!O<<+WiOWٴTu?iDŽiO#!݄[(gt5\34*5zyPe+/6:VO"fpPs=sw8z </ O]٥'aP˨r^O\g0c/2\lcp:G_4j~08յt9Z1m{zăxQ#}2IGΚz_C9/XlKj?s_Y׵r<~cMy n5?`c2 } Gr:*"'ٞz{IC)nFVakL`#:>Yٹ &L&\c!5׀9: U_GUBZHӮ,{SBQ[x {ؓr\դd Aip\/çF71ӀcNcYG67j2a]o Q G{\DD:~|]^1=}x(kM;"uF3|Cf6WY M]߅7ѐ]F<<ǀ h]OEB*5=e>@b,C 1Gu:϶/<79Fw_׵iL(џg(ǰ]uT[k&+A|xgEl{NLqW#-ujvcz<L]bFu"s4&TJE8^7Z/>Q#\['ז 7R/T]Ǭ,AIyO{Ok'1EǷ-Pϧ+q Phjn>+ Ɉ"maoBxTM@PwqEk-m'mpZI&}3<wUsꯈ Oaon ؔݧk/G>5oq4@Y;p=[Ϻq\xR1J a!yp|Sid{_}Qyw}}1:z*[1x]zy:g2 yLz~n:4br7Mhr.>7yՀǗƤz^v~gPr>yhT?`ofJNl→c1NB3/BT]t2f$*v\p*ޗ:Z#FcB̍cI_q`6 Shqgc|Z 1E7k*pF'\#gņB!Qmсg–y_~?nc9ƝEE.GGu7pd?殷U*+hk|p;. '\#tG_yg"oTY.}D:+yTeϛ(<p"=?JLYxЖ>͒ U5p8 \ĚEN֣l^| A/kk<L"uQ(P)|N |aHoX!Q\ѵg=n K: ( %qp+e2L5Spn uek*cy/']<kߙ7IdQ j5d|1 ~1_4Ũ<_j--4_ƶ|Tqyō0S<<:UK3n8ߟc(HvGcŅ~'sЍ%̇- /sђ| j`Aw4>靕S]|+ H,%;w&1a驤펽\j.:.g+jC@_?%v\EMd뾖[:_xf] o1S7{A? %q׆_ x9 [\!/l!>b5|_8͞<v5u Hk8VCW'hr;}‘N'"dlUQޗfsS~]„Յe/(`\wɩ{P^_!yٌ(ҟ7BaPuP>fy/z^)ʮ[2O!novoqHjLEl}iiIAlw PU9`µ7 'ձo okySЏ$yY}.mVgh(:s,ٽeԁX??s sװ/;<-2Lk B&1F|}s:4+5Tš;Ƚbr_3hQk8!(b%Jl D ˯XbU8#yY%[812(>+9m^E_|Ӗ-47>1벬 kN<7f9;!_ZuLuhV+/lv VOv:pX!CՇXBAs'-x-!v?=>^nư4mkL`*]91TQ%Zo8o9F]Lj'i?>8wTj,Z5IkӉv&p׻[{1B>syp]E ERN#dĿ[ $o&cl۩SA;<wmϻpF<ߵ14c~%g(R55E+܍y2|^?Ay"GP=6M>J3laH_16r {ߗoY\Tp#dz>Յ#3:EH|Q俱8:1*ԁg(eFHXqsf\s Lr?ZTr|* .7 %/XDO<7Rj`{R)N59%Mkl7~a: 4T(rH$P$ ڬ<ߢaب` -D<73I#o1f9ey/K*<Eݹ<Y>ykM=>ɜXȵoxi \1 }| ~WA \-#Ep %1ke|QbJ1mu5v I|z^\o<z}uPuP&հ%.x^9%O@\QmUM|B[Dԭ_8a]Vm.ҳx"J#y q\w y>x>]N[DFD:-e!\ÓmH}b$뙪cI2=c/zQ*9ݤt[|FN_3l:-zo]KkOwM՟c6 u0M'~+9;jokMGe휂đMG{%Gx}&wCAA#<cy3c^^h"O(c썎T4~+~*$NitR|o$R""smY!(Fh)Wmq<y"*ԔZ p!1o?hii⸛p+H1}#NЧ--]Oև{ O~ Պ|s7>nѓ/ܓ/oH_;0j{:~Où_+k׊_z0K 8kvJ.ď6N{eTUgeH*}8 MGn#| Q}}m _=O=wF#[ S^S/kK$C?Lsu)H__QP7O=m]VVY*g88k: K%ڴڌTO)Я!gNm>O0qmΛ:'&^ؼy<R9r{a0ALFtGwϥ/mqQ1q~t-h?JwQ[< q$ +'p^,ǸF#x4?^Y^I󗮊~U"\Ì,;&XO/Ft-m5qOk"?l0^r ܇ #[Łūv</P{mJ$$X.¢gFz4[kjfSY^ʱor (]q6[<x^[?8fNWŚM|)ฌy;Z˧||$7~&PbOl'}KNmPUؗgA\Wƚg'O 9&~&uRyViGy>ZL_^)ǻKݹxw?^^ω_b=FyG$ȞqEYiTuR; wCaT]uPuP7(ũy,pEZ* 8A!ܢ q]{ҺݳQl|ޮRj?u/G躎O!?v:;8FW :+()*ξ7e43NuI=4̿ur<DFy=s=ge{% @c,zoJ^JN1Z@l:\_5\q 5b{99F*^W@y \K:+My5SlT'̠>HuІO9U%sBQ[75QYV]x6r 87q|_Qoyr>~* 1ֻcZ _"+Q4 LًFz= C<F<ɚu!i5͢RN ,@VJ:x'&i.v!jDgkʡ?ըcbLj o"yZ̊gmHjC_VVrl$3gb̧<T@DQo]p1 NQf@ՔɐvyRi!HήyRpooNNTێ̹#Q]8K9k7C.~݌߷*dOů>œ D8͏TʀE  hCr;A]FA!w?< z ԟ1x_r1gZ-_3@5>F>VLOպ-THa>/2(cvKQea.ː _{z{H87"^}^l%[ ޚ%0Og- BILqgH,doO= {c;CM,;^[lNd  C[[Ɵe-HƒHr_bVUv6KQd$U! dYȟ~!CПX)9Ƣst; }DSQj!JUx:֕ѳKq<?i[2@ſD7(׻7j(E^=OWnx b n7-UAZD=֓ĭGw7ro3݄ 7#Arݤ`ǼgOMw< mo!?r$=+yq&iaGɉȵ?`Myxux:+cאznn%S"؟CgCQkkV| =s|^ŃG늙;%,d2ʎ_×䊔Bvm=ɾ3z(hvbˮj-Y1+@ ]WCܷE8Fc@~/w>1Ħ\5 ]ϲx}V < ԏg9F]e yT/_ '?ͪ|`;!}eKLnLV(*SggVo1"uuk^=>?fAa|ttmdl[/i)Z5+2v̇7{Ӊc\a~)z,>Aūq ўK>IUJv~TL2|6P&ENn8졳{mtk^$3e~N&syKjG,\]׎=_O5^n!6V8qfl m<|p/<O r3-PQB9jSm=uT.H3* %XIԫ[J-_ccU8w]jtB2ٱ;C>ߝ+Z[&y,O&PJn޽U5pu{?yъ+R&}ƍw?<5{- awgs0:_*+IT$'% (<ctLj*矁?Nkux0Md0l:{]O~][0*=I< mU_<7]j~?ioz Ȼ,O &bX꧇ij5by/4 x]7qV@+7k@^v{x}PuPuPQc#rt|)wí֡.K./ zSfhQﯣOS\~P't7$s}ms>| 8؟:'(K}YYAsXerڐ?HhTS?5Q51$/z깍u% e'</wq)\\C5LI5[O `"?)6zğ))T5Z"QHJ?~cw%+*CrEBǨlM[_-֓;NПc GηCb=\rFeohQ֫''~y[e|*8wÿ:z8)L#܂- s!Cv__¨,>wuEcu_ 3 t{ff*U١Y͌m;R32wߋjљc#UB`?1օ&gW&Fnf!~>h%kN u'ۨEOܬ #?\-ѩ+/`po.ugf#<`<LF#kvx%TE&ْ L}"X8BInt/4WiW:pQlZ2C) 7o~_9^>Oˁ_YZ>5+[|~5MIU'kJc3{1?ϧשfC)OrBSeZkTz5(F1Rd2urz.?888Kx>]GS(Aܑ C SPWUW^WRNJzIZ]]=kx0ihAq>޿qkؿ4`]%ngDO~!jkMf/v!aEI}gzEg뒦-G5['U{Z*猟?j!mA.1LzAAAI"1 /D5&u\:>PAik)S"67ND6~:mBn7 )'X6a~Z[tN^||y哐*g_- g=ӟ Ċ<:,xm8N_t_шnzn;sH(סݾy5W h^(8$SH=~| $\^J5ڹA騬oHk|rQ.vV~̣Jnpr_O덺U- kVaj*iT5š<[zN N2늋him~$GrEe:=`](CfxC4zį8Nk\s`>}h~[PtB7 zO yti{4ٰ_bg&l8ga*_1׻Kxhya@waCY>2i%VL.\=F%Yޟ(ɗ;^AR;l"1>5S|pK11ӒGAūQL\D!1hRe,^gɷy~7X*Tnq g_ YZ/Hr 3:e_0[#(r>c3R~54K1ԽQ2r{kZ+7ֿۚ4Nm^5k㡯 Qre,C ƃ(ض?ziKw71 u"[n?/RK6}|T;-Czl{9oСC]]{.bam~:29:JI94ɢrG34%%EQONLZ}nj|f{7cU?:.àR$z0v-1k?+v;CTO ,ؒ<╈?P /gIsx]kq}o_*H "qw{y~J7"JqFxB]cY· Z0a, ?/Գi,|M1i|XO  7"ќ~@@^7޹DQdGDvƵss-xdӱ::vVd4/"bxA=*(V \,2A-Xt]kq<3iofwvvvgv>5~g^/Pfbx~bZp\޶E_z}}+ϨԐnŸv# fQ-BCte\CS|dG)_r $ h!To~YwFzqy/;P#}S}կ$}ʇ. B%rUq΀xdpvUaqIJUJ y+F3rqza&1n^>w7cu9[N:D=9ړG.1,Xq{okC {+zPh~qϘx! g | [htz3ƛy Tga-%9;,yΘ{8LNg/q@psRc,)#nFu x{B7Mp2<ukgwg[CKFfré>'`[{n&~B?nf+<"j3ڧ!ee"~㛾})!f9Hm)9>C^)|+A&.Tuy-֧#Jbڒ!t'}L:jq9s<dg8\7p:kr K)ɋXm:DyV"wh@ąc~V8 ! _oAa#ߔZ\_e9ӝpϯ"`&0e $7֐0r=ŲSWg@V ۷oHQ VWmߞV#^wstw7+.s >X{1o~GހʓG%n<eJ.}|*nj:e,s|ψ{}Ѝ) 6}a;oCszի^ꍫET};= ]MbPRKXA A-b}ykzl 9qseg]Rȡ/Ԑﷸ\vK#8Zz7$!ƥkg(^hLQ/R@8u+w4EA1^jn8ԣfo&O歖|59Bs;$~hC;+T%?F.˿2ԍ3J~^c庒!d=S?G>εI 'ض>r=}`v( U3篥,?8yG]di`UO@ϊ#񲶲Rף8KwW5RwGrC[0e\1RH׿`rZvQaS ~?ʟ1]7c_ i#ʿ7pP 'ocx4aXYz46Zv'T._~:n'XZn%Ԑp394r=깛189T~p/z|B#g P-{ ]UYD{_;*>[!j%`ϒF)go(d 5#@(q Ww>b12rTg`۹[^q T)qEr*rֈnnŐS6b}п5f hbzC:qRqx*q9~S k/Osd Wӑ$1BnRY=Ցc>sӖ`yy ^<ڤ%R~qvybxR_XSI:w,,?ї{'}z-q? /.N`>q|' o<yr_rvϹsq<{}w 6Dp]V{ e,q7Y1HZH}H)^ n:Hr6@c߰R\XE< W$^= Kǹ~Tx|O</[}A(ozի^/EV!=⸤a׵J4r _}96ő7V݈en4ZVS,U ;6~a+6`?^ +``gy c m+P8N-=+a|׎Ò7>f,;pKz?kT,q]&D]'x{h\g\㻱FʢI&ˡk£JIPᠩrZ77OL'9?vmNa3ːI:pok)&8Kψqku>%qTOzd/)7^'Q]et5r_ms$wZ/CZC\M[+J~;g[ H1??a1%Q~1 #JZ$=,g1!LiI.G\97c|(s G 7W1WROJ]'1Pc/PSS&振Q؇G}"*w#//uLV>vih C<ǧ.~1mG$nA^W|Pkyc̲h[j;mM /M卫D@1nii~  ._q^u1FDl&AqyA˛{KS Q&0ѽ="2 }XNd)^CG-خE-G+Q`4ĦeQ8)D.qO6d.ifOϞpOoA`Kuԗr*nd8Exp񺑟DAU~Ek懬lE;rE NMc`<! gp<Uv;!v$o@6O8FpYiPi.9%Xm`{?N) />wx#_T| T r5(S#sҶ B1/6NG>'~57Ux[9{Lx=׫Ÿ.zwjzի^/ OZ gj=<SpTIY+(wP _~4`?A[ #.W8ε{~) ˢ@h~TRF/t઻*|.a|2?g@7jYA]'U\r*ӖqѲ.]WJ)rvu%yzK>FYA [ԋ!~Uh S GҖ ŸEo )~v4TDts Wnc81s;Ν ԕ@NVѣ+n6Xu=Jeu+hjj#vGj_JC^,[KV+ Kz8 1y9FGX!;).ߥr`\m-6 8D"g U d/6?bMReGnEM(]Z;ȭ6LN_p \-t-o-.b 7NT`[4,/f-> v ~Ûy=oK;^F}_ mB]S ~Vq qUL͐DRxEnbd""WYdzVx SvSTO5_e |xn{~RHu86\q\Gj /jZC<0-Ma:&N\S篙 SxO ѳkzL`/۵=K zQ_rd{ݨju,+goX}3Vms*YB| i8);ԭ:!;`\*7in989#5X"Hu$n3:~mnxQ ;zn^H?oI>P^؅yD?888| Ƈ;WU~F0NybqJ(hdl_ܜ_ r&3:o~)Ɇ!Mh2f!Ep\1"" ް8N~+9A¨;bMzhPk}Y=hheGFY"A밎tjJI-IⰞ7c=I^'џ9 G&X“BevQ7}@9xx-Ui*sW+ ox_m.F3:l둽þY^0ܙ8ϼ1c2JB?cy9F)N_ͦ1:}"`43.7cG6X-} C tޅPc1n h91侫N8uRr#ƋJ_Sx+Em\Z;cs-vxLzUu%f~v@w7zGN))hPyq^</^#`ކܑ{x8w澋דo-T\Z.bP8YKFAS\t8^7)n[(͘gx<Fx]11?:a\{^'~іVvNњ1xWpW{~-y>4y/f(-*c#%~Iea[ND~̽+sPN}JODEEEY1xǸnP\u3aJMۙh |@/y'LSƅ~} <^WpMkkέ’?WҎi[sA4zLۚwshΒN);JK__qD$Ջ}}Il}/HCm/>&YeC:isu$ZDAND .qfgF5q'Y- f侀,&fM:K3FkҔN5P3UvI@,TaUzի^TV.ײ"Z?N=_[5'皛<+qa|ʟ㍆99&8jBg]F8EQ`)k.5_d<W3Gnk9u Q,h.Of6Jr!Rj'τhٿu[y/<ó\id请/$Kw}mDa %Vq 2ט/q m<r똯ѾdHcݏq ]?bԉTL :|^ݛf&==1855\ Xjd$PFC/cy CZ$ӱa\O>.s*b]M'Wo))1<4NcWLg\/(}f.zn\hO(C"Dp#֝ڒCB/_A`G;n Vż|~5m25|ؔnh`۞}Y5Q}<o9Y)b޼f⇨U(/\1֣ N<#^GM!ܱ#Y労 %)pQW߯)uP>hAǹߐMTOGSCuc ZS:c8=굧Nvq,G\z&WKƌ~ P gOc5樨XJ;ΫOvbB?`5:> !YɹaO$<s,cBMs.9ս fl\93=YYU$f%n38n0MaMtá!X/;aa.8sKGhd#R+>?-qx=?T5TZP(-/̔SSzyseCڭZޣkO wJ~/ㅾt.k%UC;] ,{ի^WZbtnJ!~D|p2^kp=a@Cf{M p\V(q˕ werF y=@XxɆ!3}TYJ=Έn:H#wB`qz U <r n~!3BE4 3(}0Z?_k(Pr}1loHK3yX I<kXg9s%r R|{h,5L=9XeXB5WXk"(~70F%,nj?/0`4ާr=2믿~7J7gffw޾}/+}J9ocNup _ԟ18QW;ewg1rьO8x鄖_ǠOdO;M}?Kn V ܼAT,ZE`̢Ґ[=5h.QF>~~b;1Q=`-֝Ji4,6@,+߲jԓUϱ9-H2Wη8N$$n1Ra$?L qH.XǡhF)tr}#ϗyW̓35z^מc̸Q1jnWg$A#ƍJM:)>ϚLKu+@f}ߦ L=Kz]6ftMnb qW7%vΑ[W dCc8,2ϪG0>ᣵ 9n&p]zMl6"()o|Ƣ G597Ǒ y2hՊ?3lZn#,.焷ӖX>1Bxc CyRYa'Tߤ3/-6G'lGhJ"+3 q)y23z)jwqaA {R}1{A|őE{ߧbѠzMhW/ {ի^Wz3U(^z> u;mu/E~!$$yw[y%Ի\5:jC~! R <L_/k$6WBwJ6 _)aVTOWuAa ¡0yƟ߅Jf ŝkHk㕓u&eK5vXp- a/>84֓ݴ9 I?+, Οɧb羅#ǰmXs>׈Zc]N܏3O#qz]e߾}LQ4/mۓ6N+֦V ]%ayB,H5Ʈ@%]MjM@eل.ΗS-*/O\\vs/sANepfc9I? r eOw- ao?09?71ޞ|`T/B}cWGi|bkToã+(NCH?i%u<K\V=hyQ "؏Gg#[$[D̒?z辪~l#rv܂OL8,Xv?gҒX̧7..85}:r'74sC/NW$~ޚާrkbAc->!J5(~ľm[7vow#b(\?:nIU^BɞTBG7k#AG%b1ѻҙg2u7sҶ_W^9&h!'MzV[iѪ"L'EZn=IssXmm-:D'<&R8 0rԩ%{D-01rڂ?eo cCn.jyPٙqHMqWqDEΝJFqeurPv27J;WtHzի^WD>2b.(KĈ0+GNm"Iy6g azxbEe? (*{zV^x#i/?C␛>2V\ǥ< /z}z`^ȟ>"TbޤYϘ ɰ?#wMGG .ڴ)οg8afXi W4B=cydc'nNҍs gB{L1ťK2' 1()ɠF.^mHKK01tIIeb\O2HHX5UM1 }撄XdKJ17osC8큪\T:K1 N'пcm CJcSacWЗ *'N`wiRef/}b#[ G0KJƀ[+ãP` >rR͟u2x2}]k[J|cgҗƛϱ [Y|q{Rrrm I|n(iX5c_.Օ#.ԏ8F˵9Ɣ) w4I/s 4COO#̛7ilG~Q3nb´9{sr K3$W5'lt|99RP ‡׷Wc߿b}0. xP' K^078!n"{F?rn.K'7exi$T&MC}QԩcIx@-co; h&Օ8;>^I}Vu$Ը5Ʌpu|>~ƲKio_zbRk CzOhԷY H53!**jGlRܡYK u#4nwhNC[ 󇼖9_0ABDh'/ZϯJEݯ9*iw[5PWOimyrڕEߓe -_72C| tޏuzի^W+~8AAzU( ؉Mfl6 G)lބMK8-7 e"ű3HR^%/\_I|Xۀb5e5émoMV-gl#0cUdjgPY2a!~)UR-h"e!-12#k~Ygۗ`qz:?KNO,N&Tԣ//D~%511݇e&:!tAķB5ʼnȉ 7Z6uby555+(X$A|K6iIŲ=>β+ Ywpcl>X1)>K qehwH&dD(p*ӑcHN9G̬BE <oEz`;Wx%>usżycrvyc%G\c[\\7{".nq1쇢}111r^ǃ A.7zJ1xcJW,?Ua.ҧ"oוJ͘]ûv:@)ߟ`zwbg;f ;WUẒ) ?[dE)}LQ|vhs#{r)7˼bxȩN},erBJy?;ZjD#<M-yp1Xg8 HNj} CjwaC)7fb|kDTD y@6߃_WڿP{(N&;X, |xgSDN<ftwR9k)~Hz6Xa qjj)W8.ȭE%^_*K.+.+%- =]\Qsgzի^Wzi~!`0}'γCL,3Cωj̭DlDCUܻxqQ2lUJu 񽆄9R?Yd| ␸ɆMVK2Ҳeoq֡:BkY+ёc4k dON["Ǔxrsb!pz7GaswҴAf{3s$-t'@jy9f:R(GOc37j?NVX% kLAǫmŸLni}Hk ƌWٌ2ט`KX(+XWw}L^8m!}5<UD5n^ Ǚ7/[֥KݯQ!r(Ǹcs'6#/qrQUq1H{#p Yc˳  )O9l.<pTS<ygFnQ)s R[D};^A]d? A[x/pQVF>essg|47g|I ,I Sc'E65v:] ܫ}ISb4ק?̼1~f/˞f|xq KZ9^%Wr+8Ơɑ |2^3.`3yhϾ8$OIy}*xo #@~{zpzf֋Xvɬ o4#b?Y=wЈg9.l+^b"ScQ9Eym/ \xQ=lgCk>k7U<VQD;Z]) /ߑPؗ8h2gNV?vѬZ@?i+hz^''˲:679Sgy&qeUUtϥ3ߌ:7o}ʿꔸSkq!B|R#/J!)?cڸŏc^؝ozի^Wz4՞VC=O:LmWL  j$Iyqq;6[8.Ur/>^|} GAP -gh쇂}ҩ\EC8^R(=>!תe_gɃЫ]..CAH!=9Wcc@KyaDY[Əe(ݾO.wͯ^5x~~Z2woyqR*5k+?GU1yE{!9uMʳ_yP| _TYd!uNkk{/-5y݌q?r 2|>hjjS/ryOj4HVI8Vۯn/+^Y ]eק8}e۷1 P#|riM}cԕmӚ!\1:]H<ޒ-2pK̦9Fn- jθE?[<5yrFqw VS}ߵqCGBZ' E>i㩣sƾ]D5 Im`˄8qXbS@+pcpP k6sK߮R8 z( 3X2ðБ} x8R\I`h C(e&ڸO>F<[PꄙÇeJ&<?իgdnUMFԘ0^GMIq3wb3gNz|T52<F*l3uerB.Q<~t<>G/Ǫ-@l7Es+Xߋྞl xHdݙ P"4KIP¤ˣrE}0r KV_A^K33Nj3Z vWkxfs%p bݩD\I,;Myd?ktT Rt\h[*t)~?xrc ҫ^W_BK9R-a|O^)|I~q} 'Cn?X,|IVŏ%! €b88F"V(*7uZ|nf0c;z'p"G>XCNJq EΕHEA5֏D}+/kǷ/ˊM;z1(9Fü]}l\#ב_rSH!n8`K AђU芠hk{qkv+*Wp Q/luuLYXC;?NE'~8cu{u<r}7 h͛GY6GG^Z]ɶc|[vcr-${꺒qS}>(7rNFpBY<2 ot?9ޞL{)0Gn1{_LqZ܇t[XY0=U- jrEr8oOgjZ$k3IF81~q1!l!1cD+P6lʙsy DK^aZX9w7k釈^w\p * @Q=-mSx_kG}%8].h(vd ݶrauj1μR֨{3rO'r @ttc&ϭYr :7[g:/<\l~:yM ! p8RZZ2őreBChFT>hs/&^6~t7۸t6Iӟ$=9vx} >#q99rV䃎p{g}B)F-._Tz̉Ë KYؒ/8/ٚaN'^Wi5j8?y5}K,rQt9,@U"KN5dݪC&r49Nt'Uzի^z$LcFahO0Gvqg+Eg"i^ 1_cI}ª =LWpQˀ#V+q?0aNb^BtI:8Wj|qqIsl->rX9Uuq7ؑNOR3JFOEPhzy@/cIH/s+8r(Y!4r>zRfVHfq+>?ӷ\Q1ޔ/jdnc6A۷ƹuQGʑ0BܟMsѐ~9{eQOrB+۪<R鼌c?WѸ??y͵Օ֮qڟ1H 47% *6QysBFG ^:`#g?%;yC- Z28 (-̫}#<yKiA`ŎipPk -[I\-z9uc<Gi%c:0sBpsKdmZvIkfbޘ!!X%|). WZg@FsznixS<ߩ /D5qysCщ8_?,}'F[q\}mfZ]0pęӧ%G,GUzq g{dɡ|ڤځ/H}$S}*f3x-JR؋ƾP_*d}5jOrwG(wb7~Ap>~Hx>OY <<v̳Ņ`u{߉khy1j栾HU?B }7c_bm̗J_O0!(}5&S:rO(7Uzի^Z`8YӳٳsmII[f_( U4lRJ}R$."e-&J)ϛ[t JAC V>@C?kSs/X,9!^o^(0pZo.R|2S0P:=Ib\WQf|D]0O`*OJaҽIK#75N_3EދxkUIڠ:>O1VnMj.Gj|jmC,}`\+сB~,]O1#N9vuR]W׍vߑ_*QCp*rMkq|Myr.jSE#iL91}]?Pl'C}t쳺ƭ1+\Qqpu&}/|XTqaE-Dnvt +j,Ue>N2wrU9Fޝ1m=T}U&z&cYA>\uj>*#Ey );<O ՋpmzRklcY="lK~~5]U:N-uվ'ԕHw9^X[[km:GyE/0_7m߶f<&݀hDP[lg# ǓPO(_谔 8dW" s23V8Qw\6↹F"ו>x`_U tUz?XiP{:6V%w8l.<5&Bѷ;WUzV&j25 Dmc&**E=>pKNA!ZOin9 אKF~>a3hxW-qץlpA=:k n}S|9(R\b:IeLhD.#Ƃ/SX%NDG#T󞾬_/ g͆u!-tʐM)&,1ވ53Ww˼8_J7 ,G VϜ9#8"1Ɩ˹ bGEtxg4 ?Z*+뵦(gAw1sm>p9C}<pDJpQ?_%oLqV#DoM Yr|&?|Y>F!cbׅ#׀ ߤC1tzboH~D~vdt_VyoIcS|MruWvY7` ,CXʷ~_sq S+09|T,rI͇Jq_7:hG~12"\|Wx;rzZ<?>۬!?ncڵx±<g<,-s>z+8,j'||B \qUMMjkk?Iy =T?=a=f}}+ؿ)o[z,ڶq8\km.;};]1Ӆ>s|yܭ? 4+$EIc3w=j՟:51XuWrN!5q2V\t֢O0,*[V.Ъm8Yvt]%6XqƛQ7S{ra _&r zի^W̵S&Iq.q1ס ! pGAa%Xyc%ߍe8ox_l <u8#}Tx^S?8F}vU_MGEx~Imbr'd}BY,-R13r+vź5qwrT?HJ ۸Fn*5#ǐ}<u_xtSU[Gw^qtZO~1u!j?ec#r/ 9sFꂑklrsy]*Kq4)jqKwGG|gx]A4|-r )><$1%&P[ HOL$@҅ .NnE]-CF*ޔEpҼĉ|fO:ed[%.0`a҆83/H4,Hh6ӼԗFc;c'}'q~)E8:Z1؂yc=Rmt$Fq=ox3C>/;[OWpRs &?E/GOX<2Dϋϫ #vmX`dz'Y⚜VgH8P;h/lO"cq#t8Fc\1-HJչEVrI7%bh77j԰ON&*xhJ=tyFf7 (u2-@ΖWG3P[e&UJTw֮*&(#<˓D`K;| ~sqF[TkU58 G7!VG_IH߭𱬯Ӈou%ʾ(7%hz.|y7uH" !9)TO\t}㻏KOoZe>wv;bq/N!ODާFض:*Qޝk)UuDcd9N:u@:q1R]UZ!wj8LeyUFd?J)i!|Jv@eʹ5[$lNzFAFLk\ë^W#aR<tiG+(JND)pM V#$>}9Z G'¾*s&*ႜɆMCJL'N5qВ`߿[v?Ukfb-*jگwX4co(q6_e |)ou^߻ːy!U\Zzw'8}+;ZlúNQ Qbyao.Ab's Zg|?qsE|篎իXmS)kHq:iu - o>$P@,<ߊRx}9M]ќ4yY˖*b$n1icyK^F>urԂQy8u@·ô^RTJx q>>Y8Ta4yP%򙬄!}Lb#ve6~7"WpZ_B喑M3yM~%Asfx̳YypCY4|9aAxrj֯#1*I`ƫ:meF[d,_ٕ_cujޣi+hͳPQD.ƻva 8އAGV<oz89c 6*ߋu$W#=)_1/Zj1)wx?u <6:!^7?Z~kah,ԯ:8F֍pnUwxV/Nh/߭ɉ+f_vqܴHYqP?ebZ8^:ΝpA|dnA88sB h{Ktjkd&{'\kx|@ q0J!*_u?uXID2q 7!1r Њ{_ ~煮_ /)t믪Gf{A<O<RGvF##]$·Fq4aU~BT= LCڿS⍸ Tr-|ǏCqld#-VO@tX* ƟZAGqtBÓp|r zի^WCV.gsPËs>/}}4ܾ*Ee&ɏΧ{^u-JIγ5KQح_ /P)((ӿ(AWO[?,~{~YG<iq 0$Q$|:)%yIre_ "+}9B~dzw+u>Fka}u xؽL }# qPΜc@cu8BZSW`sNg׀5ֻ5l5 o| e+80?A^ME p6Ltp&66b% RvmHi{[ gDWp Gը ;T6<c*y.Û%+yROՓS/kNYGȚ'{=\($>,gqYk.[;$!e>;hg>|o:cu;Ax )=L1pO}`7o{SoXxtB WHu+]D;!*஻ uTs|"~]:E^b#$:vh_}?OZj6O4'qfp!Hp8n'S1-zTz-P<8ϕ8e<Kx @IIK s@c_TG0Y~!m.a5|=䅯1ٺ'#\#iu.uoRmGkvb&|HӦ]\:1Jpr[ոjf7-(S- 3i[Z,V? Bi@-'_/Um[ڗIOQ`KÙ@L&J!QIu1w|}t\Oa"\yЕc56-dKvqW-L;28,@_{L}~Z S&a\a6T?MZ%HqJ#RCjq~F=uTZxȀ%o۬H&~ho_`S"q tB.jO ?NWUzN#d)4@Fo/Z4Sr+mjOe ]D VM(HOT>eM g^{r%Uρi/}nO<yCz+G徧tse~T][dOZ"彷9W]?wŸt)q/_|B2ѴЖlb5;hWrEF1Hu#kHik2x~Fٜj`ܖ rӟdY={xVwĉaJ{M4+q\= V5/ lU1q/к Koؙ:-fRE$g<:(O5{j -FԉdK"zxHe[>F-箜%<+=/h|&,O}C<bTlZwL%'>Ҫd`|Y\$tc8jԍ ~r0\?cgȼ63nx܏^\ןL1<t_^CF,Ǽ[_l[Y;j`xo^>/1nɱXq*AG2 <ܘtt8}WD*bR _|3A:ϥ ҹ?x| Ohj=oj>^x%5&{ S~N |$n~= /NNvslJ 63D՟!Q]wJZ"tCm ܊M.Qh) -.[Mi/ 6̤((,oïL&9>FGq͹x?9;ӄkN{q<Guj4e}uℊ}u(\n: ee13_n1TU0/ y|Ϝn3,S[sdI.wpO{Q\o]ŠV E_Oy4v yQ 8[䗯ոOgRJkq-k%SO1 ;&N5<AM:O~s63J%\\I~߳H+]~Gteni] :Vx`:-ےrMkx5~헐kٖ6W70! iHCҐ<izmTN'YÎ9FW[sx9%7I- n#2-%2!0^QWJk X!Pmoyų˯s n>Q׏~? ԱdG@AP;-샡5? \#V C 54#r-Z =SUQ1eYu#ZzFlsf65)9TtԞ,cX*q B-.clO& =u%}|PW>z8Ɩ)k[?j8xAУipM߿?g mcЖ{F{<WrMio |鿦l||-+#:*Y0yݺ/>NrokPgݛtЅ֕d\ (ڄyy9w/?wX?z oq!N{]6QL2c[@MF(uLes_{Z,ꒇ5۹`^( ].÷ͶU+PT2Ba pj}۪qhQ5g&vAݏ]Q4[U{ ;.Sn~grt?k`%j D'L(:C>ۻ,vObaq̲8o8w2,lm[_gҟ>ezT˝J$וH|C'NP2V \Iϣ͛3^.//X?7)Y[Q`}?BTݰj~yw{=Qh{c><VN0e5DTk~aП*} 8F1<=g&P8 )DqBZU| dOJ^8AC ^gXv5mp ηYG{{ a<o<~l7,0%Z5>5ln_tl@+=O iHCҐ%8̯Dd< >s+giȋWVTNl ׉`GK4r8om>gD'߳u_6|iBu/o|v+G7?$\ylVkv=+|m(0޷,ǓRv8}K_}4p6sq|%(5~(-55w HZZjF5#<VˡX8a٬$ oǎMYo90/O5q_)cye+* L1~K{8F>_SSOyhC|~PneV#|z[ʆAyʄd/~BtЇ3Vf oUΛ2,sx}zVd'ZKEqQ&1 7#.X1i+w?} x9} 8oQ/Vv^0'cYĎ1wrЇuZ=5|~/i<kLi-B2w7IT[FE:ǰ篊u؛[c=q-)o`>FKz?2o,{VJy>hmMX^|N] rm t"נK<y 0y„'=:<!ɟy8vM(y^۶MaW#OZ:YD^ pp bKt 0T4735ܝ^vf0%>qxr(!^mm巶U%bh$?_ ~MCq6oNbڶ=M~+Z-Rϋ0%, 8Jn9u7/,xbO0NǸywq8\CGچGp<|j; kHYSRV֞7R=wٯU.7@S݀Hqղyb2R_nwb __΅PG2+e['Y2(6ރ<\im%tk4! iHCz1Z9=,+OcǕOAFT&D|v0`\A/l[f_)4XRK0$i;wv~g0wr-?c%HMk zheWWG+/u5HwZ&8[iEyGRu/sB^HBh^h_u۱y݋!^3Uknr#0V[owg$+^a*ƅljլھmp ;ȀrԲfE/eT*NK}9F~ߥ~,׋W?[#@OzˊbN+g̝Gz[DƯ.|E^ 3SZp5l;Hc4 ~w}o43m_n+{XfEKp~t/~#G&qnسhJF7lڜ(q_ V$h UWP4p *sqSqyb$m#s x +[Md:gNgp~1m|T>Ocׅ}>oOBY^X%re-nkjM9G Œ0FmNC9wX}hGVQ q$IޘPdd$;ih4.) aߤN$$7Q:K18TVaM!xVN*ܾfQT4 WJ8?),j#^/{O4ea^+J}&W\hms pDZbmR)Ai|]ϠUL׮Exر"#-'x_QhӍqϷ =X(GwrUբzE|1iOk귛M~ߧnwE&>{ (>yLJ\KG^A})5̌L/3jq5Y!o'.ܯsY&TŇy roFf-} FeJqk2M~DW|Ґ4! OHlkDbX"smGJ+% 12(i*7wB}~M'z B3+Y_p!{a>歚3`A_~~[%57? \]_}Yr r)PWR./*STs Q B_]Y9xJF蛯VRu%t@ޑH*߷_R@+r'4dS^_ .Aw~ \E~f:Q{y~ƈwT<7p 7Ǩ{VAҊHdGĢ!-kGɆ$/ ^pm:?И: ݎ=u#_2W b2}n,]iVx"祻##1V~0W~6{oc҂h6w(4IXhJ㷈qJ1xk0&i;8{n^Yȷ<]Hx;<69-7ǃ>Y6T|]W;xxr[gǨ( ~<V j٨~+qq0PwHQ8Uݹln V~)sw.>xEm"""aTN\YYYY_/>N3K|z A77w>,Rxb[Ys(3֢#- 'H܂깟^+ ).ֶ>aפDU^f2'CWӄ}ǣ "/zkYG*p'+*jQ0%Oz EUmI5 (mᥴZ#%ppk1\8IAU#d'0Sfm5<lä:/혇H+=5T<3珸Tm*WdZ[uk]ZeQ~ B'pP_4! iHO5}Ő8*nw5/J9y<tu~nḐ_|yQ<.{?XbrFg!#P~|'I' WS=`04ϧ{0X ۷/xy,S꫅<+95 OIu%vZl5ձZr]~OƩDSWK0Tۿ_N[_Vl'_@i98GbܶOAZwEr2ώz>}u%Npm&wVWń h9{`nan^8ǐ|18i[9)k ?aG k[pBN-AÒ2g-'D!_O~GشkG# ݐ!CI o>~?ox<+qr%~St7Bi_POZPggZxRMP_Rv\w܇>\wB9F'2hZ8FJFW孕B&¾R~IQ~ s Տe]cߧӭRECu8R781ۑ>W"#mLP3Q2Y0}nN*ЂO^ :jڵ ,;TnPЇ@@mÇRo,Ifiq^n.yL|qYn:wj!&+bQw8K׵ķGүOӄ{Qc"Rxoa<!Qk6Ң^q o睨)h4qANn8KukR(>VHVm!>#Շ^'7Q6 ~p:iGtdȯhhN>BPp4ySh}_u.p\_F2Q 絖> /M7dmLyٶwF7׀qd|E.'*L 5^!wyzk4! iHCzͭE:gBB ǮU:SETGhX}wLvz?{hSTC/.8Z%˥c]kZ$S_ڟ‚)m⩋uUՓ|Zfd@.*lέ[.-k$~1B}xm o~Uc`֍=yU*)?wgF^;btH{ Ms " Vjݪ,)ډuL'zEka6G&MQ6^ǘrsT2-^#(^;qBE --i1[|ERyb[{1uKѵgʹ{Oq:R?Q{xF/sXJZ8fMԇAʷGo8u>; =_E+ô쒬H[14߼b-;x;|#7R5c,}(Eo]1FѰ?Y0ͥIC/~8\EDQ:%JrCw/''ڼ.S%$PFwわ{-I<_kj|j& ׆9w4H|`PBVKd+JE%68pxqG3] .GT0>yo-pA zTs9i\gz/E4s5.ūGWPgH""P!<9|,F@TyU3^ex"`M7_q kչ Ӏ~}PA9ZJ>B<Âһ^5IW_oyVb9ycǜϣ3u<ϋj?ԡ#ՃtW$ \̵/U q +K$=n'osD wߓJ #yӭC =Itl W?uv/Vܭ-ŗk>{p p ! 3!Ґ4! ꜆sՂi^B+Uv:kwzB+rA=y`xylw9.qX^:(ٟzp<?{u"1Lsx8o[Oo8L'GfQ!oJx872ͦ(Ww.1*6&XqEqP9xcmBrDzxK^<.wyp*ڡA6+rQ}5kH_!TMs2,>9"/E%8/㴢: n1)R,1FSʜ>y-vIȷ-H^8%Cx*2׍P' Sgިn DLӒQZԕ sJ*㜩l^Lɽ['!E(_׏Fd@zE?PQC k=Nqx2-/ 2ڕAʌwA<4#|>dana#ğ΂WH1|4K9U,b"=Y2H=Z_5x[ɳh"T}VU]6a8 WoC|u֔>FRԩyoN\ss_X <p^{ gzGXuBz g+C tju+'Syy+75Eap2@7a+ .t&֯_M{=~B/OL0%L@N~Eo:nz#vK/{}wץJIFǥ" 'Kܮj"'0ދ꛶= ?.1+͗p+CdN4|?ɁDKqIn^=vy[l2m?OD.g{MEȏ{{UCBCO-('JyHO1vO}Kԓ 96\q]Xo >G>S$f_uKTp5Xkd QV7O ln m4! iHCOKZK~?` LB;jTU <PTq9*eš䱣87nLxȕ B}JwX2,8Ñː1p_Wtr:n F6R 5=20'х8^ĿS5s O7SyXBcqUH¢6x:ZuJ̦fCs;ݖXBm55/IݿQ#}{_'<vDEh0/4X502yyS|޺oN$Wn!x!ԧÒ  [̷n!앸EranVИ:voN8'zôsDn<}c דF2yĴ 1g5S,Ȝc ӠͣdX7[\ (:s"dJCsI<Ul2S:g9ǘ DnY@}ȼ[ٿG'c_2p4NT|NqtDm-Rc ĠovgׇBHƈPKuZ,ɨu|/=O9l-x٘@3J{:hyNi/6k%ȦdwygiCzrssj7a->ab\^{>;5y N1j$ ^%~ |S;7qm9q#v`%kZ6ϵ:JAk41q-mQys3~h3zewo'PDsqd$ GR c3ZPq[c؜:3"!d|}pxm\ kiþIPdﷇ;_I[Œ/{J Q>.}\_U7Rbk?n!d$_n\o:z~۪I5W<?k|ľ"%5lKqanų5Ґ4! wj4iiy"*w M?\skTa|Oc>|6:w>jmR")J !i_٠+RӞ}{8a|:"t :pw &%Ub1e qUV6ꠞ(ӈGaŦ0 ?עE;srcʘ/g,̟p s4A&#7lV|L8|t|Ir a-%n1hЧN$p.(- p o^GsMGz1 L_bڤ8X>?7DN3'_0>̜ȡ9K2i/eXnt%!}tѫ㏄ry.LYl"jEՉI@')uEZ q RWp&; gHt56U+J6<FCxPS:pUr+_[sqMYruT[j?ߘ@us%xO58ʝ&怦 AǕuZ Z]&ԙ`g҇+l>PZlY;ݷ 0:[Q<5ߍ_UECz;Z<W6S |G-gitutU[ \W߇؊rg*1b(J~ÁNz}#]۶/o׿5.G\Opr1qlak/qq~fK[}=j;2 㠾Rp 8~[kmlk<-s2,0gI&SD<V?Ƶ`˱B[,cˠٲge&e1/q QGI5<sK]&F)z]w- 8^F5:Wu~p W71/4! iHCglE| q ;ۚ-9I*nDa@?gZ?i\3;#]9# i>a\x^??\a'I<mm8\jO7j:ۍد)a$iݒg6}Ai#y݅kha>?>c`I'N4.n/}q,&~&NNK x_msԉ9,x󧍀>p \'2PEo#SeqorC-{\1{4+:`=}I #6!/s C9 PÒuȘqˀ[ ө{g U/#ǀ a|z"p -/dJ3d_(cg$@k5<gIh^c( WL>?/eYF۟]@F}Lp>)CyUc7>1zeV=..'OEA8/tF]~ZTsZ&]IzGRGI38Op>s@B;3Wν5Ce"Ns߾ i]ߋР0uÒbWCR1t_Y'\lDь2-tv7A˿2xYvIU4MK}G~}Ar};7xg'[0pgVʿKqZ9 W]:3.)s?aZZl5 H"LN-?NenQR^·h('6T{qS9繗, 9<o󋯓aaBok>B%}H }Tsq|G*l]kA),#+_`k ex+- {YŧJ>k\( ukk4! iHCF>Np~U[9#c]mnJPp=OUp~!3#IyuLJ7Nʋ#~u$3Ϻv|IQQO!zwO/.v){º5S& uF^1֠/d,MA}sk(}B` ?X>H_9̩Emޅ>8m9<C5z ZÀ,m_^u%mfmg׉S{.k^&`<u"qΖRvg3K7$(Õs7F~ KW1GBHcLֺ"7OB<}Ͽ\c&c}G4PT(\tփkGA  cuޛpn/s [[j*ԯjP}M/9kg9կ||uժ;g|.0MF\o$~0Y;g /z 6Ȩ_ucN}/fY&o'KÇ ÇD mZ nj_=w҈ʢ)[5zW{¥CC{?A?\L>n OB+eT(zƣ=SL7.0ʛ}77{f}I\GҁsbAlNпoduNZW%ʳ&N=i0z<߭Sg :K.v/tY\^8?Ɛ:B? V\I٧ok?-<[Pfaqp6f['R_؄3Hp5קɊ"xс_gl >Y|4&di"s<Tjļ+?X'aQ%+ CҐ4!5Y\w8^KʫyFp!%޾Yp| lqO2ՐJ1 +~z!_ Fg+QLz~x^]_ъ(>&33EXDJ!`U>CCX6\#.gY|zaDz!wHurn~}E"*&ْ}+N}֜hT~aOHy"]$+qNI}Vn+rs]| \WFb? G ܂ܢMOwgOu3Iŵ8Gp_p ȚL _%x#au"zQELh9# giOYr]JǠUHfM>.B6k_5x(Z>^qVK|n)!#kk~gg9 /'ԣ/cu۶mYʓu:QO'&-t~|Ҕ`I(` u*s[%}+s@6q=.R%;S?2Rl SJh}Y&s‡{x$]%uBD Iy8~ \ww3g6xbs ^4SQ_JP}I|]oTTa )UDY?23/8ytf ؝r_/K$mߏ~~jmTrb륊ÛCcpځ-|P/bqt+s^}xhC R,OX=P_r'}Y= p< 8쉚CkMH,ܾqlK'|E1s *~Z<~(veJJ0(n:O2]bHCҐ4?%%Bu6IhGTM9: xI5No8?|W)'j{{3Ɲ/c[[؀8^j=NB 0ɜ S|)YGпb9LߓAзG'myqYo%y.d1ion^*}ds<!T-e< av׼1(/τ^W٬cɆ 5κ-3Ӱכ?m i|NxCB_ˈYnٲv2~z92( xW 89+ϕ>Bg ו9Fa@ 9- xAn!xلY0{a *6=P@߁$y7~J<0Ek.c`+md-gp_U SkYY﫳I3<WO~uilѷ<UR4"e_-hWv8W aGp(so;|_T2ժ.~(rw:u[۬M}(X|O &ԀHׯ>AZܷ|,6wC;Wo,Oa%T4r a>_;Z_u߫uݫJ\9aL!CnAܠ2JZ$dn1r X<Ku-|7z<7*y|ާ| JF{ЬI<^ٷ.Ɵd+pDXΪ5(s1;CCҐ4!re%W'B݁*84|5y1%ϓq[VGO )"Vlr֢ùZ)Y;&i IFKXKvϑT[1^y4@|qhO-ձg:r8h$u7J' .`g!]|+a\Г- Ա;v0']{e-~tF"1.HI~DB+ OCs3qyQn5|>clD*!OOl|-SRJ[ruO@-*2U]QI?K[ܷUk:'\G :[~Vz,Ɍڜ٧%"<F|x<XsX&g2 ez?fG }_Y.CG%OEU )"t{Gp\)os *w,𳠊k*X^ڝ? yz]Fԗdkxc(zfTqԧD[z"R-GV"FBӪ;?9@> ޿K}?r7߉.Z+sW.Ƃh+qKEz(3q I7S^!̘kL.5BҐ4!=2g!_XGT3yyKkF%m]OU0>$RԑDz"pT_}F`]_c{d{D7H</+3 }_/hg!b1S(H^h[Z2ϴː}4[j?~fo^<"#"]q99_U%3V*~.fĝKMFܧċJThK|km} ΋W!ǐxҊxI9ƫpՏ&XGoFm5N t;x,<N <ч[ycyqaijё{?c àoS뮻+\(D!go?zk/"p38X SjVz }jwΎeΙ";B%?&C+FFrL#b39e^yYGup:q %oӲ22~}dCڏQ)Fkϩ8%H^=ZIx;^?^D g,GɛQyp ]WV^%2/sw-|EQ<jk@_ ,:Q{2Gtl -8[=Рϧr, zVAe|64TjØét݈םi?7VdW:ǨG_JQ85VQn \xϣ4! iH *;1Q&L?b9o¿G;:)"9:f:0NƱ7p/}FT=$]>@qbsP:շ _.qۯTJZDu-=GS13-2=pCu9ZN[>TU)OE%ID~#UٰΟKFk}8c>{˜D d.A_%f%T>Fjs_wqb#:2[_㑳`lxsu(7|1zG}Jk|4mY=F%?_ Tu&qAPZ><9'x'usٜ03!?TsY|>NL;zuN։OC: b˜lj'ew1 CFSŜ1.$@I767ynQ<5e BCEs9qi%p^j[1wzw?䋼7s M !F7*h1}=wpQ>gP\q+(u~ڋ;Àއi)k}337GtEAV`-ǁ~~WW<hVX,6c!AdTوzW}heԺK 5^X/ߪK mUn%m>gƟweuA02qÐ4! iH0.x_,ѝ~)D-'󗖚+m"TOwqZH~_PĠc+& KyA͕0ur_֦ !֛ޮ~ ԯ?傰S'f|ՎW~~Ú]OāHzc?gO9p8F{_%ٗcP~9Em9D_PdNV9[20!/׀~":_}gI_XTaA x5|#j҂BZ">Mo:}|L%kIJjZE}(3b_u)q{m $Z=68 #=t峓";om7LAv;XQ[[s]Ao[$K-Cvg=!qg$Vt]~(n`vP++u72}/ok:Ս>'w[ I %ֲ{=6xd 󴵭9b!HMiMöӹfJ97G)S=^~RWKm`:Я ꟥]!_!EgZ۪t+=N2i4+EY m:\8n^CMq@\'&"szS~(6=\zƹ;qa$ y 9fN.[H> 2an<ve'T bǯ97a2bˬO\ \cEڦGpEY }Qφ5BҐ4gtc'9"n)I *EϏWqY`ʏ?V%?g9<iY5dyIgqy C/U;:_`9'^C@+**F&8/ܩ6k͵GLUk VU+g!n̕<Iה!ܿdL׻ r B{W.zlO> F 1fe]o8ձIkˈxQ_1hp!KwUz{-ڙ ڏ[芁\\#~ I\q>;+2<C1Qm|l#TGB+5dtDݷg!wU"OA]I>$yí7<[zd%ZI?9e("l-84HPyy~'`?X@foLs<Uڎ 3I?V[jD|^tJ1Y} Bk_|lR0Arˢ`v*]&\!-75B-^| ;zb vmKP ￿x} Y(޳-IE qq0ݴO ܏X;@ɭ|6<M3N 7K1Wz Ӡw;"5B%<F%q,K|-pzVӃZpߨ\Ro_vFNa2pC'NX?ot+ [q5:uˊKJ"xpǾ Jfw}eY ףi2 S?Y#Y"wnK%5lHnҐ4!}$#pZVT#rU 1fk?쪠/ꮤ’c4oRp<#7F^Ga9GC--'M86aMM3иfW yH9ot9M$C4c$J6ƭ7#:WACҏVJA>\=Q]As{oakE?jEĄ {>%Jګtu ZSV}5iEnc.)qWc-1 |(}Om>qǘBUU_\n|/k<Bվ#7L/x'm"=oNãxވ>Ki\o|@D0s }+%n6^^Pf[kbŋ2TY.ɚFCK֘N\$kv k4+FG_ uWu >]]T/Ŝ.}1zWTƃ߇:W-}m3C裏|/Z.ɴ8&ONܿݦAꦽv5 Gtm׉/t]w8FT0uܸq] }njm |]^ey2UHD-mLy}d\ !PBA(R?W P7A,<5|tdqiNΐZdžv/ZwݳzvO_?qy ގQMǨ{bGJIz΢!N"׳rqoTXqy;n]'C:.||os/GouU޶x8#Fq|߾yk<!@52 rp N OHCҐ4ߧArd<ҩ=c~LgJq7Ъe˶\̋q)eN'.b>}MjZ kZW:038E1K(qǹ<\=~ct8qloqF51D-g )NcF`ʉPiSMs89}WՖ:-IL7s;fVD9`cjσ1O!=16QK1o\cSf}gԴq8!1$a~NIYſƇy<,N$cAH6$rW_^p([e[<GʷX/sIE*fdZ9Eq{! Kv[@]{GʔL|pI_dPCOT/bim7,Dq>٧ -"(B=–6="nWWpP ̚5*08De3/4_uMHOgygVA:3o䛅-G!/O &PAp]-k|-0<CVbۏK]_EDsLHPgw# Hz%[Cޤe=wuѷL2wyG\!O^sW=p`&Dxq>¬iJjד@FtɅ-N8B]\d^Lt}|:Z<DyO@ {y@Q9؃p^*npv%Ϋ͈\9aRr#5|4! ՠC_fED(-?zZ\!sʏ-zsx=P\SxX!_ԳPp5YuzBOXds< Je ^W '8 ٸ tFYSo5Po1jkk p1} y? _y3쎢 . X+|{9o 4pBT` AP]|K1& JBoxvxv} ߐMiu(x6H<,զgoSDnj~sԛfanaMnV_-zs3#51 -[@~pZ1u'B4`ZwX0*)€KxPApv1.pM5 ق7۶Jx ^7S$z%t7V٢7nVWP*y꺚yh0aBہ)W$Vz8I~ѭmF=ZC7sLWD=A]F/7X'r>˒`wZ@] wu[!O^^G?4.)>Q~|^Ikx s#lz{ TqEu}D[xlZ)ZSچ- hsM%Һ*>z3X$e*y{׸d}Q*WRzG[?BҐ4:BPP [vA]VjMmndnb1||{l 9*ى#,q+{%bMJ3AA27<|q(7RV/>~IZg6LY7^:QxU-{|*moo6+}ⱮΖV:o}c<y]UnFt3u)^Np9PzCst/C>ƣת1 ɗc>ܽPV$n8-r o(ڔq\ʔQ&o+XVIat tڷ"a`[Gu.kΌ޷6Q{3@+!g?Ӊ⮧iα9K(Ez\{"`FE耨J˵.ҢH/Iۦ4MZv6&Hpow&QEcad2>=#},L\`ܥAfZ'TަI:I:맔=Y?"BSgC|//1BXzwd~WRB+4>Tnk? }q}W>|MR?9edt6 ԞOT$2hЯhͻ?wWȮ |d}-'1nȡӉ8yEh]G>vC"J5$L KPR]t 0oy+sQzS}G1x>^0;y./ʝD~7W 8O)~NlNWɼ['!OʴC)|,R'}'P{c\d|J]6­hLW?#z01/]o)_,~` ȸ&0|Qb1c1cbq47vnjto&Q'\|!->qksq Ge]L<~ RS{tł|<Hz- +B14n-Wun8:o-̵~/ Jo R !{vuCwOʿg%.\oQu/ΞhGNM랃u׾ A=J+HOHBPC]>Z>a:hwdY(MO _ '[|o*]!^|?H%m(n&cL%+Ob`{C􀮄;\u֩|ʣk~F;Ny?[ Ww7=;z "Gx²H<DN{委ӉHi<~wtݏkBR^Ebj&B[,yZ-LG-<qrC.14wN>y"^}S鷼_\YP)4 F8[-*m+㎎Ox#$wZMWW}ZԊ'pi"ߛ^Yݖ:. cTM7^y)cbճ5WEc,vWSEWH>]XFJQ?ɩԢ Jg>*ڠ\BTN}#}q Koa<Tgwq iOD.((ߓh8Bٟ_'k4*?St{جo]&T]o!AGxCy )EfG܂b-vwP" )g&Rt== ^K7=@%y>x]`pNCRtzå)dnG(z{d iyUA?IlG;Yo;#XyN$pv96z4*H{'Q3>gY\]cK>\gApͫ^>(3AЙ\@'lYtk(K5c|se[^5 V8u8RFt=|uYs#W[=[ ϵSX|"Hqל!E,4p 1D d9OA3y'q W_ DhJ%fI8FLf{@*7R?9l؆_|85˗~Ӭp>'Γ1ᦷh^ R$MEE?/0HO M8q֝Dtkh[w&G[:׾gQHo*'&ɽq̺| 1syLHϡ2_y*c񊣩v__m 6U^/ C|n5-+<cnR/6(P =DV)֦:QZO9z:w Vr2σ[࿷7Ҽ0>R9<Vi e[v>bHixq|8qkxJXT\þppWc~XRZA#)?,,L܂ø n@kQAE?'u eqHuU)<KjTk!(̫ \mpH-R[pMmXQ?ɸEw,y vvUϻ׻U'I[h]h^O;Kz0T4NeBDI[3un;\ZI1U7{[> 1w_<n)J8C/<Q٭! !,V| ?]c=8jKp!^Ǡl nS#Ku*_uԟxŐ-2n]:xsoZ:6$u)5~=.OjS)a8vlWA]FO{31rŢ᧾cJ쭣!E @_ .~Ë(|Q&iHZFw2;94Yēb%Mh:5gB'A%&KQ#!M;fB̚ȈzA.T,=hm{@j&{!M0M5𸟣K1z0⴩Ȇo)Wa<Y)5O: })QdІU-fOh>BkQ2#b޲ +o̲_C5ʭT\uu- Q42kTc|X>_g mN3JEC|?3:ldYeK)→{z_:p8XTH|]yna*mߥ<ؕivT:*O{px߾b6} |f TKcz?`XU.t)847ɕK1n`>^ʜ.G) %&heWo2uk&e?Щj?U:_}vndSO;FMVc2iYǍ9BTi_+u&&-G7 З>K򮝬 Tׯ~0=d<ͷh%g@iщFELN}cov8ϠT/n 2)CnǠB]jPp62n2nyεo;*6f_陂ePsUrm] Z[;aJvq4mqҨW@cH֒FƺS&?BqwT7BΧoH_} eK y#&c4Гhʼoox::/ПFq#x{X, / u5ݷ6:׃Sd'SG5kPLsΛzqz48a@J402(_xO@$Y]VXoBHqbnUzTć:(ODPULu/m]<TkʶNPp4 Pu\%R=4CcQ St)ꠡ,nwN{i#sJYo*-5;</qhǂ4=8*aYY⼬KoakE)TgqOA<i-)g; 3C,ؕXiOayߥ@a>= Id|$S4xHG<ӆHueلO)CʠcpmHki_qhZbQ^Ǹk+>aQ~#01` )ST͎(|VJGkADKz9y?oA9frxHG :sȑc"ynr|SOuzk:,"d]/Q8|$.F(A3\9>XG o\yBF;jT hq 2:qqש StJ~D_1~<D1" KHIl*2/'oTcۖwL|WkWozcRJ>_7!T"W 80n,ˢl[ز#^߾Rg^^ZO [Hf,&U?Z*6.OUzmHI]͚,TAlǁnƊ'(] `8ȡT 5+ Fls5swElO8IkDL1&uov6" mtF|3JhT-XHi\: cGKN Gūg%hpUgꙔ֣n%!3D~7bGWtYcT9?K`ݥO57ImM9O RUut+5?UʓXK>אT ,G71"a>|7j2nu8L,+[kw f߾-|}m,0H!a{K,}kdܶ4i1WxZg3uxI9GkjAd#o792(+Xs5o5(qd=xKǾ.+dxw<1x|)FsisOMWW4}Q4U{|8b`񝉲*O,.G|a<wBgc na pw֢Su4{۱'EG=mC}}2y=T֩S>XUn1 x)RMUVG z"HVrrs\mlロgTܩ;Gcۺ"nj'$bGڑ먡HxBHLB؏wV?_\5S,.9> :b|gY?ğ{W>* ƫq3P6z =kekχc2D 0/Qp78gG:K׿JT3ce+1Y!Of7tv3f}mo#T*&Z8vN6@9+h(c;eܢWLt:Wرx k/52g !7n)#G Dێg%}&>b,4K/*(fɔƑ@x&|DZQܢw3%\}fxԊZ;::VϿtҠ*nxq8 ;k9Z$54= ~"\b8F,S}WѤ/v߫ W_T~UpQ5 Py]Gu}yJҏå] CDb}1ұ [._]Iʒ_ }u;_\^ :Kֻƪ1*ƒq kKz>'#oG%zQoXGt/{'qh6'`wos;01`sOjydOac?>0*[g|+gc⊕K*:'R|yϟqR}QUQvX>&/vwnӌQݞ;&.8^;΋k=>kSω{I'.zcg3kX-MMb m#H:SJ^eBLW/L3Ư.%kFީ)Y(QqM^kpHYf^/g?3Fno`S3KQo}mY/<!30/^:DkC>g$1_NLS?w 軹 JsF$B\7%Q?jg8RcP/}#jgNLp?(6ю:BH z|!t[|9ut.J!T#ocm*qJfR*_rmy97̔utG&28%F!t{qlTu7q;7n`B[5@4_)mK W}"[0FFh*fEB+~P*U1~šb<sSҠ u־UCge{L|'p  /~г8!E)_5L|7Jۋ%J~xgNlE:HyAb<*8xZX~QlǾj\CO$%p ?ӄd|A/m۪J 硌CfInY>]Ƣu8<04U?asyV(Favq PzgP}jلG@E=54xQ7M܆;?_: :E#w/[NN*'cJW&j`ZO4( V#2]XͶB=,Mo0򪪪cԬr3XdD]lQ3ZG3s7oYHVgEzr.&*p$86UiܚκT+96M)<8F ?q{.Lt\ [D5GsD+:4߿aZdS*%b*w.̷}iV~ݘo![7//Fi G&GxWe [|z6~!Π>EK-pCjdr].MΓם\kz૿MHѱr5x_mw<tr ׵sxh7w~#mńD7p#:ɑ]-XҤ:#QLƿtRq]Bq k1si'Bpm8J]c,3aY$BŢ2)kTK/>BԩND$P}ґ3W("c]ڏ:?D6u$]u/oºa] g8[XzNۺ|-l^<$)~P_s%9cFgN{/ָ+Χ!Kwi_Dؾc|FQ?خN,5 .bBsq ]H#pkMt8aiGït~0*~͞ϓSW:$0wI|(0º4\?wNtA~HE9_@YcQ(Xó S1E/wU܃p-5d&1"WIo廙NNAaoάi6,Y"M5]Ak[yDhZ^׈^ay, # \:vOa{(.6<%Gn\eM_!~XlE^OyfG b=i/oK=AS'6ZEE*~ѶumuZYsY&mu>CMM{&?˘Ȣx 4ݍP=8jωQݞ_E$Iɠjm.y .Kb<*呗x>8¡TLQ_7;~qq,݇Ky)6T |Ϋw|r([tD`>˞Ç7owH&ݩKJ6yQM#ºU_[yW:>0Bz#ؽ?%X5Ynq9}7}"'h)<_Z$fsIuErK>GebT_@7w LD7_#8iZ?܋ Z 7dxU8Fٖw/rHm]1 hRWnӹj l>n}p sPmy5i-'9=+ z-s?y4leI:Wd鸉1~ rNuy˦ϴ5@'EeFnؼ|"%78œ1!Y' [Sz6)"ON%K9&Zp{?^)J 2'g$D=.7d'F4~x[3ήiRݎ4x[/NI'oz}= 7_ 9Nq䐲zjt !ors1BT0W'諝ob8F,1O C?:-3ۋq!DT>.LJRt:(f# W M(WXJ sERM58)ox7;@ta13OfЍgLUTo_,`Ojmo.\G̫ OOf8E׵[eȤ'}41S-bHD>Jy'"=椹_鵂`Es=?B dϪD@vZ*p߈=ws) ӕDeQ6*. ~C%ݻp Uϻ<UG_8Zĸg8'9qli+r1> ^>H=Iծ|~yR,KLOx|滺_ht":Kt.ҙ}"~/TњƴxI P|PS->sX)9n$ߒaBRvCF L%R3eS}p կ_8Ŵ-Z'k뭗'}@2"y"CGm? ;$ [Fbk5f>$ÇT[mN/px<2#n}7_{mOr2u@d+:F uٓB~yOrK]>utԦt_;7ΏiJxۺ j#5cqzy.=mO8Fg9kpqDӖw /e|w:JCyIqYRR܃c !1{œ4.x\mQp0-^qL/ZC}dŧ$ec]y3!O~>W=yJށ߅[q5@|; ](㜚+okDYb.Pm]x:̻{Gg;ۇUunVm#h!?ݛqni,Etuc &>%4 NZP)z?31#cn׽yT#i0p X"xB0yB?sp 퍬$ư[|wTa.qg?a1cM] OFr܀E4ٶX0^5V 8>A*v"q̮N}/f ׿]_lUaR=`>YZ[yLӡbbƸ"=<hE#s1]+*,\>:?8Řp^ܢpE?BPQQhA%%sk:e·W\Jit[5t++ p-j{t#TQAf.w>@c1 q}j-{~K M}X*RL:teAMp^8>Ӱ0V]ݻ-ۺёWNz|$bYX Z,NLy)wb+ե+5-"JA/:K?_(_e )+9\S?Mu.` gpEÆE#,s1nI[-qEd3;=g`?IGiu%xpG:H]zQy~h%Y^۟SM*|k[\b>H"Bzg#5Ipڑ,"]Џŋ`DQכ43;vk9BS ѫ1ħ>v9ͼ0!Fq0b2 fqXC,KR_;u x#|cDziqCw|Qb,DҾp „GV^a*)Γg4՛F - *mLl cd܂*'Ɓ>g皻'۶Yz#K&mʦpqnI-qspHGE' GcM3f=rVm.(ŮΦGf ݼSQsҙN F_,K.i.WϷX7^|L{-~5U4W^e\#3LdGS C^i69Zp8ӦzJ1nu-(iZ<|ԩ#Tg_+g y)hyb2|^Tٯ;~ _# AZ5L212Ok?|]ǫ z4looy 6G]w4ll,Y} ƟƔ)G;N cz:)E)*(XF9RX\3or秅϶`E˭dQQvcݻW=򼣲a_^ nq9Q?eM*MR\rG˪7OZm현@Y\_*,^Ny欋 B -1[ih(޺vCc (ŸPW~\ԏ̜=>R&I׍_:*f9.ݶz"n! fOyF0z+H3ٷ3_5=Ӊpq7OOmQfAW?.H12߂EQB(q 龙:Z(YȸxXZ_ԭ7c ţIZ<+E'8J))v{!H$f?~T(o_e؉NZJ7%RKeQבF;r @t#1rhq]bv]cwf;]3*yO8|o K<ҵx7CW:O ]UjvUǸF"8 ΢{?xd ?GO,|%Y{xޛ<"Nd\ 1_lFOڭWc@f)<-Open.p]F'o e$fw)2^}'W?!e皻yOn߽cǃ&dE]f}DJĥ6 x,g"(gIuw໼u:YǷJlw>;Š48zv/ɩ_5xעzf%7)4!npD5÷#ѷZ5<TQ92-WCz*<[[I5 (bNUmk:|S %,f=!|v~آ1!؇`\:b?#̍ nB>+Dž+ | LcA=Sfp{-2'/!KMxP[!(DcJ[:A5Aȑʻvgxr!q;;3={L֝a,*I#{E)]E;q|t4lM#Oc߾ NpE8tp|H.*Z|j 萭jUo+ QF"h%@;>=P\ KJrch{|1kk/"USWN B;Xn!<핀[RRY~B" LdxUeFz #=+P,)/ؔec/h10he| ;( _>--73I4xn\|n1}Ȫ027@ mRyn-y0N/yu,,%`_灡~Ny=c9"q8\+w:S=Qt ȳGk:KDlk(EԧD1w:<է|oS@^߿vΕO-nJ0U5;:jY]"b~zU[ݾlWGBH%v)oJC~D |xX×y\N3P78ƣ|"Y'}_WW&mnd?^4~FmJiw ؏bEͱV<ph1e5/Y5y8Q|7ѕ> sz}"o{8.uTWɺu|Uٌ z XM9谯*/#x;-s-Vc'w-Ēs_z{䥊 h[CMǷ~gtq Xwabގ; RQ#IKN:4%Ή>o %>i蓥o⬓3{89{vkrI%<8a<ӓzCJk<vN ,H-j>~jhgq6WRF}ǁvP2l@$X.(d2-,B 8HP>2og oF) {Xyq Gs"3fۺO~d47xQa3LPwp~m,}2>վS'`]&ϸÑGnBҧΉ:m.GP[ vDn] J'|6#߁.'>z]|f WSoomyϹ Ap1-uOLJ# )L3\:mTR]Db^IsFYX!ah$Z<;[;:."Ql*>D*>uD²?I D E.3~n"lrS)A@Gn|GkҵuMK::hy,:wU>GEe1Q1vLb164LSCyY!ޮi<b zjq?#X:>"P!z=y5[4 H@#jSNEu=;(pS$}J|OFeb5II/5S80xu/؀|v\㦟י|13H1\|ZG g,zc&+͢[lj9ї-% /MO4R}򌡼8C_ bG5 G n^/Ξ!o`u?_ 8G+1VTMbh^Bs}Y.H`"Zifaxb!(-r&:~)B͡.'2lhG>Yq?e Eo)z]D<7uh[IN9Eͳs9jĉyLz>!uu@l]A&h.q!ߒ/Y뀂ɩʦ pR~>8aԟ ֚o2eߓgBBm kPg|ԈL~E =&i,zTעfxGtQT lJ?A3!/"^q!c8F,?~eCW<uzt޿>淦cf*uk{=hc6ЇQo =!r_Oer*rHʧ1BE^;'r YE5֫Q*k83W`]>7p Gp=)SX |쒮cZZ_?JE#! Eܧ.O@ pu͠vS|xJ2رX-w+*rXwt/صa sV%6_|ԃӃHǶKO\Ilk']AAo{ZS^)R_])q 읠T,d6iK o֑5 -ܱX#4۪It<uqtf_ edS }UB~d\GXeu+ާzD^oc*{}xe>QFX3y1(pol2 ie9輍O'5(RǷ¸E:eGz--,2npIGЏ+rq~q?5aI<`W\2M<O_=obh-р2 ƣ/NܩWϿ'߁**Ej|{6o]qq RǢ]o\5z}օkMT\SG[QUw:]+&sLP88""! \~ ZYGyc~/ӶMH1"p5%z/yO"H8FYP&)JU%wZ."H6̳)CKCS3_5Du1 ћ%gE; -BpM[7Yf/¸|YW0&p =Bcm =k&}5? '[($/ z!]r<$ Trߥεm3:ff.b Hc> osm&ߚ4}y¼ {Ξ_$ ]>A'&9y3mja.+O 9Xp6(PVlw5 (kB /tz(h/au:tz?<Ѧq-&abb].G˭oi8Bo/>20]4 _ ʸƄ^?דp  IQw_ t?go!yʌ 6Q!=Rqho@]@9'aO&uX12 ?l]cիyek)._^nDIpx1GmUk' \4zۅ >G\m ǠLxth(@.Ή?Q\\5Um#D>Q2?]:W]TQq6+ZQ<7X? U!7"χW}_;:; j:?,52,WYkvyyaqw`aogںx%#߾bbBGy,#"]K68Zmɠnh<P]`N?M"A;N[X܂e>YĤfH(ϟGP'RxKǑك[Tb>S#z`Qt>zNA;\pQC!)>=Kzp+?EG4 &&iB+;g1q/sq=ǡqn!KR7NAe7-RM;N<Gp++ջǸ9giKIt:vg~A<g/۪8(rSd>+Ѽhҳ=yvFrZvM[ c~+X~q8ks]4~syU#M4rm˚i?2NQ/ 6Jw.@IC?5~gJek8udy _[OHCV.A HC&/_0H3鸚v<zA"$E0I>>2\:xbB7ML>Yeb,b,^0v{eu@[]isSE9H:0zø\HhmC~B夁ק>/}Oޭ+FA-".ox4,r˔3_G zk_oۺhh8ìFaFToZc|\b/4t}MEWB~=Cʯ}ݯͰn[-Pa : ꒗kG69K]:m}{:鵙Hֶab8.aj4oS0M>ZxDAgSݚjj@2yBBð8d/K<Y|zӄ ef˃Nע4Qg7.q|ap}jCAvoZ1o@OUgW6C ~ :N/+[εm/K vܢM/; >Dr8?mT=pv6cߤKRRu y #p}<g8bƁNxp:KZ}Eo4VK`J2w V?M0Gu$yshf_'8Ϸ+Մ} ̿eH1U?hQtܟ pk\<l|Q?r SEJ~mO ^l ^2ݞȝpyƟ˅Ls8k'qI}"HnF.߾zc?:*C* _/ڢISNHDȃֺ_cmit-D81--z ~FķeXH: .W6n8Jx{csFKakH9~wwI0֩':t*>U Ȁr,UVUf '>Nv@_l :@O3sSw.z .Y?wsH@%puP2n?H<b,b,Vl|^~^na=vC0yw4Q?aCzj|ai:ұhF HJҭ䯭5 ˡdֻ`Ǥ>}Vo<q>ÖȼuB;K:^jztk}.&xP։W(} cfHyw몇RHkhhyΙ(;{/\_c{]>.+^A-[4POzJݣR,p cdFߙfjN*Eh;mGٵGeZSPpB@snM夠G3QVx oTN5MM{D^ȼ!U\{v,(obdMUZjӧ#@hX&(heƍK8f/Y*->JevTV!G:r/+q <{^uv_10:P}|A+?Ik]Ɓο7"f`taSz=o@it]˪::;rs.[8*bFr r3$F#[vU筕o*ҁE/̢ J{HcFr_5Dr:qߓCZd tiI:Vp?GY Wt>U3ſ']*[\)!^̠M#͇>bQ9ng,"Z:7M:Ȑyvf~z&jm~s8ƪF)2C<IX^Ee˯W-O2/ǐS%DVY9;o<tCQ:V͞n0۶PuThsDaa1O>,J|ĸ&5sa]eqA9]XNk+zNE_>6ME9døv+;߬%Fމ]x\֫p~9jq鋮 Z}N:'} o$ MW8 8nT P@Ei0 RU s;ߏ#ka"A|]O\P@݊q<e)\訄2䣛xQst=^?}%9A`wvaA蟾ާ7b܂.<(x:#|/?rW,F   ꀟq<kg8t•N9!3̨3$'Iyw2zRǻ-`K<;9RzA#g1%2u+#sHS|UJ~i8t*xD}w&Do}qàVQfi,9uoE)okL@+V'UUni6K ZPǻ5HNr\mTi\ >'ԸAs[PI@T[5[uR#~d)$ڵb1w> Fl܆Tw#qlf c=Ѹv풩T&[p; ,[iRD统l OQSYWTN^A=AGA8eU-md=~`\Uk`|{L$+ %Rt1wmӶ| ¾|d[?~ %<`=Ca\g]I~DW֩=c@ cH1\/>PxsHSJA8*z[HuJpE:1[T4~:pOZv. )Wǘo卵N8{;>h\joǾ%ٻ]Iz!Z;xUK YFct~T% /MUpgjn+b#D^q!ŨR0Nm$/%2bgUn\JY"qei:`]%G-, ɯp7gQ 8eoL8(=EPƇvRg|a"yL9)ˁqO~ LӲD̫F{g|F)%9XXy PUbbF:=bJG<S?ܱ"RAuXx _TCꙡ9x{8@dX 쭯.3G;jInnYנ. R/oqgoQW4l~ n[}  }V\)|S?_:F%h +P[x/_gTuh_>:}\uFM*K *|]q~봵{KކS@5'gp'jj6ߡ9j"7n\0㠉wߝ`/8F\\c'\&Cy^ w,Gl-*,\8:ղsOZĝOUD}%"Z:ZJ*VRYvcѣ?x/y<8nOobW }!$X-W3LiQq6eݞ=  \ʏߢ4x^7_z@Ͽիhdi鹙kMpN3|7~:0R[,}''W;e}?S}6p: q/D繿w<`|nmg?@kc:Zs${<i o#+ۀ-S!3F*[ ]%2n;6tnH\QqX\oHeFictʸ9 qkC?UGϣC:iڲ׈:A?%n</Tg~Q>8Fq {$PM QYɇDye$\ߗO{}IFٴ#v*+t^!GN[|p!E-b p]Lu IAS_ĩC_=Z__}=F==T;u+Z"ޭc2QߔaP,3?bhyK񟹪61_b?`n^P[2nqI,Рwﴣawu|b,b,QGT࿸kh7и^5 -TQHoHi9+Ƿ7u| IJɗ9ZɰLN]f~l1Uq$1 @8?sa>MspXJ>#[hڻ0UB>|f5kȼeܷ>}#9*u[}HK]בWsPoFY/9}T;w>1Nf"\զ*DRƏڗfiY1e8gyB=sbKⰕ7<)_f 3%̈́VZuSrRlv.^/^MMtR5P\Cʟ?{oEy?;v'!}jR6}KNk["hm[OMuukJ+SGB&lvA&d(Y4ogfMOlvfgy羞.q񢽠qB>G5;tQ[>EE<\jz^݉e6خ˻KJrhdӟLlb,G~]j 穰TuG@C؄WT &~d1U 7u'Ӛx?$y񫯚qV{:gPүQD|"{1 h.:B"  R ؟=AAl_{|c?P~lL~|e Dߍ.4q a !o#cQ2B¸#oi'Z#s`=HV=߁7b}b-֯x5".,oW'+"uIv4—tw($~/;Aq,ˡy)2,s6׺_u}zcx0{z$,ce[ZƕYIuU#<Dzu;=;kÓ9Vl|!Џ0u!f8G~ybLQ̅2Rη u6oQy <svg fQu(R}#cp)kz%ԀFcpN{N]H4GV>_K)a$s55$!8wrN t8˜aFʻt-`~8`]R}01G@;eu߫Ab{o ѦΟ zxPq{!O@Ⱥ71Y|TqL8vIe_Xo,ab4J:uDr''p<\ĀR|;ޚ~gQf׈0`rWضq祼o^]3fs4ܖLI6.0t?3'N=?L?i'|bxOʾcI51Ǘ= ?ƟOENFz4/z1>G/_uy#ر!]yyP?y PpTc]Wt~b&O˲Xv^SWJ<¸%ꝙv/C7miΆmg8xjD'ʏKěd󡄳4j֖mJE҉k&c{ݻXW#\'24.oO\E/.Q4|6 J|"6J;|`?ߥ|JMMؗB-8[nq oSXK`XXEDN-띤~xC?4kh5ƕk~"8Onv8u? zQHSD&SD|Y qI!8jcH osz*͐s$pjC O'Z?J^-ŵ{3[?+w]~moa^5?5zȆ6n< ,jP]+=BU!w5\0*^`]BmzFt2̇ԗ+!n(7 μI:'ȷ`"Å@|@ 鹷fo!`ޢ q|᫈^=qyC2È AN<ƴ8$w;4WמeFmV~G7ҔIB:=U8?Nנ ~!TJWɻ</|*x$/>9kjC;W4?g| oG0RgJo7HEl|a cÿ5Ͱk:$y^ Kzz2o7]u0$_Z4n֛CI>/g:Ur=͋8Q::r<"/. : VuuCRS| m .!-ŅA_h4F$~u{mt+XćTDP/hnCY}/ba MdEt7dKx #̗'#!*ǿmtܛ=6  8wop̔rAxa[OI7zwa{8^57_\Hh-w"y;*3oKX\a|^gRTnH.;6=Ms45۟,Br+HQ[=q%DۖB2lcЮ<2cE4$(+Vݵs|!bZί_>>_ͻxPQ<icT]|/'M!k"ހk^_h8\9M.ʿQ4Պ`~K,|F-|wYagF}UEQ…B4Iرn9{nO}`/fMp5ɛl<F?-;m67:67u-7$6eƱ鋥mÎ3硟7|yE!qY[q2!ɷFF{B<x>UX07]^#[ZnU,vަʻm4k~\/+bq@e~>.٪d-no]?w"_V庈9 /j*QK{~Y.ҤrA?{Hh͙hKN cB o!HF[u%uXg|`Q^g؇D.yuwtߝ!# (M \w=GSez,czhG B3 By\Y< 5wW-HWO7Z01 Ww}XZU_ WUQ_?̻$~@Q4΃ij|C?y܀]ŸA֙c/*C>Dt!M'+8?FO>*VsQx#xP-||K: E,䙰~ǁ}qJym$CR:_^R@MT~g~ o1`y0^'& |V+?-;'\E8}]pڬ֟.EKӳ|dY_K󀮩i桇xvCK*'[voN'?U;[d^Ceҥ F9{Utkde%{2KJA|U;,s ʠ>e wAP]’I7$tfG.v5SZvеx뭗+ѵ[lP֭\N=Ill]9[jz]C=TCWTl.L}?-;':֎62~L}Op8?5~(?-ZAzÑ*"x7`5j'2o)aKB{W_hSG뽐wz#(JmhCk ähӍεgWp iʄ:矸.HyQb{j<.2Gˇ$_RG@=nߣcAqG!<rUm=mRKlhy X~E;Fw 8KC:y:uyl ח</c4Rn"lt!*dCFوԕvbZ[sx v+諈o.ix ?yoǍ;XTپH"MG1ីo 8"S?Wq r*Ix*܏LڄDY =%駶 H}t4y נ01a C{`  eݱukzoe{;=)<S6Q+ǹ~`o82 W\_!#c*4z8>x[X!a=4ݒsay~GwȢ1_O4z@{Z 臣[/œ7,FH9;9ϘnǨ[U/Go`A9|~O ēx/ [9}ח<s.WŤ֬`<&9pB&ۈMZ1NzO<zny*#^wUջ{Mv[A[ ;V5 3QR=ʋ Vս5e־][>!*HzҬ79$ԩ{r:K\]]єbݻߘzIނ!@3/o tq[ny@y QxFwۯJڜR$?םu̧xՊAؾ6=.Ӣ ߔy/a^ Qc<_( Yx^H|<u0P`dsヒﳕ2JzH}_;FW#qu븂oH\'XwƧa伨|1m7-WHHE<U0_1_{) 0jP QֲmT;5>^TCR~{z]G`3Aw]Ѐɲ=GsH]2ηmDcxxe ->k8N$x-9%<+CE4ADiVGI)Ϋ:JՇҨ?Vs&ѳy>$x01<|iv4vV+_Y0s㲫L~Dy>sy2p>%x="pC[҅`#^W|Bc֑ù5*sWI[}*WHύML`mzZ!8F|6H)JʻH^I<ۧoQ brXy`8\"*. RJ P"CכiT-hKT C?ow|?Ao)ϕ9-_*-}k䛼˙C\[(3<8"ruKW$iMMhS!&>bzYA7 3(cy%x cZ_mIyr u's2&j !spUg)3A}t_ᕠxDJx <$3R>x|܈ 4o9z: #:KBEW}p4&}I~-L_|d]yʷ7OcE #<FK&b"lK9 ~F*.O\E㼊_aKF]5~=9wQ.pKgG;[h/t[0o1W1OVui_u Caܠ'9tb(5Y 9tb0ؚ(񲰃Ǔu42L+h(jsTricD@|BHӵYt)E]jfT!a cm~QpH{*Q]W3/ g!Z7S,% :j$;dTo^ZgXDB# C^b l?` |18n㖐?s%t$=㚟-6tW_oQ8K<ޭqi^Dx5KUOEb} aRt4.8oH004 "mTqX#:\SUM~07=%K~5%$})O1+L,޸q hǞXx,?YFڧV.͌&>Hn>Cpx#ţ%1q~+r]ɒ>A^OmJ.0/V"=7uCOuW6}8Y,qW7ƺh43bHQQyބ4tϿ9y0ΰqru\ü%O,d(c>_ -xt23{OxKe*^R8i -Fx 3} RfyǷaX<WʥKV3++l6ĶkKP7 %0EqI;2iՁ,O?JĵQ0_ả^pOJ!Qp-`_wY赻ȼҲB~}<@=Itٴ΅u%*Q#U"-˳a cqH{á:2g-&W۾*j)|z}iTfHZ/|~PB%}0-^5|?Oyi_`+>#$Qjl|ɷxBqRp݉\t1$]YH:,č5w8": jPp\$^;y$(e<]G-٘;7btQ񛴾d=ыKI?ДsxR_$,bqzjMֶTMH| yv[Lr c$ CCa B~>u#N]-^[{wmgGS`5Pb݀DUջz٥W2zvɒT ֱ~Krx<ƺuLOWiAmd)(ά/_l$}ffI '@#'Bjm}}ſ--l}rqTiLlz̤:A)OhЍ8Ǽ%NpdP'zq~' Y#B'1Mu6j@?Ewy~JxU#|%'Цj;F6 Fd&>k0xϯ v~rp(O I @ ?y=P>HvEl>*C@GgJX*"ubxۅF<x|qú?^+ ?ewLQO3\7Oafb&dނx}d>&c9^<kcc(4^DQXiUUza+6g _HHk,~snXt>fC^wr]N %z<D3nۑ<,CiTzxhwm]ߜVֲr#DGx`+i T u'K +׿?01a Фa^#t |p3߯Wҟ_ /VR`A&N2ק8^&qRDѕo@byt?>o_0/ FI4eA緪} Y&|2ݐ9#2yZ@/Q 8^?%FªQww aހLgYm/.#űZnj<u,Ŀr]9~x "6cΊ%Mkk̲W}mme**0?pFx ͉Sս^mNӧ8qJaᦟAIc,Fx S7Ә×ٳ?Oܸg.ayV-m<czuՔ8z- SE(h%stNd%Ah<oߔ$[WR;yg_W7zrPO286nyjƲ=YU/7%IAXLJ X_Nodu: m`$Z@2 "I? tvBSVMma#鲌Aȏn"?tG:w~혿x1Agu_qޕ8<9(T.'3u&',b^CgGiA0,E``5D"q|Dk0.G|DR1oXżEzL3W1`dJCUKIpl̼W|OAv;&aGC_`?|@!LtWDo0r6 _#m00η?nM[GQvPoYwFn#%B[D]>F9F)~F0oZ901(!|Q!C*[-g_}FUIB@oBX ~wUBXIB9*/5 #~ ɋ˔;#!IǓ)œŗf À~!a=uH=Ox=ƓD{'Z' K#J9RZivWv:i׼?hj*Qj;Gת6&?Q6<˼lpxI깔u.AM1bƭ=KjzCxtG1vs( 1V8QhI '>P?_ņoni-M>լ&5*q^n'dqq,}NZA=iIY:"ILv֑q>I/3ĺkþ˼> ~5<ƍlu&qE VKLήS֓`Y).G8+oUHyW䍲/҆Q38OƁQǣ'INK*< Nk#yݩ˭c_m\M GcǨ{gd3RICKŤ%X >AGS nFk!-g<S&Ïi@du ^8x=H~>8q >AA4<sϖOy77ѺQ6, CQ\~01kilׇ~Ua ׶(ѾO/ kKB"DUYzr'dFxwnN=x3l$sG)AQ-a?1\x /œ8^7EOB~h 貟¸?LKs66ʬlSj|ЬU^OwW6A;v{}Z_ #bG߿gg}-}69S{p{{}Sx=Z;/hJ'غu3B"u1 J5Ǐ }9&} }>Ж?3zN}ዌ}.}2k^VW3Wkfr:+2|b|)Ǡj/n>'M0LY8.~XeLBC}W[rp2b?]i79g| a?"RegrM1?EqJK8FN7 Ays%HݘPߑ8uyHOd*ѯ)ǃolk!RO3jbz1aΧ04B^  | u卹Ti vyz}! Bjb:8j$<}1~+SK]c'iK>"-Y9I%}^U\ >$!8#IϔA"*]ES 8}!})1a cÉ #@E 2\ xcdddF,qx:PG不$}tI"+AuzSj)1~~uԗϷ?I}LJzP@D?F*":~>N'myV92qױH}pj-"Bb~HQcc̭.vϞWn3X8~’^Oet]cQBS߿׈iuqlj}WGȉǛ{IA|2?UW2Qvc*,_crٳee?ֽ 36O~"CYhUe<off'&Nl_f}/(`p*ϳO!@CB+u4#폲LKl<jx^ [ _<Cg댽u>7قl'竟R^Ň:UOpP/&g8ʾ+,/Ar  iMQn㳺v?5^,g* d(9_&I9%dq?K ޤ[O{5>d8;\W9:yC9p^y^<nu &zZ=ૄG`fLuס\D cec?,36>CH1V7kP*vm7I0g8VHDp%R;c(MXV9th߁  ==37L}Ӫx>ǺJP]%%SxRA!I0#* qaCg8N1h?1a c^ 5.!.Mo'$qAA@`]ɆydWBjQ(qcA܍-C'}砳qbM$/'eH|>W ~ > gɿOK 5]ZwU- uu IP9#Vo8x !p b p<)Ƈx>HFLKDwbmF>HqZ]JMסd4;.r|<yno+߿O@ "8Gxo+!N-x}roY;0=z5A6< ] _א[H׽#46' ˢ3b{>]9\:_6b~+$tG^!A 6/2[ &Y!^RaFNy`8dSqss'޹?Y|Դ?ȬV\4I76?L2>^#AfhXY"|؁߉<>|>7?+ şӛ~Óf+c[b)Lq\P#}J6&DY /iMKyIX{ ֵ~ʘdus;VeE':*mݗUQy}aÓ?>.v(Pjc[ZT<|xŴh홀+Q-潩zDSwJme#{!1[$o1_AcO"7i8O`۱EKՙiן~_)M.]ׅ JBA_5 oW)#eշ<P8C ³(Kׇk/>us׻01a cU LT_0G5Xr]*9mt `x`4v̉o1uC}*gbn9Pe6&~(]7OzHo:\q1hԜP&o*|H|<F γo1Gru'g8`fok䫲xJ9N? [~)N -|2't|h5>߱)X>Q"U?2ʙuue z/W-(؈Lٲqb<wRu}"|_n0]yHrr!ʥ-햦hk05Y:{lf 3VZMKKmpQmZS5A8R?<w?3y.Rh6oKGZsvUVVbT[3eOl$SeUD-ekZ7j~]cU8;FETUjjwAᅚݩl]SLw2*O-osllsSSi@%pPDu%#j~+ 8s;l4jhxE"jFG}>6LBaۉKݏzbÉ(O[9U $|SyC ")oKGxR)O#}r b<>@!_~xjQU#XW$<w&}==ǁԠ"nw=;B;cT>J /*{[<-b0(\ŝWP=̦^e੏$&:EL50o.ŋphB-IrĤ[z.}3Hm}ѺK'D{sy1^:K.u!x%tWo|$ <^ZsjKU#F_i WJیK^OzO" jo+8]/7cG7%Q7HBQc>?yu M3ę3Sxި:x/H#fqB{+wW7Zλi%o&[oE8ڷɓ~+LEs\xIBϸT j&BH5`u\.npz[2[Iulj2%O<25 0fMull>p*ٿT菎R/--;U"vR&B[US՝uap#/plf|Ku{{b-x[=I&zk3y?9@VGIWz(ȑ5[N}z3X!J!%NLɎ5a 'b3AeKɦi? Y-fѼI8Y[!BѰiYOĄ/3`V4*C@N_q58{N8/ +3 _^^x~0EAPdnGKB"Sִ밗-b0Pxc Jε^ OPOGP2 HzK(AYE WYz g˹Qcz<ؗ !b|'1y $!v#>+: ^g(Sfnl>T?#חEopyB$4:  :q],,@CccB1ZquR&oKG\W\2$q挗oW[h! źcﻫmf-[hz`dx1q^ /Ȼ"MKwݻ֣|t]~+N9O҉8^r~˯vZ\y/n}.{ΫGeނf]yNrZ6En˞fr ZH|ujt04zs~RJpϪU7֢g؛QWY 4srQ\mNR̡b[^Ӛk˅"+(NɏZ9TQ.&[Z)ϕG~.;ÇߞU!L|<5 &6;kk7i4kWi0%e^Vdc.Bi]LU*7g^E={ʄ.i̜^* vUnpo9t">cH>w*W7y Q~o0_b i`" x->4o(L1>vx}]21n+יN21P !L*?Pn {rѳAidQeTb <F ]@OEנ?01a cx-q hP=$'cp"}ުh+~2ҧͿ븁IZOQ}ovd:Y-"- +>8@ֳacxe9wPݍt 46̴rLk?|:uyi%W"&٤q:(͂{]Ǖ1uz{d/kqrV'n/fuɓqC{T<lbO;(Gf IT1Cʷ /70naqިC{k!1,<c!#V_O%ܹ@g#GvY؏8,78N KOU( ZT뫭'(78h޽/0z6-ou˖)X0WItH OtHn]λ t:5>>;}U9D(>UUEyi/n?mo?rt3S ޫqtm!u΁PȥpzwoYd6O(S*^yi69T8}8<Cy0nwm ?)NH먖\Wx\(= O?ɛGveW֊ނNQVV`_Qe 3[ l.n~-ts<oga[,;SCݱ&Y(ybyWμڝ"Q:Yfwha"z'/7*<rc遮YO|49iXW_l.ё יىj^r_G ce1ZK7O?y,1o:^4I&`>ީ\Jb?-*iq~=vkǓ}Ͻ ij5{>?GKA^?Qy.!lcM$ )Rj\~V˚&DscD@|Ȧ`a cX@ UI(8yu-싇[$+V-=o"Ej?eߵA#j>凰/ y dAI^LXkl,fo3ñX̿($sZ޹6q^SS#\T^k8TVT}9fC~ɀ x<n#(myTk];ݲ%"NhĨX3e%D,ILSєqpC3S pϩ&b[ Y?>~[../♶9iޛeLؙ:K^*a?qy8\<xvͯY>f^|XwNfq ^T6 ڷojfq鳝:u|M<'3G؟!^I/R>8R49`l=wybź }nX7**v |R.>?[A?w[B{ȍ$y|&@{]$tIޯ'!J{λтJw +㺣 HO:C R+H/~C}} 'q*IF#)Aiռ]#W? fUU!+ܩB#qޢd#Y o3P}'Y>`$ddc<:B86qrxx_TQy3 j)>] BNj!Ew*[f6¯?/wg^f)QNRx0V{<yN VZ/W37>ԏS!/4C.ב܇OI5m/ՙ|ՙ^"KE~0a8獹~g:\z^)O37rhF202oHR.љzQb>ctc,2ׂap=`'YG}AW BkշL :*'S녴+׍,B%n]ҽa c0R k94ysn9/*8sdԩ2}_\":*0:'l81w&w|I*x'lΐs_ ?z\|Zg\*JJ7b`N2', !űS%g?H^Ҽ[Q'e.ztGu0_ ]Ġ8Bن=QNډ ?ii>bɢMO{ a}D*%8_"H fh<n>I 3e˖)oڴҺȇؼx}&CyǓu m{w I% $Ց< y†P.]opw_K~w#7LKDtHBb4. ;¶mn[[n_su-7im:ioNucdRKCQr?Z.M]xM'DRHHHPg\ 6Vܼ~΋84_:7&?^d9{.-.I;O?JqrAseTR_A,\*.^yh~{VJV~L- ׌TF銊-gk3ڝv-f(s6SCb[#NN,Jk7)-u6 IFcMʮ`q+gWpm:^r|}zMYb;3y_};Ӻ\Eݍ^w+.?.7վzPשïDX̪I2$A? ?:#e(\`񹌂F.vvK(AEיQº߳3Kuxy?ySQ DxgpJpo{TȧZ7N*=h:s,2wc@}HP. =+n11a cï.!+x&䧪oVfg߿<O)R\71<uԶk]a=ìp'bΟLϴzoc"a9Rrσҍ?0+w(JJTQ]1N"+ue daサqqee33,{`2nq 8-8BpdFͯ[9B`B?jj<_~Sbooz?19r/\&)(_ߤ #r A9c8AaG塒$ϗ JCL"qz9 # XDZG#yGwpjYSӌv9#=$caa*SVfX<^_ %x~/!o8[e]qc.2i=Iŗ>tM|<"uXo<~6$y w"C@lt5b.29t>5و@?VH?)isޭq>BV;8}rfnh7ΊYԋjjwhZ߰8 Iy >DLLC ,X.(=Ϗx;al\E)jnj:' c\F[do8m2rTi&V/qQ}OeH1x10M/ߑ9"{yLG2vͳNAx.H߂6w֟Ҽ 1^xS-|Jw/1FxwpM%3u>%b y^B_rUl ww>j<$vk*SLta_\[og2XC]Er})tx7^g PS$ wD{SG N<KS#%B4ϙ/?ļZRL z߿01a NXԞb7;dUX\{^\ku2| xDp8!mV a]snFfZK!:ا|֊`s 9}1V.ؼy X7 <w2_ea=-o.3q0 'vSjKA./ `b׮<UmRe/L(4Qa6~gJ UR<f{|}$>ַKjwr@uu=t>Yxا^Vz]fQurF8hPDWYyI-ϻp]*<n&[&mTȠ x0_<d#:>ASr=}d]gR{hEX-cޢTLgG1^9?ht_!#+Wrȓ~˄y ;Xyd>bDrI{@8:8Q݀Z/WCTQ1OqH|I|\>2׃>5b2/ad4WLGVşF{Vl_'y*_VV\G!J|ɲM4Whjo8 Uy7r-Wk߫"fwXHċC*x,WHti}˰OxS>)ek#|rM O[+>8x\;)9Z+|s;+܁B$(:+[3W(<t |*/l :TG8^%{ueuݾ>S6)lk)/4ǜ/-. mXH c0`YRNKŒn~Ae75KSg]@JʝUBUF#vD3jM68.=D Yh|,x)cGr:"&lxM6@=;p7#Թ[9=G{kaN4nq_wPVxc};GO&]ЧA- اNyJ݂ $ew k2c]@׻пa~Ru!)'g<y׿>#? \Y*s]FC> VuSkQ1RTިqc0"vt?U٨4q.nIw kԮ{h͍Fk5^<-F΋J^ıy;cUz Z:YzYgkaDf wC ^U5?wcc,!8ʏvt(.ٌP$3ŕ. gtnˤq*/Ì <){n5'v8uL)/,wr=uiO5Uyb+~]nb&;e^G>,!mۘGc O*^R R~0#RxCb>EFǎW4=?6}[-P5u6VJtX""v{.JsJtP4ΧiOq". %=Wɔ~iqu:7+*iu/1a cw†?tDB7:ڻuY XUâNgo9 >l lgvʺ&lYvSL-Yt[Fn"TKZHb\   aŲSoGM)Ypض܈U!ao+!2Q$<|e7~r&%_\_0{}S:i싙rV6y3yjUξ}bh>Uܡuv0H4NySI(y{ !zi{ 7֍P7?E=G}~KFwWIe8?`-D~9%o}KizѷS;Ϲw>gTC+ȋ rѨ< zCh +~"&{TGjtO ^qCq(>> ??_u^<N$u3Seϱɐ }zPx*z/@Ii[Z*vjkw7)jkwyj\U[,lxb%4W-eq*w-ôS=Sb~BU`g϶H!׎Y_p :p;1.-ۤqv0eUy7а[׿V!O\FƋnδ<*QtkٻSQ}LʋobC<ƅ$yBr/q_ | ŭcqZ)T UMh3fowͽ+6-󡸑Ab%ME[ZV );"cຓ$W01w8/Y^1:Eb01QU_!!yOQ;&C}CT1V/BP|q{5)Κ=;]D@1ݵsI =%roZe{n~kuVhk+ck)J{NTUA!`HĶrVI\-MAao9\˛dgy't?bVVfG+[uuڝߘȺ .WP^5c_ryڿ>F~~rqFI6΃e"=UhZTm:1.\]%H(UQQ9^0}Qۂ[EAAx-w\t<uHf` 254{zmةʏfZH֖V]mG 9a[qѮ+CuZ!>8Gc&Ή=:k1L< z&x8k}7<}Y>(XJnkBL;!:z a b?*}PQj/ IuX?qvDhh}V &.PC@}'m,Z^v< i?Bu >&Wpf fO(8G;_rxϕ#˿/qOXJ&0XK.{`tL*\kN҃<lkx Q;gm^/L?_XGKlkf˘eH$7aCJuq"_'Rm៟RgM1;"qK1ڟըu{>iT^@wGo6coF8q9-Bw)o&|ANrdf:|uZBdK1/ ' Ir 4r_|\Qhی(N]-5^G~x >Us|Q̿ofG'柊("(_㉱at:Zdr]ҳ 5Ƈ|&}/U>@FӂX9x,Һ\ys<v a--6ӕC՘B<'D\y !x f'͉9 ۝4iT\'uOfQ gL* K,E旧GDV >_}|?$Eyd8gJe91}OE4k._./Mv7k^/+@붠$ [ɾ=Z)=GC!܉ԏNY$ S*!Ӡ6(3Qa(4u'-ڽnN>vyx$t\<>n ua PȃO]JŁ"ρ('[rMAD(B!Ky:;ࠁ׊c1nH{C@[v8={S߲ic[şx0}o-Iu8}7n4Q'c0 t ty|$fHh'd$-̥D}A2>'t/$_zsiȁgNZtOH] 3 [B[,R<{i0g#FAAO!/l?üד*L^{(ສXKNmD] ~Dfc?qS\SJMqk~_KLD=B)<FF s z@O:o\y _n`jMEs?kf7Z(nz( W\ͪr(n/̜ibIzt[ci9EQDE`+nKR~B֌ll/Xg<\ 4?VCm3𲛿~8\E˕} o8/E=xin[IKl׉wל__~qNF^#Y;޳ 2O?E;`̴4Jt2JB?DyĦ$e| ,Z@}O"O<i8ao#ږ,/_ _}e_{`~0 K5}f>WXRA? ~Iay0Ŀ-#Cnty EHLx D | IoA|nuP7%k#'ۧ1-B[o~-yoAR3?I^xEϧY7S Lu<ň묯==ujcר+)3Q(,?s2j/wo5TEEŧO?pqWU$ee"J>Ɏ[ O)7Ohll.`:`w5j4x*R\y KD㏓C-jC-"̿UYi3 /#h7 (~L[;3[pÆ?Lv;857LZ?Sբ̗TK߶C"~31cԟ|=Ų2cm|0>9oKUnI[BS:3Ys6KBys@̟VR uΑYH+l]f zGɅW3w. ׮"Iq*`ϻE"("~ԅEG}=X?1+? B07e#s6?%nTI*4j *)w*rt [#gŋgf)6(~_=߃[.VR]/8T:N _gT}] /rc-AZ{ɽiNJ+C>g*j)NS5%0WRmq*('ܥgL! A]YGeW6uQ!>T ?9#3nc0|G cK$[-O~r ::Id#\n4xWEp\Ln2xIZy W%4ǡt! ch9ukU~_y3g>(D~?KfSL *!uq7ꝤDs3w%:u̟`B| ǎJ:UI~DE^0ǫA{;k QQJ¢` 4>#''OƠ=0MUV򼷼<NH>ȖQS+o_@2{tt 5 9Vp4F{-l)W` _Imؿԅb>q{ *ˀ_szalyw60GyZBX{d:?z>n x q.d.̇bC%kL  G8w̪F_Ŝ剱fI'oW;'VRok TN+hw_\Q* ͨ*6wsJO+)*wf! rP\,:!FT/"P~wrU{dѝ"("~j lޖ$Ybhev g9sg\==o<2Z:NSG ҈,/Ѡ}6&S+,v8YILʝ#ls(=Ph?h'cBt咽tifˑIQl>4c-Kh6;_!M$tt#%B/ %oImsC-L$ShD<6=d2x>O5OC[JrqY9p=,x<!+ |E5L BNIhޅ12'#P8N?ZTX:{,xɈ!Bˤ6V+m֐VzHNmoeq+~PwTΐ&<qR HZiFZ}wZe`b5*t>ՠP۶mf"LK0ѡB&嗇5ayQq[7=7 j/dȥU͞G mx&d[n9&/5wwBBE'hkvx Bcc]#ż2.3h= &4;<Gۋ}RӘN)wDh {q3-؛+Z<Gm[{V2].uyH 捘7~1;j^z}ӿG"~3oBEĺBsfXi} y!XAÕG6W\?ק\;t>;~Y sgf!%B۶|@_}W577\m@A? "("_Ǻ9v$^g<J%_N!459>nϹˇB3[ЙnVSӾsXáC '߷Dop2P_Ynѹ?omQ 3}C_ %[ྩ$kE`z@!>>=<9Z/9di+~8hGd;mt΃$uDOd,9.S (8ǡ}5/`.a}`nGK;,eOh%|, 8>My[q[jI"x{Ao9B/:O福$g0 | N~{ic |NK6@c_{ {)# 7c}K%:/觇׳+2&<@O[3!H2R_w]>'u0B<Fx4kB}Wm] \ ^xPzW~ocrI5Tv`}T y.$_wxQLS)x_]GLk }F|$}sgj5 ,Ҽ I0/9&,!LfMCP :(.ɊwN4bB [l-A*Ut4Wh-(|h,=p\Ja~N,_pY\@~IF]vDfqCE s#ȯ^$w":>WPHElzcO*&˼7meQuQDEQD:yv 1GyD/$3 ~߉}qϮvqlUUb_ES2W~&x^jqZCJ=C=_INdFD;%%8 _j-z/ Qt^}<;蹳E2ƚ]A}]n˚5IJ>eҘh c t%3g bkU ZEugC3ݛd˺CJ AR{j<f&&T8yadt/^<C:=^7ٷG !bG=)y.[D<ܧ/xBn G:'`+/i챗 :uKNH*Y`4 "c|Oo{-ީ2;ԃ|>[nyZ> 6==u"KOW8񹮮:dҫmMD O/QP^I_~Q~+^c_Nb*ՉʰF$+91: 9lխ<j /(lqd|ȨTkzt搆BG7k=GOL]*g+!י QE;"f~vho8pޢp.ftuUuxyOiWW$>PBOOBrQC_Ӫ̟F @؛7E;Xx |F،pU?FQ:r;Zc?\dhZfoS ͣ۬EאRɼBDEQDbqc'):]{8%?/4IZ~ɯOHHSz҃O@ay\ŨnJ 3_ʼns,UT_|2{՚[^i6骏gu"TP~R^I6;3[IlaO_NgckTX,/a2 YVz$llB+ZѼÇS+5Ied0W55'Ba9|wؾ:Uz|<!}-בk(g7 Q\_Wc6E|P>8*:RbN:N?-:&a?HBՒ@x"p}5-df-oy :Xw֪P=_5*zrfЇ>0oYymVwhAS:++ up,~ΕEEg֞6'3 nfq?_ihyv[#(̙޺yOlOnضmOׯy2BHs(.Z63{ElYrՐ6WLOQwRSʝ%AqݍMw'ڛb{ԩd\E)s ~-&#ZpޢƚgOe۳ؐ**.D^ uy~%\T4nebBx}y_2\pj%daMz)׍G QVЌڂw;$Ef);$7 c78 w9yJ!i+ՋeohQ/"("(1b1>FU-R%g 2EZ;+RPݧYrff?#7wժC-z&0Rb6/eU護W9TΆ Nf 7` w}6:%|@RTOtT󏺔 y kw|aAs1!GgV3_@rܙ#e!g5Ao=ֳ_C kHo!=#'9K_GmP8:Yc}(Ws^8Ϣ u5pN3&ک j񜈗)ι^_xNԫ~ۜsR^H^g qȠ%C>vHno)!J .P;aD~?h[֓o7d4a>d|3tZ ZeDb92յTdLOZL:QB2~#20|HZ2CEn;&l,z-gɝ}vujO>zBдɵ2߽^Tn7!h0p\tJՄX1oP2`Ytlԝ;DP'E/5|睕o':qßpTkQ?,+߭Y$9t.e_~p,t'LFsyn>d/ js^xhO>!kk L^=45>&`ZBg xv TZ#F(;& T;$7 Gcͨu])p4=0W?bBW!SDEQDE˱ʑ89 $ZUqSmh}u7y@O}|ͳURZ_ 46~csXwYYfIIIYI/^7L5B:?~ՋSl*H}v;0/3x.fh͕%cY*ɭ؄ 7J" ]瘍6UgˎHi$+=q=GyI <˕'-NCR"K YI9vdd# qcY1UVLOCEx s L ܟظio{o)>|m8P'h%*Dh-[,ߐy- : @o-484'5:ums I'"8DB/ }~$4j: BЁ3WZ(7R+$dR0xp 9*˅(x TA6?T,U]ܗ+Ñ>49C뮮_QD/43sJzxxů)cĚ5K/HÕ/9ohZ܎-$94-m/CiFFZT. ]%wO}}YoOGGV)"xiH|/=q|"1)ZMHyDfhy CJlzs.BZ\٧QDEQDXObz ExSM/c]puBߕ̩Nlr"-qЇE*pƄT0?/y[ @<tB.:?cRN"tmBf&qo-w6y!h!RsLcs^$(ߖE:_s"aT&<79th\]ӂ="$د_k}FE2Ч7mܸdӣRI>iK7 BiBB(sQoa}j'ᾼ ~t9 }zhD7uv->('5Ru2_Y?Fc sCZȹy":e1_C8F%UA]Glp%2^0 g?oC#vZ؂&asa~ KwϽN.CPsM<Go6_9_#a=Or@0ɾ%o?">tc;,?삜5')_ޭ ٶm՟G24%v=䲠>ˣgS> &X[<2}>f>uuD<W^{_ǀ?ӿO"~pl<Dx$g!Z("(7îc!PNISA:^iEo i/Ѓq$CYnVN+dJnu5TLLDܟȲ]]uJ长O +KWz)|tJe~fd֝<uA>ͷy}i$ 2LxϏ07 x V;whF1Ѭ NfUNgEeOdԛ-9})))F'O{?Ͱ(_{<3k쇖&K_HL |߄tn |wQ [Opwդ[yr>A̎n^A`l|<& ~y|- !lC!$8D .7߁u+kQ^$XbG_hp-ǎ 8/S&yAOmި~V'球cb=ΤG16]5ѩWƄh z^(zGyO柎'ܲ~O@ Դ$r~@Kz:nɒEz2nc_xɒ_J$ 9q4XVO^Z<Vf uvVQ#\[XU\_Gy#>)3 rڜ{">ɈfYgLןXr|㨷俐ǸO"~V<1R#e7.䇐o"("DZهx 57Sr>$E[Z'W4}j_YyxvB#-+-nw/XM $.qeRe>ejfэS~xT?_j9_=5 E5RR/`IwqT%ij]-K zz.5 2toH Qtш; | LO?=55K_<YRICGf%Skq}V%2>UفМ`xTV_a)S< 07Ak_ꑠH"~i.; 530|,6u2h? M)`B5ǦpN.G1|ӡ|x~6c%0|8q2竣 A RҹBǴ0lN@Ίm5$5N|@} aw:J"*Ұd08Ϫxsl$spfO$_DH2NO?7gϺʕOGvJϖ&#!6 dhk+g||+':>T]}XҪg>DyG8ObC<".U9!da~fھc?KM}q+5n[KQb| %Q۷gJs3 ~ќˬqB}T|}l1B}H9G? ueSzmm~t# RJ5y"鬅H|*_1D#~HR3e:ȭ+"("9xx W Mk{*+HRWW81zDRnľwUϞ%!ZU廿lxvvMLIykv ]B9} :xn^Ϥ>M8>~;W72vK|-CMWoFcǻtiN_ηFNHSC~mEš'~6f*'sX.7T[՝̊&D+QmgG3_u4L)ӭ:GyCA?{Dhhr9.& &WlF&[\/ICaߗbQk! OHa};_,No E?Ol6 +Fm"V2|J"x%#y$喺di.xI8>`rm_&iV|ŋx]x24Euu4uSfG_I([7yˑY4PkH+?>@8}(qjӦgsG3חvN̞#guC/1TMK=ڜ]adka(O`y6Pl#\֦UԜ~O{<fɸ>4^_b_gt>2{>Lh@}XJYs,5"ot>}5#%&dl>B<N>Ж+e3Y|-DBDEQDE1y[fA^ۺCmf!f5 4ZBy-52JDwSB:NN9V߻@WC~߻ǔjQa<CP?c6ib̭LjEσOE/*oeZu܉[zq>VpvrPUnzXz5-_ JژꣁU247P q |awm}=5_z]XJh߬U0 AOk!0@gsn8իI _/^zrU8_U٣6cb͐90ȠUD9_x}xo= :PA.-1n1XiH| E %q>u?,cݥKK/yJx['eL_(>4'cwُqtO>ٺD'А?mTev|8eY%<FCvdV|Z>~)Xt'_t[V aK0z>\ݾ+U D'ykRQڂ~.>TwE(W/|*Ѧ;$7 C<F[("(#bk/|:opJ^ 'bH>KrTX֩o @Ajƍ>Sq'c s\;ZN}I, 4/$%߿}c0{cQxpɒ_ft[_@g} E$*~G ̩SJy4:*wh}^e}cD04>dX}.6rlz<;_1໠S༂Y.dBȺq^HG`^H#qjp޶]6W,߷TOw8{$#/破?vzA4bBjB3zXi[ ^B\>ķаNF ={KǪ@AwuW;Hfz?ZA'C?y%_vRq|D˭'#T}n|k=5uuG㩞^Sѹsn6Mmm1/.{N5R;'"ә'o|O*M[׻]ym6 5JJ PƽB} ]S<D|}I=n˟\W GuI7H3/ntSON$/SaVgo){c1pQ^fJD;cp{sg.4.-jZ<\sKDEQDEjW&O+F}{(2΃(%a>LGVcYq^u9ff]*8@r f{d?zDX. Yc+W;;+|d[{S_eB}v13e$jjN:f[m[/ e2E~9Hx~8xlf;,}Kv472f>sX+SjLdGRxO]eOgI/v|:GX|J8s)z-$? WkqMijtj_~{NK4 joY mhy^oGKL3:AB:ƂLFy Vލѐ!,ĔkZt%*>$6VGoECx &o}_@(*'Z~X"nEty|n}x@A5~=}3FW;>vlG2vQ@_X67pKڍ|;a?FWO!\+̟PٳO(9MK_oW+lD =fC+Z$O"~p?jv{g.mZ2޿<G;"("(*FlX6ܲc >sp>z >۪k6T}'|2?+d:;m6YWTTexnKܷ5 3t\kxdvc#P xLO;,{ɫx|R P 1P*PX*{I3尟so@}` y,ubFJ;:.1AO%l:hX "|dj K_UHoatFަS+-}=qBCGf~#N<>~zA?Q{WpF$osu.?@:ϒGX?u^= ґxBzo+tM[.Jy?EC.M`0BkРyP53,㑆o:[ΒfH3zQ_n_O <է~8 ֤Σ[ߟT8ۥ4`Y0ğGD5R~:󿉿ih׆fn&P?#P #D{@A7?E/-U!+QCQ/zΙ=Moo֛"fk("(7 .,FcɈ` 6%"5&|]#/=T뻤~|38ݪQGWݮYꚚOp޾nw cy`.P^B<JDCJ1 ]\ ߘ),ϗDQ:~Z4_W|ui(QWְܹʵp}zr'07{ \`}7Oh6{;.Ys>5hBN:'`{Lp׍^r3! ?-g3_(hoKMHsTa;6`71X9:bz^Mh? e8W`M}о>K+!D67@=!@1 N|M|b2?/A/kļ y1Lat[24'B3ȏH4~p!9%x{%17XsF{t_o _ 3F닓qη=us_۶mP:3)(؋m)CGGŴ;5رohD8m> 8OY؟?#AOէP\DRY0o݆%c^/?]ِҩ.[#_Pqӛβzq$"("?O]X~/C?v[sinS _Ox*u+TZ냿xծWY9G,**<G(wfOT[[Ywn]Ro$+*v=~FmˏI\uK̗hI}s \ C.]*ۄsCMoc=ukJ:{l;n-PK YGn<FC}68PP=%ĥko~ҼTWK5}I_oDUωFA]9%:, I|V9ޯR: J:38~!B|$,y!\s1#-i*x ш&˔`?N/9d-: ]w(taaނ0x^z2׻>Wco,y}znY;}mW$Y4VjtH:IF+ͦ_{P=04來.p:Gn"ou؜μȓ_j$0WAQp )3',WQmRI s`;F0/~s%oǕ$<WDн,q=k֑T>GБMDqQ>}:7lp~$篲e)\H9>_+Q/qNT1D;c1nu:?AMo$}*w36+D^CDEQD"UKdroT7_Ox qE@֯B5M'dtTClz1|*37\<rǩϜX5Iod(kfNñ kuzXA=MSo_\tzS/ݞp~ K<1(E~yLOgO`Tg ?c~l?9c/p# 'WT=ـ$PUq>?/&g. n&S"u^ofו%YsnXn17a7R tՍsxL+_驓X~sOO'UXh6tw_VOA }݄:=䎢8#tnv~uޏ`>j+47̕J!.h#) 4Xk<*%}*9$؛k]rWM~VW8nk}yok"C3 Yk1]]?I-kjl,>/hN~&[!7E0>23ALs4\G"O }n(?I 8/<?@DO'ssw<d~0;gz)3U RU/}=\!/Kۼ5d6N'cз<m܏ݺ}%y9N&J /Wszu-= sRx8U&~?UO}CkDm8uPꊅ iPؾ}[91s tu<IAMFd-q6o_ NĿ(Jx|)urj\4DPEQDEAر2T0_%{MK7ߏQc饛> K<Q'|^{"Sx<KFrooFWrrv.>h2S3J4pti}ao<6zI><_A}NKQ}p>T7ǫW#Wjrm_n y-/ l!QJ[}(ο8}-"}YWCņDEe[ק8HQk%uuJ q+&84T 3BŏͿ~ͩ6l'Rb9R3}FANBޮ =G &wU_u?()EU]%%Ydc#B%[914#Ϸe,\}qeZ~3=˼PgP8N-yȞ;F.6Khƭ43xy!8μ *dy|K8K_X^[cI_:o7r*b9:q?@7>~D9r'8crxhyj^gFn+H<[?q\./\5Sۻc|٧ J[!- LiFc0|o1s 9N_a6(B/CsXVs,a 9[1O;>19jH?+YU[Iɸ,oOǜO$ȆjS\U68IB.?"!"( KϗQvMP5n9ʥKh~.EӉPu=+wޠX#ل9@+':upӫuvVRŬG #:> t;e?EBIXo7ϛ=y,`OP`żEHE~?j4VCjq: !y%p&yA|K p>óU#)JnGW^f9%i' w(:xKUKs[IQ[ ZwrElQWWO."ll[Z_NUNW.s$ZZ$ 9rd|P?v|"m,yI4PtKtG] 3XzG&;}xyZJMPv%I/TWk9 y/IqIPoȹ^{rr]mm9#^t4y`#}ALc/wIJwL8$B#&}Wgޢr!/޺*ydr__ƯiIu-d>h#0 P_Ѣ =?ȯo !j-5߷e}v8t3Op/w\ؾ-s?w333< )7fۻgW f@dqnm?W - ݗ>h#ړѧc.:Ilg@ɝO}kǏy,{MJz("(q.C+# %.eH}A]]TW^6}B1B=>}=9^:xFӭup_=;;cRT]].m"M|uD, ozyЩnO߆|=8RDž[sd0;O~iO_i¹ ocfօ0*aMHA_\l/\{>:// 1s>41g84Hy?)p|BCCţqe$Y5Nou8?ML]ڠU'WC-2)(ȐM8Ot_m e ->YUnz$ߖNL3 ]GRtU#:r$Mg1GK]dɮlFzs<Lz-@Շj|Dga$#a8rKCSC쳂hTyZf }\GG^׏+ ΏIu{[TjFn,;3Bsi5KB:is_om'1I#UW/=Ϳg N=(S :%<5 ?tq[4YQ7}^tr;*̆hTڄ|9%"QFR&JEPEQDEGĢ @2p>GY* t"ˠpMԮ]H~%׿j <Wy2:Lw3_@><>2>(I~2Txӈ($zRm߾2d"2"B@<_RC|sܻd4x>F+[zFEmKf<0!8_uh-dLXgO3t}&Fl9^$inv_ ! -. #"CyBB\xLuTK=nKrא"wwv6<HEE/ܺoW(K^/$`Boѥ˧gg'f?kv>Fƿ\rx 嗧W =7'_4ШhOhY$mm'RxNi,2??}cb9&?Ǿ,jBee+z޽H/H'8mٲk5ioim>~~:@'q; :<MO֝Ԣ(jy#B.-lfpnG?lc#Qa}.Qi!֡?oy /wM(}Z->1zIv{J~2 k>sAA]Z裄.݋ -4}0F}]t &x3QD$#tBy*!u.!潊("(?."hk/2c3N|е\UgՠOZ;JҊ՚g|QPرݳS˵Y>}Io$%7>D :d;7΂/~:qw(#r+|FFaܾ}$kLNgZ=\"FIg>j&.P{f8,R`fO4@.kn4>Yޞa#wA}vwt͇x9:F[S-i \JXˤvV1 ^Ҵ?vRZv |0wrJ״u@wØP__G)tdtj<h-9X$HmY5愜DGrInP.k,*w\OxTΞ-iP]]h~^#a[[MJ593= B”d_fKV^,0@_?N~m_Z-Gm~]:jmzlUR@GR:Iw#_'_'68!GwC>'K@-\Z6KU=qNDQMN߰gHKH^O<T l;:_/m?{u}fFH10R6yBB]7F) Ml_RKxM M:{Ȗ1c[&QllӀm- _=3%[n:yY˙sf}6@o6Vw@d1 _ɋ,z VQ?<T58,G?jyC<ư>ZxarjjL#PPoEPS;Zc'BgOqZ4aoHa 4Ch@} @Ѓ,)q)f/ì u{LCPlָX*3jW[f|U_f.؛pĖ54D;ڛ-)u:: q8)X㖿NѦ'|БSPebΣ%}(E/Qv}qpȴq//%t<b4j YR!О|^o X-(@݂hi-g Zpg<Q__>٣s<%$Fd<sdFH4ӥ6TsH /xO)גQ:Yt,l*;bTf:?1'[ kkI5jk8f/]Qcǹđ\kq[Vǔآ`7;S#e,:P:vw,9aι/nr;]0Xa஽|ҲG@͚>s_N8g9MO[\iIgUgop Or{xq?b8ԋ_e ڸx WƧʰcqP&z=i Z iaZNm>Sd;t,Q0~v{Q̈́?7#oLh͓}zUC 5PC j#ӳfQ'.BәAbnZ: N'qҽ GM HϽ((ZTCu1I{FϟVl=Ay:?L)T%pֆ(|s5?H|<+{XVq>e6Yg_bV(TYyvvӦ)__eɟOxq1}-)}waceJ]7(o_+E&,UWl[PS pzߋRx1{t$5е3'^[T={|n˚ݍ%F 9p`A=~b`?NsWl';:_CΏ#EEywMwO8u[ iTϟu.v<ʶN<{3+u̱,z]o 44"<R؉UOEk6GtH]aMn gZ-szg%8u蕜*g8Z hZ Ȃ<d|O(AN^81P9n ZoA-Ǽq]՟# ]tͧSNRv=x:6G̈74ӟG\uB4 ʝ=r}pn{M04[gc$`Bm~ b5W 5PC 5q'.jƯcJCW4xFuOXZ cщ1 gvklR}>d# ϟ?ia Wq`.h\oa9$KI%#<a`Q/nyȗ=~U䑒);wxP/:zATFz#->Cx(z"ìi%J|%cz=>t1Nqk#…)ҥV>ĝ-߸w7ZQVZoz6>FY&PEY-T!x]=551&1|_klyDxbL*#PVbst9_eYK<v-6oKkN!.('rƳPWwdnUWщQྵ)YL OQxSxq6 B08"KW+ORrNo1N՝M8"ꡀ/F# 5װi8^.ǻw$ǫ o1Dd)6W_!;=z}B3,e PGRo}/h* 5LM/4dMj~jjx#LΤlgd\_FXǁfx҇W.%[1>R_cJ75<D@JŕgDbkX<%ق>)un(yQOĿ7etaHX5!wP,L~y (!CD# 7rpemD8A}leZp$<qU<E~ǾVt<:jl*\lf-#Gr AD3&-z/$= ]zPdㄻTppW0\BX-j=Hҙ/[=4t3 X˦w,ݷ  yԘV>)TQ#s ŒsmJoNBU "Lf0@0,],TN^'Wx5I\O!y_NV"q.E|:+_ I' &)cpx'gOoaAtqy/A^VAqC]axY=[ TüYɳAQM~y ]J =&WU1cdnJ%x 5PC 5X{k>djX-8bl8O#W_4k-0?qZ5P%r]T?QE}% /08> W^aW3J-8-)yQneQw K0oϔNn>YiVc%h >E[ G!]SSsVtlu[}<]5o?XAY-BEGyCo!;jhx1OIp:~!(wO\#?_ ёHDfPSS,nuM/&V7Sq<N!VQΧoQQ 7BQY@TK1_Y퇢_$kڴדG$ƹP̧ #!ןDoj>8V' Ggx3y궙se,ג}QXԅz&uWOQ<j}8uwbHʂqW/5@m9$k/bQ3Ceprj4<: 8%{ hjgŠj'ErD9#ͨ+ڕiÞ9A(q^'8n̢c]wd(y@ẌHh %j,` ў<qhypO>:]O畷:j(=@D;! zp;!?VwoUnVl䯷pEp'_>ݻCA4BY[[J^@W7 oP,3vq+XC\+r TTVT߿NY~TIO oG7 mPF!N@/[-`TUϐEuZ]铋vfT=+K^(#$ } Bڊy |Dn?QCoQzisꤤUh:~Ƽ ~9<GxH,ٌ^*@GИ)Ӭ_XW#,j-OqMh@ofN 2!AћP/ Uאj$͟UAg $KuY48RqwT@sSY%֚we=..`=4!듊< Y41ALOa'79pRJf+y%w"A|ځu,T}NjclSoKTz|(2#Z;|~((y*MMv wx_{?.W}d 9(}UGیeߣ*;ܷWZ:/ܻH:q._gIkk- 00QB/J3˼bp$R4ԒʿyH.1пzycXY'>Qdv٦u&I_*0?qrCqtq۱ %Gퟴ仼A)VaQ67ѳQQwo5+ux_W "";zFeCf[ u BW./!k^&k*q Q7=#AIc\+{{^j|Q4PC 5pd:( :Mh,ܕˍO^G6>re-nxO?J{ nU' Z"zES2$YթmScCT"5YX3 Ζ4I yJ}I 4aLpkBaPVOnf|ϵ ڳgiݟ]]O1 |kb|F -[h }Ⱥ/~G۽]Ek8t ip8 _tt&6 3>~p>[TGEp4:~tzf54G(0䟞>nfw=R  )*:cZ̈5U܏r ⺟aQ>N /NRjy?6~QRX(b]à ')Γy[Ə˘ 毀?DJ_-:~w8'je <W>@AÕ+(cm&;<Y)XE=q $, #GRPG\FK,1_ژ$0] [0p=qMx XǓ0 7ׂ1㓎6<.L|cGXo4W 5PC 5W(Cc0y~Vߘ;!"JXϣק~h?ka(_dH\ ?ywa?y>.c7Rs U݉Ji+QuzTHuO U݀a^߰'' A7^t5bpF-g,9ttۧ4Zl<ȑyH^Ʌ6xc3.QAmyꗿᇿvz)nժgb2!T^ezK~$csQ0[@Љ S͵IP<#M*Cee;2ǎmc.oYˬu68ŝ!ֽ2;D01"Vbb|<. 1?P#BM ϻ{~Oi-Wif>°M D0-Οf#^|^\!`BZm~9v(xw[rś07Ãy+Ğ6EY@~X՗֮S} kL_PDm~hg<F_}G X/-)k~I߫jտHFu_3u#WBê.JxO a["9ޘ`R%O)9_h|բ.tc]^Mɿz {qʺg&x:x %u`"+Ji% Qa݅߭4לxugsSrW>yykS!w[6f3| 635Y 5ɝcc(_uBy?e5b%u$;[)Ql!E54&-▖ӆ{hZC1'sN֌c2#Ѹ~^[]*)TzihZQYo :G*vPoskÛ6[d 蚬^6]iI }o?h'18_')So0\ye?/N&w0Ot Vy<eQ0{ߺSr<)=yT}QfEL.~~duR)eX&Y;U],jV*.Qy2]Asv$/D}ML9N E*ff 10)1Rt~NUC 5PC bQ2/~K!H'B4'bRaQ͐<) ,( ATD/Chnʒ0QP׵vx|:{uMaCߔuSi*/b9b'0jةABKv׼`AtkƯ UU򼪱,Nt۷ciss`>ss]O<{āx^XOެw.@i*yg"!O#GݻWxw([&>%i.|h;_L*Rֺ-roQnj O}ȑ\Kz r6H?(*RH4֭{n-~>wlmڴq_=j~w'&@E>*(A6CW X#e:})TD*c^= 1UƓcW=<Еz=R6p}m.{>X}*4Ȑ5Xg?UW, !5'z|sFhtj88Rc ^#A2qیb~߫j4:I<yG4=8K(q⇒ /Y͔8j\p*6t RgR^N\X9E@ͤoH]\|ǎb> ^F^hr|jc6r^p/رLJ.šZ7ӏ8Xw#͛anˡHq@^\ +/tfv^Q4']Q#Py^J|UcJEY.h?j;̚r*dz¹FOrYg("Oy~^IIo 7 }w}"9V9OY}8ԃh~p%h S|[:,lP}wWhD-5 =z+Ғ~uIx oVcwOJ8cpy5Cz4Jo}ֵSq%vuE櫫Oq6D\;S56 v~k1bqkxcO8gj7 dFZkh"Js(sq۔8 {G$2 g8Ex_A Oy >b} k_0| %Ux ur X/}Ll@Q`&dau2^'e^88YR\݋quv^R\uu]JݰED3-!k替ZHHѺ/]Uf۽t2EEyo*˷SyU^}saKT)LキF{ Xf3 EG_'#z?#sZ&m,&St[׿|f]cZq\Fz'f!Dscܤi߽|Ŵ"o Bࡎ _Aa=Zԃ?2cdqbGyA[4&y1U)S|rnc#m4S:^N$gh|cUW6Cg) S?":O 3[ɁGqxdHKt7μCM:+~~k1C>iἡծjjE(^7T{FۯA{z$5`8GUqn8o9>2+IYpk-C> :Al .!HX ;ЅK^ zkfDf԰uCϞ4@< <|D|{nD%[z<?ހ.p|á쪪񞟖l\'/t HAd?i-\nem?Yl=yϹ/w=f:?Yk=:Civr$tWٱԿcLGN#FA梲-|j\cb>2С %8jlp\nkn nޜ-.ǫWg h_))30450gEY'kjf@> s//|' pKxc|Fi|8.n qz nރ؇\9mp~'|ާ^yN]gOPşǾ$fwT^yq3Y]hOQYS6دU-?^C8 L'_"m'qjx#0cۢ8|k(C BT^׊ sS54PC 5|')ާsT^%|>%hNo5iE3ӟE~J \tWu9c&y.| g)+cuZ Qg>#/@h< w| > ?T|R+y$'@M'a=bUdz~?x.gT:~=ȇYUoR|]|^n Xd0_8Fy^s-G8ߋ~|/:yoj"pU:a'<qxp i>Ủf!Y-B3׿n>M~_r$$l/ɔ4ھx w_};TaCWOnfj+(avu*uKĉ)=}k!u?3@}HŪUQ3N3e}tvfe6Un >tb$;@a)Jil,+k~_(7j('?<n]ө!(E5*o:LWc'`^)_ %S0bqǯHF0Dr:^}p/vayv  MHR os\C o$x=W=S[[|+5cG3hFsO0RUC 5P?W|y0o :| ToیaxZ=+Au+D#BW_\C3&HTQiH=?M?/tFc{s 3)ڠb?˫َ4@q:xpR1@^HW\\Vw zs'ED@C*Zb_!tZ<3 \M9W::?pLgKK\UWw= %-îQl?55w g21M62VsL tN]u|0Mo?B3=rd] ngfn0~E֬Y!@ڵh>B6Oć8t_\3G>DOq/(9N:gq^Z-u[@7Fa=+r>L' ̷7Sh[x jӓ>J|t X9ga%G@1s|R)qxx5),T.<]_cu{*9 iGEKq^~k x'Nzl'~Q4zx6)46xumiTjj8sK h|Xm[t#z*=S7MӬk?11Ozmw~Gf:v{Ђ"W!WOC[s eSHy3j3]k/աc~5O"k7ă"vg0kILM!yxsk 4B)I~6UcO|Tsv88LÎ˗u^0" aMx~xٳGgdOs{k '\jO.]2=1E-^fdn~>M="v^}q F gVM>B犗QҐ% GD|? G䗬8oɘ=6?Iy<mqy;Դ޼VCHV[[>q;^M@^èJ~'b8ox^^)|al{ekzwϯ#<9ȋ>{p.F;x ?o1W}^\u>(?|[@.}xo$!a^2j(y::E<ZҴ,nv?PC 5/ y(t"jy^^y >p7ŤHF+{_5@CBlG-XKL);Jx:s6b~$YOb&ʆ,SWPS8ÏOUg1/@~d0i=e=בDZw{hjø T㲵wE̟t>l`>h_|W)y$63"z|!36.z2Bo<d,٭3a(TQhE/>xI:'5HP9f~ww1IBZH*"#9>Ofޡ_e1vrG'xx7o#+kx ]_0:^KKW&1vyyiDߟqƕO8Q >h6됿BL}QU׿GU61v@%ȋp@^D)A=tyls,I G'бPA )4JEMq:,5TF=dczy ?(7acQ:Ƅy&V[keYV(;bYWQh]5A5q}ẾE}= ;L?]h5k^Cx!+Do~PC 5!!flhoQx ު~kx%-2q\\ wt*+;ϣu :9/Lw>e4HձtW %#7cuxx7>&@} h`_|5c7qw<`@<ثo!ǃmအ69@":ͽ*ռ|Ni[ɘ V? u zw C={~}e8 ݏΚ3f[o~HoI/џ2Qnjz7c~8QIɆ_=pOA?w͛]+!oCї|о <Ft<޽ie54 s{"}(s4j*y;/~2xIa}U}(E%HEwJ^\ҿuJaa|:UN9 䫚m'H(Qquc !)w\Щi~dCprd]So/@޻|5LLRW}-~R{xYp `5<´Řטctšx'~0C-ݿ!|t6^9|ڑjj8-1o!χÃo@|[X>`J- :?5n; 5ވ 8"xnOcjH|!B|6oWrڰ!'brg%b]X+*> 3a݀nD}NwD^Bp6/2yJ: |vie?VZ M0J\&wJ2Kzr~riZ v;1^Ét>c|΄zYpl,I>X]ɍo'ߗ&wMJOSL?=N4 r<>cί[voX,^\y{#N?y7]\]]xNy0WnK'!1~`_=!xb{ pyǍO55Xޭ{Pt2/@4NOi,>R:c{#ӗ/:\,`5>C^Bax>f<bR>LΧ$' .e"'Px+&AOV俪):=zu /WB<XB0oah<-T4|!5?/DFQSSft^҇X/fo4p01C ԕ|-9X<^nH^'Б/ǢkD|a,#~y {7jjxsP?P_N?E]i"o!5D3_o$cEͶ6gULY^e <qr:i&/%}QFOfVyW 91 z+4i.+TRy~=)xXvHó^9{?kP7{w^ `Rd'q|04yf3)%AB"wS~c ]:hT][EMvTW{.RmdY%@ijsI4?:^qEΝ3|5⶘J? 1k Ϟ-QO ƜȬ3Nj,@ c7I™rr;̬WiI4?dhfSŞO]%o׸{du:}>np_2B'R:EZ9I1y{SSO:N`~jy|E_>|zjWM4&;%W<Kr\8W(,8^0SP'PS={2=~2S4 n^/6b} u=xFiQt‘vc{?5~dƒ/H4ڐ_4t9n//_kQ2_uj!XP毾sZ eHOŶقXq]ik_Oxy KT%f+xٕx8rӵ?^fy%x F[`l3^%cMPT­g_̞l:?l|{ҶƋy+<!?ŔpNlg8O[F[7y_y;.wJhT8r<s:!!ZSksb馦/Nk߿'%O:Koμtwmm!{X'NJӏ'X~dF GEq/Gdo р׿>9#[@ogLI> O+ZTO4?C8īҙλŕgIqDg P8ɉ]uus}>U?7nzv7"h˓x(O#͈ OJ^G24tjЩץ8u190?aBT2Z)@P̟DQ yXO"hyZ_%U^ghVQ)*u7cSFiT{=Wy < ~GOgt^c)x o2~V/f[?Y@{ 4=k?Pח׈4S0F1ycix 5P?slYz[x~;[YyW'eddc:ÅpKwa=%:|:WG)W7:nڌ.2!x > 8<D\gۼUi93XXZý[dG.E[SL]E8/|m,aJ~ -яPx [Wy uBv !V#v!NwK m̕$:gm9-r?nA Oإ:[C_2x\ׁy_dО=V2B}ݱ90~>`:k8%Uˣ>{kwZ"= %TܘL;&?d">>#:uUK* ׌gʩMlLaZacV,NXxYLIތp~S +XwS.\m g#K!|8úf\'c=>JR%_)s$d>y7W8r\y]-Yv<vQCot4qFxf4|>+cL)̠|BqN>('~(V`'껬<ҴD$TzzJk~j.O Sa]zWǃciʀQyx1]_P_JgW|a >@c {l ɸxtx8[(^_DnzxOŋ EpALG,c NXiY?^j{@/ ~KBd$WMQyqRcx IWL2q0@;NӍ5=1>Dzx=>+P}#:}D!<_MNN^Q[] ^k8=89c "ȘO={I]t(trQtvc*+?1Ma89N[/# g 1`}﹓Te__7 S?tb9|~+<q# /7fUYܪ?v@F4чlQEd|./׃y<ﵑhkQϯD/&?N p:pрx|1cݛ*gܘΖ1,`^c|Q05*<w~q1;T)L-sON~s9QE铧у y['[m75A?T5ů^5PC o2[JLF:jBL_ +lx T٩kU VN`R( `~?Jb^Y z͔0 =< 4JA!ߋ#cu2vEQ@ ZVwkUy&kPlиbwti1Xm OR5]HPXtpm5,+?rrZq<O%7 ߫Ꮸu(+x`ݱ%([L}GfRw CW~Plg]>7Iy _/}<õҜY/'={EᄏwQZ'/oDGw?``:xDp[NO}Nhr=_[mN}TtnRsTvE /I{2֑ X˔犏 ]&籬Ūא/װ|\dg׸'Ux ޕXV;$`OtW\0@e|7yyNx-[q%X"~ľ(Pd6pi+eZWkq^koPh{}tI1+^>x.QyN}j(HU2w}^ZjC<?b 6-<-?l .G"k^ׄ"*]XڠդiTǣTk{SxO[ [Eg3 uXs%^:O_ ln:#(r}ޕ?UY}H#ZLlW!y!dg.`\+IW-2,ԓ8P1ďK"++5Bc;uFdyF8Nιe<'Յ3~?6mܱccAx"P/>hoA4X?;' 4+6 g*T%_ݫOJыPVs(;&[T۳k?y2AǏq?AȌފ{cHˇbe# 9mܐAX7 D eFrC~J)>9H{L(ϳ6 fq#E! !^~q~j:]4/}&k NV8~W.rZׄ7߫l$~O$7E>oj^U/0 DNºe9|0-z|DdCJ19<aek4X"JfYg g<e k yEyf֝d:[P!z}.> M#[=\u]Q(]Bw"דc#}"e]}}X?O(}aE )aL-lw8xP~5I}ؗ,)C{ 6ڻ_Ct? sX74~/d#v+(X4㺸q yޫ֣ [L?w΅XSlcSrwDNU(]YFwO_+YܐvXCEn}^PyyrL-:tp>*AOZg<StDQΔSd suy7y>+281>}Rĭ :׭ď;൲i; '>O ϟaV?E4fadI1)~f./2~k=yގ*|4&%+R^#{C~ݑ t9ndk$xCʠɔjO~jc%#H7@|͖-X897zIח/0_д:G$xfnU%S /\ME[l^_xXEP:=8V5IIyڈ.qlF5~ B{VVϾiq\Z$}eM\W!Lױ;"a|ǵa3i6BĩWFO!P*Av}GLAKwK TOX%Ґ9qb (ؗ:;$JBt**ºv{=9y<* ) kN[ `®FDnڴxG>ނ3fB|O~-:-~zG?XO#1>ݴμwIXT+}9/|iËte>b{: q/Ϟw9԰P:SN,տwp<Q_Ek%Twl?屏^D;-~;淈[m$<yNBJ򀮌 ~'u/Co:%m~Ǣ,aRWzTzl8Rx<S>58x { 3l?] {p|I־6?헯LXV$r9y|QTךeoDC 5F#z9"e3&"z:KwoESo`|y7 **]Ƅnyaޢ='aN~"/s+y9ǂ^2U!6WY~2YWo:7xa|A9t:N: hZj|eu~u]4؝aC􉠋s7GPJBnVy)z?.)M2^$. _㾍'L&,RI{t\#Q*mǥJ@OEGԽ[r-\>Fg"&3i]VWϿyӦ>fwmܰ!G_w;.w:ܸa}>6w7SS_[nrºWc tmusL+]9峥6 {;+㆖vbS7I(]<Sr4]S$aR;{ c2y gPQȾ<uvCk=&3P:`^bk{J7.6ٺ;dbWq^!>Pރ|kh?Wcw0>)n8pw^`׏xVћQLcc^8VЬ"ܥTfOњ''ijyDTE^"ٶz3Kqq{cJs3iGm#cJ^׃!fS'QwozVb-^Qj>>0 qu|B+<&?&|mɣ[z<8WYH4\/P61#?Eu˰zCFi<͢M<YA/z0xQs} zLpcKRHs\KDqq v>-yda^3y}iނ6ǔnlpu2w~يoM*'t|fa-Ie$ |q eUľ߮ͬ~vNK-)FE!Z;|w[L+N"^F*Z,*)Rce&˪A,aQ <Ԑ/xתOv-6.-IHix߸MRb{PQnBw?Z/qTp{J=H|?"*V idҼOLoh L|?bF *]vSi!]ӒeTxhkq_.Y6D}N X ~˳c~n~6l|*3|Q4W 5{O_c#?')%[LtfBS_ջͺV" Xv|M`ns?[D~ڬ׷;n8t$oja^^fy뚣[R+jA\݀t\J2l|s$1Rcy& *]dzMw9;ˌcϡ~Q/!D+q<՝ay&ԁ'pXXDA08SVJЫA_Fo| pp~ a%)ʨ|EGߍ1 zRN1/Ip"]whC&x8"dEd<h7}<Jq0 F]c%,S]UHP|u-I k;y=YVwq}?B'(ך"<{n:\Xge}M^z@\@jڻaBKֳ=~>żow o ~^yzu:u@Pks[s[6CX|S^a`;Tuӌ^Ϯ{WQ zp|*->pLKJ^oh@gn)ݻns֣CBHˏښkXMLXO"S"^ʦn7q ?6or(Eެ;R{x9~ H 5z_|=y?X]-''1Gn~<8Cy^qNk=U~ކ|>tyh%O12oO1RW(BqktvQI `t<ϡ;u:0&l=Ud!!3,([ia9gBSl=laJ=Aik{^C,9fpFO^<"Q3g2 c~/k {jRx >k@{PC o*OGP/ (N[@^oe@K/^HzZЂL<T+խ\+_νZ@78 oBcy(xe{}@Y~:I-xD%xU_HküEC.E8.~3ߋ+@=T?+/\6R8q^Ao)|b4|G/f^VyWy'G;cEa`ϵh3:d)8Qy\\.]7WHot(ׁF`P7p~ܵ"2Hýyhկ"`%+).%'_mQ/MpV|`=jZov|R}_ "'pT\qW{^bt4J{]FQ@4b^c)< I0{m~sGz^n<;3%j, s ntzĞfC'mݳ˯6[mS<m]H(Д]hBPȊ Kem֝}ߑ%YvDH6#Y}';dM. NY;Y{U)SU{yOGkZ~?~ -[D>p(ٽ>}[";~ZkG~G xaRs^7+H8=SeEچ0>Dڿ92"PUa1T<Ϲ$+8r1mȏG:32N[ OZ1ׇC:7"2?+;{j)$@.n_6nzK_WMm\(RUQ2R)%}@iP=OڮVұz<_91$<O8!g'fSQaCՖ#B/_g; (  s\|,~uOȆ 7knōJ?sx>_osX`EQ+!"{wl+rwy੯5.Ve>z:uGyרLzDy`+U3eʴ%S…e?:-j|xZ.<pۂ[Ԫޕq#}ZS&x>׭~hP~amK|V} AÙ8̽LG2W/ሆ }OlDr>e3qnwo1l"]-BCF~c߂sx '[-p>8}3 X׼ƍ8m _,ٸQ]~H[i(}z/ }<Wk}f@@{!"[;F^75Iwm"+z:̽?u.~ַub_r-\|>%͈X?a9%>&াyxpw< Daq,I+\l<񣅥ut:li8={vl\n8V׀yO}gEie|i4SگQuqbױ3"yHM.1}&ThѾ )SP[5}<Yݤup;;Roa}έ=ME!'ԫ8?yikٳXt&~Xn'ǩ5ϴ:anqHd#:'5~xRA_H̻!-{`O:{ )V<#SNŘa+aNKL=:% k vli,,C@ ?۹<3#_>7s}sG}]|VWE׃ս>M8||}t):nxKdi:9y^A3-2_pz`h >#o\׃ɺaqQZiX::Dc{y8ƫ{yP5rPԘ2rDer4oN쇮X,@tL;5ׂP:XG| {ŔG@1ԧ#a鐆ԮW@طu"-!O:q(-MY|dʉ #:vP>⫭9s"O.uUpL-ч*-Է^.} a ߼'p_Tv^zSwSL2Ja,b}7)ZX{1e/:hط_F+~8E> m  !%.3W_/8:6x=:hp3g3NPuE[oѩ~, k}5>asǨ6,[dDtw~vO彂N{}qKzrV5Pk?l`U${eQ?Ż3N 5 iom~ | Z'1?uD}!W#`7ͷ>xq}huKW|N9Zw^#ltI)r9Z? 碀|K"}"4bO|訮oE#rOo2e:kz82^0. @#wQ0L??aܐ<GK rN#$DQH? 5Qo4Ok#7<9A}k[upН}zF_ae'J~"me-ulzvo{5׏p|ivb~QSc\Xż 뷦置\so0}wn5r._#.3% B?02ezq)-|EbU-PCSߢZhմB_m!94O-povɞrD| gڬ*9q}/ZRDw]aj8yb264mmsCyMW}Oyεzc|jʔ)ӏR+5C*߀!qiҋ։,Y<>x<:*[HF:W+@Χwr'Dh8%Qb3NnQIŠ+#p*!3M8#2<!ujuP;gWEN5ZK|Wc̲zn3ƀHC[ߺQ5U"jooC::f`gW7֌xL֞R!NjsU {6K랆M\[<%mop+f&\? 8/#A߭lj$ҟ9b5B^+TrWHRDE2q\xnBߢSU'5Ca:~jIN[ȐD|~  ݃4A?Dуhfطdʔ)ө&xHz}9^;e^FRvP!l酾Œ2lOiˁHM4a8%K {+ț.(k!| ֑I3/{T(:}ۂۣ;6\sBNVD/|~Ϋ|@'Bpz|Ԕsu˕^Iy[zdtxIַA?^mY43eziӟB3޾mد(-:cfn]yR~x){<A.<nM9_VXG6$7*λQw:0F~ sJ0㑠߬Cu(r C.ȳg4\q88os*j9ҁ/O%?eʔ%\_)_R:rPF~p}:^/g[H'Y?bHOpp2U.U2 |Z?<3"$we].~D}۞y]/ Ae*Vk<r-1_㼕BwZpSRsSGr_@3+p'ØyfYS碻Էס#[`_<۾t柂o!CƉojՒ^bozCoQcWC?DO#6_O;PN p/O*+[h&"|!<G'ee(74xF3/ nl¾ޏ YsS_M 0#SLξ_㹾FgN! WE"pQG\R_A.>Bxyᢼi3_+*WTs=׀t-.aQ#}eܷax]nzbN9oŷ?w/_W?1q \$Rj|+ו|Qg47c?oyo9{5?Oxr9f%)5.l| DTk0eZN14sطP;_Ӳgθ3 -x5P+f+Xub?)?z&]_!^$f[Gre|٣B`EK= G`:q?0|[h-\*Ȕ)S 7_T}sA؂|s4q:7jq&B2h㧫b+Ϩn9{,}h(2o9s/{*摳a}ڟ;v-"L^a%>_i >O?2/.[͈wiphnki]k!5 9f m=nN)S=]ԈM&Bl;} 'wuoGH_9oꡁkos>{ee~/2[z]\<e[Ч<~oBߢ!C̜u>p =#:waiQU} Dq?}TJF跙)SL/6WucH,D`ࣔ/,հ @B"k[Ea@1Yѣy GO<NQ9̻[8# =;-1n: Q؏kߺx{:~@Ck,jpQ˄yTk|KC Etz}&+V6KqQUwPTY`_kaRxL?Ji]fjׯۇ4v|| Ot>}۟ˬgRGJy%A.zZ`CY  ys?B_ <qR|7sլY>.ڙSlFIΥL+ _+y' *)HvKת5OX0IWiy..L2ezp1/.4k8OO@R (җ >BFD 4'E؎K:qQ9^J/RבZCH1rNȅ麊1:!_iӐ}esU$N:Zom_'+Z۳ FGW ׸ ~ c\Z{ﵹ}kUwAGlǩ6|ZQ7Շ?̯饡Ogטv<n ꢾŽx&{B}MRPe.ۨ_"~o9$qoL ?ylE|[d0ͳ>Neyx /ߣdSJ?}9dGٿ/#EnCFs>]|O{ ƙo)Sx @QA%^(_⽞N\x#] Cuzty_yߢT`[W7)ɥ7ηuzɚZ{"8n]'?ANԠr9Z)έ^eGUǬ#z*ۢy5|~2}jޫoj׏_ze|s{x(2q*Ve1o9]<T?]Whյ׊ [hLp[Uk쪴D[@w \VPއVCA;] c~#o%ׁf=DWuXVطxt~-2eʴF^}xGKy7tÙ35 ]G(Cn 9%??ku7sJ^cO!MC*:ӂ߼k_* mGOCw|je{-j2㣣ǧ)>^VZҷͿgn<kԒڔ qQ΢R}\ٺ λy{-O3utmzZ.៊?Ȁy0NJ\1WH^)-\ ̇˼`ƬT^[$y'8z\K:}5B$̩in5qCz>͝?6[>[t<NL2/n飼`qˢ42p_#}{)~W*_B'4-2x'W>*N(Pn訿{pFbַ-h^?S{=_Aq=b}1Nڴ>IE30 uu<q1_4:uF^=}qQVK U÷kំݶMzohZq#:EQy g y>g;w/ yج*CZnPOIyh |t2gaj"mG:$dpUK!>2eʔ{yrQxx&QG~ނ׫x[{݈pWFXx񺪪a+tV:=%,<ԋدOD *}Nɤz6KЉ=y;6|.zx_<?O̧qۭ(~L/~EyCo?__?OxsvyCB$}Z?!3Nm 8#NOkbP)Щo!!??eb 立r23} p-'$/1Pl8;(\ƜQズHUa JR 5;X"$8]u[|x|uz|(x<\z>?Ȕ)SLkAWGw4 ג2;!kmk ~^ Q$S*X! 8)P'DڀO}x/BɍNQ~ʱ;T<GqK <߰Jם/_#\5:8žva_"`>ӊ5罺ozh45k^ƺ<HC k4itNt^{=xLrV÷8y["ۂs2h޷@oOUhf]Է׋"-ys"^p:ݏ9%gTpŵF}(S5ߢ .+yɔ)SLk[w>$b}oRp\+^xu3J4ܺ)xr09R9ûd|QF^ ]y/R_9SމgW;FOvjkdx(H1^~ŪfiyMy[q莟b~(}Z A iՉ0u%pQ&wjsqu{XsD6H]k/}D$gyr-}RmMv Zk0w܉!7C#F e11 O,Q<.SP_HcfjF:2h߂~{y<'2^~ oL2eʴz }|,_pkWI4QsoTJ_3ku}#5U]P/['ִlN|3$@*!?zuUӘ.7C}[(Ƕn6=z-5>_5:}|"\:1V gr Uw/5 xyGP ϖ3nkXƴ zij1*5H|^O{=ygk/ӯZyGGiFq߃@ͤfRb[N~O27{=>\q2eļ_q6 cH*dR.Y>6 )C}BI?5o)SLgGϏ9E ٿ߯Ay"11;x~h-()Fo!h-o93} YrѤ})?}Bcg}!޷^=New<y-Q_c |okc0`Zs%M{mnaq!:J#ZFa-/K2ũZ9"?8Wu5?ґ  T?w/ޡ`"_ϧQ)l pAWHEsiů XdЏQ#N8)GHzf[,h̀Цx&[rVۿӼطvCO2eʔi$B_}_"k;fo(Ə%2aoe _T\PM&adT ۭTV05e/-q I=hYQY<F03m<_6zsQy`_w#Hڃ}2[ 1ζfuIOW{o*{-o=?{]בf52_czMojx 3eǏo9?o^yq&8"/< Rab8!(Ȍ+A#t3O [mufF2 ~HqX aY8$P ط8*_E} *.t88ezȬ8PO5?eSL2ezq) DxۢżW]_%頿pCh45_;OZ83¬N#'"3q'x w<3"a>v!zI}_GOQO\R`Vǹ]Iާr~o۳7<y0[{5Hx#" g`wXgQtJ w T)^c\^cM-5ԧv ܫwCx ekgSș&x.?=bKZ6=-|~G_kEF>M"ƚ+G07g"C`GésȺ> zXy]i8<2 @ yW !{H:DUT\T\A*佚WOiHM{x5o7vȔ)SLV[ e(}vxRw8PuD?D:C? 5RIٚ-DuΧñLptCE-TAzVM!ӇzηH0C~V.v}x}ġ+^]`=8a9sTLkQ1uU 2(彎9 M.xFU u`{ux-zZطhJ} |4VG=7"U.UWġM)㺀 >{nPܾ0Vw%ya"mNjT;5#SL2e: }Đ|7_ Ko;pQ(G :"ϑ}Nط.\.-f+:ڎ`<@94#s^| #.1ẩ ʼnڟ}Dk˓9ph^yks@253i8罢< T{`:{KoD{5(qQ+_:X'Nt^+R?5-zP-BӴx&_P)W?]- t1]9>[x#Ls} ߢSb C}qgn¾άS\uQ]>2eʔ)ZB Xכa)B~g&Ώ7{ tE[jpWhAs9vY}"pPĒ\5O#4bI8yk,=ޮ]?key3Lq:q~[E{f>ӋQ}7e0X, CW5/bkС…52_CgFYŜL +W"ޫ٥WJ?~ Էckzܭ^U=#MbXRl<,eNU7;O)xDǁT)IH$a/mޯ_ip6WNO3tOF}T{(2eʔ)S稄*` {52Q{O| uHΪCF /+@.i_~OD +.~[4DrJuIdAާpjiV G/>ڦ:6Dk~N2E}H×4Ax/+Ҕ^W>urnrKx,OouWm}=} 5Ey<-_9TG8C!{9t#]<a_\QGќM|a_l8\<$qJ%z|w|>;UnB pKߠL}p : ymf\*p]9f3$L2eʔQ{rQ7=s(#zoI}I+|":3rJ\ 7^99G8|V\1~DWJs6h~9p\$¤o0qsb֒y(It-z2 }}:Hy׃Б~#55c |`>KRt>\7&^Roo]y5f%WkGVd9HzE[;*Z59NbÝbIP 8 g a)8,-ɫ?!}S~X]W|BNQyd*ˣS%w܏Bxi4G A?-Osz*>2eʔ)ӏZWX%GZ} Ndˢw8fvn'Trԧ <Hg&CYk!a'%PRt_䤓ڑarN9*BgüH<ӷ-.J "c15x#[QD=E)*xcf^^u6l\֯1z~bk`>^#Z54#?݊T@ҐT?Msow>ЪiķP*qPʉ$W8cE'g?Y\'oiO16CC}5c;ei^ƭ>2G~e Gt)?2$}@U- O=L?L2eʔi ]C0O yYw3paWMĹhCfjf</80_3> yc2b,>Fk7kchwhׅZ/2gׯNԷR^+ծ};X?ӏN^^bΚZm &ϣ%S;S| |#ruе䛿KS$Ev3`Iv[AS07IsI6Y܇9>^vyg.CUuE92!fHvk.nN:9#<&'߬ LDCa[C[xݲ ~'cL2eʔ)U{}nǼWT{4%5.}>(J|_u':G@nT~!-W]D9z8~D.mWT,O wM{tw#_q'NDyzvs x`tB15;ק j(\jItGR{=uF-WUہ MַwθyNs.'S?yO&WR0!$;f|*<rQľ>^ܧ 0#pꕯ20̩: 8+TsVNR2O 3Ec<Ε gN/CFSyj}i0)SL2eQ{|]hݨs$cq؁&͉9k$B N!FkDd?IWK0miq&}i/ g*hm ǵBױtC#s)vɹ9cAxve.Hq0u^iyA5Z{_k^y>P5le%9^oG_OϷ wՁo۳y^:iڤKoj~f]όAD.'u77:!%w>:1 ɋQo<q a xIa+l̑S1$!WjJ9qE0gHWmr~ B >rVN=詨}hR{u^jEz0hs]G1eʔ)SL^-+pQlws(G4A4>e~%Quנ/Wg32E.J-bm[X<Mp3)|SI%o8Q| ߳Zzj)|׎M9Pk-72eZ/x|sq:oe؊U(ܳr{ y褼5ZjGWUD#{u^1ԧ#Tk>hd6?ߢ5έsB=wp.uԇWdgCA$x^<G)gKA`9V- ?372$2 s-u|uC~Coa"O\s<oqoeL2eʔY*ޫc}g]2^fyuЇ:~/0%FR<W1"uGq}H]IsEiſ_z-L];4;{Ę#d[bx'pr[qtؤV L^Tž|+x7o5*<gZ?k4ׇ|k[ly3-캦o!a Mkڹ\۽vN恇yHN]2>7ojX5ȑ8m8; 0YO,9W* 5ԈOl8$ʼn|?'/WV<-\e֕:=|2שo#2DG7SiMCL2eʔ)Ӌ[1EX$}k58?BRMf^g+_Sn}h胹dTʗ 7^<22`)ukƋ}ڇCGii`.RL^L)}&UxJYfFYٱǹa񮟭~U|~qFBӬ'vځx:[tm sПWƷS| q!$Yw <g|1*AxspN~2OxɃBD+4BXÓ_wL<}C "H{OE#~ *S>4GnS 2uSL2e]"g_(.e{G^m7;2`>B/xHGjf sh=ku6g!}Ftgrw(|"O/dT+| _DI)Cjyu ʇ,rtmel&ނ}<l^;_ӲzaO~mKׂ+q%>hwcLܺ_Q)S[hXC TO!R?uT]>Wenr%fG¼ [x?5[:"#L2eʔ)Z{yM!_E 5<Ewd̟;sPmVPBþ nlp.'+iN;p i=lpۥi(xn.Eq\/09/ ˔) *+V,e$hnx U:߯͟i!'HD<%{ gQDkhpwmzbODM="P@vlzXti~>'z\}pDe~|Io>F.x}sD8>zc׈svC4VB篛8GB;D}L2eʔ)SYCIPu^vɤ<^E^usDS+PoYY%KV!
-1
libgdx/libgdx
7,309
Use empty Audio implementations on Android and iOS when audio is disabled
Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
obigu
"2023-12-27T22:37:18Z"
"2023-12-28T19:29:00Z"
2b691f735f4b167c062f8f68186a6d7237d3d855
7f682a7921a47f0da858508f6b6fd58426dd05d7
Use empty Audio implementations on Android and iOS when audio is disabled. Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
./extensions/gdx-bullet/jni/swig-src/collision/com/badlogic/gdx/physics/bullet/collision/btConeShapeX.java
/* ---------------------------------------------------------------------------- * This file was automatically generated by SWIG (http://www.swig.org). * Version 3.0.11 * * Do not make changes to this file unless you know what you are doing--modify * the SWIG interface file instead. * ----------------------------------------------------------------------------- */ package com.badlogic.gdx.physics.bullet.collision; import com.badlogic.gdx.physics.bullet.linearmath.*; public class btConeShapeX extends btConeShape { private long swigCPtr; protected btConeShapeX (final String className, long cPtr, boolean cMemoryOwn) { super(className, CollisionJNI.btConeShapeX_SWIGUpcast(cPtr), cMemoryOwn); swigCPtr = cPtr; } /** Construct a new btConeShapeX, normally you should not need this constructor it's intended for low-level usage. */ public btConeShapeX (long cPtr, boolean cMemoryOwn) { this("btConeShapeX", cPtr, cMemoryOwn); construct(); } @Override protected void reset (long cPtr, boolean cMemoryOwn) { if (!destroyed) destroy(); super.reset(CollisionJNI.btConeShapeX_SWIGUpcast(swigCPtr = cPtr), cMemoryOwn); } public static long getCPtr (btConeShapeX obj) { return (obj == null) ? 0 : obj.swigCPtr; } @Override protected void finalize () throws Throwable { if (!destroyed) destroy(); super.finalize(); } @Override protected synchronized void delete () { if (swigCPtr != 0) { if (swigCMemOwn) { swigCMemOwn = false; CollisionJNI.delete_btConeShapeX(swigCPtr); } swigCPtr = 0; } super.delete(); } public btConeShapeX (float radius, float height) { this(CollisionJNI.new_btConeShapeX(radius, height), true); } }
/* ---------------------------------------------------------------------------- * This file was automatically generated by SWIG (http://www.swig.org). * Version 3.0.11 * * Do not make changes to this file unless you know what you are doing--modify * the SWIG interface file instead. * ----------------------------------------------------------------------------- */ package com.badlogic.gdx.physics.bullet.collision; import com.badlogic.gdx.physics.bullet.linearmath.*; public class btConeShapeX extends btConeShape { private long swigCPtr; protected btConeShapeX (final String className, long cPtr, boolean cMemoryOwn) { super(className, CollisionJNI.btConeShapeX_SWIGUpcast(cPtr), cMemoryOwn); swigCPtr = cPtr; } /** Construct a new btConeShapeX, normally you should not need this constructor it's intended for low-level usage. */ public btConeShapeX (long cPtr, boolean cMemoryOwn) { this("btConeShapeX", cPtr, cMemoryOwn); construct(); } @Override protected void reset (long cPtr, boolean cMemoryOwn) { if (!destroyed) destroy(); super.reset(CollisionJNI.btConeShapeX_SWIGUpcast(swigCPtr = cPtr), cMemoryOwn); } public static long getCPtr (btConeShapeX obj) { return (obj == null) ? 0 : obj.swigCPtr; } @Override protected void finalize () throws Throwable { if (!destroyed) destroy(); super.finalize(); } @Override protected synchronized void delete () { if (swigCPtr != 0) { if (swigCMemOwn) { swigCMemOwn = false; CollisionJNI.delete_btConeShapeX(swigCPtr); } swigCPtr = 0; } super.delete(); } public btConeShapeX (float radius, float height) { this(CollisionJNI.new_btConeShapeX(radius, height), true); } }
-1
libgdx/libgdx
7,309
Use empty Audio implementations on Android and iOS when audio is disabled
Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
obigu
"2023-12-27T22:37:18Z"
"2023-12-28T19:29:00Z"
2b691f735f4b167c062f8f68186a6d7237d3d855
7f682a7921a47f0da858508f6b6fd58426dd05d7
Use empty Audio implementations on Android and iOS when audio is disabled. Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
./extensions/gdx-bullet/jni/src/bullet/BulletDynamics/ConstraintSolver/btGearConstraint.h
/* Bullet Continuous Collision Detection and Physics Library Copyright (c) 2012 Advanced Micro Devices, Inc. http://bulletphysics.org This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. */ #ifndef BT_GEAR_CONSTRAINT_H #define BT_GEAR_CONSTRAINT_H #include "BulletDynamics/ConstraintSolver/btTypedConstraint.h" #ifdef BT_USE_DOUBLE_PRECISION #define btGearConstraintData btGearConstraintDoubleData #define btGearConstraintDataName "btGearConstraintDoubleData" #else #define btGearConstraintData btGearConstraintFloatData #define btGearConstraintDataName "btGearConstraintFloatData" #endif //BT_USE_DOUBLE_PRECISION ///The btGeatConstraint will couple the angular velocity for two bodies around given local axis and ratio. ///See Bullet/Demos/ConstraintDemo for an example use. class btGearConstraint : public btTypedConstraint { protected: btVector3 m_axisInA; btVector3 m_axisInB; bool m_useFrameA; btScalar m_ratio; public: btGearConstraint(btRigidBody& rbA, btRigidBody& rbB, const btVector3& axisInA,const btVector3& axisInB, btScalar ratio=1.f); virtual ~btGearConstraint (); ///internal method used by the constraint solver, don't use them directly virtual void getInfo1 (btConstraintInfo1* info); ///internal method used by the constraint solver, don't use them directly virtual void getInfo2 (btConstraintInfo2* info); void setAxisA(btVector3& axisA) { m_axisInA = axisA; } void setAxisB(btVector3& axisB) { m_axisInB = axisB; } void setRatio(btScalar ratio) { m_ratio = ratio; } const btVector3& getAxisA() const { return m_axisInA; } const btVector3& getAxisB() const { return m_axisInB; } btScalar getRatio() const { return m_ratio; } virtual void setParam(int num, btScalar value, int axis = -1) { (void) num; (void) value; (void) axis; btAssert(0); } ///return the local value of parameter virtual btScalar getParam(int num, int axis = -1) const { (void) num; (void) axis; btAssert(0); return 0.f; } virtual int calculateSerializeBufferSize() const; ///fills the dataBuffer and returns the struct name (and 0 on failure) virtual const char* serialize(void* dataBuffer, btSerializer* serializer) const; }; ///do not change those serialization structures, it requires an updated sBulletDNAstr/sBulletDNAstr64 struct btGearConstraintFloatData { btTypedConstraintFloatData m_typeConstraintData; btVector3FloatData m_axisInA; btVector3FloatData m_axisInB; float m_ratio; char m_padding[4]; }; struct btGearConstraintDoubleData { btTypedConstraintDoubleData m_typeConstraintData; btVector3DoubleData m_axisInA; btVector3DoubleData m_axisInB; double m_ratio; }; SIMD_FORCE_INLINE int btGearConstraint::calculateSerializeBufferSize() const { return sizeof(btGearConstraintData); } ///fills the dataBuffer and returns the struct name (and 0 on failure) SIMD_FORCE_INLINE const char* btGearConstraint::serialize(void* dataBuffer, btSerializer* serializer) const { btGearConstraintData* gear = (btGearConstraintData*)dataBuffer; btTypedConstraint::serialize(&gear->m_typeConstraintData,serializer); m_axisInA.serialize( gear->m_axisInA ); m_axisInB.serialize( gear->m_axisInB ); gear->m_ratio = m_ratio; // Fill padding with zeros to appease msan. #ifndef BT_USE_DOUBLE_PRECISION gear->m_padding[0] = 0; gear->m_padding[1] = 0; gear->m_padding[2] = 0; gear->m_padding[3] = 0; #endif return btGearConstraintDataName; } #endif //BT_GEAR_CONSTRAINT_H
/* Bullet Continuous Collision Detection and Physics Library Copyright (c) 2012 Advanced Micro Devices, Inc. http://bulletphysics.org This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. */ #ifndef BT_GEAR_CONSTRAINT_H #define BT_GEAR_CONSTRAINT_H #include "BulletDynamics/ConstraintSolver/btTypedConstraint.h" #ifdef BT_USE_DOUBLE_PRECISION #define btGearConstraintData btGearConstraintDoubleData #define btGearConstraintDataName "btGearConstraintDoubleData" #else #define btGearConstraintData btGearConstraintFloatData #define btGearConstraintDataName "btGearConstraintFloatData" #endif //BT_USE_DOUBLE_PRECISION ///The btGeatConstraint will couple the angular velocity for two bodies around given local axis and ratio. ///See Bullet/Demos/ConstraintDemo for an example use. class btGearConstraint : public btTypedConstraint { protected: btVector3 m_axisInA; btVector3 m_axisInB; bool m_useFrameA; btScalar m_ratio; public: btGearConstraint(btRigidBody& rbA, btRigidBody& rbB, const btVector3& axisInA,const btVector3& axisInB, btScalar ratio=1.f); virtual ~btGearConstraint (); ///internal method used by the constraint solver, don't use them directly virtual void getInfo1 (btConstraintInfo1* info); ///internal method used by the constraint solver, don't use them directly virtual void getInfo2 (btConstraintInfo2* info); void setAxisA(btVector3& axisA) { m_axisInA = axisA; } void setAxisB(btVector3& axisB) { m_axisInB = axisB; } void setRatio(btScalar ratio) { m_ratio = ratio; } const btVector3& getAxisA() const { return m_axisInA; } const btVector3& getAxisB() const { return m_axisInB; } btScalar getRatio() const { return m_ratio; } virtual void setParam(int num, btScalar value, int axis = -1) { (void) num; (void) value; (void) axis; btAssert(0); } ///return the local value of parameter virtual btScalar getParam(int num, int axis = -1) const { (void) num; (void) axis; btAssert(0); return 0.f; } virtual int calculateSerializeBufferSize() const; ///fills the dataBuffer and returns the struct name (and 0 on failure) virtual const char* serialize(void* dataBuffer, btSerializer* serializer) const; }; ///do not change those serialization structures, it requires an updated sBulletDNAstr/sBulletDNAstr64 struct btGearConstraintFloatData { btTypedConstraintFloatData m_typeConstraintData; btVector3FloatData m_axisInA; btVector3FloatData m_axisInB; float m_ratio; char m_padding[4]; }; struct btGearConstraintDoubleData { btTypedConstraintDoubleData m_typeConstraintData; btVector3DoubleData m_axisInA; btVector3DoubleData m_axisInB; double m_ratio; }; SIMD_FORCE_INLINE int btGearConstraint::calculateSerializeBufferSize() const { return sizeof(btGearConstraintData); } ///fills the dataBuffer and returns the struct name (and 0 on failure) SIMD_FORCE_INLINE const char* btGearConstraint::serialize(void* dataBuffer, btSerializer* serializer) const { btGearConstraintData* gear = (btGearConstraintData*)dataBuffer; btTypedConstraint::serialize(&gear->m_typeConstraintData,serializer); m_axisInA.serialize( gear->m_axisInA ); m_axisInB.serialize( gear->m_axisInB ); gear->m_ratio = m_ratio; // Fill padding with zeros to appease msan. #ifndef BT_USE_DOUBLE_PRECISION gear->m_padding[0] = 0; gear->m_padding[1] = 0; gear->m_padding[2] = 0; gear->m_padding[3] = 0; #endif return btGearConstraintDataName; } #endif //BT_GEAR_CONSTRAINT_H
-1
libgdx/libgdx
7,309
Use empty Audio implementations on Android and iOS when audio is disabled
Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
obigu
"2023-12-27T22:37:18Z"
"2023-12-28T19:29:00Z"
2b691f735f4b167c062f8f68186a6d7237d3d855
7f682a7921a47f0da858508f6b6fd58426dd05d7
Use empty Audio implementations on Android and iOS when audio is disabled. Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
./tests/gdx-tests/src/com/badlogic/gdx/tests/utils/GdxTest.java
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ /* * Copyright 2010 Mario Zechner (contact@badlogicgames.com), Nathan Sweet (admin@esotericsoftware.com) * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the * License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package com.badlogic.gdx.tests.utils; import com.badlogic.gdx.ApplicationListener; import com.badlogic.gdx.InputAdapter; public abstract class GdxTest extends InputAdapter implements ApplicationListener { public void create () { } public void resume () { } public void render () { } public void resize (int width, int height) { } public void pause () { } public void dispose () { } }
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ /* * Copyright 2010 Mario Zechner (contact@badlogicgames.com), Nathan Sweet (admin@esotericsoftware.com) * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the * License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package com.badlogic.gdx.tests.utils; import com.badlogic.gdx.ApplicationListener; import com.badlogic.gdx.InputAdapter; public abstract class GdxTest extends InputAdapter implements ApplicationListener { public void create () { } public void resume () { } public void render () { } public void resize (int width, int height) { } public void pause () { } public void dispose () { } }
-1
libgdx/libgdx
7,309
Use empty Audio implementations on Android and iOS when audio is disabled
Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
obigu
"2023-12-27T22:37:18Z"
"2023-12-28T19:29:00Z"
2b691f735f4b167c062f8f68186a6d7237d3d855
7f682a7921a47f0da858508f6b6fd58426dd05d7
Use empty Audio implementations on Android and iOS when audio is disabled. Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
./extensions/gdx-bullet/jni/vs/gdxBullet/dynamics/dynamics.vcxproj
<?xml version="1.0" encoding="utf-8"?> <Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <ItemGroup Label="ProjectConfigurations"> <ProjectConfiguration Include="Debug|Win32"> <Configuration>Debug</Configuration> <Platform>Win32</Platform> </ProjectConfiguration> <ProjectConfiguration Include="Debug|x64"> <Configuration>Debug</Configuration> <Platform>x64</Platform> </ProjectConfiguration> <ProjectConfiguration Include="Release|Win32"> <Configuration>Release</Configuration> <Platform>Win32</Platform> </ProjectConfiguration> <ProjectConfiguration Include="Release|x64"> <Configuration>Release</Configuration> <Platform>x64</Platform> </ProjectConfiguration> </ItemGroup> <PropertyGroup Label="Globals"> <ProjectGuid>{58920BBA-0561-4073-9DB6-9DC2F6820D52}</ProjectGuid> <RootNamespace>dynamics</RootNamespace> </PropertyGroup> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> <ConfigurationType>StaticLibrary</ConfigurationType> <UseDebugLibraries>true</UseDebugLibraries> <CharacterSet>MultiByte</CharacterSet> <PlatformToolset>v140</PlatformToolset> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration"> <ConfigurationType>StaticLibrary</ConfigurationType> <UseDebugLibraries>true</UseDebugLibraries> <CharacterSet>MultiByte</CharacterSet> <PlatformToolset>v140</PlatformToolset> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> <ConfigurationType>StaticLibrary</ConfigurationType> <UseDebugLibraries>false</UseDebugLibraries> <WholeProgramOptimization>true</WholeProgramOptimization> <CharacterSet>MultiByte</CharacterSet> <PlatformToolset>v140</PlatformToolset> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration"> <ConfigurationType>StaticLibrary</ConfigurationType> <UseDebugLibraries>false</UseDebugLibraries> <WholeProgramOptimization>true</WholeProgramOptimization> <CharacterSet>MultiByte</CharacterSet> <PlatformToolset>v140</PlatformToolset> </PropertyGroup> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> <ImportGroup Label="ExtensionSettings"> </ImportGroup> <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> </ImportGroup> <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets"> <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> </ImportGroup> <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> </ImportGroup> <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets"> <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> </ImportGroup> <PropertyGroup Label="UserMacros" /> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> <IncludePath>..\..\..\src\bullet;..\..\..\src\custom;..\..\..\jni-headers;..\..\..\jni-headers\win32;..\..\Glut;$(IncludePath)</IncludePath> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> <IncludePath>..\..\..\src\bullet;..\..\..\src\custom;..\..\..\src\extras\serialize;..\..\..\jni-headers;..\..\..\jni-headers\win32;..\..\Glut;$(IncludePath)</IncludePath> </PropertyGroup> <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> <ClCompile> <WarningLevel>Level3</WarningLevel> <Optimization>Disabled</Optimization> </ClCompile> <Link> <GenerateDebugInformation>true</GenerateDebugInformation> </Link> </ItemDefinitionGroup> <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> <ClCompile> <WarningLevel>Level3</WarningLevel> <Optimization>Disabled</Optimization> </ClCompile> <Link> <GenerateDebugInformation>true</GenerateDebugInformation> </Link> </ItemDefinitionGroup> <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> <ClCompile> <WarningLevel>Level3</WarningLevel> <Optimization>MaxSpeed</Optimization> <FunctionLevelLinking>true</FunctionLevelLinking> <IntrinsicFunctions>true</IntrinsicFunctions> </ClCompile> <Link> <GenerateDebugInformation>true</GenerateDebugInformation> <EnableCOMDATFolding>true</EnableCOMDATFolding> <OptimizeReferences>true</OptimizeReferences> </Link> </ItemDefinitionGroup> <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> <ClCompile> <WarningLevel>Level3</WarningLevel> <Optimization>MaxSpeed</Optimization> <FunctionLevelLinking>true</FunctionLevelLinking> <IntrinsicFunctions>true</IntrinsicFunctions> </ClCompile> <Link> <GenerateDebugInformation>true</GenerateDebugInformation> <EnableCOMDATFolding>true</EnableCOMDATFolding> <OptimizeReferences>true</OptimizeReferences> </Link> </ItemDefinitionGroup> <ItemGroup> <ClCompile Include="..\..\..\src\bullet\BulletDynamics\Character\btKinematicCharacterController.cpp" /> <ClCompile Include="..\..\..\src\bullet\BulletDynamics\ConstraintSolver\btConeTwistConstraint.cpp" /> <ClCompile Include="..\..\..\src\bullet\BulletDynamics\ConstraintSolver\btContactConstraint.cpp" /> <ClCompile Include="..\..\..\src\bullet\BulletDynamics\ConstraintSolver\btFixedConstraint.cpp" /> <ClCompile Include="..\..\..\src\bullet\BulletDynamics\ConstraintSolver\btGearConstraint.cpp" /> <ClCompile Include="..\..\..\src\bullet\BulletDynamics\ConstraintSolver\btGeneric6DofConstraint.cpp" /> <ClCompile Include="..\..\..\src\bullet\BulletDynamics\ConstraintSolver\btGeneric6DofSpring2Constraint.cpp" /> <ClCompile Include="..\..\..\src\bullet\BulletDynamics\ConstraintSolver\btGeneric6DofSpringConstraint.cpp" /> <ClCompile Include="..\..\..\src\bullet\BulletDynamics\ConstraintSolver\btHinge2Constraint.cpp" /> <ClCompile Include="..\..\..\src\bullet\BulletDynamics\ConstraintSolver\btHingeConstraint.cpp" /> <ClCompile Include="..\..\..\src\bullet\BulletDynamics\ConstraintSolver\btNNCGConstraintSolver.cpp" /> <ClCompile Include="..\..\..\src\bullet\BulletDynamics\ConstraintSolver\btPoint2PointConstraint.cpp" /> <ClCompile Include="..\..\..\src\bullet\BulletDynamics\ConstraintSolver\btSequentialImpulseConstraintSolver.cpp" /> <ClCompile Include="..\..\..\src\bullet\BulletDynamics\ConstraintSolver\btSliderConstraint.cpp" /> <ClCompile Include="..\..\..\src\bullet\BulletDynamics\ConstraintSolver\btSolve2LinearConstraint.cpp" /> <ClCompile Include="..\..\..\src\bullet\BulletDynamics\ConstraintSolver\btTypedConstraint.cpp" /> <ClCompile Include="..\..\..\src\bullet\BulletDynamics\ConstraintSolver\btUniversalConstraint.cpp" /> <ClCompile Include="..\..\..\src\bullet\BulletDynamics\Dynamics\btDiscreteDynamicsWorld.cpp" /> <ClCompile Include="..\..\..\src\bullet\BulletDynamics\Dynamics\btDiscreteDynamicsWorldMt.cpp" /> <ClCompile Include="..\..\..\src\bullet\BulletDynamics\Dynamics\btRigidBody.cpp" /> <ClCompile Include="..\..\..\src\bullet\BulletDynamics\Dynamics\btSimpleDynamicsWorld.cpp" /> <ClCompile Include="..\..\..\src\bullet\BulletDynamics\Dynamics\btSimulationIslandManagerMt.cpp" /> <ClCompile Include="..\..\..\src\bullet\BulletDynamics\Featherstone\btMultiBody.cpp" /> <ClCompile Include="..\..\..\src\bullet\BulletDynamics\Featherstone\btMultiBodyConstraint.cpp" /> <ClCompile Include="..\..\..\src\bullet\BulletDynamics\Featherstone\btMultiBodyConstraintSolver.cpp" /> <ClCompile Include="..\..\..\src\bullet\BulletDynamics\Featherstone\btMultiBodyDynamicsWorld.cpp" /> <ClCompile Include="..\..\..\src\bullet\BulletDynamics\Featherstone\btMultiBodyFixedConstraint.cpp" /> <ClCompile Include="..\..\..\src\bullet\BulletDynamics\Featherstone\btMultiBodyGearConstraint.cpp" /> <ClCompile Include="..\..\..\src\bullet\BulletDynamics\Featherstone\btMultiBodyJointLimitConstraint.cpp" /> <ClCompile Include="..\..\..\src\bullet\BulletDynamics\Featherstone\btMultiBodyJointMotor.cpp" /> <ClCompile Include="..\..\..\src\bullet\BulletDynamics\Featherstone\btMultiBodyPoint2Point.cpp" /> <ClCompile Include="..\..\..\src\bullet\BulletDynamics\Featherstone\btMultiBodySliderConstraint.cpp" /> <ClCompile Include="..\..\..\src\bullet\BulletDynamics\MLCPSolvers\btDantzigLCP.cpp" /> <ClCompile Include="..\..\..\src\bullet\BulletDynamics\MLCPSolvers\btLemkeAlgorithm.cpp" /> <ClCompile Include="..\..\..\src\bullet\BulletDynamics\MLCPSolvers\btMLCPSolver.cpp" /> <ClCompile Include="..\..\..\src\bullet\BulletDynamics\Vehicle\btRaycastVehicle.cpp" /> <ClCompile Include="..\..\..\src\bullet\BulletDynamics\Vehicle\btWheelInfo.cpp" /> <ClCompile Include="..\..\..\src\custom\gdx\dynamics\InternalTickCallback.cpp" /> <ClCompile Include="..\..\..\swig-src\dynamics\dynamics_wrap.cpp" /> </ItemGroup> <ItemGroup> <ProjectReference Include="..\collision\collision.vcxproj"> <Project>{0964bea7-76e4-41f1-a5a8-4c59edbe8dd3}</Project> <Private>true</Private> <ReferenceOutputAssembly>true</ReferenceOutputAssembly> <CopyLocalSatelliteAssemblies>false</CopyLocalSatelliteAssemblies> <LinkLibraryDependencies>true</LinkLibraryDependencies> <UseLibraryDependencyInputs>false</UseLibraryDependencyInputs> </ProjectReference> </ItemGroup> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> <ImportGroup Label="ExtensionTargets"> </ImportGroup> </Project>
<?xml version="1.0" encoding="utf-8"?> <Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <ItemGroup Label="ProjectConfigurations"> <ProjectConfiguration Include="Debug|Win32"> <Configuration>Debug</Configuration> <Platform>Win32</Platform> </ProjectConfiguration> <ProjectConfiguration Include="Debug|x64"> <Configuration>Debug</Configuration> <Platform>x64</Platform> </ProjectConfiguration> <ProjectConfiguration Include="Release|Win32"> <Configuration>Release</Configuration> <Platform>Win32</Platform> </ProjectConfiguration> <ProjectConfiguration Include="Release|x64"> <Configuration>Release</Configuration> <Platform>x64</Platform> </ProjectConfiguration> </ItemGroup> <PropertyGroup Label="Globals"> <ProjectGuid>{58920BBA-0561-4073-9DB6-9DC2F6820D52}</ProjectGuid> <RootNamespace>dynamics</RootNamespace> </PropertyGroup> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> <ConfigurationType>StaticLibrary</ConfigurationType> <UseDebugLibraries>true</UseDebugLibraries> <CharacterSet>MultiByte</CharacterSet> <PlatformToolset>v140</PlatformToolset> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration"> <ConfigurationType>StaticLibrary</ConfigurationType> <UseDebugLibraries>true</UseDebugLibraries> <CharacterSet>MultiByte</CharacterSet> <PlatformToolset>v140</PlatformToolset> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> <ConfigurationType>StaticLibrary</ConfigurationType> <UseDebugLibraries>false</UseDebugLibraries> <WholeProgramOptimization>true</WholeProgramOptimization> <CharacterSet>MultiByte</CharacterSet> <PlatformToolset>v140</PlatformToolset> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration"> <ConfigurationType>StaticLibrary</ConfigurationType> <UseDebugLibraries>false</UseDebugLibraries> <WholeProgramOptimization>true</WholeProgramOptimization> <CharacterSet>MultiByte</CharacterSet> <PlatformToolset>v140</PlatformToolset> </PropertyGroup> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> <ImportGroup Label="ExtensionSettings"> </ImportGroup> <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> </ImportGroup> <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets"> <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> </ImportGroup> <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> </ImportGroup> <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets"> <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> </ImportGroup> <PropertyGroup Label="UserMacros" /> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> <IncludePath>..\..\..\src\bullet;..\..\..\src\custom;..\..\..\jni-headers;..\..\..\jni-headers\win32;..\..\Glut;$(IncludePath)</IncludePath> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> <IncludePath>..\..\..\src\bullet;..\..\..\src\custom;..\..\..\src\extras\serialize;..\..\..\jni-headers;..\..\..\jni-headers\win32;..\..\Glut;$(IncludePath)</IncludePath> </PropertyGroup> <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> <ClCompile> <WarningLevel>Level3</WarningLevel> <Optimization>Disabled</Optimization> </ClCompile> <Link> <GenerateDebugInformation>true</GenerateDebugInformation> </Link> </ItemDefinitionGroup> <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> <ClCompile> <WarningLevel>Level3</WarningLevel> <Optimization>Disabled</Optimization> </ClCompile> <Link> <GenerateDebugInformation>true</GenerateDebugInformation> </Link> </ItemDefinitionGroup> <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> <ClCompile> <WarningLevel>Level3</WarningLevel> <Optimization>MaxSpeed</Optimization> <FunctionLevelLinking>true</FunctionLevelLinking> <IntrinsicFunctions>true</IntrinsicFunctions> </ClCompile> <Link> <GenerateDebugInformation>true</GenerateDebugInformation> <EnableCOMDATFolding>true</EnableCOMDATFolding> <OptimizeReferences>true</OptimizeReferences> </Link> </ItemDefinitionGroup> <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> <ClCompile> <WarningLevel>Level3</WarningLevel> <Optimization>MaxSpeed</Optimization> <FunctionLevelLinking>true</FunctionLevelLinking> <IntrinsicFunctions>true</IntrinsicFunctions> </ClCompile> <Link> <GenerateDebugInformation>true</GenerateDebugInformation> <EnableCOMDATFolding>true</EnableCOMDATFolding> <OptimizeReferences>true</OptimizeReferences> </Link> </ItemDefinitionGroup> <ItemGroup> <ClCompile Include="..\..\..\src\bullet\BulletDynamics\Character\btKinematicCharacterController.cpp" /> <ClCompile Include="..\..\..\src\bullet\BulletDynamics\ConstraintSolver\btConeTwistConstraint.cpp" /> <ClCompile Include="..\..\..\src\bullet\BulletDynamics\ConstraintSolver\btContactConstraint.cpp" /> <ClCompile Include="..\..\..\src\bullet\BulletDynamics\ConstraintSolver\btFixedConstraint.cpp" /> <ClCompile Include="..\..\..\src\bullet\BulletDynamics\ConstraintSolver\btGearConstraint.cpp" /> <ClCompile Include="..\..\..\src\bullet\BulletDynamics\ConstraintSolver\btGeneric6DofConstraint.cpp" /> <ClCompile Include="..\..\..\src\bullet\BulletDynamics\ConstraintSolver\btGeneric6DofSpring2Constraint.cpp" /> <ClCompile Include="..\..\..\src\bullet\BulletDynamics\ConstraintSolver\btGeneric6DofSpringConstraint.cpp" /> <ClCompile Include="..\..\..\src\bullet\BulletDynamics\ConstraintSolver\btHinge2Constraint.cpp" /> <ClCompile Include="..\..\..\src\bullet\BulletDynamics\ConstraintSolver\btHingeConstraint.cpp" /> <ClCompile Include="..\..\..\src\bullet\BulletDynamics\ConstraintSolver\btNNCGConstraintSolver.cpp" /> <ClCompile Include="..\..\..\src\bullet\BulletDynamics\ConstraintSolver\btPoint2PointConstraint.cpp" /> <ClCompile Include="..\..\..\src\bullet\BulletDynamics\ConstraintSolver\btSequentialImpulseConstraintSolver.cpp" /> <ClCompile Include="..\..\..\src\bullet\BulletDynamics\ConstraintSolver\btSliderConstraint.cpp" /> <ClCompile Include="..\..\..\src\bullet\BulletDynamics\ConstraintSolver\btSolve2LinearConstraint.cpp" /> <ClCompile Include="..\..\..\src\bullet\BulletDynamics\ConstraintSolver\btTypedConstraint.cpp" /> <ClCompile Include="..\..\..\src\bullet\BulletDynamics\ConstraintSolver\btUniversalConstraint.cpp" /> <ClCompile Include="..\..\..\src\bullet\BulletDynamics\Dynamics\btDiscreteDynamicsWorld.cpp" /> <ClCompile Include="..\..\..\src\bullet\BulletDynamics\Dynamics\btDiscreteDynamicsWorldMt.cpp" /> <ClCompile Include="..\..\..\src\bullet\BulletDynamics\Dynamics\btRigidBody.cpp" /> <ClCompile Include="..\..\..\src\bullet\BulletDynamics\Dynamics\btSimpleDynamicsWorld.cpp" /> <ClCompile Include="..\..\..\src\bullet\BulletDynamics\Dynamics\btSimulationIslandManagerMt.cpp" /> <ClCompile Include="..\..\..\src\bullet\BulletDynamics\Featherstone\btMultiBody.cpp" /> <ClCompile Include="..\..\..\src\bullet\BulletDynamics\Featherstone\btMultiBodyConstraint.cpp" /> <ClCompile Include="..\..\..\src\bullet\BulletDynamics\Featherstone\btMultiBodyConstraintSolver.cpp" /> <ClCompile Include="..\..\..\src\bullet\BulletDynamics\Featherstone\btMultiBodyDynamicsWorld.cpp" /> <ClCompile Include="..\..\..\src\bullet\BulletDynamics\Featherstone\btMultiBodyFixedConstraint.cpp" /> <ClCompile Include="..\..\..\src\bullet\BulletDynamics\Featherstone\btMultiBodyGearConstraint.cpp" /> <ClCompile Include="..\..\..\src\bullet\BulletDynamics\Featherstone\btMultiBodyJointLimitConstraint.cpp" /> <ClCompile Include="..\..\..\src\bullet\BulletDynamics\Featherstone\btMultiBodyJointMotor.cpp" /> <ClCompile Include="..\..\..\src\bullet\BulletDynamics\Featherstone\btMultiBodyPoint2Point.cpp" /> <ClCompile Include="..\..\..\src\bullet\BulletDynamics\Featherstone\btMultiBodySliderConstraint.cpp" /> <ClCompile Include="..\..\..\src\bullet\BulletDynamics\MLCPSolvers\btDantzigLCP.cpp" /> <ClCompile Include="..\..\..\src\bullet\BulletDynamics\MLCPSolvers\btLemkeAlgorithm.cpp" /> <ClCompile Include="..\..\..\src\bullet\BulletDynamics\MLCPSolvers\btMLCPSolver.cpp" /> <ClCompile Include="..\..\..\src\bullet\BulletDynamics\Vehicle\btRaycastVehicle.cpp" /> <ClCompile Include="..\..\..\src\bullet\BulletDynamics\Vehicle\btWheelInfo.cpp" /> <ClCompile Include="..\..\..\src\custom\gdx\dynamics\InternalTickCallback.cpp" /> <ClCompile Include="..\..\..\swig-src\dynamics\dynamics_wrap.cpp" /> </ItemGroup> <ItemGroup> <ProjectReference Include="..\collision\collision.vcxproj"> <Project>{0964bea7-76e4-41f1-a5a8-4c59edbe8dd3}</Project> <Private>true</Private> <ReferenceOutputAssembly>true</ReferenceOutputAssembly> <CopyLocalSatelliteAssemblies>false</CopyLocalSatelliteAssemblies> <LinkLibraryDependencies>true</LinkLibraryDependencies> <UseLibraryDependencyInputs>false</UseLibraryDependencyInputs> </ProjectReference> </ItemGroup> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> <ImportGroup Label="ExtensionTargets"> </ImportGroup> </Project>
-1
libgdx/libgdx
7,309
Use empty Audio implementations on Android and iOS when audio is disabled
Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
obigu
"2023-12-27T22:37:18Z"
"2023-12-28T19:29:00Z"
2b691f735f4b167c062f8f68186a6d7237d3d855
7f682a7921a47f0da858508f6b6fd58426dd05d7
Use empty Audio implementations on Android and iOS when audio is disabled. Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
./extensions/gdx-bullet/jni/src/custom/gdx/common/jniHelpers.cpp
#include "jniHelpers.h" GdxPool::GdxPool(const char * const &poolField, const char * const &typeName, const char * const &tempField, const char * const &poolClazz, const char * const &obtainName, const char * const &obtainSig, const char * const &freeName, const char * const &freeSig) : env(0), cls(0), pool(0), tmp(0), poolField(poolField), typeName(typeName), tempField(tempField), poolClazz(poolClazz), obtainName(obtainName), obtainSig(obtainSig), freeName(freeName), freeSig(freeSig) { } GdxPool::~GdxPool() { if (pool) env->DeleteGlobalRef(pool); if (tmp) env->DeleteGlobalRef(tmp); if (cls) env->DeleteGlobalRef(cls); } void GdxPool::setEnv(JNIEnv * const &e) { env = e; cls = (jclass)env->NewGlobalRef(env->FindClass(typeName)); jfieldID poolFieldID = env->GetStaticFieldID(cls, poolField, poolClazz); pool = env->NewGlobalRef(env->GetStaticObjectField(cls, poolFieldID)); jclass poolClass = env->GetObjectClass(pool); obtainMethod = env->GetMethodID(poolClass, obtainName, obtainSig); freeMethod = env->GetMethodID(poolClass, freeName, freeSig); env->DeleteLocalRef(poolClass); if (typeName && tempField) { jfieldID tempFieldID = env->GetStaticFieldID(cls, tempField, typeName); tmp = env->NewGlobalRef(env->GetStaticObjectField(cls, tempFieldID)); } } jobject GdxPool::obtain(JNIEnv * const &e) { if (!env) setEnv(e); jobject result = env->CallObjectMethod(pool, obtainMethod); return result; } void GdxPool::free(jobject &obj) { env->CallVoidMethod(pool, freeMethod, obj); } jobject GdxPool::temp(JNIEnv * const &e) { if (!env) setEnv(e); return tmp; } GdxPooledObject::GdxPooledObject(JNIEnv * const &e, GdxPool * const &pool, const bool &autoFree) : pool(pool), autoFree(autoFree), obj(pool->obtain(e)) { } GdxPooledObject::GdxPooledObject(JNIEnv * const &e, GdxPool * &pool, const bool &autoFree) : pool(pool), autoFree(autoFree), obj(pool->obtain(e)) { } GdxPooledObject::~GdxPooledObject() { if (autoFree) free(); } void GdxPooledObject::free() { pool->free(obj); }
#include "jniHelpers.h" GdxPool::GdxPool(const char * const &poolField, const char * const &typeName, const char * const &tempField, const char * const &poolClazz, const char * const &obtainName, const char * const &obtainSig, const char * const &freeName, const char * const &freeSig) : env(0), cls(0), pool(0), tmp(0), poolField(poolField), typeName(typeName), tempField(tempField), poolClazz(poolClazz), obtainName(obtainName), obtainSig(obtainSig), freeName(freeName), freeSig(freeSig) { } GdxPool::~GdxPool() { if (pool) env->DeleteGlobalRef(pool); if (tmp) env->DeleteGlobalRef(tmp); if (cls) env->DeleteGlobalRef(cls); } void GdxPool::setEnv(JNIEnv * const &e) { env = e; cls = (jclass)env->NewGlobalRef(env->FindClass(typeName)); jfieldID poolFieldID = env->GetStaticFieldID(cls, poolField, poolClazz); pool = env->NewGlobalRef(env->GetStaticObjectField(cls, poolFieldID)); jclass poolClass = env->GetObjectClass(pool); obtainMethod = env->GetMethodID(poolClass, obtainName, obtainSig); freeMethod = env->GetMethodID(poolClass, freeName, freeSig); env->DeleteLocalRef(poolClass); if (typeName && tempField) { jfieldID tempFieldID = env->GetStaticFieldID(cls, tempField, typeName); tmp = env->NewGlobalRef(env->GetStaticObjectField(cls, tempFieldID)); } } jobject GdxPool::obtain(JNIEnv * const &e) { if (!env) setEnv(e); jobject result = env->CallObjectMethod(pool, obtainMethod); return result; } void GdxPool::free(jobject &obj) { env->CallVoidMethod(pool, freeMethod, obj); } jobject GdxPool::temp(JNIEnv * const &e) { if (!env) setEnv(e); return tmp; } GdxPooledObject::GdxPooledObject(JNIEnv * const &e, GdxPool * const &pool, const bool &autoFree) : pool(pool), autoFree(autoFree), obj(pool->obtain(e)) { } GdxPooledObject::GdxPooledObject(JNIEnv * const &e, GdxPool * &pool, const bool &autoFree) : pool(pool), autoFree(autoFree), obj(pool->obtain(e)) { } GdxPooledObject::~GdxPooledObject() { if (autoFree) free(); } void GdxPooledObject::free() { pool->free(obj); }
-1
libgdx/libgdx
7,309
Use empty Audio implementations on Android and iOS when audio is disabled
Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
obigu
"2023-12-27T22:37:18Z"
"2023-12-28T19:29:00Z"
2b691f735f4b167c062f8f68186a6d7237d3d855
7f682a7921a47f0da858508f6b6fd58426dd05d7
Use empty Audio implementations on Android and iOS when audio is disabled. Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
./extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/dynamics/contacts/ChainAndPolygonContact.java
/******************************************************************************* * Copyright (c) 2013, Daniel Murphy * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. * IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. ******************************************************************************/ package org.jbox2d.dynamics.contacts; import org.jbox2d.collision.Manifold; import org.jbox2d.collision.shapes.ChainShape; import org.jbox2d.collision.shapes.EdgeShape; import org.jbox2d.collision.shapes.PolygonShape; import org.jbox2d.collision.shapes.ShapeType; import org.jbox2d.common.Transform; import org.jbox2d.dynamics.Fixture; import org.jbox2d.pooling.IWorldPool; public class ChainAndPolygonContact extends Contact { public ChainAndPolygonContact (IWorldPool argPool) { super(argPool); } @Override public void init (Fixture fA, int indexA, Fixture fB, int indexB) { super.init(fA, indexA, fB, indexB); assert (m_fixtureA.getType() == ShapeType.CHAIN); assert (m_fixtureB.getType() == ShapeType.POLYGON); } private final EdgeShape edge = new EdgeShape(); @Override public void evaluate (Manifold manifold, Transform xfA, Transform xfB) { ChainShape chain = (ChainShape)m_fixtureA.getShape(); chain.getChildEdge(edge, m_indexA); pool.getCollision().collideEdgeAndPolygon(manifold, edge, xfA, (PolygonShape)m_fixtureB.getShape(), xfB); } }
/******************************************************************************* * Copyright (c) 2013, Daniel Murphy * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. * IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. ******************************************************************************/ package org.jbox2d.dynamics.contacts; import org.jbox2d.collision.Manifold; import org.jbox2d.collision.shapes.ChainShape; import org.jbox2d.collision.shapes.EdgeShape; import org.jbox2d.collision.shapes.PolygonShape; import org.jbox2d.collision.shapes.ShapeType; import org.jbox2d.common.Transform; import org.jbox2d.dynamics.Fixture; import org.jbox2d.pooling.IWorldPool; public class ChainAndPolygonContact extends Contact { public ChainAndPolygonContact (IWorldPool argPool) { super(argPool); } @Override public void init (Fixture fA, int indexA, Fixture fB, int indexB) { super.init(fA, indexA, fB, indexB); assert (m_fixtureA.getType() == ShapeType.CHAIN); assert (m_fixtureB.getType() == ShapeType.POLYGON); } private final EdgeShape edge = new EdgeShape(); @Override public void evaluate (Manifold manifold, Transform xfA, Transform xfB) { ChainShape chain = (ChainShape)m_fixtureA.getShape(); chain.getChildEdge(edge, m_indexA); pool.getCollision().collideEdgeAndPolygon(manifold, edge, xfA, (PolygonShape)m_fixtureB.getShape(), xfB); } }
-1
libgdx/libgdx
7,309
Use empty Audio implementations on Android and iOS when audio is disabled
Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
obigu
"2023-12-27T22:37:18Z"
"2023-12-28T19:29:00Z"
2b691f735f4b167c062f8f68186a6d7237d3d855
7f682a7921a47f0da858508f6b6fd58426dd05d7
Use empty Audio implementations on Android and iOS when audio is disabled. Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
./gdx/src/com/badlogic/gdx/assets/loaders/AssetLoader.java
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.assets.loaders; import com.badlogic.gdx.assets.AssetDescriptor; import com.badlogic.gdx.assets.AssetLoaderParameters; import com.badlogic.gdx.files.FileHandle; import com.badlogic.gdx.utils.Array; /** Abstract base class for asset loaders. * @author mzechner * * @param <T> the class of the asset the loader supports * @param <P> the class of the loading parameters the loader supports. */ public abstract class AssetLoader<T, P extends AssetLoaderParameters<T>> { /** {@link FileHandleResolver} used to map from plain asset names to {@link FileHandle} instances **/ private FileHandleResolver resolver; /** Constructor, sets the {@link FileHandleResolver} to use to resolve the file associated with the asset name. * @param resolver */ public AssetLoader (FileHandleResolver resolver) { this.resolver = resolver; } /** @param fileName file name to resolve * @return handle to the file, as resolved by the {@link FileHandleResolver} set on the loader */ public FileHandle resolve (String fileName) { return resolver.resolve(fileName); } /** Returns the assets this asset requires to be loaded first. This method may be called on a thread other than the GL thread. * @param fileName name of the asset to load * @param file the resolved file to load * @param parameter parameters for loading the asset * @return other assets that the asset depends on and need to be loaded first or null if there are no dependencies. */ public abstract Array<AssetDescriptor> getDependencies (String fileName, FileHandle file, P parameter); }
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.assets.loaders; import com.badlogic.gdx.assets.AssetDescriptor; import com.badlogic.gdx.assets.AssetLoaderParameters; import com.badlogic.gdx.files.FileHandle; import com.badlogic.gdx.utils.Array; /** Abstract base class for asset loaders. * @author mzechner * * @param <T> the class of the asset the loader supports * @param <P> the class of the loading parameters the loader supports. */ public abstract class AssetLoader<T, P extends AssetLoaderParameters<T>> { /** {@link FileHandleResolver} used to map from plain asset names to {@link FileHandle} instances **/ private FileHandleResolver resolver; /** Constructor, sets the {@link FileHandleResolver} to use to resolve the file associated with the asset name. * @param resolver */ public AssetLoader (FileHandleResolver resolver) { this.resolver = resolver; } /** @param fileName file name to resolve * @return handle to the file, as resolved by the {@link FileHandleResolver} set on the loader */ public FileHandle resolve (String fileName) { return resolver.resolve(fileName); } /** Returns the assets this asset requires to be loaded first. This method may be called on a thread other than the GL thread. * @param fileName name of the asset to load * @param file the resolved file to load * @param parameter parameters for loading the asset * @return other assets that the asset depends on and need to be loaded first or null if there are no dependencies. */ public abstract Array<AssetDescriptor> getDependencies (String fileName, FileHandle file, P parameter); }
-1
libgdx/libgdx
7,309
Use empty Audio implementations on Android and iOS when audio is disabled
Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
obigu
"2023-12-27T22:37:18Z"
"2023-12-28T19:29:00Z"
2b691f735f4b167c062f8f68186a6d7237d3d855
7f682a7921a47f0da858508f6b6fd58426dd05d7
Use empty Audio implementations on Android and iOS when audio is disabled. Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
./tests/gdx-tests/src/com/badlogic/gdx/tests/TiledMapObjectLoadingTest.java
/** * ***************************************************************************** * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations under * the License. * **************************************************************************** */ package com.badlogic.gdx.tests; import com.badlogic.gdx.Gdx; import com.badlogic.gdx.graphics.Color; import com.badlogic.gdx.graphics.OrthographicCamera; import com.badlogic.gdx.graphics.g2d.BitmapFont; import com.badlogic.gdx.graphics.g2d.SpriteBatch; import com.badlogic.gdx.graphics.g2d.TextureRegion; import com.badlogic.gdx.graphics.glutils.ShapeRenderer; import com.badlogic.gdx.maps.MapLayer; import com.badlogic.gdx.maps.MapObject; import com.badlogic.gdx.maps.MapObjects; import com.badlogic.gdx.maps.MapProperties; import com.badlogic.gdx.maps.objects.CircleMapObject; import com.badlogic.gdx.maps.objects.EllipseMapObject; import com.badlogic.gdx.maps.objects.PolygonMapObject; import com.badlogic.gdx.maps.objects.PolylineMapObject; import com.badlogic.gdx.maps.objects.RectangleMapObject; import com.badlogic.gdx.maps.objects.TextureMapObject; import com.badlogic.gdx.maps.tiled.TiledMap; import com.badlogic.gdx.maps.tiled.TmxMapLoader; import com.badlogic.gdx.maps.tiled.objects.TiledMapTileMapObject; import com.badlogic.gdx.maps.tiled.tiles.AnimatedTiledMapTile; import com.badlogic.gdx.math.Circle; import com.badlogic.gdx.math.Ellipse; import com.badlogic.gdx.math.Polygon; import com.badlogic.gdx.math.Polyline; import com.badlogic.gdx.math.Rectangle; import com.badlogic.gdx.tests.utils.GdxTest; import com.badlogic.gdx.tests.utils.OrthoCamController; import com.badlogic.gdx.utils.ScreenUtils; public class TiledMapObjectLoadingTest extends GdxTest { private TiledMap map; private ShapeRenderer shapeRenderer; private OrthographicCamera camera; private OrthoCamController cameraController; private BitmapFont font; private SpriteBatch batch; private String loadingStatus; @Override public void create () { float w = Gdx.graphics.getWidth(); float h = Gdx.graphics.getHeight(); camera = new OrthographicCamera(); camera.setToOrtho(false, (w / h) * 512, 512); camera.zoom = .5f; camera.update(); cameraController = new OrthoCamController(camera); Gdx.input.setInputProcessor(cameraController); font = new BitmapFont(); batch = new SpriteBatch(); map = new TmxMapLoader().load("data/maps/tiled-objects/test-load-mapobjects.tmx"); MapProperties properties = map.getProperties(); shapeRenderer = new ShapeRenderer(); // Test get objects by type (adding circle manually because it doesn't exists in Tiledmap editor) loadingStatus = "loading status:\n"; MapLayer layer = map.getLayers().get("Objects"); MapObjects mapObjects = layer.getObjects(); mapObjects.add(new CircleMapObject(280, 400, 50)); loadingStatus += "- MapObject : " + mapObjects.getByType(MapObject.class).size + "\n"; loadingStatus += "- CircleMapObject : " + mapObjects.getByType(CircleMapObject.class).size + "\n"; loadingStatus += "- EllipseMapObject : " + mapObjects.getByType(EllipseMapObject.class).size + "\n"; loadingStatus += "- PolygonMapObject : " + mapObjects.getByType(PolygonMapObject.class).size + "\n"; loadingStatus += "- PolylineMapObject : " + mapObjects.getByType(PolylineMapObject.class).size + "\n"; loadingStatus += "- RectangleMapObject : " + mapObjects.getByType(RectangleMapObject.class).size + "\n"; loadingStatus += "- TextureMapObject : " + mapObjects.getByType(TextureMapObject.class).size + "\n"; loadingStatus += "- TiledMapTileMapObject : " + mapObjects.getByType(TiledMapTileMapObject.class).size + "\n"; } @Override public void render () { ScreenUtils.clear(0.55f, 0.55f, 0.55f, 1f); camera.update(); shapeRenderer.setProjectionMatrix(camera.combined); batch.setProjectionMatrix(camera.combined); shapeRenderer.setColor(Color.BLUE); Gdx.gl20.glLineWidth(2); MapLayer layer = map.getLayers().get("Objects"); AnimatedTiledMapTile.updateAnimationBaseTime(); for (MapObject mapObject : layer.getObjects()) { if (!mapObject.isVisible()) continue; if (mapObject instanceof TiledMapTileMapObject) { batch.begin(); TiledMapTileMapObject tmtObject = (TiledMapTileMapObject)mapObject; TextureRegion textureRegion = tmtObject.getTile().getTextureRegion(); // TilEd rotation is clockwise, we need counter-clockwise. float rotation = -tmtObject.getRotation(); float scaleX = tmtObject.getScaleX(); float scaleY = tmtObject.getScaleY(); float xPos = tmtObject.getX(); float yPos = tmtObject.getY(); textureRegion.flip(tmtObject.isFlipHorizontally(), tmtObject.isFlipVertically()); batch.draw(textureRegion, xPos, yPos, tmtObject.getOriginX() * scaleX, tmtObject.getOriginY() * scaleY, textureRegion.getRegionWidth() * scaleX, textureRegion.getRegionHeight() * scaleY, 1f, 1f, rotation); // We flip back to the original state. textureRegion.flip(tmtObject.isFlipHorizontally(), tmtObject.isFlipVertically()); batch.end(); } else if (mapObject instanceof EllipseMapObject) { shapeRenderer.begin(ShapeRenderer.ShapeType.Filled); Ellipse ellipse = ((EllipseMapObject)mapObject).getEllipse(); shapeRenderer.ellipse(ellipse.x, ellipse.y, ellipse.width, ellipse.height); shapeRenderer.end(); } else if (mapObject instanceof CircleMapObject) { shapeRenderer.begin(ShapeRenderer.ShapeType.Filled); Circle circle = ((CircleMapObject)mapObject).getCircle(); shapeRenderer.circle(circle.x, circle.y, circle.radius); shapeRenderer.end(); } else if (mapObject instanceof RectangleMapObject) { shapeRenderer.begin(ShapeRenderer.ShapeType.Filled); Rectangle rectangle = ((RectangleMapObject)mapObject).getRectangle(); shapeRenderer.rect(rectangle.x, rectangle.y, rectangle.width, rectangle.height); shapeRenderer.end(); } else if (mapObject instanceof PolygonMapObject) { shapeRenderer.begin(ShapeRenderer.ShapeType.Line); Polygon polygon = ((PolygonMapObject)mapObject).getPolygon(); shapeRenderer.polygon(polygon.getTransformedVertices()); shapeRenderer.end(); } else if (mapObject instanceof PolylineMapObject) { shapeRenderer.begin(ShapeRenderer.ShapeType.Line); Polyline polyline = ((PolylineMapObject)mapObject).getPolyline(); shapeRenderer.polyline(polyline.getTransformedVertices()); shapeRenderer.end(); } } batch.begin(); font.draw(batch, "FPS: " + Gdx.graphics.getFramesPerSecond() + "\n" + loadingStatus, 20, 500); batch.end(); } @Override public void dispose () { map.dispose(); shapeRenderer.dispose(); } }
/** * ***************************************************************************** * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations under * the License. * **************************************************************************** */ package com.badlogic.gdx.tests; import com.badlogic.gdx.Gdx; import com.badlogic.gdx.graphics.Color; import com.badlogic.gdx.graphics.OrthographicCamera; import com.badlogic.gdx.graphics.g2d.BitmapFont; import com.badlogic.gdx.graphics.g2d.SpriteBatch; import com.badlogic.gdx.graphics.g2d.TextureRegion; import com.badlogic.gdx.graphics.glutils.ShapeRenderer; import com.badlogic.gdx.maps.MapLayer; import com.badlogic.gdx.maps.MapObject; import com.badlogic.gdx.maps.MapObjects; import com.badlogic.gdx.maps.MapProperties; import com.badlogic.gdx.maps.objects.CircleMapObject; import com.badlogic.gdx.maps.objects.EllipseMapObject; import com.badlogic.gdx.maps.objects.PolygonMapObject; import com.badlogic.gdx.maps.objects.PolylineMapObject; import com.badlogic.gdx.maps.objects.RectangleMapObject; import com.badlogic.gdx.maps.objects.TextureMapObject; import com.badlogic.gdx.maps.tiled.TiledMap; import com.badlogic.gdx.maps.tiled.TmxMapLoader; import com.badlogic.gdx.maps.tiled.objects.TiledMapTileMapObject; import com.badlogic.gdx.maps.tiled.tiles.AnimatedTiledMapTile; import com.badlogic.gdx.math.Circle; import com.badlogic.gdx.math.Ellipse; import com.badlogic.gdx.math.Polygon; import com.badlogic.gdx.math.Polyline; import com.badlogic.gdx.math.Rectangle; import com.badlogic.gdx.tests.utils.GdxTest; import com.badlogic.gdx.tests.utils.OrthoCamController; import com.badlogic.gdx.utils.ScreenUtils; public class TiledMapObjectLoadingTest extends GdxTest { private TiledMap map; private ShapeRenderer shapeRenderer; private OrthographicCamera camera; private OrthoCamController cameraController; private BitmapFont font; private SpriteBatch batch; private String loadingStatus; @Override public void create () { float w = Gdx.graphics.getWidth(); float h = Gdx.graphics.getHeight(); camera = new OrthographicCamera(); camera.setToOrtho(false, (w / h) * 512, 512); camera.zoom = .5f; camera.update(); cameraController = new OrthoCamController(camera); Gdx.input.setInputProcessor(cameraController); font = new BitmapFont(); batch = new SpriteBatch(); map = new TmxMapLoader().load("data/maps/tiled-objects/test-load-mapobjects.tmx"); MapProperties properties = map.getProperties(); shapeRenderer = new ShapeRenderer(); // Test get objects by type (adding circle manually because it doesn't exists in Tiledmap editor) loadingStatus = "loading status:\n"; MapLayer layer = map.getLayers().get("Objects"); MapObjects mapObjects = layer.getObjects(); mapObjects.add(new CircleMapObject(280, 400, 50)); loadingStatus += "- MapObject : " + mapObjects.getByType(MapObject.class).size + "\n"; loadingStatus += "- CircleMapObject : " + mapObjects.getByType(CircleMapObject.class).size + "\n"; loadingStatus += "- EllipseMapObject : " + mapObjects.getByType(EllipseMapObject.class).size + "\n"; loadingStatus += "- PolygonMapObject : " + mapObjects.getByType(PolygonMapObject.class).size + "\n"; loadingStatus += "- PolylineMapObject : " + mapObjects.getByType(PolylineMapObject.class).size + "\n"; loadingStatus += "- RectangleMapObject : " + mapObjects.getByType(RectangleMapObject.class).size + "\n"; loadingStatus += "- TextureMapObject : " + mapObjects.getByType(TextureMapObject.class).size + "\n"; loadingStatus += "- TiledMapTileMapObject : " + mapObjects.getByType(TiledMapTileMapObject.class).size + "\n"; } @Override public void render () { ScreenUtils.clear(0.55f, 0.55f, 0.55f, 1f); camera.update(); shapeRenderer.setProjectionMatrix(camera.combined); batch.setProjectionMatrix(camera.combined); shapeRenderer.setColor(Color.BLUE); Gdx.gl20.glLineWidth(2); MapLayer layer = map.getLayers().get("Objects"); AnimatedTiledMapTile.updateAnimationBaseTime(); for (MapObject mapObject : layer.getObjects()) { if (!mapObject.isVisible()) continue; if (mapObject instanceof TiledMapTileMapObject) { batch.begin(); TiledMapTileMapObject tmtObject = (TiledMapTileMapObject)mapObject; TextureRegion textureRegion = tmtObject.getTile().getTextureRegion(); // TilEd rotation is clockwise, we need counter-clockwise. float rotation = -tmtObject.getRotation(); float scaleX = tmtObject.getScaleX(); float scaleY = tmtObject.getScaleY(); float xPos = tmtObject.getX(); float yPos = tmtObject.getY(); textureRegion.flip(tmtObject.isFlipHorizontally(), tmtObject.isFlipVertically()); batch.draw(textureRegion, xPos, yPos, tmtObject.getOriginX() * scaleX, tmtObject.getOriginY() * scaleY, textureRegion.getRegionWidth() * scaleX, textureRegion.getRegionHeight() * scaleY, 1f, 1f, rotation); // We flip back to the original state. textureRegion.flip(tmtObject.isFlipHorizontally(), tmtObject.isFlipVertically()); batch.end(); } else if (mapObject instanceof EllipseMapObject) { shapeRenderer.begin(ShapeRenderer.ShapeType.Filled); Ellipse ellipse = ((EllipseMapObject)mapObject).getEllipse(); shapeRenderer.ellipse(ellipse.x, ellipse.y, ellipse.width, ellipse.height); shapeRenderer.end(); } else if (mapObject instanceof CircleMapObject) { shapeRenderer.begin(ShapeRenderer.ShapeType.Filled); Circle circle = ((CircleMapObject)mapObject).getCircle(); shapeRenderer.circle(circle.x, circle.y, circle.radius); shapeRenderer.end(); } else if (mapObject instanceof RectangleMapObject) { shapeRenderer.begin(ShapeRenderer.ShapeType.Filled); Rectangle rectangle = ((RectangleMapObject)mapObject).getRectangle(); shapeRenderer.rect(rectangle.x, rectangle.y, rectangle.width, rectangle.height); shapeRenderer.end(); } else if (mapObject instanceof PolygonMapObject) { shapeRenderer.begin(ShapeRenderer.ShapeType.Line); Polygon polygon = ((PolygonMapObject)mapObject).getPolygon(); shapeRenderer.polygon(polygon.getTransformedVertices()); shapeRenderer.end(); } else if (mapObject instanceof PolylineMapObject) { shapeRenderer.begin(ShapeRenderer.ShapeType.Line); Polyline polyline = ((PolylineMapObject)mapObject).getPolyline(); shapeRenderer.polyline(polyline.getTransformedVertices()); shapeRenderer.end(); } } batch.begin(); font.draw(batch, "FPS: " + Gdx.graphics.getFramesPerSecond() + "\n" + loadingStatus, 20, 500); batch.end(); } @Override public void dispose () { map.dispose(); shapeRenderer.dispose(); } }
-1
libgdx/libgdx
7,309
Use empty Audio implementations on Android and iOS when audio is disabled
Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
obigu
"2023-12-27T22:37:18Z"
"2023-12-28T19:29:00Z"
2b691f735f4b167c062f8f68186a6d7237d3d855
7f682a7921a47f0da858508f6b6fd58426dd05d7
Use empty Audio implementations on Android and iOS when audio is disabled. Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
./extensions/gdx-bullet/jni/swig-src/softbody/com/badlogic/gdx/physics/bullet/softbody/SWIGTYPE_p_btSoftBody__eFeature___.java
/* ---------------------------------------------------------------------------- * This file was automatically generated by SWIG (http://www.swig.org). * Version 3.0.11 * * Do not make changes to this file unless you know what you are doing--modify * the SWIG interface file instead. * ----------------------------------------------------------------------------- */ package com.badlogic.gdx.physics.bullet.softbody; public class SWIGTYPE_p_btSoftBody__eFeature___ { private transient long swigCPtr; protected SWIGTYPE_p_btSoftBody__eFeature___ (long cPtr, @SuppressWarnings("unused") boolean futureUse) { swigCPtr = cPtr; } protected SWIGTYPE_p_btSoftBody__eFeature___ () { swigCPtr = 0; } protected static long getCPtr (SWIGTYPE_p_btSoftBody__eFeature___ obj) { return (obj == null) ? 0 : obj.swigCPtr; } }
/* ---------------------------------------------------------------------------- * This file was automatically generated by SWIG (http://www.swig.org). * Version 3.0.11 * * Do not make changes to this file unless you know what you are doing--modify * the SWIG interface file instead. * ----------------------------------------------------------------------------- */ package com.badlogic.gdx.physics.bullet.softbody; public class SWIGTYPE_p_btSoftBody__eFeature___ { private transient long swigCPtr; protected SWIGTYPE_p_btSoftBody__eFeature___ (long cPtr, @SuppressWarnings("unused") boolean futureUse) { swigCPtr = cPtr; } protected SWIGTYPE_p_btSoftBody__eFeature___ () { swigCPtr = 0; } protected static long getCPtr (SWIGTYPE_p_btSoftBody__eFeature___ obj) { return (obj == null) ? 0 : obj.swigCPtr; } }
-1
libgdx/libgdx
7,309
Use empty Audio implementations on Android and iOS when audio is disabled
Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
obigu
"2023-12-27T22:37:18Z"
"2023-12-28T19:29:00Z"
2b691f735f4b167c062f8f68186a6d7237d3d855
7f682a7921a47f0da858508f6b6fd58426dd05d7
Use empty Audio implementations on Android and iOS when audio is disabled. Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
./extensions/gdx-bullet/jni/swig-src/collision/com/badlogic/gdx/physics/bullet/collision/btOverlappingPairCache.java
/* ---------------------------------------------------------------------------- * This file was automatically generated by SWIG (http://www.swig.org). * Version 3.0.11 * * Do not make changes to this file unless you know what you are doing--modify * the SWIG interface file instead. * ----------------------------------------------------------------------------- */ package com.badlogic.gdx.physics.bullet.collision; import com.badlogic.gdx.physics.bullet.linearmath.*; public class btOverlappingPairCache extends btOverlappingPairCallback { private long swigCPtr; protected btOverlappingPairCache (final String className, long cPtr, boolean cMemoryOwn) { super(className, CollisionJNI.btOverlappingPairCache_SWIGUpcast(cPtr), cMemoryOwn); swigCPtr = cPtr; } /** Construct a new btOverlappingPairCache, normally you should not need this constructor it's intended for low-level usage. */ public btOverlappingPairCache (long cPtr, boolean cMemoryOwn) { this("btOverlappingPairCache", cPtr, cMemoryOwn); construct(); } @Override protected void reset (long cPtr, boolean cMemoryOwn) { if (!destroyed) destroy(); super.reset(CollisionJNI.btOverlappingPairCache_SWIGUpcast(swigCPtr = cPtr), cMemoryOwn); } public static long getCPtr (btOverlappingPairCache obj) { return (obj == null) ? 0 : obj.swigCPtr; } @Override protected void finalize () throws Throwable { if (!destroyed) destroy(); super.finalize(); } @Override protected synchronized void delete () { if (swigCPtr != 0) { if (swigCMemOwn) { swigCMemOwn = false; CollisionJNI.delete_btOverlappingPairCache(swigCPtr); } swigCPtr = 0; } super.delete(); } public btBroadphasePair getOverlappingPairArrayPtr () { return btBroadphasePair.internalTemp(CollisionJNI.btOverlappingPairCache_getOverlappingPairArrayPtr(swigCPtr, this), false); } public btBroadphasePair getOverlappingPairArrayPtrConst () { return btBroadphasePair.internalTemp(CollisionJNI.btOverlappingPairCache_getOverlappingPairArrayPtrConst(swigCPtr, this), false); } public btBroadphasePairArray getOverlappingPairArray () { return new btBroadphasePairArray(CollisionJNI.btOverlappingPairCache_getOverlappingPairArray(swigCPtr, this), false); } public void cleanOverlappingPair (btBroadphasePair pair, btDispatcher dispatcher) { CollisionJNI.btOverlappingPairCache_cleanOverlappingPair(swigCPtr, this, pair, btDispatcher.getCPtr(dispatcher), dispatcher); } public int getNumOverlappingPairs () { return CollisionJNI.btOverlappingPairCache_getNumOverlappingPairs(swigCPtr, this); } public void cleanProxyFromPairs (btBroadphaseProxy proxy, btDispatcher dispatcher) { CollisionJNI.btOverlappingPairCache_cleanProxyFromPairs(swigCPtr, this, btBroadphaseProxy.getCPtr(proxy), proxy, btDispatcher.getCPtr(dispatcher), dispatcher); } public void setOverlapFilterCallback (btOverlapFilterCallback callback) { CollisionJNI.btOverlappingPairCache_setOverlapFilterCallback(swigCPtr, this, btOverlapFilterCallback.getCPtr(callback), callback); } public void processAllOverlappingPairs (btOverlapCallback arg0, btDispatcher dispatcher) { CollisionJNI.btOverlappingPairCache_processAllOverlappingPairs(swigCPtr, this, btOverlapCallback.getCPtr(arg0), arg0, btDispatcher.getCPtr(dispatcher), dispatcher); } public btBroadphasePair findPair (btBroadphaseProxy proxy0, btBroadphaseProxy proxy1) { return btBroadphasePair.internalTemp(CollisionJNI.btOverlappingPairCache_findPair(swigCPtr, this, btBroadphaseProxy.getCPtr(proxy0), proxy0, btBroadphaseProxy.getCPtr(proxy1), proxy1), false); } public boolean hasDeferredRemoval () { return CollisionJNI.btOverlappingPairCache_hasDeferredRemoval(swigCPtr, this); } public void setInternalGhostPairCallback (btOverlappingPairCallback ghostPairCallback) { CollisionJNI.btOverlappingPairCache_setInternalGhostPairCallback(swigCPtr, this, btOverlappingPairCallback.getCPtr(ghostPairCallback), ghostPairCallback); } public void sortOverlappingPairs (btDispatcher dispatcher) { CollisionJNI.btOverlappingPairCache_sortOverlappingPairs(swigCPtr, this, btDispatcher.getCPtr(dispatcher), dispatcher); } }
/* ---------------------------------------------------------------------------- * This file was automatically generated by SWIG (http://www.swig.org). * Version 3.0.11 * * Do not make changes to this file unless you know what you are doing--modify * the SWIG interface file instead. * ----------------------------------------------------------------------------- */ package com.badlogic.gdx.physics.bullet.collision; import com.badlogic.gdx.physics.bullet.linearmath.*; public class btOverlappingPairCache extends btOverlappingPairCallback { private long swigCPtr; protected btOverlappingPairCache (final String className, long cPtr, boolean cMemoryOwn) { super(className, CollisionJNI.btOverlappingPairCache_SWIGUpcast(cPtr), cMemoryOwn); swigCPtr = cPtr; } /** Construct a new btOverlappingPairCache, normally you should not need this constructor it's intended for low-level usage. */ public btOverlappingPairCache (long cPtr, boolean cMemoryOwn) { this("btOverlappingPairCache", cPtr, cMemoryOwn); construct(); } @Override protected void reset (long cPtr, boolean cMemoryOwn) { if (!destroyed) destroy(); super.reset(CollisionJNI.btOverlappingPairCache_SWIGUpcast(swigCPtr = cPtr), cMemoryOwn); } public static long getCPtr (btOverlappingPairCache obj) { return (obj == null) ? 0 : obj.swigCPtr; } @Override protected void finalize () throws Throwable { if (!destroyed) destroy(); super.finalize(); } @Override protected synchronized void delete () { if (swigCPtr != 0) { if (swigCMemOwn) { swigCMemOwn = false; CollisionJNI.delete_btOverlappingPairCache(swigCPtr); } swigCPtr = 0; } super.delete(); } public btBroadphasePair getOverlappingPairArrayPtr () { return btBroadphasePair.internalTemp(CollisionJNI.btOverlappingPairCache_getOverlappingPairArrayPtr(swigCPtr, this), false); } public btBroadphasePair getOverlappingPairArrayPtrConst () { return btBroadphasePair.internalTemp(CollisionJNI.btOverlappingPairCache_getOverlappingPairArrayPtrConst(swigCPtr, this), false); } public btBroadphasePairArray getOverlappingPairArray () { return new btBroadphasePairArray(CollisionJNI.btOverlappingPairCache_getOverlappingPairArray(swigCPtr, this), false); } public void cleanOverlappingPair (btBroadphasePair pair, btDispatcher dispatcher) { CollisionJNI.btOverlappingPairCache_cleanOverlappingPair(swigCPtr, this, pair, btDispatcher.getCPtr(dispatcher), dispatcher); } public int getNumOverlappingPairs () { return CollisionJNI.btOverlappingPairCache_getNumOverlappingPairs(swigCPtr, this); } public void cleanProxyFromPairs (btBroadphaseProxy proxy, btDispatcher dispatcher) { CollisionJNI.btOverlappingPairCache_cleanProxyFromPairs(swigCPtr, this, btBroadphaseProxy.getCPtr(proxy), proxy, btDispatcher.getCPtr(dispatcher), dispatcher); } public void setOverlapFilterCallback (btOverlapFilterCallback callback) { CollisionJNI.btOverlappingPairCache_setOverlapFilterCallback(swigCPtr, this, btOverlapFilterCallback.getCPtr(callback), callback); } public void processAllOverlappingPairs (btOverlapCallback arg0, btDispatcher dispatcher) { CollisionJNI.btOverlappingPairCache_processAllOverlappingPairs(swigCPtr, this, btOverlapCallback.getCPtr(arg0), arg0, btDispatcher.getCPtr(dispatcher), dispatcher); } public btBroadphasePair findPair (btBroadphaseProxy proxy0, btBroadphaseProxy proxy1) { return btBroadphasePair.internalTemp(CollisionJNI.btOverlappingPairCache_findPair(swigCPtr, this, btBroadphaseProxy.getCPtr(proxy0), proxy0, btBroadphaseProxy.getCPtr(proxy1), proxy1), false); } public boolean hasDeferredRemoval () { return CollisionJNI.btOverlappingPairCache_hasDeferredRemoval(swigCPtr, this); } public void setInternalGhostPairCallback (btOverlappingPairCallback ghostPairCallback) { CollisionJNI.btOverlappingPairCache_setInternalGhostPairCallback(swigCPtr, this, btOverlappingPairCallback.getCPtr(ghostPairCallback), ghostPairCallback); } public void sortOverlappingPairs (btDispatcher dispatcher) { CollisionJNI.btOverlappingPairCache_sortOverlappingPairs(swigCPtr, this, btDispatcher.getCPtr(dispatcher), dispatcher); } }
-1
libgdx/libgdx
7,309
Use empty Audio implementations on Android and iOS when audio is disabled
Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
obigu
"2023-12-27T22:37:18Z"
"2023-12-28T19:29:00Z"
2b691f735f4b167c062f8f68186a6d7237d3d855
7f682a7921a47f0da858508f6b6fd58426dd05d7
Use empty Audio implementations on Android and iOS when audio is disabled. Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
./extensions/gdx-bullet/jni/src/bullet/BulletDynamics/ConstraintSolver/btConstraintSolver.h
/* Bullet Continuous Collision Detection and Physics Library Copyright (c) 2003-2006 Erwin Coumans http://continuousphysics.com/Bullet/ This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. */ #ifndef BT_CONSTRAINT_SOLVER_H #define BT_CONSTRAINT_SOLVER_H #include "LinearMath/btScalar.h" class btPersistentManifold; class btRigidBody; class btCollisionObject; class btTypedConstraint; struct btContactSolverInfo; struct btBroadphaseProxy; class btIDebugDraw; class btStackAlloc; class btDispatcher; /// btConstraintSolver provides solver interface enum btConstraintSolverType { BT_SEQUENTIAL_IMPULSE_SOLVER=1, BT_MLCP_SOLVER=2, BT_NNCG_SOLVER=4 }; class btConstraintSolver { public: virtual ~btConstraintSolver() {} virtual void prepareSolve (int /* numBodies */, int /* numManifolds */) {;} ///solve a group of constraints virtual btScalar solveGroup(btCollisionObject** bodies,int numBodies,btPersistentManifold** manifold,int numManifolds,btTypedConstraint** constraints,int numConstraints, const btContactSolverInfo& info,class btIDebugDraw* debugDrawer,btDispatcher* dispatcher) = 0; virtual void allSolved (const btContactSolverInfo& /* info */,class btIDebugDraw* /* debugDrawer */) {;} ///clear internal cached data and reset random seed virtual void reset() = 0; virtual btConstraintSolverType getSolverType() const=0; }; #endif //BT_CONSTRAINT_SOLVER_H
/* Bullet Continuous Collision Detection and Physics Library Copyright (c) 2003-2006 Erwin Coumans http://continuousphysics.com/Bullet/ This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. */ #ifndef BT_CONSTRAINT_SOLVER_H #define BT_CONSTRAINT_SOLVER_H #include "LinearMath/btScalar.h" class btPersistentManifold; class btRigidBody; class btCollisionObject; class btTypedConstraint; struct btContactSolverInfo; struct btBroadphaseProxy; class btIDebugDraw; class btStackAlloc; class btDispatcher; /// btConstraintSolver provides solver interface enum btConstraintSolverType { BT_SEQUENTIAL_IMPULSE_SOLVER=1, BT_MLCP_SOLVER=2, BT_NNCG_SOLVER=4 }; class btConstraintSolver { public: virtual ~btConstraintSolver() {} virtual void prepareSolve (int /* numBodies */, int /* numManifolds */) {;} ///solve a group of constraints virtual btScalar solveGroup(btCollisionObject** bodies,int numBodies,btPersistentManifold** manifold,int numManifolds,btTypedConstraint** constraints,int numConstraints, const btContactSolverInfo& info,class btIDebugDraw* debugDrawer,btDispatcher* dispatcher) = 0; virtual void allSolved (const btContactSolverInfo& /* info */,class btIDebugDraw* /* debugDrawer */) {;} ///clear internal cached data and reset random seed virtual void reset() = 0; virtual btConstraintSolverType getSolverType() const=0; }; #endif //BT_CONSTRAINT_SOLVER_H
-1
libgdx/libgdx
7,309
Use empty Audio implementations on Android and iOS when audio is disabled
Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
obigu
"2023-12-27T22:37:18Z"
"2023-12-28T19:29:00Z"
2b691f735f4b167c062f8f68186a6d7237d3d855
7f682a7921a47f0da858508f6b6fd58426dd05d7
Use empty Audio implementations on Android and iOS when audio is disabled. Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
./extensions/gdx-bullet/jni/src/bullet/BulletCollision/CollisionShapes/btCylinderShape.cpp
/* Bullet Continuous Collision Detection and Physics Library Copyright (c) 2003-2009 Erwin Coumans http://bulletphysics.org This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. */ #include "btCylinderShape.h" btCylinderShape::btCylinderShape (const btVector3& halfExtents) :btConvexInternalShape(), m_upAxis(1) { btVector3 margin(getMargin(),getMargin(),getMargin()); m_implicitShapeDimensions = (halfExtents * m_localScaling) - margin; setSafeMargin(halfExtents); m_shapeType = CYLINDER_SHAPE_PROXYTYPE; } btCylinderShapeX::btCylinderShapeX (const btVector3& halfExtents) :btCylinderShape(halfExtents) { m_upAxis = 0; } btCylinderShapeZ::btCylinderShapeZ (const btVector3& halfExtents) :btCylinderShape(halfExtents) { m_upAxis = 2; } void btCylinderShape::getAabb(const btTransform& t,btVector3& aabbMin,btVector3& aabbMax) const { btTransformAabb(getHalfExtentsWithoutMargin(),getMargin(),t,aabbMin,aabbMax); } void btCylinderShape::calculateLocalInertia(btScalar mass,btVector3& inertia) const { //Until Bullet 2.77 a box approximation was used, so uncomment this if you need backwards compatibility //#define USE_BOX_INERTIA_APPROXIMATION 1 #ifndef USE_BOX_INERTIA_APPROXIMATION /* cylinder is defined as following: * * - principle axis aligned along y by default, radius in x, z-value not used * - for btCylinderShapeX: principle axis aligned along x, radius in y direction, z-value not used * - for btCylinderShapeZ: principle axis aligned along z, radius in x direction, y-value not used * */ btScalar radius2; // square of cylinder radius btScalar height2; // square of cylinder height btVector3 halfExtents = getHalfExtentsWithMargin(); // get cylinder dimension btScalar div12 = mass / 12.f; btScalar div4 = mass / 4.f; btScalar div2 = mass / 2.f; int idxRadius, idxHeight; switch (m_upAxis) // get indices of radius and height of cylinder { case 0: // cylinder is aligned along x idxRadius = 1; idxHeight = 0; break; case 2: // cylinder is aligned along z idxRadius = 0; idxHeight = 2; break; default: // cylinder is aligned along y idxRadius = 0; idxHeight = 1; } // calculate squares radius2 = halfExtents[idxRadius] * halfExtents[idxRadius]; height2 = btScalar(4.) * halfExtents[idxHeight] * halfExtents[idxHeight]; // calculate tensor terms btScalar t1 = div12 * height2 + div4 * radius2; btScalar t2 = div2 * radius2; switch (m_upAxis) // set diagonal elements of inertia tensor { case 0: // cylinder is aligned along x inertia.setValue(t2,t1,t1); break; case 2: // cylinder is aligned along z inertia.setValue(t1,t1,t2); break; default: // cylinder is aligned along y inertia.setValue(t1,t2,t1); } #else //USE_BOX_INERTIA_APPROXIMATION //approximation of box shape btVector3 halfExtents = getHalfExtentsWithMargin(); btScalar lx=btScalar(2.)*(halfExtents.x()); btScalar ly=btScalar(2.)*(halfExtents.y()); btScalar lz=btScalar(2.)*(halfExtents.z()); inertia.setValue(mass/(btScalar(12.0)) * (ly*ly + lz*lz), mass/(btScalar(12.0)) * (lx*lx + lz*lz), mass/(btScalar(12.0)) * (lx*lx + ly*ly)); #endif //USE_BOX_INERTIA_APPROXIMATION } SIMD_FORCE_INLINE btVector3 CylinderLocalSupportX(const btVector3& halfExtents,const btVector3& v) { const int cylinderUpAxis = 0; const int XX = 1; const int YY = 0; const int ZZ = 2; //mapping depends on how cylinder local orientation is // extents of the cylinder is: X,Y is for radius, and Z for height btScalar radius = halfExtents[XX]; btScalar halfHeight = halfExtents[cylinderUpAxis]; btVector3 tmp; btScalar d ; btScalar s = btSqrt(v[XX] * v[XX] + v[ZZ] * v[ZZ]); if (s != btScalar(0.0)) { d = radius / s; tmp[XX] = v[XX] * d; tmp[YY] = v[YY] < 0.0 ? -halfHeight : halfHeight; tmp[ZZ] = v[ZZ] * d; return tmp; } else { tmp[XX] = radius; tmp[YY] = v[YY] < 0.0 ? -halfHeight : halfHeight; tmp[ZZ] = btScalar(0.0); return tmp; } } inline btVector3 CylinderLocalSupportY(const btVector3& halfExtents,const btVector3& v) { const int cylinderUpAxis = 1; const int XX = 0; const int YY = 1; const int ZZ = 2; btScalar radius = halfExtents[XX]; btScalar halfHeight = halfExtents[cylinderUpAxis]; btVector3 tmp; btScalar d ; btScalar s = btSqrt(v[XX] * v[XX] + v[ZZ] * v[ZZ]); if (s != btScalar(0.0)) { d = radius / s; tmp[XX] = v[XX] * d; tmp[YY] = v[YY] < 0.0 ? -halfHeight : halfHeight; tmp[ZZ] = v[ZZ] * d; return tmp; } else { tmp[XX] = radius; tmp[YY] = v[YY] < 0.0 ? -halfHeight : halfHeight; tmp[ZZ] = btScalar(0.0); return tmp; } } inline btVector3 CylinderLocalSupportZ(const btVector3& halfExtents,const btVector3& v) { const int cylinderUpAxis = 2; const int XX = 0; const int YY = 2; const int ZZ = 1; //mapping depends on how cylinder local orientation is // extents of the cylinder is: X,Y is for radius, and Z for height btScalar radius = halfExtents[XX]; btScalar halfHeight = halfExtents[cylinderUpAxis]; btVector3 tmp; btScalar d ; btScalar s = btSqrt(v[XX] * v[XX] + v[ZZ] * v[ZZ]); if (s != btScalar(0.0)) { d = radius / s; tmp[XX] = v[XX] * d; tmp[YY] = v[YY] < 0.0 ? -halfHeight : halfHeight; tmp[ZZ] = v[ZZ] * d; return tmp; } else { tmp[XX] = radius; tmp[YY] = v[YY] < 0.0 ? -halfHeight : halfHeight; tmp[ZZ] = btScalar(0.0); return tmp; } } btVector3 btCylinderShapeX::localGetSupportingVertexWithoutMargin(const btVector3& vec)const { return CylinderLocalSupportX(getHalfExtentsWithoutMargin(),vec); } btVector3 btCylinderShapeZ::localGetSupportingVertexWithoutMargin(const btVector3& vec)const { return CylinderLocalSupportZ(getHalfExtentsWithoutMargin(),vec); } btVector3 btCylinderShape::localGetSupportingVertexWithoutMargin(const btVector3& vec)const { return CylinderLocalSupportY(getHalfExtentsWithoutMargin(),vec); } void btCylinderShape::batchedUnitVectorGetSupportingVertexWithoutMargin(const btVector3* vectors,btVector3* supportVerticesOut,int numVectors) const { for (int i=0;i<numVectors;i++) { supportVerticesOut[i] = CylinderLocalSupportY(getHalfExtentsWithoutMargin(),vectors[i]); } } void btCylinderShapeZ::batchedUnitVectorGetSupportingVertexWithoutMargin(const btVector3* vectors,btVector3* supportVerticesOut,int numVectors) const { for (int i=0;i<numVectors;i++) { supportVerticesOut[i] = CylinderLocalSupportZ(getHalfExtentsWithoutMargin(),vectors[i]); } } void btCylinderShapeX::batchedUnitVectorGetSupportingVertexWithoutMargin(const btVector3* vectors,btVector3* supportVerticesOut,int numVectors) const { for (int i=0;i<numVectors;i++) { supportVerticesOut[i] = CylinderLocalSupportX(getHalfExtentsWithoutMargin(),vectors[i]); } }
/* Bullet Continuous Collision Detection and Physics Library Copyright (c) 2003-2009 Erwin Coumans http://bulletphysics.org This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. */ #include "btCylinderShape.h" btCylinderShape::btCylinderShape (const btVector3& halfExtents) :btConvexInternalShape(), m_upAxis(1) { btVector3 margin(getMargin(),getMargin(),getMargin()); m_implicitShapeDimensions = (halfExtents * m_localScaling) - margin; setSafeMargin(halfExtents); m_shapeType = CYLINDER_SHAPE_PROXYTYPE; } btCylinderShapeX::btCylinderShapeX (const btVector3& halfExtents) :btCylinderShape(halfExtents) { m_upAxis = 0; } btCylinderShapeZ::btCylinderShapeZ (const btVector3& halfExtents) :btCylinderShape(halfExtents) { m_upAxis = 2; } void btCylinderShape::getAabb(const btTransform& t,btVector3& aabbMin,btVector3& aabbMax) const { btTransformAabb(getHalfExtentsWithoutMargin(),getMargin(),t,aabbMin,aabbMax); } void btCylinderShape::calculateLocalInertia(btScalar mass,btVector3& inertia) const { //Until Bullet 2.77 a box approximation was used, so uncomment this if you need backwards compatibility //#define USE_BOX_INERTIA_APPROXIMATION 1 #ifndef USE_BOX_INERTIA_APPROXIMATION /* cylinder is defined as following: * * - principle axis aligned along y by default, radius in x, z-value not used * - for btCylinderShapeX: principle axis aligned along x, radius in y direction, z-value not used * - for btCylinderShapeZ: principle axis aligned along z, radius in x direction, y-value not used * */ btScalar radius2; // square of cylinder radius btScalar height2; // square of cylinder height btVector3 halfExtents = getHalfExtentsWithMargin(); // get cylinder dimension btScalar div12 = mass / 12.f; btScalar div4 = mass / 4.f; btScalar div2 = mass / 2.f; int idxRadius, idxHeight; switch (m_upAxis) // get indices of radius and height of cylinder { case 0: // cylinder is aligned along x idxRadius = 1; idxHeight = 0; break; case 2: // cylinder is aligned along z idxRadius = 0; idxHeight = 2; break; default: // cylinder is aligned along y idxRadius = 0; idxHeight = 1; } // calculate squares radius2 = halfExtents[idxRadius] * halfExtents[idxRadius]; height2 = btScalar(4.) * halfExtents[idxHeight] * halfExtents[idxHeight]; // calculate tensor terms btScalar t1 = div12 * height2 + div4 * radius2; btScalar t2 = div2 * radius2; switch (m_upAxis) // set diagonal elements of inertia tensor { case 0: // cylinder is aligned along x inertia.setValue(t2,t1,t1); break; case 2: // cylinder is aligned along z inertia.setValue(t1,t1,t2); break; default: // cylinder is aligned along y inertia.setValue(t1,t2,t1); } #else //USE_BOX_INERTIA_APPROXIMATION //approximation of box shape btVector3 halfExtents = getHalfExtentsWithMargin(); btScalar lx=btScalar(2.)*(halfExtents.x()); btScalar ly=btScalar(2.)*(halfExtents.y()); btScalar lz=btScalar(2.)*(halfExtents.z()); inertia.setValue(mass/(btScalar(12.0)) * (ly*ly + lz*lz), mass/(btScalar(12.0)) * (lx*lx + lz*lz), mass/(btScalar(12.0)) * (lx*lx + ly*ly)); #endif //USE_BOX_INERTIA_APPROXIMATION } SIMD_FORCE_INLINE btVector3 CylinderLocalSupportX(const btVector3& halfExtents,const btVector3& v) { const int cylinderUpAxis = 0; const int XX = 1; const int YY = 0; const int ZZ = 2; //mapping depends on how cylinder local orientation is // extents of the cylinder is: X,Y is for radius, and Z for height btScalar radius = halfExtents[XX]; btScalar halfHeight = halfExtents[cylinderUpAxis]; btVector3 tmp; btScalar d ; btScalar s = btSqrt(v[XX] * v[XX] + v[ZZ] * v[ZZ]); if (s != btScalar(0.0)) { d = radius / s; tmp[XX] = v[XX] * d; tmp[YY] = v[YY] < 0.0 ? -halfHeight : halfHeight; tmp[ZZ] = v[ZZ] * d; return tmp; } else { tmp[XX] = radius; tmp[YY] = v[YY] < 0.0 ? -halfHeight : halfHeight; tmp[ZZ] = btScalar(0.0); return tmp; } } inline btVector3 CylinderLocalSupportY(const btVector3& halfExtents,const btVector3& v) { const int cylinderUpAxis = 1; const int XX = 0; const int YY = 1; const int ZZ = 2; btScalar radius = halfExtents[XX]; btScalar halfHeight = halfExtents[cylinderUpAxis]; btVector3 tmp; btScalar d ; btScalar s = btSqrt(v[XX] * v[XX] + v[ZZ] * v[ZZ]); if (s != btScalar(0.0)) { d = radius / s; tmp[XX] = v[XX] * d; tmp[YY] = v[YY] < 0.0 ? -halfHeight : halfHeight; tmp[ZZ] = v[ZZ] * d; return tmp; } else { tmp[XX] = radius; tmp[YY] = v[YY] < 0.0 ? -halfHeight : halfHeight; tmp[ZZ] = btScalar(0.0); return tmp; } } inline btVector3 CylinderLocalSupportZ(const btVector3& halfExtents,const btVector3& v) { const int cylinderUpAxis = 2; const int XX = 0; const int YY = 2; const int ZZ = 1; //mapping depends on how cylinder local orientation is // extents of the cylinder is: X,Y is for radius, and Z for height btScalar radius = halfExtents[XX]; btScalar halfHeight = halfExtents[cylinderUpAxis]; btVector3 tmp; btScalar d ; btScalar s = btSqrt(v[XX] * v[XX] + v[ZZ] * v[ZZ]); if (s != btScalar(0.0)) { d = radius / s; tmp[XX] = v[XX] * d; tmp[YY] = v[YY] < 0.0 ? -halfHeight : halfHeight; tmp[ZZ] = v[ZZ] * d; return tmp; } else { tmp[XX] = radius; tmp[YY] = v[YY] < 0.0 ? -halfHeight : halfHeight; tmp[ZZ] = btScalar(0.0); return tmp; } } btVector3 btCylinderShapeX::localGetSupportingVertexWithoutMargin(const btVector3& vec)const { return CylinderLocalSupportX(getHalfExtentsWithoutMargin(),vec); } btVector3 btCylinderShapeZ::localGetSupportingVertexWithoutMargin(const btVector3& vec)const { return CylinderLocalSupportZ(getHalfExtentsWithoutMargin(),vec); } btVector3 btCylinderShape::localGetSupportingVertexWithoutMargin(const btVector3& vec)const { return CylinderLocalSupportY(getHalfExtentsWithoutMargin(),vec); } void btCylinderShape::batchedUnitVectorGetSupportingVertexWithoutMargin(const btVector3* vectors,btVector3* supportVerticesOut,int numVectors) const { for (int i=0;i<numVectors;i++) { supportVerticesOut[i] = CylinderLocalSupportY(getHalfExtentsWithoutMargin(),vectors[i]); } } void btCylinderShapeZ::batchedUnitVectorGetSupportingVertexWithoutMargin(const btVector3* vectors,btVector3* supportVerticesOut,int numVectors) const { for (int i=0;i<numVectors;i++) { supportVerticesOut[i] = CylinderLocalSupportZ(getHalfExtentsWithoutMargin(),vectors[i]); } } void btCylinderShapeX::batchedUnitVectorGetSupportingVertexWithoutMargin(const btVector3* vectors,btVector3* supportVerticesOut,int numVectors) const { for (int i=0;i<numVectors;i++) { supportVerticesOut[i] = CylinderLocalSupportX(getHalfExtentsWithoutMargin(),vectors[i]); } }
-1
libgdx/libgdx
7,309
Use empty Audio implementations on Android and iOS when audio is disabled
Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
obigu
"2023-12-27T22:37:18Z"
"2023-12-28T19:29:00Z"
2b691f735f4b167c062f8f68186a6d7237d3d855
7f682a7921a47f0da858508f6b6fd58426dd05d7
Use empty Audio implementations on Android and iOS when audio is disabled. Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
./extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/com/badlogic/gdx/physics/box2d/WorldManifold.java
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.physics.box2d; import com.badlogic.gdx.math.Vector2; /** This is used to compute the current state of a contact manifold. */ public class WorldManifold { protected final Vector2 normal = new Vector2(); protected final Vector2[] points = {new Vector2(), new Vector2()}; protected final float[] separations = new float[2]; protected int numContactPoints; protected WorldManifold () { } protected WorldManifold (org.jbox2d.collision.WorldManifold manifold) { normal.set(manifold.normal.x, manifold.normal.y); for (int i = 0; i < manifold.points.length; i++) { points[i].set(manifold.points[i].x, manifold.points[i].y); } numContactPoints = manifold.points.length; separations[0] = manifold.separations[0]; separations[1] = manifold.separations[1]; } /** Returns the normal of this manifold */ public Vector2 getNormal () { return normal; } /** Returns the contact points of this manifold. Use getNumberOfContactPoints to determine how many contact points there are * (0,1 or 2) */ public Vector2[] getPoints () { return points; } /** Returns the separations of this manifold, a negative value indicates overlap, in meters. Use getNumberOfContactPoints to * determine how many separations there are (0,1 or 2) */ public float[] getSeparations () { return separations; } /** @return the number of contact points */ public int getNumberOfContactPoints () { return numContactPoints; } }
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.physics.box2d; import com.badlogic.gdx.math.Vector2; /** This is used to compute the current state of a contact manifold. */ public class WorldManifold { protected final Vector2 normal = new Vector2(); protected final Vector2[] points = {new Vector2(), new Vector2()}; protected final float[] separations = new float[2]; protected int numContactPoints; protected WorldManifold () { } protected WorldManifold (org.jbox2d.collision.WorldManifold manifold) { normal.set(manifold.normal.x, manifold.normal.y); for (int i = 0; i < manifold.points.length; i++) { points[i].set(manifold.points[i].x, manifold.points[i].y); } numContactPoints = manifold.points.length; separations[0] = manifold.separations[0]; separations[1] = manifold.separations[1]; } /** Returns the normal of this manifold */ public Vector2 getNormal () { return normal; } /** Returns the contact points of this manifold. Use getNumberOfContactPoints to determine how many contact points there are * (0,1 or 2) */ public Vector2[] getPoints () { return points; } /** Returns the separations of this manifold, a negative value indicates overlap, in meters. Use getNumberOfContactPoints to * determine how many separations there are (0,1 or 2) */ public float[] getSeparations () { return separations; } /** @return the number of contact points */ public int getNumberOfContactPoints () { return numContactPoints; } }
-1
libgdx/libgdx
7,309
Use empty Audio implementations on Android and iOS when audio is disabled
Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
obigu
"2023-12-27T22:37:18Z"
"2023-12-28T19:29:00Z"
2b691f735f4b167c062f8f68186a6d7237d3d855
7f682a7921a47f0da858508f6b6fd58426dd05d7
Use empty Audio implementations on Android and iOS when audio is disabled. Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
./extensions/gdx-bullet/jni/src/bullet/BulletSoftBody/btSoftRigidDynamicsWorld.cpp
/* Bullet Continuous Collision Detection and Physics Library Copyright (c) 2003-2006 Erwin Coumans http://continuousphysics.com/Bullet/ This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. */ #include "btSoftRigidDynamicsWorld.h" #include "LinearMath/btQuickprof.h" //softbody & helpers #include "btSoftBody.h" #include "btSoftBodyHelpers.h" #include "btSoftBodySolvers.h" #include "btDefaultSoftBodySolver.h" #include "LinearMath/btSerializer.h" btSoftRigidDynamicsWorld::btSoftRigidDynamicsWorld( btDispatcher* dispatcher, btBroadphaseInterface* pairCache, btConstraintSolver* constraintSolver, btCollisionConfiguration* collisionConfiguration, btSoftBodySolver *softBodySolver ) : btDiscreteDynamicsWorld(dispatcher,pairCache,constraintSolver,collisionConfiguration), m_softBodySolver( softBodySolver ), m_ownsSolver(false) { if( !m_softBodySolver ) { void* ptr = btAlignedAlloc(sizeof(btDefaultSoftBodySolver),16); m_softBodySolver = new(ptr) btDefaultSoftBodySolver(); m_ownsSolver = true; } m_drawFlags = fDrawFlags::Std; m_drawNodeTree = true; m_drawFaceTree = false; m_drawClusterTree = false; m_sbi.m_broadphase = pairCache; m_sbi.m_dispatcher = dispatcher; m_sbi.m_sparsesdf.Initialize(); m_sbi.m_sparsesdf.Reset(); m_sbi.air_density = (btScalar)1.2; m_sbi.water_density = 0; m_sbi.water_offset = 0; m_sbi.water_normal = btVector3(0,0,0); m_sbi.m_gravity.setValue(0,-10,0); m_sbi.m_sparsesdf.Initialize(); } btSoftRigidDynamicsWorld::~btSoftRigidDynamicsWorld() { if (m_ownsSolver) { m_softBodySolver->~btSoftBodySolver(); btAlignedFree(m_softBodySolver); } } void btSoftRigidDynamicsWorld::predictUnconstraintMotion(btScalar timeStep) { btDiscreteDynamicsWorld::predictUnconstraintMotion( timeStep ); { BT_PROFILE("predictUnconstraintMotionSoftBody"); m_softBodySolver->predictMotion( float(timeStep) ); } } void btSoftRigidDynamicsWorld::internalSingleStepSimulation( btScalar timeStep ) { // Let the solver grab the soft bodies and if necessary optimize for it m_softBodySolver->optimize( getSoftBodyArray() ); if( !m_softBodySolver->checkInitialized() ) { btAssert( "Solver initialization failed\n" ); } btDiscreteDynamicsWorld::internalSingleStepSimulation( timeStep ); ///solve soft bodies constraints solveSoftBodiesConstraints( timeStep ); //self collisions for ( int i=0;i<m_softBodies.size();i++) { btSoftBody* psb=(btSoftBody*)m_softBodies[i]; psb->defaultCollisionHandler(psb); } ///update soft bodies m_softBodySolver->updateSoftBodies( ); // End solver-wise simulation step // /////////////////////////////// } void btSoftRigidDynamicsWorld::solveSoftBodiesConstraints( btScalar timeStep ) { BT_PROFILE("solveSoftConstraints"); if(m_softBodies.size()) { btSoftBody::solveClusters(m_softBodies); } // Solve constraints solver-wise m_softBodySolver->solveConstraints( timeStep * m_softBodySolver->getTimeScale() ); } void btSoftRigidDynamicsWorld::addSoftBody(btSoftBody* body, int collisionFilterGroup, int collisionFilterMask) { m_softBodies.push_back(body); // Set the soft body solver that will deal with this body // to be the world's solver body->setSoftBodySolver( m_softBodySolver ); btCollisionWorld::addCollisionObject(body, collisionFilterGroup, collisionFilterMask); } void btSoftRigidDynamicsWorld::removeSoftBody(btSoftBody* body) { m_softBodies.remove(body); btCollisionWorld::removeCollisionObject(body); } void btSoftRigidDynamicsWorld::removeCollisionObject(btCollisionObject* collisionObject) { btSoftBody* body = btSoftBody::upcast(collisionObject); if (body) removeSoftBody(body); else btDiscreteDynamicsWorld::removeCollisionObject(collisionObject); } void btSoftRigidDynamicsWorld::debugDrawWorld() { btDiscreteDynamicsWorld::debugDrawWorld(); if (getDebugDrawer()) { int i; for ( i=0;i<this->m_softBodies.size();i++) { btSoftBody* psb=(btSoftBody*)this->m_softBodies[i]; if (getDebugDrawer() && (getDebugDrawer()->getDebugMode() & (btIDebugDraw::DBG_DrawWireframe))) { btSoftBodyHelpers::DrawFrame(psb,m_debugDrawer); btSoftBodyHelpers::Draw(psb,m_debugDrawer,m_drawFlags); } if (m_debugDrawer && (m_debugDrawer->getDebugMode() & btIDebugDraw::DBG_DrawAabb)) { if(m_drawNodeTree) btSoftBodyHelpers::DrawNodeTree(psb,m_debugDrawer); if(m_drawFaceTree) btSoftBodyHelpers::DrawFaceTree(psb,m_debugDrawer); if(m_drawClusterTree) btSoftBodyHelpers::DrawClusterTree(psb,m_debugDrawer); } } } } struct btSoftSingleRayCallback : public btBroadphaseRayCallback { btVector3 m_rayFromWorld; btVector3 m_rayToWorld; btTransform m_rayFromTrans; btTransform m_rayToTrans; btVector3 m_hitNormal; const btSoftRigidDynamicsWorld* m_world; btCollisionWorld::RayResultCallback& m_resultCallback; btSoftSingleRayCallback(const btVector3& rayFromWorld,const btVector3& rayToWorld,const btSoftRigidDynamicsWorld* world,btCollisionWorld::RayResultCallback& resultCallback) :m_rayFromWorld(rayFromWorld), m_rayToWorld(rayToWorld), m_world(world), m_resultCallback(resultCallback) { m_rayFromTrans.setIdentity(); m_rayFromTrans.setOrigin(m_rayFromWorld); m_rayToTrans.setIdentity(); m_rayToTrans.setOrigin(m_rayToWorld); btVector3 rayDir = (rayToWorld-rayFromWorld); rayDir.normalize (); ///what about division by zero? --> just set rayDirection[i] to INF/1e30 m_rayDirectionInverse[0] = rayDir[0] == btScalar(0.0) ? btScalar(1e30) : btScalar(1.0) / rayDir[0]; m_rayDirectionInverse[1] = rayDir[1] == btScalar(0.0) ? btScalar(1e30) : btScalar(1.0) / rayDir[1]; m_rayDirectionInverse[2] = rayDir[2] == btScalar(0.0) ? btScalar(1e30) : btScalar(1.0) / rayDir[2]; m_signs[0] = m_rayDirectionInverse[0] < 0.0; m_signs[1] = m_rayDirectionInverse[1] < 0.0; m_signs[2] = m_rayDirectionInverse[2] < 0.0; m_lambda_max = rayDir.dot(m_rayToWorld-m_rayFromWorld); } virtual bool process(const btBroadphaseProxy* proxy) { ///terminate further ray tests, once the closestHitFraction reached zero if (m_resultCallback.m_closestHitFraction == btScalar(0.f)) return false; btCollisionObject* collisionObject = (btCollisionObject*)proxy->m_clientObject; //only perform raycast if filterMask matches if(m_resultCallback.needsCollision(collisionObject->getBroadphaseHandle())) { //RigidcollisionObject* collisionObject = ctrl->GetRigidcollisionObject(); //btVector3 collisionObjectAabbMin,collisionObjectAabbMax; #if 0 #ifdef RECALCULATE_AABB btVector3 collisionObjectAabbMin,collisionObjectAabbMax; collisionObject->getCollisionShape()->getAabb(collisionObject->getWorldTransform(),collisionObjectAabbMin,collisionObjectAabbMax); #else //getBroadphase()->getAabb(collisionObject->getBroadphaseHandle(),collisionObjectAabbMin,collisionObjectAabbMax); const btVector3& collisionObjectAabbMin = collisionObject->getBroadphaseHandle()->m_aabbMin; const btVector3& collisionObjectAabbMax = collisionObject->getBroadphaseHandle()->m_aabbMax; #endif #endif //btScalar hitLambda = m_resultCallback.m_closestHitFraction; //culling already done by broadphase //if (btRayAabb(m_rayFromWorld,m_rayToWorld,collisionObjectAabbMin,collisionObjectAabbMax,hitLambda,m_hitNormal)) { m_world->rayTestSingle(m_rayFromTrans,m_rayToTrans, collisionObject, collisionObject->getCollisionShape(), collisionObject->getWorldTransform(), m_resultCallback); } } return true; } }; void btSoftRigidDynamicsWorld::rayTest(const btVector3& rayFromWorld, const btVector3& rayToWorld, RayResultCallback& resultCallback) const { BT_PROFILE("rayTest"); /// use the broadphase to accelerate the search for objects, based on their aabb /// and for each object with ray-aabb overlap, perform an exact ray test btSoftSingleRayCallback rayCB(rayFromWorld,rayToWorld,this,resultCallback); #ifndef USE_BRUTEFORCE_RAYBROADPHASE m_broadphasePairCache->rayTest(rayFromWorld,rayToWorld,rayCB); #else for (int i=0;i<this->getNumCollisionObjects();i++) { rayCB.process(m_collisionObjects[i]->getBroadphaseHandle()); } #endif //USE_BRUTEFORCE_RAYBROADPHASE } void btSoftRigidDynamicsWorld::rayTestSingle(const btTransform& rayFromTrans,const btTransform& rayToTrans, btCollisionObject* collisionObject, const btCollisionShape* collisionShape, const btTransform& colObjWorldTransform, RayResultCallback& resultCallback) { if (collisionShape->isSoftBody()) { btSoftBody* softBody = btSoftBody::upcast(collisionObject); if (softBody) { btSoftBody::sRayCast softResult; if (softBody->rayTest(rayFromTrans.getOrigin(), rayToTrans.getOrigin(), softResult)) { if (softResult.fraction<= resultCallback.m_closestHitFraction) { btCollisionWorld::LocalShapeInfo shapeInfo; shapeInfo.m_shapePart = 0; shapeInfo.m_triangleIndex = softResult.index; // get the normal btVector3 rayDir = rayToTrans.getOrigin() - rayFromTrans.getOrigin(); btVector3 normal=-rayDir; normal.normalize(); if (softResult.feature == btSoftBody::eFeature::Face) { normal = softBody->m_faces[softResult.index].m_normal; if (normal.dot(rayDir) > 0) { // normal always point toward origin of the ray normal = -normal; } } btCollisionWorld::LocalRayResult rayResult (collisionObject, &shapeInfo, normal, softResult.fraction); bool normalInWorldSpace = true; resultCallback.addSingleResult(rayResult,normalInWorldSpace); } } } } else { btCollisionWorld::rayTestSingle(rayFromTrans,rayToTrans,collisionObject,collisionShape,colObjWorldTransform,resultCallback); } } void btSoftRigidDynamicsWorld::serializeSoftBodies(btSerializer* serializer) { int i; //serialize all collision objects for (i=0;i<m_collisionObjects.size();i++) { btCollisionObject* colObj = m_collisionObjects[i]; if (colObj->getInternalType() & btCollisionObject::CO_SOFT_BODY) { int len = colObj->calculateSerializeBufferSize(); btChunk* chunk = serializer->allocate(len,1); const char* structType = colObj->serialize(chunk->m_oldPtr, serializer); serializer->finalizeChunk(chunk,structType,BT_SOFTBODY_CODE,colObj); } } } void btSoftRigidDynamicsWorld::serialize(btSerializer* serializer) { serializer->startSerialization(); serializeDynamicsWorldInfo( serializer); serializeSoftBodies(serializer); serializeRigidBodies(serializer); serializeCollisionObjects(serializer); serializer->finishSerialization(); }
/* Bullet Continuous Collision Detection and Physics Library Copyright (c) 2003-2006 Erwin Coumans http://continuousphysics.com/Bullet/ This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. */ #include "btSoftRigidDynamicsWorld.h" #include "LinearMath/btQuickprof.h" //softbody & helpers #include "btSoftBody.h" #include "btSoftBodyHelpers.h" #include "btSoftBodySolvers.h" #include "btDefaultSoftBodySolver.h" #include "LinearMath/btSerializer.h" btSoftRigidDynamicsWorld::btSoftRigidDynamicsWorld( btDispatcher* dispatcher, btBroadphaseInterface* pairCache, btConstraintSolver* constraintSolver, btCollisionConfiguration* collisionConfiguration, btSoftBodySolver *softBodySolver ) : btDiscreteDynamicsWorld(dispatcher,pairCache,constraintSolver,collisionConfiguration), m_softBodySolver( softBodySolver ), m_ownsSolver(false) { if( !m_softBodySolver ) { void* ptr = btAlignedAlloc(sizeof(btDefaultSoftBodySolver),16); m_softBodySolver = new(ptr) btDefaultSoftBodySolver(); m_ownsSolver = true; } m_drawFlags = fDrawFlags::Std; m_drawNodeTree = true; m_drawFaceTree = false; m_drawClusterTree = false; m_sbi.m_broadphase = pairCache; m_sbi.m_dispatcher = dispatcher; m_sbi.m_sparsesdf.Initialize(); m_sbi.m_sparsesdf.Reset(); m_sbi.air_density = (btScalar)1.2; m_sbi.water_density = 0; m_sbi.water_offset = 0; m_sbi.water_normal = btVector3(0,0,0); m_sbi.m_gravity.setValue(0,-10,0); m_sbi.m_sparsesdf.Initialize(); } btSoftRigidDynamicsWorld::~btSoftRigidDynamicsWorld() { if (m_ownsSolver) { m_softBodySolver->~btSoftBodySolver(); btAlignedFree(m_softBodySolver); } } void btSoftRigidDynamicsWorld::predictUnconstraintMotion(btScalar timeStep) { btDiscreteDynamicsWorld::predictUnconstraintMotion( timeStep ); { BT_PROFILE("predictUnconstraintMotionSoftBody"); m_softBodySolver->predictMotion( float(timeStep) ); } } void btSoftRigidDynamicsWorld::internalSingleStepSimulation( btScalar timeStep ) { // Let the solver grab the soft bodies and if necessary optimize for it m_softBodySolver->optimize( getSoftBodyArray() ); if( !m_softBodySolver->checkInitialized() ) { btAssert( "Solver initialization failed\n" ); } btDiscreteDynamicsWorld::internalSingleStepSimulation( timeStep ); ///solve soft bodies constraints solveSoftBodiesConstraints( timeStep ); //self collisions for ( int i=0;i<m_softBodies.size();i++) { btSoftBody* psb=(btSoftBody*)m_softBodies[i]; psb->defaultCollisionHandler(psb); } ///update soft bodies m_softBodySolver->updateSoftBodies( ); // End solver-wise simulation step // /////////////////////////////// } void btSoftRigidDynamicsWorld::solveSoftBodiesConstraints( btScalar timeStep ) { BT_PROFILE("solveSoftConstraints"); if(m_softBodies.size()) { btSoftBody::solveClusters(m_softBodies); } // Solve constraints solver-wise m_softBodySolver->solveConstraints( timeStep * m_softBodySolver->getTimeScale() ); } void btSoftRigidDynamicsWorld::addSoftBody(btSoftBody* body, int collisionFilterGroup, int collisionFilterMask) { m_softBodies.push_back(body); // Set the soft body solver that will deal with this body // to be the world's solver body->setSoftBodySolver( m_softBodySolver ); btCollisionWorld::addCollisionObject(body, collisionFilterGroup, collisionFilterMask); } void btSoftRigidDynamicsWorld::removeSoftBody(btSoftBody* body) { m_softBodies.remove(body); btCollisionWorld::removeCollisionObject(body); } void btSoftRigidDynamicsWorld::removeCollisionObject(btCollisionObject* collisionObject) { btSoftBody* body = btSoftBody::upcast(collisionObject); if (body) removeSoftBody(body); else btDiscreteDynamicsWorld::removeCollisionObject(collisionObject); } void btSoftRigidDynamicsWorld::debugDrawWorld() { btDiscreteDynamicsWorld::debugDrawWorld(); if (getDebugDrawer()) { int i; for ( i=0;i<this->m_softBodies.size();i++) { btSoftBody* psb=(btSoftBody*)this->m_softBodies[i]; if (getDebugDrawer() && (getDebugDrawer()->getDebugMode() & (btIDebugDraw::DBG_DrawWireframe))) { btSoftBodyHelpers::DrawFrame(psb,m_debugDrawer); btSoftBodyHelpers::Draw(psb,m_debugDrawer,m_drawFlags); } if (m_debugDrawer && (m_debugDrawer->getDebugMode() & btIDebugDraw::DBG_DrawAabb)) { if(m_drawNodeTree) btSoftBodyHelpers::DrawNodeTree(psb,m_debugDrawer); if(m_drawFaceTree) btSoftBodyHelpers::DrawFaceTree(psb,m_debugDrawer); if(m_drawClusterTree) btSoftBodyHelpers::DrawClusterTree(psb,m_debugDrawer); } } } } struct btSoftSingleRayCallback : public btBroadphaseRayCallback { btVector3 m_rayFromWorld; btVector3 m_rayToWorld; btTransform m_rayFromTrans; btTransform m_rayToTrans; btVector3 m_hitNormal; const btSoftRigidDynamicsWorld* m_world; btCollisionWorld::RayResultCallback& m_resultCallback; btSoftSingleRayCallback(const btVector3& rayFromWorld,const btVector3& rayToWorld,const btSoftRigidDynamicsWorld* world,btCollisionWorld::RayResultCallback& resultCallback) :m_rayFromWorld(rayFromWorld), m_rayToWorld(rayToWorld), m_world(world), m_resultCallback(resultCallback) { m_rayFromTrans.setIdentity(); m_rayFromTrans.setOrigin(m_rayFromWorld); m_rayToTrans.setIdentity(); m_rayToTrans.setOrigin(m_rayToWorld); btVector3 rayDir = (rayToWorld-rayFromWorld); rayDir.normalize (); ///what about division by zero? --> just set rayDirection[i] to INF/1e30 m_rayDirectionInverse[0] = rayDir[0] == btScalar(0.0) ? btScalar(1e30) : btScalar(1.0) / rayDir[0]; m_rayDirectionInverse[1] = rayDir[1] == btScalar(0.0) ? btScalar(1e30) : btScalar(1.0) / rayDir[1]; m_rayDirectionInverse[2] = rayDir[2] == btScalar(0.0) ? btScalar(1e30) : btScalar(1.0) / rayDir[2]; m_signs[0] = m_rayDirectionInverse[0] < 0.0; m_signs[1] = m_rayDirectionInverse[1] < 0.0; m_signs[2] = m_rayDirectionInverse[2] < 0.0; m_lambda_max = rayDir.dot(m_rayToWorld-m_rayFromWorld); } virtual bool process(const btBroadphaseProxy* proxy) { ///terminate further ray tests, once the closestHitFraction reached zero if (m_resultCallback.m_closestHitFraction == btScalar(0.f)) return false; btCollisionObject* collisionObject = (btCollisionObject*)proxy->m_clientObject; //only perform raycast if filterMask matches if(m_resultCallback.needsCollision(collisionObject->getBroadphaseHandle())) { //RigidcollisionObject* collisionObject = ctrl->GetRigidcollisionObject(); //btVector3 collisionObjectAabbMin,collisionObjectAabbMax; #if 0 #ifdef RECALCULATE_AABB btVector3 collisionObjectAabbMin,collisionObjectAabbMax; collisionObject->getCollisionShape()->getAabb(collisionObject->getWorldTransform(),collisionObjectAabbMin,collisionObjectAabbMax); #else //getBroadphase()->getAabb(collisionObject->getBroadphaseHandle(),collisionObjectAabbMin,collisionObjectAabbMax); const btVector3& collisionObjectAabbMin = collisionObject->getBroadphaseHandle()->m_aabbMin; const btVector3& collisionObjectAabbMax = collisionObject->getBroadphaseHandle()->m_aabbMax; #endif #endif //btScalar hitLambda = m_resultCallback.m_closestHitFraction; //culling already done by broadphase //if (btRayAabb(m_rayFromWorld,m_rayToWorld,collisionObjectAabbMin,collisionObjectAabbMax,hitLambda,m_hitNormal)) { m_world->rayTestSingle(m_rayFromTrans,m_rayToTrans, collisionObject, collisionObject->getCollisionShape(), collisionObject->getWorldTransform(), m_resultCallback); } } return true; } }; void btSoftRigidDynamicsWorld::rayTest(const btVector3& rayFromWorld, const btVector3& rayToWorld, RayResultCallback& resultCallback) const { BT_PROFILE("rayTest"); /// use the broadphase to accelerate the search for objects, based on their aabb /// and for each object with ray-aabb overlap, perform an exact ray test btSoftSingleRayCallback rayCB(rayFromWorld,rayToWorld,this,resultCallback); #ifndef USE_BRUTEFORCE_RAYBROADPHASE m_broadphasePairCache->rayTest(rayFromWorld,rayToWorld,rayCB); #else for (int i=0;i<this->getNumCollisionObjects();i++) { rayCB.process(m_collisionObjects[i]->getBroadphaseHandle()); } #endif //USE_BRUTEFORCE_RAYBROADPHASE } void btSoftRigidDynamicsWorld::rayTestSingle(const btTransform& rayFromTrans,const btTransform& rayToTrans, btCollisionObject* collisionObject, const btCollisionShape* collisionShape, const btTransform& colObjWorldTransform, RayResultCallback& resultCallback) { if (collisionShape->isSoftBody()) { btSoftBody* softBody = btSoftBody::upcast(collisionObject); if (softBody) { btSoftBody::sRayCast softResult; if (softBody->rayTest(rayFromTrans.getOrigin(), rayToTrans.getOrigin(), softResult)) { if (softResult.fraction<= resultCallback.m_closestHitFraction) { btCollisionWorld::LocalShapeInfo shapeInfo; shapeInfo.m_shapePart = 0; shapeInfo.m_triangleIndex = softResult.index; // get the normal btVector3 rayDir = rayToTrans.getOrigin() - rayFromTrans.getOrigin(); btVector3 normal=-rayDir; normal.normalize(); if (softResult.feature == btSoftBody::eFeature::Face) { normal = softBody->m_faces[softResult.index].m_normal; if (normal.dot(rayDir) > 0) { // normal always point toward origin of the ray normal = -normal; } } btCollisionWorld::LocalRayResult rayResult (collisionObject, &shapeInfo, normal, softResult.fraction); bool normalInWorldSpace = true; resultCallback.addSingleResult(rayResult,normalInWorldSpace); } } } } else { btCollisionWorld::rayTestSingle(rayFromTrans,rayToTrans,collisionObject,collisionShape,colObjWorldTransform,resultCallback); } } void btSoftRigidDynamicsWorld::serializeSoftBodies(btSerializer* serializer) { int i; //serialize all collision objects for (i=0;i<m_collisionObjects.size();i++) { btCollisionObject* colObj = m_collisionObjects[i]; if (colObj->getInternalType() & btCollisionObject::CO_SOFT_BODY) { int len = colObj->calculateSerializeBufferSize(); btChunk* chunk = serializer->allocate(len,1); const char* structType = colObj->serialize(chunk->m_oldPtr, serializer); serializer->finalizeChunk(chunk,structType,BT_SOFTBODY_CODE,colObj); } } } void btSoftRigidDynamicsWorld::serialize(btSerializer* serializer) { serializer->startSerialization(); serializeDynamicsWorldInfo( serializer); serializeSoftBodies(serializer); serializeRigidBodies(serializer); serializeCollisionObjects(serializer); serializer->finishSerialization(); }
-1
libgdx/libgdx
7,309
Use empty Audio implementations on Android and iOS when audio is disabled
Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
obigu
"2023-12-27T22:37:18Z"
"2023-12-28T19:29:00Z"
2b691f735f4b167c062f8f68186a6d7237d3d855
7f682a7921a47f0da858508f6b6fd58426dd05d7
Use empty Audio implementations on Android and iOS when audio is disabled. Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
./tests/gdx-tests/src/com/badlogic/gdx/tests/box2d/Prismatic.java
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ /* * Copyright 2010 Mario Zechner (contact@badlogicgames.com), Nathan Sweet (admin@esotericsoftware.com) * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the * License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package com.badlogic.gdx.tests.box2d; import com.badlogic.gdx.Input.Keys; import com.badlogic.gdx.math.Vector2; import com.badlogic.gdx.physics.box2d.Body; import com.badlogic.gdx.physics.box2d.BodyDef; import com.badlogic.gdx.physics.box2d.BodyDef.BodyType; import com.badlogic.gdx.physics.box2d.EdgeShape; import com.badlogic.gdx.physics.box2d.PolygonShape; import com.badlogic.gdx.physics.box2d.World; import com.badlogic.gdx.physics.box2d.joints.PrismaticJoint; import com.badlogic.gdx.physics.box2d.joints.PrismaticJointDef; public class Prismatic extends Box2DTest { PrismaticJoint m_joint; @Override protected void createWorld (World world) { Body ground; { BodyDef bd = new BodyDef(); ground = world.createBody(bd); EdgeShape shape = new EdgeShape(); shape.set(new Vector2(-40, 0), new Vector2(40, 0)); ground.createFixture(shape, 0); shape.dispose(); } { PolygonShape shape = new PolygonShape(); shape.setAsBox(2, 5); BodyDef bd = new BodyDef(); bd.type = BodyType.DynamicBody; bd.position.set(-10, 10); bd.angle = 0.5f * (float)Math.PI; bd.allowSleep = false; Body body = world.createBody(bd); body.createFixture(shape, 5.0f); PrismaticJointDef pjd = new PrismaticJointDef(); Vector2 axis = new Vector2(2, 1); axis.nor(); pjd.initialize(ground, body, new Vector2(0, 0), axis); pjd.motorSpeed = 10.0f; pjd.maxMotorForce = 10000.0f; pjd.enableMotor = true; pjd.lowerTranslation = 0; pjd.upperTranslation = 20.0f; pjd.enableLimit = true; m_joint = (PrismaticJoint)world.createJoint(pjd); } } public boolean keyDown (int keyCode) { if (keyCode == Keys.L) m_joint.enableLimit(!m_joint.isLimitEnabled()); if (keyCode == Keys.M) m_joint.enableMotor(!m_joint.isMotorEnabled()); if (keyCode == Keys.S) m_joint.setMotorSpeed(-m_joint.getMotorSpeed()); return false; } public void render () { super.render(); // if (renderer.batch != null) { // renderer.batch.begin(); // // renderer.batch.drawText(renderer.font, "Keys: (l) limits, (m) motors, (s) speed", 0, // Gdx.app.getGraphics().getHeight(), // // Color.WHITE); // // renderer.batch.drawText(renderer.font, "Motor Force = " + m_joint.getMotorForce(), 0, // // Gdx.app.getGraphics().getHeight() - 15, Color.WHITE); // renderer.batch.end(); // } } }
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ /* * Copyright 2010 Mario Zechner (contact@badlogicgames.com), Nathan Sweet (admin@esotericsoftware.com) * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the * License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package com.badlogic.gdx.tests.box2d; import com.badlogic.gdx.Input.Keys; import com.badlogic.gdx.math.Vector2; import com.badlogic.gdx.physics.box2d.Body; import com.badlogic.gdx.physics.box2d.BodyDef; import com.badlogic.gdx.physics.box2d.BodyDef.BodyType; import com.badlogic.gdx.physics.box2d.EdgeShape; import com.badlogic.gdx.physics.box2d.PolygonShape; import com.badlogic.gdx.physics.box2d.World; import com.badlogic.gdx.physics.box2d.joints.PrismaticJoint; import com.badlogic.gdx.physics.box2d.joints.PrismaticJointDef; public class Prismatic extends Box2DTest { PrismaticJoint m_joint; @Override protected void createWorld (World world) { Body ground; { BodyDef bd = new BodyDef(); ground = world.createBody(bd); EdgeShape shape = new EdgeShape(); shape.set(new Vector2(-40, 0), new Vector2(40, 0)); ground.createFixture(shape, 0); shape.dispose(); } { PolygonShape shape = new PolygonShape(); shape.setAsBox(2, 5); BodyDef bd = new BodyDef(); bd.type = BodyType.DynamicBody; bd.position.set(-10, 10); bd.angle = 0.5f * (float)Math.PI; bd.allowSleep = false; Body body = world.createBody(bd); body.createFixture(shape, 5.0f); PrismaticJointDef pjd = new PrismaticJointDef(); Vector2 axis = new Vector2(2, 1); axis.nor(); pjd.initialize(ground, body, new Vector2(0, 0), axis); pjd.motorSpeed = 10.0f; pjd.maxMotorForce = 10000.0f; pjd.enableMotor = true; pjd.lowerTranslation = 0; pjd.upperTranslation = 20.0f; pjd.enableLimit = true; m_joint = (PrismaticJoint)world.createJoint(pjd); } } public boolean keyDown (int keyCode) { if (keyCode == Keys.L) m_joint.enableLimit(!m_joint.isLimitEnabled()); if (keyCode == Keys.M) m_joint.enableMotor(!m_joint.isMotorEnabled()); if (keyCode == Keys.S) m_joint.setMotorSpeed(-m_joint.getMotorSpeed()); return false; } public void render () { super.render(); // if (renderer.batch != null) { // renderer.batch.begin(); // // renderer.batch.drawText(renderer.font, "Keys: (l) limits, (m) motors, (s) speed", 0, // Gdx.app.getGraphics().getHeight(), // // Color.WHITE); // // renderer.batch.drawText(renderer.font, "Motor Force = " + m_joint.getMotorForce(), 0, // // Gdx.app.getGraphics().getHeight() - 15, Color.WHITE); // renderer.batch.end(); // } } }
-1
libgdx/libgdx
7,309
Use empty Audio implementations on Android and iOS when audio is disabled
Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
obigu
"2023-12-27T22:37:18Z"
"2023-12-28T19:29:00Z"
2b691f735f4b167c062f8f68186a6d7237d3d855
7f682a7921a47f0da858508f6b6fd58426dd05d7
Use empty Audio implementations on Android and iOS when audio is disabled. Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
./gdx/src/com/badlogic/gdx/maps/ImageResolver.java
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.maps; import com.badlogic.gdx.assets.AssetManager; import com.badlogic.gdx.graphics.Texture; import com.badlogic.gdx.graphics.g2d.TextureAtlas; import com.badlogic.gdx.graphics.g2d.TextureRegion; import com.badlogic.gdx.utils.ObjectMap; /** Resolves an image by a string, wrapper around a Map or AssetManager to load maps either directly or via AssetManager. * @author mzechner */ public interface ImageResolver { /** @param name * @return the Texture for the given image name or null. */ public TextureRegion getImage (String name); public static class DirectImageResolver implements ImageResolver { private final ObjectMap<String, Texture> images; public DirectImageResolver (ObjectMap<String, Texture> images) { this.images = images; } @Override public TextureRegion getImage (String name) { return new TextureRegion(images.get(name)); } } public static class AssetManagerImageResolver implements ImageResolver { private final AssetManager assetManager; public AssetManagerImageResolver (AssetManager assetManager) { this.assetManager = assetManager; } @Override public TextureRegion getImage (String name) { return new TextureRegion(assetManager.get(name, Texture.class)); } } public static class TextureAtlasImageResolver implements ImageResolver { private final TextureAtlas atlas; public TextureAtlasImageResolver (TextureAtlas atlas) { this.atlas = atlas; } @Override public TextureRegion getImage (String name) { return atlas.findRegion(name); } } }
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.maps; import com.badlogic.gdx.assets.AssetManager; import com.badlogic.gdx.graphics.Texture; import com.badlogic.gdx.graphics.g2d.TextureAtlas; import com.badlogic.gdx.graphics.g2d.TextureRegion; import com.badlogic.gdx.utils.ObjectMap; /** Resolves an image by a string, wrapper around a Map or AssetManager to load maps either directly or via AssetManager. * @author mzechner */ public interface ImageResolver { /** @param name * @return the Texture for the given image name or null. */ public TextureRegion getImage (String name); public static class DirectImageResolver implements ImageResolver { private final ObjectMap<String, Texture> images; public DirectImageResolver (ObjectMap<String, Texture> images) { this.images = images; } @Override public TextureRegion getImage (String name) { return new TextureRegion(images.get(name)); } } public static class AssetManagerImageResolver implements ImageResolver { private final AssetManager assetManager; public AssetManagerImageResolver (AssetManager assetManager) { this.assetManager = assetManager; } @Override public TextureRegion getImage (String name) { return new TextureRegion(assetManager.get(name, Texture.class)); } } public static class TextureAtlasImageResolver implements ImageResolver { private final TextureAtlas atlas; public TextureAtlasImageResolver (TextureAtlas atlas) { this.atlas = atlas; } @Override public TextureRegion getImage (String name) { return atlas.findRegion(name); } } }
-1
libgdx/libgdx
7,309
Use empty Audio implementations on Android and iOS when audio is disabled
Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
obigu
"2023-12-27T22:37:18Z"
"2023-12-28T19:29:00Z"
2b691f735f4b167c062f8f68186a6d7237d3d855
7f682a7921a47f0da858508f6b6fd58426dd05d7
Use empty Audio implementations on Android and iOS when audio is disabled. Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
./extensions/gdx-bullet/jni/swig-src/collision/com/badlogic/gdx/physics/bullet/collision/SWIGTYPE_p_gim_arrayT_GUINT_t.java
/* ---------------------------------------------------------------------------- * This file was automatically generated by SWIG (http://www.swig.org). * Version 3.0.11 * * Do not make changes to this file unless you know what you are doing--modify * the SWIG interface file instead. * ----------------------------------------------------------------------------- */ package com.badlogic.gdx.physics.bullet.collision; public class SWIGTYPE_p_gim_arrayT_GUINT_t { private transient long swigCPtr; protected SWIGTYPE_p_gim_arrayT_GUINT_t (long cPtr, @SuppressWarnings("unused") boolean futureUse) { swigCPtr = cPtr; } protected SWIGTYPE_p_gim_arrayT_GUINT_t () { swigCPtr = 0; } protected static long getCPtr (SWIGTYPE_p_gim_arrayT_GUINT_t obj) { return (obj == null) ? 0 : obj.swigCPtr; } }
/* ---------------------------------------------------------------------------- * This file was automatically generated by SWIG (http://www.swig.org). * Version 3.0.11 * * Do not make changes to this file unless you know what you are doing--modify * the SWIG interface file instead. * ----------------------------------------------------------------------------- */ package com.badlogic.gdx.physics.bullet.collision; public class SWIGTYPE_p_gim_arrayT_GUINT_t { private transient long swigCPtr; protected SWIGTYPE_p_gim_arrayT_GUINT_t (long cPtr, @SuppressWarnings("unused") boolean futureUse) { swigCPtr = cPtr; } protected SWIGTYPE_p_gim_arrayT_GUINT_t () { swigCPtr = 0; } protected static long getCPtr (SWIGTYPE_p_gim_arrayT_GUINT_t obj) { return (obj == null) ? 0 : obj.swigCPtr; } }
-1
libgdx/libgdx
7,309
Use empty Audio implementations on Android and iOS when audio is disabled
Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
obigu
"2023-12-27T22:37:18Z"
"2023-12-28T19:29:00Z"
2b691f735f4b167c062f8f68186a6d7237d3d855
7f682a7921a47f0da858508f6b6fd58426dd05d7
Use empty Audio implementations on Android and iOS when audio is disabled. Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
./extensions/gdx-setup/res/com/badlogic/gdx/setup/data/logo.png
PNG  IHDRM] zTXtRaw profile type exifxڭk >@F#*v-OQ]Df}ÿ˵h(՚v_饧_Wy~ʎ}7|-1_^ep~|<z `+{ {^9Fa;[zs1+ɒ#ůk$|Oux?"D}?}\׹{2cDmEnFQ2Ὡ^yljTgWyoϣhlqQ&K"Wlr<K!t"~eK=.(,CnTbQ=y۟-i\y g&a1<W܊x2) ӄg΢ r9O~G^֏?/lIsc#Sy5_! "] D*JL<63<&ZӖpMJqZkT0B!jlAJFBUV{hUUSaيUS3kmJMz= ծBo1`g1̳:ulϱ*.]kn ǑN9N?サon{U\5r+yQ5}[BN׌"Tܼ:ybRWk{)jjR8[bTI}Tu \?*tZ/ǣ()w4 qi#2Cf|gڮ\=M.;hE+y/RQk#=][37,GD1~!ŧlҽ絔AQRxN/㺀i\&ʊ)5Cd1cs{gO\&6a7{Rku ԡmtzu6B,yj&$)Y.˄\*I'L@9\HdDzzd<ޤ+Jjr :J^)Bֹ圱@œ3(hLi=D :PO߼*p  57{IIƷSu@e7?B+mizo)tK,I{ױg^盩g׀eXx, :Vi3j&5Z+#Ǐd%0[i+yӡP-緀kL9|P^tgn`5izP (RXBa+ :t ~j.#oHӧ~YdKu+7Ikޜw/X'UY<@`낍m0 8o0  LMw%lcd* }.oSt.وhW1("e4R3,9Ђb{aÛ7CDގ!w_A6 )N2z]ӏΌ[KVP`F 1oT |9#m&v_V)y#kP > lu,GΊ9Hbu}{i}-Ip {kk})[{_ʦ|/Nk|vY#u y1It'5-qVEdٰ=dLGDEm<6].*Q"z[X}LÊPӉnߣciB;Peq{<l6 )J熝Qe5-i1ս״@\N F <7* yا: `#D \?3Xf*<6NDsE:-`|60+b1C/`B@kng */LVT!ή.ݠmZkm$<=LiIdg WΈKz}`y8Xq3`!Nu}. ( VؚnK.-GxJE{h)#֋+Srz󴭹:Ϯa(쒱k:"U-8.}\ t'&ał(%[8*d53QXaiණHv.C50FRm693 2pAp\FQNxN&tiO1h]hcfܓ^9p,ؠZ u9];:nwFA \tdo& :NwpT"\nͺH1~o-'["t ܉%[i)V7Pw} e8@5 |4Z!GԅXrV v[g&A$Np*TA_8AGkM C\>  IU)N BGQjZI+Sv1H7y 8|X#oih'twKiFvV;[bP>U_|z2+q[if( e^4:&c%1i4&ѱ7L,#S G`PDV(| -Jp&`Vڭ)+wmlhq3Z*OYƖŌ|=w{ Fk2ޤHC,!cK4)-n$Mgg Ou/ѱy(RCH>D ݍBc"!ğ NM!}9s2z̈́0?,ɞm|(J N82@(m:1$#$&`2| q5#ذpDK +X3R`b ~E-0&$(\l-\ToυºxD9yBg)5bL2tTuda`2.[Ѡ/+>FBI2,܍O hȠceocԑ=g%E"4-@Bd rGBY]C9`mahXϔaG',LN,XC\+a 4Wo K av,}'oPFd|VFͅ;yQÂq*hd'&ޫ.~o2F2pdKvW7iHO !jN;WZ"ቬ/ >6 yo S6\mtƨdb.{=b_W(V6<GR&0b@Mw^H8/x8<ȤȂ2U<3=t擻1p狃>=:xH5w6yC~}^_q1'W@{H4{x/W63 Ą?GbŸe#12w2A6'Bg|"nv>_PJ/FbKGDC pHYs B(xtIME ]|IDATx}py=XeI¼",QH)&I;$L2mt:1N2ӿb$7[4 ";6clc$>Yt{Ow۽ӝN{[o-@v ihuE3BHBBBBBBB 4 4 4 4 4 4T EDv] ܛi۶oQGDdxܶ87TU}1>/$DTqq۶QӴKs⛦65_i x*SB!"r;+wDeql!/؟"qDl! r$n3'#x#Bi57i73j<5CMmݻyﱿ\z}a|?*W{["GF984^}-&!K|8\"=n;C 54DT[JmAͬpxɼoTk"'϶Eme4_}tMeJWkꝶںP'ұݗ!ukZ)CQ.n25|!7{;߿K`j4 Ui<"LM)&.A~q]/mK\V[iNu)!m1iss]HkvU/ι%miGf鍜n7-PTkj[a<c &pts XXU94t*jn>zakyO 4T}KS]Xјg<J%d=ryt=zvU͋Lܬޡf,TMގMDprG SivrLPv-[|tCVT{9!̟lL h2G/m4Sp:1:o4I7~X%Q LP~jUTDj23ll<覆L)1̥ĥGv, L]8jvl" 4TM^6u!n%qW 㫈[Ph4yjtb4XpRv8)~:KrPnmjhk<*KJU醾 3.ʹL28u(:z#LP3WkSB/BLBWh_3WiقS9 nj\Ҿ0s(/mfNiڴl˕zq8 NӮ 1ϫ˕x.rP+p}CŒP"2}gNVSa=#2j E)#="+21DZr0$:_̵6Ơ ܙ}?r%8cFڃ,F`&h8CtCzx}B䘶XH<~DF9NDQȡ(8g/O i_qDNB٘nW7Bk U,L6lF[> c]ZSۚxlo5 w58EߏY} E>BKziNF=Ipi_Z9@+t>ѡ7/zp՚= Ks$n4ޡ 734z #Nnq} w6^pr:ʿ_B*=(pDFc L0I{6>ꍄV<?Qn`B7 4@MԐǥX"CAu&{Z:M|n`B7 4@qhB {&DseKP2E$=0k˫Ś9<& M姬Fm&,Oů-+fMqi<G""rLQޘ/=)"(- 5, wR8:5:o>ฝ^5LG<U{}Y_Gw.jQ ME""g'(qը"gFQoц;1۶(NPQ>EfVEA|Dd##m|.sܗNԬ0L<;NOy>?wx.!Q cmISu5YyJP5L "iDt-j_zfCD?uE9^@j%ܮPkf=%~023w߁ OSCBt)]e=GĬRU?b %FDN`~j`B74AD1?-˺qå Li5vpgWny'~wSJԫTf 8<o@h""Dt{byt=梪Go^tQϟ+* L(&Hu 3?."۶͕ Q6+~\R,ybEqB7 4@63wE MxZt]h`4wxRoVOёG"E1OE9  }|=8N-ZB|F⯮'11 2QoM6st]_{ksc.py.`/:zÌKKl ߘW[mm SM4f~qihʚ_{6N幀EU Nv7,7K6 8Bds3)ˉYi+580``]^lac]KM5shN(1ky38mD􊪪NtLфh\Cry](":Y&óRI|AfC_'"m{{#Mr{<cUEdm7(| %f2WD+u>"/swH"#GQ4TsLޞ0 ҟ^6{o+)&!rl|2눈i[}QM82 r?iyq|gp-3y"lc!ћ{-><+l$ Djn̿}Fc!s?]&z,Q] Ls6 䁽npZq& <3o%t<gO6O$^{Mǫ\#0U-DΨm 5 vz[=Bץfy* `'q#"?(ЎAJ T'khZ8K?kA} 3b{Lsu[CwL `@{AqM&2rDMU/RBAĞ?#!wYau>LTF }\8B8NǢlNv,4<,/ RhZv&Ҩׄn.se LKrӚq6 Hvn"HTD/]u sU?EMTpZ@Ļ-l߯0WeE|nE7z-SN0UvInԲ28: {fltEKU;E$F#?4Ts~rs#/,m?L"#̜.Y01WC7Bk U_v?UF~fK#K&`>"!GȘWCk;G ghtN-:;]rnw[\];i4G9 J(D:C }jT?ת5Ns1baGM1L!]esJ1_<湗Tȣ]4Ol Fk`{0ftI.;v\j{ifX`:@h(im7."$ް{;v;"kT\0U 舜Ww:g.Lks& ]^{GǽCsL` s`v. j 3C t i;azrH%5HqȹX\EU E*PM}gY/X%4#;gYLr$~ 2xiNu}{ N(&8[Eδ^ǟ] yex[d+KV:~-0`չ}{ Nk 3Bf/w8:hEM97hG|Edx0FRgy3Bu"lLI|0ͧ3H|26#?oYNz\ES#Mu޲{7߱] L"r8=}gĶ_"k25CdNEM;~3aәS)}{ N(&H "t\&K^}tЌ=0~xJI&|<@\[稷>~rDbfJcpBq8 4D|q}^SR[w~`* Db:?zb4:ҞG&{!%2p&h>oe LP188<b -."o;m({[vxGFWǭmnx*KvBdY"ֳ'FGy{xuIȶD-{OSvKST7sIESAßmGp`Fpq\4 I1"2<nt&JDQM%Ĉ蠈&f>EQ 6_ܻ7kCWii}H[HijuU 1J$DJܑx̱щHuD~oo\/[+dX ɉs{~w6Ӵoo/7/5 9BD̆-Q~o0f~X5L9ýKo2U|a }yԶ?wΠɋZB`F#@GeJ r&&&&&&&&HOC]+uMD/_ّ":HD[/:-D}Dd]>uV wҬre;mʡmRmp 1⮻)%{f;L6]Dt(19O `R'"ӑ/#܎4ttĭDt 7v;pp׽9r74;&|P0.,woLt"eN}>3v>PmwwJ L}-rN <cT9UD)y0ls;KS^?v)a"{nLs9t۩we=e9^κ%C;sxvǶG[f[y&$%F{XgZS:J?JvtL+ӣ0IxW)1T) 4L:Sx%-snϰNw, }zȘH Q&y@M@xXeLHj'rCV򣞈e~wCv7O_Ta #Me H})A/ζ#׃Ԗ'(Qt^_ #M!y7Y vWTWLPH{t#:)B]t({y4m*&wGĝ^ݎ0Bѫk7F Ni<HJv|r׻˴P⎳twW]PAdL#t<&Io ,K5kЅ}jɲL y>OP{'0\(OϹ4,A_JYYINA#Jt}N!@h !WR%z-;vPaNZNJ'LgM0unMyxu_GKKJDCE)t:(s m;C^ORG eN=|CӓSXw_LSpvWĘ}+lM/n6tJ ɇtI]DiB֎1rL:(1AӅ+wݯzwT"n0;J\l.I6c_ǽcL@Jl%EP\na|Y e>yxxs.˶Pz>>:AFVZ(w6{sI'>{Kxm<&&&&&&&&&@h@h@h@h@h@h@h&&&& wqe/sMC38py }~^+IENDB`
PNG  IHDRM] zTXtRaw profile type exifxڭk >@F#*v-OQ]Df}ÿ˵h(՚v_饧_Wy~ʎ}7|-1_^ep~|<z `+{ {^9Fa;[zs1+ɒ#ůk$|Oux?"D}?}\׹{2cDmEnFQ2Ὡ^yljTgWyoϣhlqQ&K"Wlr<K!t"~eK=.(,CnTbQ=y۟-i\y g&a1<W܊x2) ӄg΢ r9O~G^֏?/lIsc#Sy5_! "] D*JL<63<&ZӖpMJqZkT0B!jlAJFBUV{hUUSaيUS3kmJMz= ծBo1`g1̳:ulϱ*.]kn ǑN9N?サon{U\5r+yQ5}[BN׌"Tܼ:ybRWk{)jjR8[bTI}Tu \?*tZ/ǣ()w4 qi#2Cf|gڮ\=M.;hE+y/RQk#=][37,GD1~!ŧlҽ絔AQRxN/㺀i\&ʊ)5Cd1cs{gO\&6a7{Rku ԡmtzu6B,yj&$)Y.˄\*I'L@9\HdDzzd<ޤ+Jjr :J^)Bֹ圱@œ3(hLi=D :PO߼*p  57{IIƷSu@e7?B+mizo)tK,I{ױg^盩g׀eXx, :Vi3j&5Z+#Ǐd%0[i+yӡP-緀kL9|P^tgn`5izP (RXBa+ :t ~j.#oHӧ~YdKu+7Ikޜw/X'UY<@`낍m0 8o0  LMw%lcd* }.oSt.وhW1("e4R3,9Ђb{aÛ7CDގ!w_A6 )N2z]ӏΌ[KVP`F 1oT |9#m&v_V)y#kP > lu,GΊ9Hbu}{i}-Ip {kk})[{_ʦ|/Nk|vY#u y1It'5-qVEdٰ=dLGDEm<6].*Q"z[X}LÊPӉnߣciB;Peq{<l6 )J熝Qe5-i1ս״@\N F <7* yا: `#D \?3Xf*<6NDsE:-`|60+b1C/`B@kng */LVT!ή.ݠmZkm$<=LiIdg WΈKz}`y8Xq3`!Nu}. ( VؚnK.-GxJE{h)#֋+Srz󴭹:Ϯa(쒱k:"U-8.}\ t'&ał(%[8*d53QXaiණHv.C50FRm693 2pAp\FQNxN&tiO1h]hcfܓ^9p,ؠZ u9];:nwFA \tdo& :NwpT"\nͺH1~o-'["t ܉%[i)V7Pw} e8@5 |4Z!GԅXrV v[g&A$Np*TA_8AGkM C\>  IU)N BGQjZI+Sv1H7y 8|X#oih'twKiFvV;[bP>U_|z2+q[if( e^4:&c%1i4&ѱ7L,#S G`PDV(| -Jp&`Vڭ)+wmlhq3Z*OYƖŌ|=w{ Fk2ޤHC,!cK4)-n$Mgg Ou/ѱy(RCH>D ݍBc"!ğ NM!}9s2z̈́0?,ɞm|(J N82@(m:1$#$&`2| q5#ذpDK +X3R`b ~E-0&$(\l-\ToυºxD9yBg)5bL2tTuda`2.[Ѡ/+>FBI2,܍O hȠceocԑ=g%E"4-@Bd rGBY]C9`mahXϔaG',LN,XC\+a 4Wo K av,}'oPFd|VFͅ;yQÂq*hd'&ޫ.~o2F2pdKvW7iHO !jN;WZ"ቬ/ >6 yo S6\mtƨdb.{=b_W(V6<GR&0b@Mw^H8/x8<ȤȂ2U<3=t擻1p狃>=:xH5w6yC~}^_q1'W@{H4{x/W63 Ą?GbŸe#12w2A6'Bg|"nv>_PJ/FbKGDC pHYs B(xtIME ]|IDATx}py=XeI¼",QH)&I;$L2mt:1N2ӿb$7[4 ";6clc$>Yt{Ow۽ӝN{[o-@v ihuE3BHBBBBBBB 4 4 4 4 4 4T EDv] ܛi۶oQGDdxܶ87TU}1>/$DTqq۶QӴKs⛦65_i x*SB!"r;+wDeql!/؟"qDl! r$n3'#x#Bi57i73j<5CMmݻyﱿ\z}a|?*W{["GF984^}-&!K|8\"=n;C 54DT[JmAͬpxɼoTk"'϶Eme4_}tMeJWkꝶںP'ұݗ!ukZ)CQ.n25|!7{;߿K`j4 Ui<"LM)&.A~q]/mK\V[iNu)!m1iss]HkvU/ι%miGf鍜n7-PTkj[a<c &pts XXU94t*jn>zakyO 4T}KS]Xјg<J%d=ryt=zvU͋Lܬޡf,TMގMDprG SivrLPv-[|tCVT{9!̟lL h2G/m4Sp:1:o4I7~X%Q LP~jUTDj23ll<覆L)1̥ĥGv, L]8jvl" 4TM^6u!n%qW 㫈[Ph4yjtb4XpRv8)~:KrPnmjhk<*KJU醾 3.ʹL28u(:z#LP3WkSB/BLBWh_3WiقS9 nj\Ҿ0s(/mfNiڴl˕zq8 NӮ 1ϫ˕x.rP+p}CŒP"2}gNVSa=#2j E)#="+21DZr0$:_̵6Ơ ܙ}?r%8cFڃ,F`&h8CtCzx}B䘶XH<~DF9NDQȡ(8g/O i_qDNB٘nW7Bk U,L6lF[> c]ZSۚxlo5 w58EߏY} E>BKziNF=Ipi_Z9@+t>ѡ7/zp՚= Ks$n4ޡ 734z #Nnq} w6^pr:ʿ_B*=(pDFc L0I{6>ꍄV<?Qn`B7 4@MԐǥX"CAu&{Z:M|n`B7 4@qhB {&DseKP2E$=0k˫Ś9<& M姬Fm&,Oů-+fMqi<G""rLQޘ/=)"(- 5, wR8:5:o>ฝ^5LG<U{}Y_Gw.jQ ME""g'(qը"gFQoц;1۶(NPQ>EfVEA|Dd##m|.sܗNԬ0L<;NOy>?wx.!Q cmISu5YyJP5L "iDt-j_zfCD?uE9^@j%ܮPkf=%~023w߁ OSCBt)]e=GĬRU?b %FDN`~j`B74AD1?-˺qå Li5vpgWny'~wSJԫTf 8<o@h""Dt{byt=梪Go^tQϟ+* L(&Hu 3?."۶͕ Q6+~\R,ybEqB7 4@63wE MxZt]h`4wxRoVOёG"E1OE9  }|=8N-ZB|F⯮'11 2QoM6st]_{ksc.py.`/:zÌKKl ߘW[mm SM4f~qihʚ_{6N幀EU Nv7,7K6 8Bds3)ˉYi+580``]^lac]KM5shN(1ky38mD􊪪NtLфh\Cry](":Y&óRI|AfC_'"m{{#Mr{<cUEdm7(| %f2WD+u>"/swH"#GQ4TsLޞ0 ҟ^6{o+)&!rl|2눈i[}QM82 r?iyq|gp-3y"lc!ћ{-><+l$ Djn̿}Fc!s?]&z,Q] Ls6 䁽npZq& <3o%t<gO6O$^{Mǫ\#0U-DΨm 5 vz[=Bץfy* `'q#"?(ЎAJ T'khZ8K?kA} 3b{Lsu[CwL `@{AqM&2rDMU/RBAĞ?#!wYau>LTF }\8B8NǢlNv,4<,/ RhZv&Ҩׄn.se LKrӚq6 Hvn"HTD/]u sU?EMTpZ@Ļ-l߯0WeE|nE7z-SN0UvInԲ28: {fltEKU;E$F#?4Ts~rs#/,m?L"#̜.Y01WC7Bk U_v?UF~fK#K&`>"!GȘWCk;G ghtN-:;]rnw[\];i4G9 J(D:C }jT?ת5Ns1baGM1L!]esJ1_<湗Tȣ]4Ol Fk`{0ftI.;v\j{ifX`:@h(im7."$ް{;v;"kT\0U 舜Ww:g.Lks& ]^{GǽCsL` s`v. j 3C t i;azrH%5HqȹX\EU E*PM}gY/X%4#;gYLr$~ 2xiNu}{ N(&8[Eδ^ǟ] yex[d+KV:~-0`չ}{ Nk 3Bf/w8:hEM97hG|Edx0FRgy3Bu"lLI|0ͧ3H|26#?oYNz\ES#Mu޲{7߱] L"r8=}gĶ_"k25CdNEM;~3aәS)}{ N(&H "t\&K^}tЌ=0~xJI&|<@\[稷>~rDbfJcpBq8 4D|q}^SR[w~`* Db:?zb4:ҞG&{!%2p&h>oe LP188<b -."o;m({[vxGFWǭmnx*KvBdY"ֳ'FGy{xuIȶD-{OSvKST7sIESAßmGp`Fpq\4 I1"2<nt&JDQM%Ĉ蠈&f>EQ 6_ܻ7kCWii}H[HijuU 1J$DJܑx̱щHuD~oo\/[+dX ɉs{~w6Ӵoo/7/5 9BD̆-Q~o0f~X5L9ýKo2U|a }yԶ?wΠɋZB`F#@GeJ r&&&&&&&&HOC]+uMD/_ّ":HD[/:-D}Dd]>uV wҬre;mʡmRmp 1⮻)%{f;L6]Dt(19O `R'"ӑ/#܎4ttĭDt 7v;pp׽9r74;&|P0.,woLt"eN}>3v>PmwwJ L}-rN <cT9UD)y0ls;KS^?v)a"{nLs9t۩we=e9^κ%C;sxvǶG[f[y&$%F{XgZS:J?JvtL+ӣ0IxW)1T) 4L:Sx%-snϰNw, }zȘH Q&y@M@xXeLHj'rCV򣞈e~wCv7O_Ta #Me H})A/ζ#׃Ԗ'(Qt^_ #M!y7Y vWTWLPH{t#:)B]t({y4m*&wGĝ^ݎ0Bѫk7F Ni<HJv|r׻˴P⎳twW]PAdL#t<&Io ,K5kЅ}jɲL y>OP{'0\(OϹ4,A_JYYINA#Jt}N!@h !WR%z-;vPaNZNJ'LgM0unMyxu_GKKJDCE)t:(s m;C^ORG eN=|CӓSXw_LSpvWĘ}+lM/n6tJ ɇtI]DiB֎1rL:(1AӅ+wݯzwT"n0;J\l.I6c_ǽcL@Jl%EP\na|Y e>yxxs.˶Pz>>:AFVZ(w6{sI'>{Kxm<&&&&&&&&&@h@h@h@h@h@h@h&&&& wqe/sMC38py }~^+IENDB`
-1
libgdx/libgdx
7,309
Use empty Audio implementations on Android and iOS when audio is disabled
Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
obigu
"2023-12-27T22:37:18Z"
"2023-12-28T19:29:00Z"
2b691f735f4b167c062f8f68186a6d7237d3d855
7f682a7921a47f0da858508f6b6fd58426dd05d7
Use empty Audio implementations on Android and iOS when audio is disabled. Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
./gdx/src/com/badlogic/gdx/math/Affine2.java
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.math; import java.io.Serializable; import com.badlogic.gdx.utils.GdxRuntimeException; /** A specialized 3x3 matrix that can represent sequences of 2D translations, scales, flips, rotations, and shears. * <a href="http://en.wikipedia.org/wiki/Affine_transformation">Affine transformations</a> preserve straight lines, and parallel * lines remain parallel after the transformation. Operations on affine matrices are faster because the last row can always be * assumed (0, 0, 1). * * @author vmilea */ public final class Affine2 implements Serializable { private static final long serialVersionUID = 1524569123485049187L; public float m00 = 1, m01 = 0, m02 = 0; public float m10 = 0, m11 = 1, m12 = 0; // constant: m21 = 0, m21 = 1, m22 = 1 /** Constructs an identity matrix. */ public Affine2 () { } /** Constructs a matrix from the given affine matrix. * * @param other The affine matrix to copy. This matrix will not be modified. */ public Affine2 (Affine2 other) { set(other); } /** Sets this matrix to the identity matrix * @return This matrix for the purpose of chaining operations. */ public Affine2 idt () { m00 = 1; m01 = 0; m02 = 0; m10 = 0; m11 = 1; m12 = 0; return this; } /** Copies the values from the provided affine matrix to this matrix. * @param other The affine matrix to copy. * @return This matrix for the purposes of chaining. */ public Affine2 set (Affine2 other) { m00 = other.m00; m01 = other.m01; m02 = other.m02; m10 = other.m10; m11 = other.m11; m12 = other.m12; return this; } /** Copies the values from the provided matrix to this matrix. * @param matrix The matrix to copy, assumed to be an affine transformation. * @return This matrix for the purposes of chaining. */ public Affine2 set (Matrix3 matrix) { float[] other = matrix.val; m00 = other[Matrix3.M00]; m01 = other[Matrix3.M01]; m02 = other[Matrix3.M02]; m10 = other[Matrix3.M10]; m11 = other[Matrix3.M11]; m12 = other[Matrix3.M12]; return this; } /** Copies the 2D transformation components from the provided 4x4 matrix. The values are mapped as follows: * * <pre> * [ M00 M01 M03 ] * [ M10 M11 M13 ] * [ 0 0 1 ] * </pre> * * @param matrix The source matrix, assumed to be an affine transformation within XY plane. This matrix will not be modified. * @return This matrix for the purpose of chaining operations. */ public Affine2 set (Matrix4 matrix) { float[] other = matrix.val; m00 = other[Matrix4.M00]; m01 = other[Matrix4.M01]; m02 = other[Matrix4.M03]; m10 = other[Matrix4.M10]; m11 = other[Matrix4.M11]; m12 = other[Matrix4.M13]; return this; } /** Sets this matrix to a translation matrix. * @param x The translation in x * @param y The translation in y * @return This matrix for the purpose of chaining operations. */ public Affine2 setToTranslation (float x, float y) { m00 = 1; m01 = 0; m02 = x; m10 = 0; m11 = 1; m12 = y; return this; } /** Sets this matrix to a translation matrix. * @param trn The translation vector. * @return This matrix for the purpose of chaining operations. */ public Affine2 setToTranslation (Vector2 trn) { return setToTranslation(trn.x, trn.y); } /** Sets this matrix to a scaling matrix. * @param scaleX The scale in x. * @param scaleY The scale in y. * @return This matrix for the purpose of chaining operations. */ public Affine2 setToScaling (float scaleX, float scaleY) { m00 = scaleX; m01 = 0; m02 = 0; m10 = 0; m11 = scaleY; m12 = 0; return this; } /** Sets this matrix to a scaling matrix. * @param scale The scale vector. * @return This matrix for the purpose of chaining operations. */ public Affine2 setToScaling (Vector2 scale) { return setToScaling(scale.x, scale.y); } /** Sets this matrix to a rotation matrix that will rotate any vector in counter-clockwise direction around the z-axis. * @param degrees The angle in degrees. * @return This matrix for the purpose of chaining operations. */ public Affine2 setToRotation (float degrees) { float cos = MathUtils.cosDeg(degrees); float sin = MathUtils.sinDeg(degrees); m00 = cos; m01 = -sin; m02 = 0; m10 = sin; m11 = cos; m12 = 0; return this; } /** Sets this matrix to a rotation matrix that will rotate any vector in counter-clockwise direction around the z-axis. * @param radians The angle in radians. * @return This matrix for the purpose of chaining operations. */ public Affine2 setToRotationRad (float radians) { float cos = MathUtils.cos(radians); float sin = MathUtils.sin(radians); m00 = cos; m01 = -sin; m02 = 0; m10 = sin; m11 = cos; m12 = 0; return this; } /** Sets this matrix to a rotation matrix that will rotate any vector in counter-clockwise direction around the z-axis. * @param cos The angle cosine. * @param sin The angle sine. * @return This matrix for the purpose of chaining operations. */ public Affine2 setToRotation (float cos, float sin) { m00 = cos; m01 = -sin; m02 = 0; m10 = sin; m11 = cos; m12 = 0; return this; } /** Sets this matrix to a shearing matrix. * @param shearX The shear in x direction. * @param shearY The shear in y direction. * @return This matrix for the purpose of chaining operations. */ public Affine2 setToShearing (float shearX, float shearY) { m00 = 1; m01 = shearX; m02 = 0; m10 = shearY; m11 = 1; m12 = 0; return this; } /** Sets this matrix to a shearing matrix. * @param shear The shear vector. * @return This matrix for the purpose of chaining operations. */ public Affine2 setToShearing (Vector2 shear) { return setToShearing(shear.x, shear.y); } /** Sets this matrix to a concatenation of translation, rotation and scale. It is a more efficient form for: * <code>idt().translate(x, y).rotate(degrees).scale(scaleX, scaleY)</code> * @param x The translation in x. * @param y The translation in y. * @param degrees The angle in degrees. * @param scaleX The scale in y. * @param scaleY The scale in x. * @return This matrix for the purpose of chaining operations. */ public Affine2 setToTrnRotScl (float x, float y, float degrees, float scaleX, float scaleY) { m02 = x; m12 = y; if (degrees == 0) { m00 = scaleX; m01 = 0; m10 = 0; m11 = scaleY; } else { float sin = MathUtils.sinDeg(degrees); float cos = MathUtils.cosDeg(degrees); m00 = cos * scaleX; m01 = -sin * scaleY; m10 = sin * scaleX; m11 = cos * scaleY; } return this; } /** Sets this matrix to a concatenation of translation, rotation and scale. It is a more efficient form for: * <code>idt().translate(trn).rotate(degrees).scale(scale)</code> * @param trn The translation vector. * @param degrees The angle in degrees. * @param scale The scale vector. * @return This matrix for the purpose of chaining operations. */ public Affine2 setToTrnRotScl (Vector2 trn, float degrees, Vector2 scale) { return setToTrnRotScl(trn.x, trn.y, degrees, scale.x, scale.y); } /** Sets this matrix to a concatenation of translation, rotation and scale. It is a more efficient form for: * <code>idt().translate(x, y).rotateRad(radians).scale(scaleX, scaleY)</code> * @param x The translation in x. * @param y The translation in y. * @param radians The angle in radians. * @param scaleX The scale in y. * @param scaleY The scale in x. * @return This matrix for the purpose of chaining operations. */ public Affine2 setToTrnRotRadScl (float x, float y, float radians, float scaleX, float scaleY) { m02 = x; m12 = y; if (radians == 0) { m00 = scaleX; m01 = 0; m10 = 0; m11 = scaleY; } else { float sin = MathUtils.sin(radians); float cos = MathUtils.cos(radians); m00 = cos * scaleX; m01 = -sin * scaleY; m10 = sin * scaleX; m11 = cos * scaleY; } return this; } /** Sets this matrix to a concatenation of translation, rotation and scale. It is a more efficient form for: * <code>idt().translate(trn).rotateRad(radians).scale(scale)</code> * @param trn The translation vector. * @param radians The angle in radians. * @param scale The scale vector. * @return This matrix for the purpose of chaining operations. */ public Affine2 setToTrnRotRadScl (Vector2 trn, float radians, Vector2 scale) { return setToTrnRotRadScl(trn.x, trn.y, radians, scale.x, scale.y); } /** Sets this matrix to a concatenation of translation and scale. It is a more efficient form for: * <code>idt().translate(x, y).scale(scaleX, scaleY)</code> * @param x The translation in x. * @param y The translation in y. * @param scaleX The scale in y. * @param scaleY The scale in x. * @return This matrix for the purpose of chaining operations. */ public Affine2 setToTrnScl (float x, float y, float scaleX, float scaleY) { m00 = scaleX; m01 = 0; m02 = x; m10 = 0; m11 = scaleY; m12 = y; return this; } /** Sets this matrix to a concatenation of translation and scale. It is a more efficient form for: * <code>idt().translate(trn).scale(scale)</code> * @param trn The translation vector. * @param scale The scale vector. * @return This matrix for the purpose of chaining operations. */ public Affine2 setToTrnScl (Vector2 trn, Vector2 scale) { return setToTrnScl(trn.x, trn.y, scale.x, scale.y); } /** Sets this matrix to the product of two matrices. * @param l Left matrix. * @param r Right matrix. * @return This matrix for the purpose of chaining operations. */ public Affine2 setToProduct (Affine2 l, Affine2 r) { m00 = l.m00 * r.m00 + l.m01 * r.m10; m01 = l.m00 * r.m01 + l.m01 * r.m11; m02 = l.m00 * r.m02 + l.m01 * r.m12 + l.m02; m10 = l.m10 * r.m00 + l.m11 * r.m10; m11 = l.m10 * r.m01 + l.m11 * r.m11; m12 = l.m10 * r.m02 + l.m11 * r.m12 + l.m12; return this; } /** Inverts this matrix given that the determinant is != 0. * @return This matrix for the purpose of chaining operations. * @throws GdxRuntimeException if the matrix is singular (not invertible) */ public Affine2 inv () { float det = det(); if (det == 0) throw new GdxRuntimeException("Can't invert a singular affine matrix"); float invDet = 1.0f / det; float tmp00 = m11; float tmp01 = -m01; float tmp02 = m01 * m12 - m11 * m02; float tmp10 = -m10; float tmp11 = m00; float tmp12 = m10 * m02 - m00 * m12; m00 = invDet * tmp00; m01 = invDet * tmp01; m02 = invDet * tmp02; m10 = invDet * tmp10; m11 = invDet * tmp11; m12 = invDet * tmp12; return this; } /** Postmultiplies this matrix with the provided matrix and stores the result in this matrix. For example: * * <pre> * A.mul(B) results in A := AB * </pre> * * @param other Matrix to multiply by. * @return This matrix for the purpose of chaining operations together. */ public Affine2 mul (Affine2 other) { float tmp00 = m00 * other.m00 + m01 * other.m10; float tmp01 = m00 * other.m01 + m01 * other.m11; float tmp02 = m00 * other.m02 + m01 * other.m12 + m02; float tmp10 = m10 * other.m00 + m11 * other.m10; float tmp11 = m10 * other.m01 + m11 * other.m11; float tmp12 = m10 * other.m02 + m11 * other.m12 + m12; m00 = tmp00; m01 = tmp01; m02 = tmp02; m10 = tmp10; m11 = tmp11; m12 = tmp12; return this; } /** Premultiplies this matrix with the provided matrix and stores the result in this matrix. For example: * * <pre> * A.preMul(B) results in A := BA * </pre> * * @param other The other Matrix to multiply by * @return This matrix for the purpose of chaining operations. */ public Affine2 preMul (Affine2 other) { float tmp00 = other.m00 * m00 + other.m01 * m10; float tmp01 = other.m00 * m01 + other.m01 * m11; float tmp02 = other.m00 * m02 + other.m01 * m12 + other.m02; float tmp10 = other.m10 * m00 + other.m11 * m10; float tmp11 = other.m10 * m01 + other.m11 * m11; float tmp12 = other.m10 * m02 + other.m11 * m12 + other.m12; m00 = tmp00; m01 = tmp01; m02 = tmp02; m10 = tmp10; m11 = tmp11; m12 = tmp12; return this; } /** Postmultiplies this matrix by a translation matrix. * @param x The x-component of the translation vector. * @param y The y-component of the translation vector. * @return This matrix for the purpose of chaining. */ public Affine2 translate (float x, float y) { m02 += m00 * x + m01 * y; m12 += m10 * x + m11 * y; return this; } /** Postmultiplies this matrix by a translation matrix. * @param trn The translation vector. * @return This matrix for the purpose of chaining. */ public Affine2 translate (Vector2 trn) { return translate(trn.x, trn.y); } /** Premultiplies this matrix by a translation matrix. * @param x The x-component of the translation vector. * @param y The y-component of the translation vector. * @return This matrix for the purpose of chaining. */ public Affine2 preTranslate (float x, float y) { m02 += x; m12 += y; return this; } /** Premultiplies this matrix by a translation matrix. * @param trn The translation vector. * @return This matrix for the purpose of chaining. */ public Affine2 preTranslate (Vector2 trn) { return preTranslate(trn.x, trn.y); } /** Postmultiplies this matrix with a scale matrix. * @param scaleX The scale in the x-axis. * @param scaleY The scale in the y-axis. * @return This matrix for the purpose of chaining. */ public Affine2 scale (float scaleX, float scaleY) { m00 *= scaleX; m01 *= scaleY; m10 *= scaleX; m11 *= scaleY; return this; } /** Postmultiplies this matrix with a scale matrix. * @param scale The scale vector. * @return This matrix for the purpose of chaining. */ public Affine2 scale (Vector2 scale) { return scale(scale.x, scale.y); } /** Premultiplies this matrix with a scale matrix. * @param scaleX The scale in the x-axis. * @param scaleY The scale in the y-axis. * @return This matrix for the purpose of chaining. */ public Affine2 preScale (float scaleX, float scaleY) { m00 *= scaleX; m01 *= scaleX; m02 *= scaleX; m10 *= scaleY; m11 *= scaleY; m12 *= scaleY; return this; } /** Premultiplies this matrix with a scale matrix. * @param scale The scale vector. * @return This matrix for the purpose of chaining. */ public Affine2 preScale (Vector2 scale) { return preScale(scale.x, scale.y); } /** Postmultiplies this matrix with a (counter-clockwise) rotation matrix. * @param degrees The angle in degrees * @return This matrix for the purpose of chaining. */ public Affine2 rotate (float degrees) { if (degrees == 0) return this; float cos = MathUtils.cosDeg(degrees); float sin = MathUtils.sinDeg(degrees); float tmp00 = m00 * cos + m01 * sin; float tmp01 = m00 * -sin + m01 * cos; float tmp10 = m10 * cos + m11 * sin; float tmp11 = m10 * -sin + m11 * cos; m00 = tmp00; m01 = tmp01; m10 = tmp10; m11 = tmp11; return this; } /** Postmultiplies this matrix with a (counter-clockwise) rotation matrix. * @param radians The angle in radians * @return This matrix for the purpose of chaining. */ public Affine2 rotateRad (float radians) { if (radians == 0) return this; float cos = MathUtils.cos(radians); float sin = MathUtils.sin(radians); float tmp00 = m00 * cos + m01 * sin; float tmp01 = m00 * -sin + m01 * cos; float tmp10 = m10 * cos + m11 * sin; float tmp11 = m10 * -sin + m11 * cos; m00 = tmp00; m01 = tmp01; m10 = tmp10; m11 = tmp11; return this; } /** Premultiplies this matrix with a (counter-clockwise) rotation matrix. * @param degrees The angle in degrees * @return This matrix for the purpose of chaining. */ public Affine2 preRotate (float degrees) { if (degrees == 0) return this; float cos = MathUtils.cosDeg(degrees); float sin = MathUtils.sinDeg(degrees); float tmp00 = cos * m00 - sin * m10; float tmp01 = cos * m01 - sin * m11; float tmp02 = cos * m02 - sin * m12; float tmp10 = sin * m00 + cos * m10; float tmp11 = sin * m01 + cos * m11; float tmp12 = sin * m02 + cos * m12; m00 = tmp00; m01 = tmp01; m02 = tmp02; m10 = tmp10; m11 = tmp11; m12 = tmp12; return this; } /** Premultiplies this matrix with a (counter-clockwise) rotation matrix. * @param radians The angle in radians * @return This matrix for the purpose of chaining. */ public Affine2 preRotateRad (float radians) { if (radians == 0) return this; float cos = MathUtils.cos(radians); float sin = MathUtils.sin(radians); float tmp00 = cos * m00 - sin * m10; float tmp01 = cos * m01 - sin * m11; float tmp02 = cos * m02 - sin * m12; float tmp10 = sin * m00 + cos * m10; float tmp11 = sin * m01 + cos * m11; float tmp12 = sin * m02 + cos * m12; m00 = tmp00; m01 = tmp01; m02 = tmp02; m10 = tmp10; m11 = tmp11; m12 = tmp12; return this; } /** Postmultiplies this matrix by a shear matrix. * @param shearX The shear in x direction. * @param shearY The shear in y direction. * @return This matrix for the purpose of chaining. */ public Affine2 shear (float shearX, float shearY) { float tmp0 = m00 + shearY * m01; float tmp1 = m01 + shearX * m00; m00 = tmp0; m01 = tmp1; tmp0 = m10 + shearY * m11; tmp1 = m11 + shearX * m10; m10 = tmp0; m11 = tmp1; return this; } /** Postmultiplies this matrix by a shear matrix. * @param shear The shear vector. * @return This matrix for the purpose of chaining. */ public Affine2 shear (Vector2 shear) { return shear(shear.x, shear.y); } /** Premultiplies this matrix by a shear matrix. * @param shearX The shear in x direction. * @param shearY The shear in y direction. * @return This matrix for the purpose of chaining. */ public Affine2 preShear (float shearX, float shearY) { float tmp00 = m00 + shearX * m10; float tmp01 = m01 + shearX * m11; float tmp02 = m02 + shearX * m12; float tmp10 = m10 + shearY * m00; float tmp11 = m11 + shearY * m01; float tmp12 = m12 + shearY * m02; m00 = tmp00; m01 = tmp01; m02 = tmp02; m10 = tmp10; m11 = tmp11; m12 = tmp12; return this; } /** Premultiplies this matrix by a shear matrix. * @param shear The shear vector. * @return This matrix for the purpose of chaining. */ public Affine2 preShear (Vector2 shear) { return preShear(shear.x, shear.y); } /** Calculates the determinant of the matrix. * @return The determinant of this matrix. */ public float det () { return m00 * m11 - m01 * m10; } /** Get the x-y translation component of the matrix. * @param position Output vector. * @return Filled position. */ public Vector2 getTranslation (Vector2 position) { position.x = m02; position.y = m12; return position; } /** Check if the this is a plain translation matrix. * @return True if scale is 1 and rotation is 0. */ public boolean isTranslation () { return (m00 == 1 && m11 == 1 && m01 == 0 && m10 == 0); } /** Check if this is an indentity matrix. * @return True if scale is 1 and rotation is 0. */ public boolean isIdt () { return (m00 == 1 && m02 == 0 && m12 == 0 && m11 == 1 && m01 == 0 && m10 == 0); } /** Applies the affine transformation on a vector. */ public void applyTo (Vector2 point) { float x = point.x; float y = point.y; point.x = m00 * x + m01 * y + m02; point.y = m10 * x + m11 * y + m12; } @Override public String toString () { return "[" + m00 + "|" + m01 + "|" + m02 + "]\n[" + m10 + "|" + m11 + "|" + m12 + "]\n[0.0|0.0|0.1]"; } }
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.math; import java.io.Serializable; import com.badlogic.gdx.utils.GdxRuntimeException; /** A specialized 3x3 matrix that can represent sequences of 2D translations, scales, flips, rotations, and shears. * <a href="http://en.wikipedia.org/wiki/Affine_transformation">Affine transformations</a> preserve straight lines, and parallel * lines remain parallel after the transformation. Operations on affine matrices are faster because the last row can always be * assumed (0, 0, 1). * * @author vmilea */ public final class Affine2 implements Serializable { private static final long serialVersionUID = 1524569123485049187L; public float m00 = 1, m01 = 0, m02 = 0; public float m10 = 0, m11 = 1, m12 = 0; // constant: m21 = 0, m21 = 1, m22 = 1 /** Constructs an identity matrix. */ public Affine2 () { } /** Constructs a matrix from the given affine matrix. * * @param other The affine matrix to copy. This matrix will not be modified. */ public Affine2 (Affine2 other) { set(other); } /** Sets this matrix to the identity matrix * @return This matrix for the purpose of chaining operations. */ public Affine2 idt () { m00 = 1; m01 = 0; m02 = 0; m10 = 0; m11 = 1; m12 = 0; return this; } /** Copies the values from the provided affine matrix to this matrix. * @param other The affine matrix to copy. * @return This matrix for the purposes of chaining. */ public Affine2 set (Affine2 other) { m00 = other.m00; m01 = other.m01; m02 = other.m02; m10 = other.m10; m11 = other.m11; m12 = other.m12; return this; } /** Copies the values from the provided matrix to this matrix. * @param matrix The matrix to copy, assumed to be an affine transformation. * @return This matrix for the purposes of chaining. */ public Affine2 set (Matrix3 matrix) { float[] other = matrix.val; m00 = other[Matrix3.M00]; m01 = other[Matrix3.M01]; m02 = other[Matrix3.M02]; m10 = other[Matrix3.M10]; m11 = other[Matrix3.M11]; m12 = other[Matrix3.M12]; return this; } /** Copies the 2D transformation components from the provided 4x4 matrix. The values are mapped as follows: * * <pre> * [ M00 M01 M03 ] * [ M10 M11 M13 ] * [ 0 0 1 ] * </pre> * * @param matrix The source matrix, assumed to be an affine transformation within XY plane. This matrix will not be modified. * @return This matrix for the purpose of chaining operations. */ public Affine2 set (Matrix4 matrix) { float[] other = matrix.val; m00 = other[Matrix4.M00]; m01 = other[Matrix4.M01]; m02 = other[Matrix4.M03]; m10 = other[Matrix4.M10]; m11 = other[Matrix4.M11]; m12 = other[Matrix4.M13]; return this; } /** Sets this matrix to a translation matrix. * @param x The translation in x * @param y The translation in y * @return This matrix for the purpose of chaining operations. */ public Affine2 setToTranslation (float x, float y) { m00 = 1; m01 = 0; m02 = x; m10 = 0; m11 = 1; m12 = y; return this; } /** Sets this matrix to a translation matrix. * @param trn The translation vector. * @return This matrix for the purpose of chaining operations. */ public Affine2 setToTranslation (Vector2 trn) { return setToTranslation(trn.x, trn.y); } /** Sets this matrix to a scaling matrix. * @param scaleX The scale in x. * @param scaleY The scale in y. * @return This matrix for the purpose of chaining operations. */ public Affine2 setToScaling (float scaleX, float scaleY) { m00 = scaleX; m01 = 0; m02 = 0; m10 = 0; m11 = scaleY; m12 = 0; return this; } /** Sets this matrix to a scaling matrix. * @param scale The scale vector. * @return This matrix for the purpose of chaining operations. */ public Affine2 setToScaling (Vector2 scale) { return setToScaling(scale.x, scale.y); } /** Sets this matrix to a rotation matrix that will rotate any vector in counter-clockwise direction around the z-axis. * @param degrees The angle in degrees. * @return This matrix for the purpose of chaining operations. */ public Affine2 setToRotation (float degrees) { float cos = MathUtils.cosDeg(degrees); float sin = MathUtils.sinDeg(degrees); m00 = cos; m01 = -sin; m02 = 0; m10 = sin; m11 = cos; m12 = 0; return this; } /** Sets this matrix to a rotation matrix that will rotate any vector in counter-clockwise direction around the z-axis. * @param radians The angle in radians. * @return This matrix for the purpose of chaining operations. */ public Affine2 setToRotationRad (float radians) { float cos = MathUtils.cos(radians); float sin = MathUtils.sin(radians); m00 = cos; m01 = -sin; m02 = 0; m10 = sin; m11 = cos; m12 = 0; return this; } /** Sets this matrix to a rotation matrix that will rotate any vector in counter-clockwise direction around the z-axis. * @param cos The angle cosine. * @param sin The angle sine. * @return This matrix for the purpose of chaining operations. */ public Affine2 setToRotation (float cos, float sin) { m00 = cos; m01 = -sin; m02 = 0; m10 = sin; m11 = cos; m12 = 0; return this; } /** Sets this matrix to a shearing matrix. * @param shearX The shear in x direction. * @param shearY The shear in y direction. * @return This matrix for the purpose of chaining operations. */ public Affine2 setToShearing (float shearX, float shearY) { m00 = 1; m01 = shearX; m02 = 0; m10 = shearY; m11 = 1; m12 = 0; return this; } /** Sets this matrix to a shearing matrix. * @param shear The shear vector. * @return This matrix for the purpose of chaining operations. */ public Affine2 setToShearing (Vector2 shear) { return setToShearing(shear.x, shear.y); } /** Sets this matrix to a concatenation of translation, rotation and scale. It is a more efficient form for: * <code>idt().translate(x, y).rotate(degrees).scale(scaleX, scaleY)</code> * @param x The translation in x. * @param y The translation in y. * @param degrees The angle in degrees. * @param scaleX The scale in y. * @param scaleY The scale in x. * @return This matrix for the purpose of chaining operations. */ public Affine2 setToTrnRotScl (float x, float y, float degrees, float scaleX, float scaleY) { m02 = x; m12 = y; if (degrees == 0) { m00 = scaleX; m01 = 0; m10 = 0; m11 = scaleY; } else { float sin = MathUtils.sinDeg(degrees); float cos = MathUtils.cosDeg(degrees); m00 = cos * scaleX; m01 = -sin * scaleY; m10 = sin * scaleX; m11 = cos * scaleY; } return this; } /** Sets this matrix to a concatenation of translation, rotation and scale. It is a more efficient form for: * <code>idt().translate(trn).rotate(degrees).scale(scale)</code> * @param trn The translation vector. * @param degrees The angle in degrees. * @param scale The scale vector. * @return This matrix for the purpose of chaining operations. */ public Affine2 setToTrnRotScl (Vector2 trn, float degrees, Vector2 scale) { return setToTrnRotScl(trn.x, trn.y, degrees, scale.x, scale.y); } /** Sets this matrix to a concatenation of translation, rotation and scale. It is a more efficient form for: * <code>idt().translate(x, y).rotateRad(radians).scale(scaleX, scaleY)</code> * @param x The translation in x. * @param y The translation in y. * @param radians The angle in radians. * @param scaleX The scale in y. * @param scaleY The scale in x. * @return This matrix for the purpose of chaining operations. */ public Affine2 setToTrnRotRadScl (float x, float y, float radians, float scaleX, float scaleY) { m02 = x; m12 = y; if (radians == 0) { m00 = scaleX; m01 = 0; m10 = 0; m11 = scaleY; } else { float sin = MathUtils.sin(radians); float cos = MathUtils.cos(radians); m00 = cos * scaleX; m01 = -sin * scaleY; m10 = sin * scaleX; m11 = cos * scaleY; } return this; } /** Sets this matrix to a concatenation of translation, rotation and scale. It is a more efficient form for: * <code>idt().translate(trn).rotateRad(radians).scale(scale)</code> * @param trn The translation vector. * @param radians The angle in radians. * @param scale The scale vector. * @return This matrix for the purpose of chaining operations. */ public Affine2 setToTrnRotRadScl (Vector2 trn, float radians, Vector2 scale) { return setToTrnRotRadScl(trn.x, trn.y, radians, scale.x, scale.y); } /** Sets this matrix to a concatenation of translation and scale. It is a more efficient form for: * <code>idt().translate(x, y).scale(scaleX, scaleY)</code> * @param x The translation in x. * @param y The translation in y. * @param scaleX The scale in y. * @param scaleY The scale in x. * @return This matrix for the purpose of chaining operations. */ public Affine2 setToTrnScl (float x, float y, float scaleX, float scaleY) { m00 = scaleX; m01 = 0; m02 = x; m10 = 0; m11 = scaleY; m12 = y; return this; } /** Sets this matrix to a concatenation of translation and scale. It is a more efficient form for: * <code>idt().translate(trn).scale(scale)</code> * @param trn The translation vector. * @param scale The scale vector. * @return This matrix for the purpose of chaining operations. */ public Affine2 setToTrnScl (Vector2 trn, Vector2 scale) { return setToTrnScl(trn.x, trn.y, scale.x, scale.y); } /** Sets this matrix to the product of two matrices. * @param l Left matrix. * @param r Right matrix. * @return This matrix for the purpose of chaining operations. */ public Affine2 setToProduct (Affine2 l, Affine2 r) { m00 = l.m00 * r.m00 + l.m01 * r.m10; m01 = l.m00 * r.m01 + l.m01 * r.m11; m02 = l.m00 * r.m02 + l.m01 * r.m12 + l.m02; m10 = l.m10 * r.m00 + l.m11 * r.m10; m11 = l.m10 * r.m01 + l.m11 * r.m11; m12 = l.m10 * r.m02 + l.m11 * r.m12 + l.m12; return this; } /** Inverts this matrix given that the determinant is != 0. * @return This matrix for the purpose of chaining operations. * @throws GdxRuntimeException if the matrix is singular (not invertible) */ public Affine2 inv () { float det = det(); if (det == 0) throw new GdxRuntimeException("Can't invert a singular affine matrix"); float invDet = 1.0f / det; float tmp00 = m11; float tmp01 = -m01; float tmp02 = m01 * m12 - m11 * m02; float tmp10 = -m10; float tmp11 = m00; float tmp12 = m10 * m02 - m00 * m12; m00 = invDet * tmp00; m01 = invDet * tmp01; m02 = invDet * tmp02; m10 = invDet * tmp10; m11 = invDet * tmp11; m12 = invDet * tmp12; return this; } /** Postmultiplies this matrix with the provided matrix and stores the result in this matrix. For example: * * <pre> * A.mul(B) results in A := AB * </pre> * * @param other Matrix to multiply by. * @return This matrix for the purpose of chaining operations together. */ public Affine2 mul (Affine2 other) { float tmp00 = m00 * other.m00 + m01 * other.m10; float tmp01 = m00 * other.m01 + m01 * other.m11; float tmp02 = m00 * other.m02 + m01 * other.m12 + m02; float tmp10 = m10 * other.m00 + m11 * other.m10; float tmp11 = m10 * other.m01 + m11 * other.m11; float tmp12 = m10 * other.m02 + m11 * other.m12 + m12; m00 = tmp00; m01 = tmp01; m02 = tmp02; m10 = tmp10; m11 = tmp11; m12 = tmp12; return this; } /** Premultiplies this matrix with the provided matrix and stores the result in this matrix. For example: * * <pre> * A.preMul(B) results in A := BA * </pre> * * @param other The other Matrix to multiply by * @return This matrix for the purpose of chaining operations. */ public Affine2 preMul (Affine2 other) { float tmp00 = other.m00 * m00 + other.m01 * m10; float tmp01 = other.m00 * m01 + other.m01 * m11; float tmp02 = other.m00 * m02 + other.m01 * m12 + other.m02; float tmp10 = other.m10 * m00 + other.m11 * m10; float tmp11 = other.m10 * m01 + other.m11 * m11; float tmp12 = other.m10 * m02 + other.m11 * m12 + other.m12; m00 = tmp00; m01 = tmp01; m02 = tmp02; m10 = tmp10; m11 = tmp11; m12 = tmp12; return this; } /** Postmultiplies this matrix by a translation matrix. * @param x The x-component of the translation vector. * @param y The y-component of the translation vector. * @return This matrix for the purpose of chaining. */ public Affine2 translate (float x, float y) { m02 += m00 * x + m01 * y; m12 += m10 * x + m11 * y; return this; } /** Postmultiplies this matrix by a translation matrix. * @param trn The translation vector. * @return This matrix for the purpose of chaining. */ public Affine2 translate (Vector2 trn) { return translate(trn.x, trn.y); } /** Premultiplies this matrix by a translation matrix. * @param x The x-component of the translation vector. * @param y The y-component of the translation vector. * @return This matrix for the purpose of chaining. */ public Affine2 preTranslate (float x, float y) { m02 += x; m12 += y; return this; } /** Premultiplies this matrix by a translation matrix. * @param trn The translation vector. * @return This matrix for the purpose of chaining. */ public Affine2 preTranslate (Vector2 trn) { return preTranslate(trn.x, trn.y); } /** Postmultiplies this matrix with a scale matrix. * @param scaleX The scale in the x-axis. * @param scaleY The scale in the y-axis. * @return This matrix for the purpose of chaining. */ public Affine2 scale (float scaleX, float scaleY) { m00 *= scaleX; m01 *= scaleY; m10 *= scaleX; m11 *= scaleY; return this; } /** Postmultiplies this matrix with a scale matrix. * @param scale The scale vector. * @return This matrix for the purpose of chaining. */ public Affine2 scale (Vector2 scale) { return scale(scale.x, scale.y); } /** Premultiplies this matrix with a scale matrix. * @param scaleX The scale in the x-axis. * @param scaleY The scale in the y-axis. * @return This matrix for the purpose of chaining. */ public Affine2 preScale (float scaleX, float scaleY) { m00 *= scaleX; m01 *= scaleX; m02 *= scaleX; m10 *= scaleY; m11 *= scaleY; m12 *= scaleY; return this; } /** Premultiplies this matrix with a scale matrix. * @param scale The scale vector. * @return This matrix for the purpose of chaining. */ public Affine2 preScale (Vector2 scale) { return preScale(scale.x, scale.y); } /** Postmultiplies this matrix with a (counter-clockwise) rotation matrix. * @param degrees The angle in degrees * @return This matrix for the purpose of chaining. */ public Affine2 rotate (float degrees) { if (degrees == 0) return this; float cos = MathUtils.cosDeg(degrees); float sin = MathUtils.sinDeg(degrees); float tmp00 = m00 * cos + m01 * sin; float tmp01 = m00 * -sin + m01 * cos; float tmp10 = m10 * cos + m11 * sin; float tmp11 = m10 * -sin + m11 * cos; m00 = tmp00; m01 = tmp01; m10 = tmp10; m11 = tmp11; return this; } /** Postmultiplies this matrix with a (counter-clockwise) rotation matrix. * @param radians The angle in radians * @return This matrix for the purpose of chaining. */ public Affine2 rotateRad (float radians) { if (radians == 0) return this; float cos = MathUtils.cos(radians); float sin = MathUtils.sin(radians); float tmp00 = m00 * cos + m01 * sin; float tmp01 = m00 * -sin + m01 * cos; float tmp10 = m10 * cos + m11 * sin; float tmp11 = m10 * -sin + m11 * cos; m00 = tmp00; m01 = tmp01; m10 = tmp10; m11 = tmp11; return this; } /** Premultiplies this matrix with a (counter-clockwise) rotation matrix. * @param degrees The angle in degrees * @return This matrix for the purpose of chaining. */ public Affine2 preRotate (float degrees) { if (degrees == 0) return this; float cos = MathUtils.cosDeg(degrees); float sin = MathUtils.sinDeg(degrees); float tmp00 = cos * m00 - sin * m10; float tmp01 = cos * m01 - sin * m11; float tmp02 = cos * m02 - sin * m12; float tmp10 = sin * m00 + cos * m10; float tmp11 = sin * m01 + cos * m11; float tmp12 = sin * m02 + cos * m12; m00 = tmp00; m01 = tmp01; m02 = tmp02; m10 = tmp10; m11 = tmp11; m12 = tmp12; return this; } /** Premultiplies this matrix with a (counter-clockwise) rotation matrix. * @param radians The angle in radians * @return This matrix for the purpose of chaining. */ public Affine2 preRotateRad (float radians) { if (radians == 0) return this; float cos = MathUtils.cos(radians); float sin = MathUtils.sin(radians); float tmp00 = cos * m00 - sin * m10; float tmp01 = cos * m01 - sin * m11; float tmp02 = cos * m02 - sin * m12; float tmp10 = sin * m00 + cos * m10; float tmp11 = sin * m01 + cos * m11; float tmp12 = sin * m02 + cos * m12; m00 = tmp00; m01 = tmp01; m02 = tmp02; m10 = tmp10; m11 = tmp11; m12 = tmp12; return this; } /** Postmultiplies this matrix by a shear matrix. * @param shearX The shear in x direction. * @param shearY The shear in y direction. * @return This matrix for the purpose of chaining. */ public Affine2 shear (float shearX, float shearY) { float tmp0 = m00 + shearY * m01; float tmp1 = m01 + shearX * m00; m00 = tmp0; m01 = tmp1; tmp0 = m10 + shearY * m11; tmp1 = m11 + shearX * m10; m10 = tmp0; m11 = tmp1; return this; } /** Postmultiplies this matrix by a shear matrix. * @param shear The shear vector. * @return This matrix for the purpose of chaining. */ public Affine2 shear (Vector2 shear) { return shear(shear.x, shear.y); } /** Premultiplies this matrix by a shear matrix. * @param shearX The shear in x direction. * @param shearY The shear in y direction. * @return This matrix for the purpose of chaining. */ public Affine2 preShear (float shearX, float shearY) { float tmp00 = m00 + shearX * m10; float tmp01 = m01 + shearX * m11; float tmp02 = m02 + shearX * m12; float tmp10 = m10 + shearY * m00; float tmp11 = m11 + shearY * m01; float tmp12 = m12 + shearY * m02; m00 = tmp00; m01 = tmp01; m02 = tmp02; m10 = tmp10; m11 = tmp11; m12 = tmp12; return this; } /** Premultiplies this matrix by a shear matrix. * @param shear The shear vector. * @return This matrix for the purpose of chaining. */ public Affine2 preShear (Vector2 shear) { return preShear(shear.x, shear.y); } /** Calculates the determinant of the matrix. * @return The determinant of this matrix. */ public float det () { return m00 * m11 - m01 * m10; } /** Get the x-y translation component of the matrix. * @param position Output vector. * @return Filled position. */ public Vector2 getTranslation (Vector2 position) { position.x = m02; position.y = m12; return position; } /** Check if the this is a plain translation matrix. * @return True if scale is 1 and rotation is 0. */ public boolean isTranslation () { return (m00 == 1 && m11 == 1 && m01 == 0 && m10 == 0); } /** Check if this is an indentity matrix. * @return True if scale is 1 and rotation is 0. */ public boolean isIdt () { return (m00 == 1 && m02 == 0 && m12 == 0 && m11 == 1 && m01 == 0 && m10 == 0); } /** Applies the affine transformation on a vector. */ public void applyTo (Vector2 point) { float x = point.x; float y = point.y; point.x = m00 * x + m01 * y + m02; point.y = m10 * x + m11 * y + m12; } @Override public String toString () { return "[" + m00 + "|" + m01 + "|" + m02 + "]\n[" + m10 + "|" + m11 + "|" + m12 + "]\n[0.0|0.0|0.1]"; } }
-1
libgdx/libgdx
7,309
Use empty Audio implementations on Android and iOS when audio is disabled
Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
obigu
"2023-12-27T22:37:18Z"
"2023-12-28T19:29:00Z"
2b691f735f4b167c062f8f68186a6d7237d3d855
7f682a7921a47f0da858508f6b6fd58426dd05d7
Use empty Audio implementations on Android and iOS when audio is disabled. Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
./tests/gdx-tests-android/assets/data/shaders/distancefield.vert
uniform mat4 u_projTrans; attribute vec4 a_position; attribute vec2 a_texCoord0; attribute vec4 a_color; varying vec4 v_color; varying vec2 v_texCoord; void main() { gl_Position = u_projTrans * a_position; v_texCoord = a_texCoord0; v_color = a_color; }
uniform mat4 u_projTrans; attribute vec4 a_position; attribute vec2 a_texCoord0; attribute vec4 a_color; varying vec4 v_color; varying vec2 v_texCoord; void main() { gl_Position = u_projTrans * a_position; v_texCoord = a_texCoord0; v_color = a_color; }
-1
libgdx/libgdx
7,309
Use empty Audio implementations on Android and iOS when audio is disabled
Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
obigu
"2023-12-27T22:37:18Z"
"2023-12-28T19:29:00Z"
2b691f735f4b167c062f8f68186a6d7237d3d855
7f682a7921a47f0da858508f6b6fd58426dd05d7
Use empty Audio implementations on Android and iOS when audio is disabled. Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
./tests/gdx-tests-android/assets/data/particle.png
PNG  IHDR szztEXtSoftwareAdobe ImageReadyqe< iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.0-c060 61.134777, 2010/02/12-17:32:00 "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS5 Windows" xmpMM:InstanceID="xmp.iid:2B62EE4EC39511DFB881E7080A66082E" xmpMM:DocumentID="xmp.did:2B62EE4FC39511DFB881E7080A66082E"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:2B62EE4CC39511DFB881E7080A66082E" stRef:documentID="xmp.did:2B62EE4DC39511DFB881E7080A66082E"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>oi}IDATxWn0 e9q<ڴCa7 X&M<j1*87Ya\eDR$v]_)" F\ * ^7J@|\*+bZ@Zp b3Ag 0`$(Aȁ v`S"'0x-X𖀸-8L!lb ,^9DD+|=>3G+JO;@c`z }՘L1W©qSh!` X(Ŏ;5 7H& 3`r”kj$%6baJ,a_ jZG.ГLlL#> iwj1z .]z#L\O_R@+_~hIp&&4/&OI'u, V@brhҳ8:Ԍ9]3ԿV)Sps@FL@ֳMS^Ď'kˉy-ܣk(S*)NGk<뚎6-! –Hj*5kmZyy1gִٵ=Mr#wJYA> ЌDQ[i5G2= xwCG^S-XMCY5FnV HlSPÑ RtG'(PK_ "T~ޔ'꼧u]7{ r S;1N%5T9*Ӗs x[q珰BSOѽܠ!)Q-V$=#6ouwhJj$F-_|,T]Q'tM N=iJw =ܨj%%i_/:_Жɼx'Q9xxxeH^.%+h) TIENDB`
PNG  IHDR szztEXtSoftwareAdobe ImageReadyqe< iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.0-c060 61.134777, 2010/02/12-17:32:00 "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS5 Windows" xmpMM:InstanceID="xmp.iid:2B62EE4EC39511DFB881E7080A66082E" xmpMM:DocumentID="xmp.did:2B62EE4FC39511DFB881E7080A66082E"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:2B62EE4CC39511DFB881E7080A66082E" stRef:documentID="xmp.did:2B62EE4DC39511DFB881E7080A66082E"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>oi}IDATxWn0 e9q<ڴCa7 X&M<j1*87Ya\eDR$v]_)" F\ * ^7J@|\*+bZ@Zp b3Ag 0`$(Aȁ v`S"'0x-X𖀸-8L!lb ,^9DD+|=>3G+JO;@c`z }՘L1W©qSh!` X(Ŏ;5 7H& 3`r”kj$%6baJ,a_ jZG.ГLlL#> iwj1z .]z#L\O_R@+_~hIp&&4/&OI'u, V@brhҳ8:Ԍ9]3ԿV)Sps@FL@ֳMS^Ď'kˉy-ܣk(S*)NGk<뚎6-! –Hj*5kmZyy1gִٵ=Mr#wJYA> ЌDQ[i5G2= xwCG^S-XMCY5FnV HlSPÑ RtG'(PK_ "T~ޔ'꼧u]7{ r S;1N%5T9*Ӗs x[q珰BSOѽܠ!)Q-V$=#6ouwhJj$F-_|,T]Q'tM N=iJw =ܨj%%i_/:_Жɼx'Q9xxxeH^.%+h) TIENDB`
-1
libgdx/libgdx
7,309
Use empty Audio implementations on Android and iOS when audio is disabled
Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
obigu
"2023-12-27T22:37:18Z"
"2023-12-28T19:29:00Z"
2b691f735f4b167c062f8f68186a6d7237d3d855
7f682a7921a47f0da858508f6b6fd58426dd05d7
Use empty Audio implementations on Android and iOS when audio is disabled. Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
./tests/gdx-tests/src/com/badlogic/gdx/tests/bench/TiledMapBench.java
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.tests.bench; import com.badlogic.gdx.Gdx; import com.badlogic.gdx.assets.AssetManager; import com.badlogic.gdx.graphics.OrthographicCamera; import com.badlogic.gdx.graphics.Texture; import com.badlogic.gdx.graphics.g2d.BitmapFont; import com.badlogic.gdx.graphics.g2d.SpriteBatch; import com.badlogic.gdx.graphics.g2d.TextureRegion; import com.badlogic.gdx.maps.MapLayers; import com.badlogic.gdx.maps.tiled.TiledMap; import com.badlogic.gdx.maps.tiled.TiledMapRenderer; import com.badlogic.gdx.maps.tiled.TiledMapTileLayer; import com.badlogic.gdx.maps.tiled.TiledMapTileLayer.Cell; import com.badlogic.gdx.maps.tiled.renderers.OrthogonalTiledMapRenderer; import com.badlogic.gdx.maps.tiled.tiles.StaticTiledMapTile; import com.badlogic.gdx.tests.utils.GdxTest; import com.badlogic.gdx.tests.utils.OrthoCamController; import com.badlogic.gdx.utils.ScreenUtils; public class TiledMapBench extends GdxTest { private TiledMap map; private TiledMapRenderer renderer; private OrthographicCamera camera; private OrthoCamController cameraController; private AssetManager assetManager; private Texture tiles; private Texture texture; private BitmapFont font; private SpriteBatch batch; @Override public void create () { float w = Gdx.graphics.getWidth(); float h = Gdx.graphics.getHeight(); camera = new OrthographicCamera(); camera.setToOrtho(false, (w / h) * 320, 320); camera.update(); cameraController = new OrthoCamController(camera); Gdx.input.setInputProcessor(cameraController); font = new BitmapFont(); batch = new SpriteBatch(); { tiles = new Texture(Gdx.files.internal("data/maps/tiled/tiles.png")); TextureRegion[][] splitTiles = TextureRegion.split(tiles, 32, 32); map = new TiledMap(); MapLayers layers = map.getLayers(); for (int l = 0; l < 20; l++) { TiledMapTileLayer layer = new TiledMapTileLayer(150, 100, 32, 32); for (int x = 0; x < 150; x++) { for (int y = 0; y < 100; y++) { int ty = (int)(Math.random() * splitTiles.length); int tx = (int)(Math.random() * splitTiles[ty].length); Cell cell = new Cell(); cell.setTile(new StaticTiledMapTile(splitTiles[ty][tx])); layer.setCell(x, y, cell); } } layers.add(layer); } } renderer = new OrthogonalTiledMapRenderer(map); } @Override public void render () { ScreenUtils.clear(100f / 255f, 100f / 255f, 250f / 255f, 1f); camera.update(); renderer.setView(camera); renderer.render(); batch.begin(); font.draw(batch, "FPS: " + Gdx.graphics.getFramesPerSecond(), 10, 20); batch.end(); } }
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.tests.bench; import com.badlogic.gdx.Gdx; import com.badlogic.gdx.assets.AssetManager; import com.badlogic.gdx.graphics.OrthographicCamera; import com.badlogic.gdx.graphics.Texture; import com.badlogic.gdx.graphics.g2d.BitmapFont; import com.badlogic.gdx.graphics.g2d.SpriteBatch; import com.badlogic.gdx.graphics.g2d.TextureRegion; import com.badlogic.gdx.maps.MapLayers; import com.badlogic.gdx.maps.tiled.TiledMap; import com.badlogic.gdx.maps.tiled.TiledMapRenderer; import com.badlogic.gdx.maps.tiled.TiledMapTileLayer; import com.badlogic.gdx.maps.tiled.TiledMapTileLayer.Cell; import com.badlogic.gdx.maps.tiled.renderers.OrthogonalTiledMapRenderer; import com.badlogic.gdx.maps.tiled.tiles.StaticTiledMapTile; import com.badlogic.gdx.tests.utils.GdxTest; import com.badlogic.gdx.tests.utils.OrthoCamController; import com.badlogic.gdx.utils.ScreenUtils; public class TiledMapBench extends GdxTest { private TiledMap map; private TiledMapRenderer renderer; private OrthographicCamera camera; private OrthoCamController cameraController; private AssetManager assetManager; private Texture tiles; private Texture texture; private BitmapFont font; private SpriteBatch batch; @Override public void create () { float w = Gdx.graphics.getWidth(); float h = Gdx.graphics.getHeight(); camera = new OrthographicCamera(); camera.setToOrtho(false, (w / h) * 320, 320); camera.update(); cameraController = new OrthoCamController(camera); Gdx.input.setInputProcessor(cameraController); font = new BitmapFont(); batch = new SpriteBatch(); { tiles = new Texture(Gdx.files.internal("data/maps/tiled/tiles.png")); TextureRegion[][] splitTiles = TextureRegion.split(tiles, 32, 32); map = new TiledMap(); MapLayers layers = map.getLayers(); for (int l = 0; l < 20; l++) { TiledMapTileLayer layer = new TiledMapTileLayer(150, 100, 32, 32); for (int x = 0; x < 150; x++) { for (int y = 0; y < 100; y++) { int ty = (int)(Math.random() * splitTiles.length); int tx = (int)(Math.random() * splitTiles[ty].length); Cell cell = new Cell(); cell.setTile(new StaticTiledMapTile(splitTiles[ty][tx])); layer.setCell(x, y, cell); } } layers.add(layer); } } renderer = new OrthogonalTiledMapRenderer(map); } @Override public void render () { ScreenUtils.clear(100f / 255f, 100f / 255f, 250f / 255f, 1f); camera.update(); renderer.setView(camera); renderer.render(); batch.begin(); font.draw(batch, "FPS: " + Gdx.graphics.getFramesPerSecond(), 10, 20); batch.end(); } }
-1
libgdx/libgdx
7,309
Use empty Audio implementations on Android and iOS when audio is disabled
Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
obigu
"2023-12-27T22:37:18Z"
"2023-12-28T19:29:00Z"
2b691f735f4b167c062f8f68186a6d7237d3d855
7f682a7921a47f0da858508f6b6fd58426dd05d7
Use empty Audio implementations on Android and iOS when audio is disabled. Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
./gdx/src/com/badlogic/gdx/graphics/g3d/particles/ParallelArray.java
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.graphics.g3d.particles; import com.badlogic.gdx.utils.Array; import com.badlogic.gdx.utils.GdxRuntimeException; import com.badlogic.gdx.utils.reflect.ArrayReflection; /** This class represents an group of elements like an array, but the properties of the elements are stored as separate arrays. * These arrays are called {@link Channel} and are represented by {@link ChannelDescriptor}. It's not necessary to store primitive * types in the channels but doing so will "exploit" data locality in the JVM, which is ensured for primitive types. Use * {@link FloatChannel}, {@link IntChannel}, {@link ObjectChannel} to store the data. * @author inferno */ public class ParallelArray { /** This class describes the content of a {@link Channel} */ public static class ChannelDescriptor { public int id; public Class<?> type; public int count; public ChannelDescriptor (int id, Class<?> type, int count) { this.id = id; this.type = type; this.count = count; } } /** This class represents a container of values for all the elements for a given property */ public abstract class Channel { public int id; public Object data; public int strideSize; public Channel (int id, Object data, int strideSize) { this.id = id; this.strideSize = strideSize; this.data = data; } public abstract void add (int index, Object... objects); public abstract void swap (int i, int k); protected abstract void setCapacity (int requiredCapacity); } /** This interface is used to provide custom initialization of the {@link Channel} data */ public static interface ChannelInitializer<T extends Channel> { public void init (T channel); } public class FloatChannel extends Channel { public float[] data; public FloatChannel (int id, int strideSize, int size) { super(id, new float[size * strideSize], strideSize); this.data = (float[])super.data; } @Override public void add (int index, Object... objects) { for (int i = strideSize * size, c = i + strideSize, k = 0; i < c; ++i, ++k) { data[i] = (Float)objects[k]; } } @Override public void swap (int i, int k) { float t; i = strideSize * i; k = strideSize * k; for (int c = i + strideSize; i < c; ++i, ++k) { t = data[i]; data[i] = data[k]; data[k] = t; } } @Override public void setCapacity (int requiredCapacity) { float[] newData = new float[strideSize * requiredCapacity]; System.arraycopy(data, 0, newData, 0, Math.min(data.length, newData.length)); super.data = data = newData; } } public class IntChannel extends Channel { public int[] data; public IntChannel (int id, int strideSize, int size) { super(id, new int[size * strideSize], strideSize); this.data = (int[])super.data; } @Override public void add (int index, Object... objects) { for (int i = strideSize * size, c = i + strideSize, k = 0; i < c; ++i, ++k) { data[i] = (Integer)objects[k]; } } @Override public void swap (int i, int k) { int t; i = strideSize * i; k = strideSize * k; for (int c = i + strideSize; i < c; ++i, ++k) { t = data[i]; data[i] = data[k]; data[k] = t; } } @Override public void setCapacity (int requiredCapacity) { int[] newData = new int[strideSize * requiredCapacity]; System.arraycopy(data, 0, newData, 0, Math.min(data.length, newData.length)); super.data = data = newData; } } @SuppressWarnings("unchecked") public class ObjectChannel<T> extends Channel { Class<T> componentType; public T[] data; public ObjectChannel (int id, int strideSize, int size, Class<T> type) { super(id, ArrayReflection.newInstance(type, size * strideSize), strideSize); componentType = type; this.data = (T[])super.data; } @Override public void add (int index, Object... objects) { for (int i = strideSize * size, c = i + strideSize, k = 0; i < c; ++i, ++k) { this.data[i] = (T)objects[k]; } } @Override public void swap (int i, int k) { T t; i = strideSize * i; k = strideSize * k; for (int c = i + strideSize; i < c; ++i, ++k) { t = data[i]; data[i] = data[k]; data[k] = t; } } @Override public void setCapacity (int requiredCapacity) { T[] newData = (T[])ArrayReflection.newInstance(componentType, strideSize * requiredCapacity); System.arraycopy(data, 0, newData, 0, Math.min(data.length, newData.length)); super.data = data = newData; } } /** the channels added to the array */ Array<Channel> arrays; /** the maximum amount of elements that this array can hold */ public int capacity; /** the current amount of defined elements, do not change manually unless you know what you are doing. */ public int size; public ParallelArray (int capacity) { arrays = new Array<Channel>(false, 2, Channel.class); this.capacity = capacity; size = 0; } /** Adds and returns a channel described by the channel descriptor parameter. If a channel with the same id already exists, no * allocation is performed and that channel is returned. */ public <T extends Channel> T addChannel (ChannelDescriptor channelDescriptor) { return addChannel(channelDescriptor, null); } /** Adds and returns a channel described by the channel descriptor parameter. If a channel with the same id already exists, no * allocation is performed and that channel is returned. Otherwise a new channel is allocated and initialized with the * initializer. */ public <T extends Channel> T addChannel (ChannelDescriptor channelDescriptor, ChannelInitializer<T> initializer) { T channel = getChannel(channelDescriptor); if (channel == null) { channel = allocateChannel(channelDescriptor); if (initializer != null) initializer.init(channel); arrays.add(channel); } return channel; } @SuppressWarnings({"unchecked", "rawtypes"}) private <T extends Channel> T allocateChannel (ChannelDescriptor channelDescriptor) { if (channelDescriptor.type == float.class) { return (T)new FloatChannel(channelDescriptor.id, channelDescriptor.count, capacity); } else if (channelDescriptor.type == int.class) { return (T)new IntChannel(channelDescriptor.id, channelDescriptor.count, capacity); } else { return (T)new ObjectChannel(channelDescriptor.id, channelDescriptor.count, capacity, channelDescriptor.type); } } /** Removes the channel with the given id */ public <T> void removeArray (int id) { arrays.removeIndex(findIndex(id)); } private int findIndex (int id) { for (int i = 0; i < arrays.size; ++i) { Channel array = arrays.items[i]; if (array.id == id) return i; } return -1; } /** Adds an element considering the values in the same order as the current channels in the array. The n_th value must have the * same type and stride of the given channel at position n */ public void addElement (Object... values) { /* FIXME make it grow... */ if (size == capacity) throw new GdxRuntimeException("Capacity reached, cannot add other elements"); int k = 0; for (Channel strideArray : arrays) { strideArray.add(k, values); k += strideArray.strideSize; } ++size; } /** Removes the element at the given index and swaps it with the last available element */ public void removeElement (int index) { int last = size - 1; // Swap for (Channel strideArray : arrays) { strideArray.swap(index, last); } size = last; } /** @return the channel with the same id as the one in the descriptor */ @SuppressWarnings("unchecked") public <T extends Channel> T getChannel (ChannelDescriptor descriptor) { for (Channel array : arrays) { if (array.id == descriptor.id) return (T)array; } return null; } /** Removes all the channels and sets size to 0 */ public void clear () { arrays.clear(); size = 0; } /** Sets the capacity. Each contained channel will be resized to match the required capacity and the current data will be * preserved. */ public void setCapacity (int requiredCapacity) { if (capacity != requiredCapacity) { for (Channel channel : arrays) { channel.setCapacity(requiredCapacity); } capacity = requiredCapacity; } } }
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.graphics.g3d.particles; import com.badlogic.gdx.utils.Array; import com.badlogic.gdx.utils.GdxRuntimeException; import com.badlogic.gdx.utils.reflect.ArrayReflection; /** This class represents an group of elements like an array, but the properties of the elements are stored as separate arrays. * These arrays are called {@link Channel} and are represented by {@link ChannelDescriptor}. It's not necessary to store primitive * types in the channels but doing so will "exploit" data locality in the JVM, which is ensured for primitive types. Use * {@link FloatChannel}, {@link IntChannel}, {@link ObjectChannel} to store the data. * @author inferno */ public class ParallelArray { /** This class describes the content of a {@link Channel} */ public static class ChannelDescriptor { public int id; public Class<?> type; public int count; public ChannelDescriptor (int id, Class<?> type, int count) { this.id = id; this.type = type; this.count = count; } } /** This class represents a container of values for all the elements for a given property */ public abstract class Channel { public int id; public Object data; public int strideSize; public Channel (int id, Object data, int strideSize) { this.id = id; this.strideSize = strideSize; this.data = data; } public abstract void add (int index, Object... objects); public abstract void swap (int i, int k); protected abstract void setCapacity (int requiredCapacity); } /** This interface is used to provide custom initialization of the {@link Channel} data */ public static interface ChannelInitializer<T extends Channel> { public void init (T channel); } public class FloatChannel extends Channel { public float[] data; public FloatChannel (int id, int strideSize, int size) { super(id, new float[size * strideSize], strideSize); this.data = (float[])super.data; } @Override public void add (int index, Object... objects) { for (int i = strideSize * size, c = i + strideSize, k = 0; i < c; ++i, ++k) { data[i] = (Float)objects[k]; } } @Override public void swap (int i, int k) { float t; i = strideSize * i; k = strideSize * k; for (int c = i + strideSize; i < c; ++i, ++k) { t = data[i]; data[i] = data[k]; data[k] = t; } } @Override public void setCapacity (int requiredCapacity) { float[] newData = new float[strideSize * requiredCapacity]; System.arraycopy(data, 0, newData, 0, Math.min(data.length, newData.length)); super.data = data = newData; } } public class IntChannel extends Channel { public int[] data; public IntChannel (int id, int strideSize, int size) { super(id, new int[size * strideSize], strideSize); this.data = (int[])super.data; } @Override public void add (int index, Object... objects) { for (int i = strideSize * size, c = i + strideSize, k = 0; i < c; ++i, ++k) { data[i] = (Integer)objects[k]; } } @Override public void swap (int i, int k) { int t; i = strideSize * i; k = strideSize * k; for (int c = i + strideSize; i < c; ++i, ++k) { t = data[i]; data[i] = data[k]; data[k] = t; } } @Override public void setCapacity (int requiredCapacity) { int[] newData = new int[strideSize * requiredCapacity]; System.arraycopy(data, 0, newData, 0, Math.min(data.length, newData.length)); super.data = data = newData; } } @SuppressWarnings("unchecked") public class ObjectChannel<T> extends Channel { Class<T> componentType; public T[] data; public ObjectChannel (int id, int strideSize, int size, Class<T> type) { super(id, ArrayReflection.newInstance(type, size * strideSize), strideSize); componentType = type; this.data = (T[])super.data; } @Override public void add (int index, Object... objects) { for (int i = strideSize * size, c = i + strideSize, k = 0; i < c; ++i, ++k) { this.data[i] = (T)objects[k]; } } @Override public void swap (int i, int k) { T t; i = strideSize * i; k = strideSize * k; for (int c = i + strideSize; i < c; ++i, ++k) { t = data[i]; data[i] = data[k]; data[k] = t; } } @Override public void setCapacity (int requiredCapacity) { T[] newData = (T[])ArrayReflection.newInstance(componentType, strideSize * requiredCapacity); System.arraycopy(data, 0, newData, 0, Math.min(data.length, newData.length)); super.data = data = newData; } } /** the channels added to the array */ Array<Channel> arrays; /** the maximum amount of elements that this array can hold */ public int capacity; /** the current amount of defined elements, do not change manually unless you know what you are doing. */ public int size; public ParallelArray (int capacity) { arrays = new Array<Channel>(false, 2, Channel.class); this.capacity = capacity; size = 0; } /** Adds and returns a channel described by the channel descriptor parameter. If a channel with the same id already exists, no * allocation is performed and that channel is returned. */ public <T extends Channel> T addChannel (ChannelDescriptor channelDescriptor) { return addChannel(channelDescriptor, null); } /** Adds and returns a channel described by the channel descriptor parameter. If a channel with the same id already exists, no * allocation is performed and that channel is returned. Otherwise a new channel is allocated and initialized with the * initializer. */ public <T extends Channel> T addChannel (ChannelDescriptor channelDescriptor, ChannelInitializer<T> initializer) { T channel = getChannel(channelDescriptor); if (channel == null) { channel = allocateChannel(channelDescriptor); if (initializer != null) initializer.init(channel); arrays.add(channel); } return channel; } @SuppressWarnings({"unchecked", "rawtypes"}) private <T extends Channel> T allocateChannel (ChannelDescriptor channelDescriptor) { if (channelDescriptor.type == float.class) { return (T)new FloatChannel(channelDescriptor.id, channelDescriptor.count, capacity); } else if (channelDescriptor.type == int.class) { return (T)new IntChannel(channelDescriptor.id, channelDescriptor.count, capacity); } else { return (T)new ObjectChannel(channelDescriptor.id, channelDescriptor.count, capacity, channelDescriptor.type); } } /** Removes the channel with the given id */ public <T> void removeArray (int id) { arrays.removeIndex(findIndex(id)); } private int findIndex (int id) { for (int i = 0; i < arrays.size; ++i) { Channel array = arrays.items[i]; if (array.id == id) return i; } return -1; } /** Adds an element considering the values in the same order as the current channels in the array. The n_th value must have the * same type and stride of the given channel at position n */ public void addElement (Object... values) { /* FIXME make it grow... */ if (size == capacity) throw new GdxRuntimeException("Capacity reached, cannot add other elements"); int k = 0; for (Channel strideArray : arrays) { strideArray.add(k, values); k += strideArray.strideSize; } ++size; } /** Removes the element at the given index and swaps it with the last available element */ public void removeElement (int index) { int last = size - 1; // Swap for (Channel strideArray : arrays) { strideArray.swap(index, last); } size = last; } /** @return the channel with the same id as the one in the descriptor */ @SuppressWarnings("unchecked") public <T extends Channel> T getChannel (ChannelDescriptor descriptor) { for (Channel array : arrays) { if (array.id == descriptor.id) return (T)array; } return null; } /** Removes all the channels and sets size to 0 */ public void clear () { arrays.clear(); size = 0; } /** Sets the capacity. Each contained channel will be resized to match the required capacity and the current data will be * preserved. */ public void setCapacity (int requiredCapacity) { if (capacity != requiredCapacity) { for (Channel channel : arrays) { channel.setCapacity(requiredCapacity); } capacity = requiredCapacity; } } }
-1
libgdx/libgdx
7,309
Use empty Audio implementations on Android and iOS when audio is disabled
Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
obigu
"2023-12-27T22:37:18Z"
"2023-12-28T19:29:00Z"
2b691f735f4b167c062f8f68186a6d7237d3d855
7f682a7921a47f0da858508f6b6fd58426dd05d7
Use empty Audio implementations on Android and iOS when audio is disabled. Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
./tests/gdx-tests-android/assets/data/tic_long.ogg
OggS0t0dBvorbisDwOggS0tL;vorbis+Xiph.Org libVorbis I 20120203 (Omnipresent)vorbis)BCV1L ŀАU`$)fI)(yHI)0c1c1c 4d( Ij9g'r9iN8 Q9 &cnkn)% Y@H!RH!b!b!r!r * 2 L2餓N:騣:(B -JL1Vc]|s9s9s BCV BdB!R)r 2ȀАU GI˱$O,Q53ESTMUUUUu]Wvevuv}Y[}Y[؅]aaaa}}} 4d #9)"9d ")Ifjihm˲,˲ iiiiiiifYeYeYeYeYeYeYeYeYeYeYeYeY@h*@@qq$ER$r, Y@R,r4Gs4s<s<GtDɔLL Y@1q$OR-r5Ws=sMu]WUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUАU!fj3a 4dC  Y К9堩T's9ls)ʙŠКsI КsyҚsasiҚXsYК樹sΉ'Ts9s9sΩ^9sΉڛk ]sd s9s9s BCV@aƝ }b!!t1)FJPR'tАU RH!RH!RH!b!r **(2,2ˬ:C 1J,5Vcs9HkZ+RJ) 4d@ dARH!r)  Y$Q%Q%2-S3=UTUWvmYu۷]u}׍_eYeYeYeYeYe BCV B!RH!b1ǜNB АU GqǑɑ$K$M,4O4EQ4MS]ueS6]5eUeveٶe[}Y}}}}}u 4d #9")"9Hd(8#I$Y&yg驢 h爎(ilʮ뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮@h*@@Gr$Gr$ER$Er$ Y1CR$Dz,M4O4=3=UtE Y K$QR-R5R-UT=UUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUU4M4А#ArBn=X1$93 9 "tA'=9 R(DL%7 ¦\I8BCVQ11rIɠD1 9'I)-3)%c㜣IɤKc А@b R )R)R1RJ9S91)S)A圃A(  B(4dE'p$ϓ4K%KEeMו445QTUUTUMU%MMMTUEUUӖMUm4eTUUնe~Wu3MYUMUuז}_m]445QTUMUTU6U׶5QtUQUeYTUYveYUW}KUSMUUUmU}tU]WeUY~[ׅ}UMuU}aeau(iij(m[誢ʲgʲl(,,,붨ʲ ,p,뺭q0|)˦꺩nq̶m*°ʲ/u!QUuݔ]WeYm_w[m;q9omn+?a8gmn+ìBQU}]e7]Yn7[׍*˾ʲ1o0]6[ם }c kq:u Ǐ@!+8!S* tR T1!sNJPJj!* TIȜJh)RPJkRkb Ji-ZjZc2dI Ji-sNJ砤BJKJ-VIɠAHSIPJkKJ1[n1Ji-[I)Sm-ƚ# dIɜJi-Z嘔BJJJR̜AHJI)JLJJRZl1֜Rl5ZI)ƒJl-Z[LuZ JiVkjPJk%KJkn1Ji[I[-ƚSk5jn1[m=֚sJR-ƚcm՚{ Ji-bj-bJ*Zl1Z9bIŒR-ƚ[ljl1Rsl5Z-ƚSKZsV@ eА@ARIir9* B9'rLB))UA%9))9%K*-Vk))k- M Y D c"sNJcIsB*cA()PJ*)JI% lДXА@` b 1 tT2*LJ'Z uRkZj@2K%ZfĘZ+B(4d%@c9gb941*ƜBcA!9!BBBA!RJ B)tBR *pQdsBCVy1J9F) RcJIr B))V9Z Zl5vJi-ZCJXk!b5ZkJ-Zk͹E6' *4d% c1b1C)Řs)s9b9s1s9Ƙs9s9s9s9s9s9s *pQdsBCVVb11c1Fb1cl1c1Ƙb1c1c1c1c1c1c1c1c1c1c1[kZkZkZk@ VG8) ,4d%Øs9)褄BCJ9(%PJ))sNJJZJsRR*%R ZJ-Z%Rj:ZkAH)Z-PJJb5RRjb1Rl-cZk1k-)bZkIb5Z npHqBCV!B9sB!R1砃B!DJ1tB!1砃B!1tB!:BRJtB!PB BRJ)B(RJ)%B RJ)BJ)BRJ)B!RJ)RBPJ)RJ!RJ)RJ !PJ)RJ)!J)RJ)#$"l4PhJ qj) ŜKrb.R9GeHՔ1SRkbQOcJ1ìVJ(rv 0!3@)1\2 DŽsi X b:X\` 2]u !nx O :E ""9$f$Dd%OggSV=0tk2-*0026 С'?` =2I/P'Pbbjj0 󃡘 <^>;n&{C6q4|ڗ))1 $>%5$Iyt :s5aukV$vm<fB5Uo*V\/{D;0|E4L;3hRAL h? M@ ޛ=Ѩ%$i.:v &|KWq}\ ",F0# ڶ-YOjX&%.PZW0$t5:?\Dm>`~^  p>.C..vvV  A!F+m6~EMzIG9l:r%'[6 '}>xyO6+9t5eDB|mJ\9`7P6TC ExQb]#Ak9nSX}apW^"y=lR^΢L, 
OggS0t0dBvorbisDwOggS0tL;vorbis+Xiph.Org libVorbis I 20120203 (Omnipresent)vorbis)BCV1L ŀАU`$)fI)(yHI)0c1c1c 4d( Ij9g'r9iN8 Q9 &cnkn)% Y@H!RH!b!b!r!r * 2 L2餓N:騣:(B -JL1Vc]|s9s9s BCV BdB!R)r 2ȀАU GI˱$O,Q53ESTMUUUUu]Wvevuv}Y[}Y[؅]aaaa}}} 4d #9)"9d ")Ifjihm˲,˲ iiiiiiifYeYeYeYeYeYeYeYeYeYeYeYeY@h*@@qq$ER$r, Y@R,r4Gs4s<s<GtDɔLL Y@1q$OR-r5Ws=sMu]WUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUАU!fj3a 4dC  Y К9堩T's9ls)ʙŠКsI КsyҚsasiҚXsYК樹sΉ'Ts9s9sΩ^9sΉڛk ]sd s9s9s BCV@aƝ }b!!t1)FJPR'tАU RH!RH!RH!b!r **(2,2ˬ:C 1J,5Vcs9HkZ+RJ) 4d@ dARH!r)  Y$Q%Q%2-S3=UTUWvmYu۷]u}׍_eYeYeYeYeYe BCV B!RH!b1ǜNB АU GqǑɑ$K$M,4O4EQ4MS]ueS6]5eUeveٶe[}Y}}}}}u 4d #9")"9Hd(8#I$Y&yg驢 h爎(ilʮ뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮뺮@h*@@Gr$Gr$ER$Er$ Y1CR$Dz,M4O4=3=UtE Y K$QR-R5R-UT=UUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUU4M4А#ArBn=X1$93 9 "tA'=9 R(DL%7 ¦\I8BCVQ11rIɠD1 9'I)-3)%c㜣IɤKc А@b R )R)R1RJ9S91)S)A圃A(  B(4dE'p$ϓ4K%KEeMו445QTUUTUMU%MMMTUEUUӖMUm4eTUUնe~Wu3MYUMUuז}_m]445QTUMUTU6U׶5QtUQUeYTUYveYUW}KUSMUUUmU}tU]WeUY~[ׅ}UMuU}aeau(iij(m[誢ʲgʲl(,,,붨ʲ ,p,뺭q0|)˦꺩nq̶m*°ʲ/u!QUuݔ]WeYm_w[m;q9omn+?a8gmn+ìBQU}]e7]Yn7[׍*˾ʲ1o0]6[ם }c kq:u Ǐ@!+8!S* tR T1!sNJPJj!* TIȜJh)RPJkRkb Ji-ZjZc2dI Ji-sNJ砤BJKJ-VIɠAHSIPJkKJ1[n1Ji-[I)Sm-ƚ# dIɜJi-Z嘔BJJJR̜AHJI)JLJJRZl1֜Rl5ZI)ƒJl-Z[LuZ JiVkjPJk%KJkn1Ji[I[-ƚSk5jn1[m=֚sJR-ƚcm՚{ Ji-bj-bJ*Zl1Z9bIŒR-ƚ[ljl1Rsl5Z-ƚSKZsV@ eА@ARIir9* B9'rLB))UA%9))9%K*-Vk))k- M Y D c"sNJcIsB*cA()PJ*)JI% lДXА@` b 1 tT2*LJ'Z uRkZj@2K%ZfĘZ+B(4d%@c9gb941*ƜBcA!9!BBBA!RJ B)tBR *pQdsBCVy1J9F) RcJIr B))V9Z Zl5vJi-ZCJXk!b5ZkJ-Zk͹E6' *4d% c1b1C)Řs)s9b9s1s9Ƙs9s9s9s9s9s9s *pQdsBCVVb11c1Fb1cl1c1Ƙb1c1c1c1c1c1c1c1c1c1c1[kZkZkZk@ VG8) ,4d%Øs9)褄BCJ9(%PJ))sNJJZJsRR*%R ZJ-Z%Rj:ZkAH)Z-PJJb5RRjb1Rl-cZk1k-)bZkIb5Z npHqBCV!B9sB!R1砃B!DJ1tB!1砃B!1tB!:BRJtB!PB BRJ)B(RJ)%B RJ)BJ)BRJ)B!RJ)RBPJ)RJ!RJ)RJ !PJ)RJ)!J)RJ)#$"l4PhJ qj) ŜKrb.R9GeHՔ1SRkbQOcJ1ìVJ(rv 0!3@)1\2 DŽsi X b:X\` 2]u !nx O :E ""9$f$Dd%OggSV=0tk2-*0026 С'?` =2I/P'Pbbjj0 󃡘 <^>;n&{C6q4|ڗ))1 $>%5$Iyt :s5aukV$vm<fB5Uo*V\/{D;0|E4L;3hRAL h? M@ ޛ=Ѩ%$i.:v &|KWq}\ ",F0# ڶ-YOjX&%.PZW0$t5:?\Dm>`~^  p>.C..vvV  A!F+m6~EMzIG9l:r%'[6 '}>xyO6+9t5eDB|mJ\9`7P6TC ExQb]#Ak9nSX}apW^"y=lR^΢L, 
-1
libgdx/libgdx
7,309
Use empty Audio implementations on Android and iOS when audio is disabled
Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
obigu
"2023-12-27T22:37:18Z"
"2023-12-28T19:29:00Z"
2b691f735f4b167c062f8f68186a6d7237d3d855
7f682a7921a47f0da858508f6b6fd58426dd05d7
Use empty Audio implementations on Android and iOS when audio is disabled. Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
./extensions/gdx-setup/res/com/badlogic/gdx/setup/resources/android/res/values/styles.xml
<?xml version="1.0" encoding="utf-8"?> <resources> <style name="AppTheme" parent="android:Theme.Holo.Light.NoActionBar.Fullscreen"> <item name="android:windowBackground">@color/ic_background_color</item> </style> </resources>
<?xml version="1.0" encoding="utf-8"?> <resources> <style name="AppTheme" parent="android:Theme.Holo.Light.NoActionBar.Fullscreen"> <item name="android:windowBackground">@color/ic_background_color</item> </style> </resources>
-1
libgdx/libgdx
7,309
Use empty Audio implementations on Android and iOS when audio is disabled
Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
obigu
"2023-12-27T22:37:18Z"
"2023-12-28T19:29:00Z"
2b691f735f4b167c062f8f68186a6d7237d3d855
7f682a7921a47f0da858508f6b6fd58426dd05d7
Use empty Audio implementations on Android and iOS when audio is disabled. Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
./backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/com/badlogic/gdx/utils/async/AsyncExecutor.java
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.utils.async; import com.badlogic.gdx.utils.Disposable; import com.badlogic.gdx.utils.GdxRuntimeException; /** GWT emulation of AsynchExecutor, will call tasks immediately :D * @author badlogic */ public class AsyncExecutor implements Disposable { /** Creates a new AsynchExecutor with the name "AsynchExecutor-Thread". */ public AsyncExecutor (int maxConcurrent) { } /** Creates a new AsynchExecutor that allows maxConcurrent {@link Runnable} instances to run in parallel. * @param maxConcurrent * @param name The name of the threads. */ public AsyncExecutor (int maxConcurrent, String name) { } /** Submits a {@link Runnable} to be executed asynchronously. If maxConcurrent runnables are already running, the runnable will * be queued. * @param task the task to execute asynchronously */ public <T> AsyncResult<T> submit (final AsyncTask<T> task) { T result = null; try { result = task.call(); } catch (Throwable t) { throw new GdxRuntimeException("Could not submit AsyncTask: " + t.getMessage(), t); } return new AsyncResult(result); } /** Waits for running {@link AsyncTask} instances to finish, then destroys any resources like threads. Can not be used after * this method is called. */ @Override public void dispose () { } }
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.utils.async; import com.badlogic.gdx.utils.Disposable; import com.badlogic.gdx.utils.GdxRuntimeException; /** GWT emulation of AsynchExecutor, will call tasks immediately :D * @author badlogic */ public class AsyncExecutor implements Disposable { /** Creates a new AsynchExecutor with the name "AsynchExecutor-Thread". */ public AsyncExecutor (int maxConcurrent) { } /** Creates a new AsynchExecutor that allows maxConcurrent {@link Runnable} instances to run in parallel. * @param maxConcurrent * @param name The name of the threads. */ public AsyncExecutor (int maxConcurrent, String name) { } /** Submits a {@link Runnable} to be executed asynchronously. If maxConcurrent runnables are already running, the runnable will * be queued. * @param task the task to execute asynchronously */ public <T> AsyncResult<T> submit (final AsyncTask<T> task) { T result = null; try { result = task.call(); } catch (Throwable t) { throw new GdxRuntimeException("Could not submit AsyncTask: " + t.getMessage(), t); } return new AsyncResult(result); } /** Waits for running {@link AsyncTask} instances to finish, then destroys any resources like threads. Can not be used after * this method is called. */ @Override public void dispose () { } }
-1
libgdx/libgdx
7,309
Use empty Audio implementations on Android and iOS when audio is disabled
Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
obigu
"2023-12-27T22:37:18Z"
"2023-12-28T19:29:00Z"
2b691f735f4b167c062f8f68186a6d7237d3d855
7f682a7921a47f0da858508f6b6fd58426dd05d7
Use empty Audio implementations on Android and iOS when audio is disabled. Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
./extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/pooling/normal/CircleStack.java
/******************************************************************************* * Copyright (c) 2013, Daniel Murphy * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. * IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. ******************************************************************************/ package org.jbox2d.pooling.normal; import org.jbox2d.pooling.IOrderedStack; public abstract class CircleStack<E> implements IOrderedStack<E> { private final Object[] pool; private int index; private final int size; private final Object[] container; public CircleStack (int argStackSize, int argContainerSize) { size = argStackSize; pool = new Object[argStackSize]; for (int i = 0; i < argStackSize; i++) { pool[i] = newInstance(); } index = 0; container = new Object[argContainerSize]; } @SuppressWarnings("unchecked") public final E pop () { index++; if (index >= size) { index = 0; } return (E)pool[index]; } @SuppressWarnings("unchecked") public final E[] pop (int argNum) { assert (argNum <= container.length) : "Container array is too small"; if (index + argNum < size) { System.arraycopy(pool, index, container, 0, argNum); index += argNum; } else { int overlap = (index + argNum) - size; System.arraycopy(pool, index, container, 0, argNum - overlap); System.arraycopy(pool, 0, container, argNum - overlap, overlap); index = overlap; } return (E[])container; } @Override public void push (int argNum) { } /** Creates a new instance of the object contained by this stack. */ protected abstract E newInstance (); }
/******************************************************************************* * Copyright (c) 2013, Daniel Murphy * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. * IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. ******************************************************************************/ package org.jbox2d.pooling.normal; import org.jbox2d.pooling.IOrderedStack; public abstract class CircleStack<E> implements IOrderedStack<E> { private final Object[] pool; private int index; private final int size; private final Object[] container; public CircleStack (int argStackSize, int argContainerSize) { size = argStackSize; pool = new Object[argStackSize]; for (int i = 0; i < argStackSize; i++) { pool[i] = newInstance(); } index = 0; container = new Object[argContainerSize]; } @SuppressWarnings("unchecked") public final E pop () { index++; if (index >= size) { index = 0; } return (E)pool[index]; } @SuppressWarnings("unchecked") public final E[] pop (int argNum) { assert (argNum <= container.length) : "Container array is too small"; if (index + argNum < size) { System.arraycopy(pool, index, container, 0, argNum); index += argNum; } else { int overlap = (index + argNum) - size; System.arraycopy(pool, index, container, 0, argNum - overlap); System.arraycopy(pool, 0, container, argNum - overlap, overlap); index = overlap; } return (E[])container; } @Override public void push (int argNum) { } /** Creates a new instance of the object contained by this stack. */ protected abstract E newInstance (); }
-1
libgdx/libgdx
7,309
Use empty Audio implementations on Android and iOS when audio is disabled
Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
obigu
"2023-12-27T22:37:18Z"
"2023-12-28T19:29:00Z"
2b691f735f4b167c062f8f68186a6d7237d3d855
7f682a7921a47f0da858508f6b6fd58426dd05d7
Use empty Audio implementations on Android and iOS when audio is disabled. Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
./extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/com/badlogic/gdx/physics/box2d/joints/MotorJointDef.java
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.physics.box2d.joints; import com.badlogic.gdx.math.Vector2; import com.badlogic.gdx.physics.box2d.Body; import com.badlogic.gdx.physics.box2d.JointDef; public class MotorJointDef extends JointDef { public MotorJointDef () { type = JointType.MotorJoint; } /** Initialize the bodies and offsets using the current transforms. */ public void initialize (Body body1, Body body2) { this.bodyA = body1; this.bodyB = body2; this.linearOffset.set(bodyA.getLocalPoint(bodyB.getPosition())); this.angularOffset = bodyB.getAngle() - bodyA.getAngle(); } /** Position of bodyB minus the position of bodyA, in bodyA's frame, in meters. */ public final Vector2 linearOffset = new Vector2(); /** The bodyB angle minus bodyA angle in radians. */ public float angularOffset = 0.0f; /** The maximum motor force in N. */ public float maxForce = 1.0f; /** The maximum motor torque in N-m. */ public float maxTorque = 1.0f; /** Position correction factor in the range [0,1]. */ public float correctionFactor = 0.3f; @Override public org.jbox2d.dynamics.joints.JointDef toJBox2d () { org.jbox2d.dynamics.joints.MotorJointDef jd = new org.jbox2d.dynamics.joints.MotorJointDef(); jd.bodyA = bodyA.body; jd.bodyB = bodyB.body; jd.collideConnected = collideConnected; jd.linearOffset.set(linearOffset.x, linearOffset.y); jd.angularOffset = angularOffset; jd.maxForce = maxForce; jd.maxTorque = maxTorque; jd.type = org.jbox2d.dynamics.joints.JointType.MOTOR; return jd; } }
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.physics.box2d.joints; import com.badlogic.gdx.math.Vector2; import com.badlogic.gdx.physics.box2d.Body; import com.badlogic.gdx.physics.box2d.JointDef; public class MotorJointDef extends JointDef { public MotorJointDef () { type = JointType.MotorJoint; } /** Initialize the bodies and offsets using the current transforms. */ public void initialize (Body body1, Body body2) { this.bodyA = body1; this.bodyB = body2; this.linearOffset.set(bodyA.getLocalPoint(bodyB.getPosition())); this.angularOffset = bodyB.getAngle() - bodyA.getAngle(); } /** Position of bodyB minus the position of bodyA, in bodyA's frame, in meters. */ public final Vector2 linearOffset = new Vector2(); /** The bodyB angle minus bodyA angle in radians. */ public float angularOffset = 0.0f; /** The maximum motor force in N. */ public float maxForce = 1.0f; /** The maximum motor torque in N-m. */ public float maxTorque = 1.0f; /** Position correction factor in the range [0,1]. */ public float correctionFactor = 0.3f; @Override public org.jbox2d.dynamics.joints.JointDef toJBox2d () { org.jbox2d.dynamics.joints.MotorJointDef jd = new org.jbox2d.dynamics.joints.MotorJointDef(); jd.bodyA = bodyA.body; jd.bodyB = bodyB.body; jd.collideConnected = collideConnected; jd.linearOffset.set(linearOffset.x, linearOffset.y); jd.angularOffset = angularOffset; jd.maxForce = maxForce; jd.maxTorque = maxTorque; jd.type = org.jbox2d.dynamics.joints.JointType.MOTOR; return jd; } }
-1
libgdx/libgdx
7,309
Use empty Audio implementations on Android and iOS when audio is disabled
Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
obigu
"2023-12-27T22:37:18Z"
"2023-12-28T19:29:00Z"
2b691f735f4b167c062f8f68186a6d7237d3d855
7f682a7921a47f0da858508f6b6fd58426dd05d7
Use empty Audio implementations on Android and iOS when audio is disabled. Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
./extensions/gdx-bullet/jni/src/bullet/BulletCollision/NarrowPhaseCollision/btMinkowskiPenetrationDepthSolver.cpp
/* Bullet Continuous Collision Detection and Physics Library Copyright (c) 2003-2006 Erwin Coumans http://continuousphysics.com/Bullet/ This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. */ #include "btMinkowskiPenetrationDepthSolver.h" #include "BulletCollision/NarrowPhaseCollision/btSubSimplexConvexCast.h" #include "BulletCollision/NarrowPhaseCollision/btVoronoiSimplexSolver.h" #include "BulletCollision/NarrowPhaseCollision/btGjkPairDetector.h" #include "BulletCollision/CollisionShapes/btConvexShape.h" #define NUM_UNITSPHERE_POINTS 42 bool btMinkowskiPenetrationDepthSolver::calcPenDepth(btSimplexSolverInterface& simplexSolver, const btConvexShape* convexA,const btConvexShape* convexB, const btTransform& transA,const btTransform& transB, btVector3& v, btVector3& pa, btVector3& pb, class btIDebugDraw* debugDraw ) { (void)v; bool check2d= convexA->isConvex2d() && convexB->isConvex2d(); struct btIntermediateResult : public btDiscreteCollisionDetectorInterface::Result { btIntermediateResult():m_hasResult(false) { } btVector3 m_normalOnBInWorld; btVector3 m_pointInWorld; btScalar m_depth; bool m_hasResult; virtual void setShapeIdentifiersA(int partId0,int index0) { (void)partId0; (void)index0; } virtual void setShapeIdentifiersB(int partId1,int index1) { (void)partId1; (void)index1; } void addContactPoint(const btVector3& normalOnBInWorld,const btVector3& pointInWorld,btScalar depth) { m_normalOnBInWorld = normalOnBInWorld; m_pointInWorld = pointInWorld; m_depth = depth; m_hasResult = true; } }; //just take fixed number of orientation, and sample the penetration depth in that direction btScalar minProj = btScalar(BT_LARGE_FLOAT); btVector3 minNorm(btScalar(0.), btScalar(0.), btScalar(0.)); btVector3 minA,minB; btVector3 seperatingAxisInA,seperatingAxisInB; btVector3 pInA,qInB,pWorld,qWorld,w; #ifndef __SPU__ #define USE_BATCHED_SUPPORT 1 #endif #ifdef USE_BATCHED_SUPPORT btVector3 supportVerticesABatch[NUM_UNITSPHERE_POINTS+MAX_PREFERRED_PENETRATION_DIRECTIONS*2]; btVector3 supportVerticesBBatch[NUM_UNITSPHERE_POINTS+MAX_PREFERRED_PENETRATION_DIRECTIONS*2]; btVector3 seperatingAxisInABatch[NUM_UNITSPHERE_POINTS+MAX_PREFERRED_PENETRATION_DIRECTIONS*2]; btVector3 seperatingAxisInBBatch[NUM_UNITSPHERE_POINTS+MAX_PREFERRED_PENETRATION_DIRECTIONS*2]; int i; int numSampleDirections = NUM_UNITSPHERE_POINTS; for (i=0;i<numSampleDirections;i++) { btVector3 norm = getPenetrationDirections()[i]; seperatingAxisInABatch[i] = (-norm) * transA.getBasis() ; seperatingAxisInBBatch[i] = norm * transB.getBasis() ; } { int numPDA = convexA->getNumPreferredPenetrationDirections(); if (numPDA) { for (int i=0;i<numPDA;i++) { btVector3 norm; convexA->getPreferredPenetrationDirection(i,norm); norm = transA.getBasis() * norm; getPenetrationDirections()[numSampleDirections] = norm; seperatingAxisInABatch[numSampleDirections] = (-norm) * transA.getBasis(); seperatingAxisInBBatch[numSampleDirections] = norm * transB.getBasis(); numSampleDirections++; } } } { int numPDB = convexB->getNumPreferredPenetrationDirections(); if (numPDB) { for (int i=0;i<numPDB;i++) { btVector3 norm; convexB->getPreferredPenetrationDirection(i,norm); norm = transB.getBasis() * norm; getPenetrationDirections()[numSampleDirections] = norm; seperatingAxisInABatch[numSampleDirections] = (-norm) * transA.getBasis(); seperatingAxisInBBatch[numSampleDirections] = norm * transB.getBasis(); numSampleDirections++; } } } convexA->batchedUnitVectorGetSupportingVertexWithoutMargin(seperatingAxisInABatch,supportVerticesABatch,numSampleDirections); convexB->batchedUnitVectorGetSupportingVertexWithoutMargin(seperatingAxisInBBatch,supportVerticesBBatch,numSampleDirections); for (i=0;i<numSampleDirections;i++) { btVector3 norm = getPenetrationDirections()[i]; if (check2d) { norm[2] = 0.f; } if (norm.length2()>0.01) { seperatingAxisInA = seperatingAxisInABatch[i]; seperatingAxisInB = seperatingAxisInBBatch[i]; pInA = supportVerticesABatch[i]; qInB = supportVerticesBBatch[i]; pWorld = transA(pInA); qWorld = transB(qInB); if (check2d) { pWorld[2] = 0.f; qWorld[2] = 0.f; } w = qWorld - pWorld; btScalar delta = norm.dot(w); //find smallest delta if (delta < minProj) { minProj = delta; minNorm = norm; minA = pWorld; minB = qWorld; } } } #else int numSampleDirections = NUM_UNITSPHERE_POINTS; #ifndef __SPU__ { int numPDA = convexA->getNumPreferredPenetrationDirections(); if (numPDA) { for (int i=0;i<numPDA;i++) { btVector3 norm; convexA->getPreferredPenetrationDirection(i,norm); norm = transA.getBasis() * norm; getPenetrationDirections()[numSampleDirections] = norm; numSampleDirections++; } } } { int numPDB = convexB->getNumPreferredPenetrationDirections(); if (numPDB) { for (int i=0;i<numPDB;i++) { btVector3 norm; convexB->getPreferredPenetrationDirection(i,norm); norm = transB.getBasis() * norm; getPenetrationDirections()[numSampleDirections] = norm; numSampleDirections++; } } } #endif // __SPU__ for (int i=0;i<numSampleDirections;i++) { const btVector3& norm = getPenetrationDirections()[i]; seperatingAxisInA = (-norm)* transA.getBasis(); seperatingAxisInB = norm* transB.getBasis(); pInA = convexA->localGetSupportVertexWithoutMarginNonVirtual(seperatingAxisInA); qInB = convexB->localGetSupportVertexWithoutMarginNonVirtual(seperatingAxisInB); pWorld = transA(pInA); qWorld = transB(qInB); w = qWorld - pWorld; btScalar delta = norm.dot(w); //find smallest delta if (delta < minProj) { minProj = delta; minNorm = norm; minA = pWorld; minB = qWorld; } } #endif //USE_BATCHED_SUPPORT //add the margins minA += minNorm*convexA->getMarginNonVirtual(); minB -= minNorm*convexB->getMarginNonVirtual(); //no penetration if (minProj < btScalar(0.)) return false; btScalar extraSeparation = 0.5f;///scale dependent minProj += extraSeparation+(convexA->getMarginNonVirtual() + convexB->getMarginNonVirtual()); //#define DEBUG_DRAW 1 #ifdef DEBUG_DRAW if (debugDraw) { btVector3 color(0,1,0); debugDraw->drawLine(minA,minB,color); color = btVector3 (1,1,1); btVector3 vec = minB-minA; btScalar prj2 = minNorm.dot(vec); debugDraw->drawLine(minA,minA+(minNorm*minProj),color); } #endif //DEBUG_DRAW btGjkPairDetector gjkdet(convexA,convexB,&simplexSolver,0); btScalar offsetDist = minProj; btVector3 offset = minNorm * offsetDist; btGjkPairDetector::ClosestPointInput input; btVector3 newOrg = transA.getOrigin() + offset; btTransform displacedTrans = transA; displacedTrans.setOrigin(newOrg); input.m_transformA = displacedTrans; input.m_transformB = transB; input.m_maximumDistanceSquared = btScalar(BT_LARGE_FLOAT);//minProj; btIntermediateResult res; gjkdet.setCachedSeperatingAxis(-minNorm); gjkdet.getClosestPoints(input,res,debugDraw); btScalar correctedMinNorm = minProj - res.m_depth; //the penetration depth is over-estimated, relax it btScalar penetration_relaxation= btScalar(1.); minNorm*=penetration_relaxation; if (res.m_hasResult) { pa = res.m_pointInWorld - minNorm * correctedMinNorm; pb = res.m_pointInWorld; v = minNorm; #ifdef DEBUG_DRAW if (debugDraw) { btVector3 color(1,0,0); debugDraw->drawLine(pa,pb,color); } #endif//DEBUG_DRAW } return res.m_hasResult; } btVector3* btMinkowskiPenetrationDepthSolver::getPenetrationDirections() { static btVector3 sPenetrationDirections[NUM_UNITSPHERE_POINTS+MAX_PREFERRED_PENETRATION_DIRECTIONS*2] = { btVector3(btScalar(0.000000) , btScalar(-0.000000),btScalar(-1.000000)), btVector3(btScalar(0.723608) , btScalar(-0.525725),btScalar(-0.447219)), btVector3(btScalar(-0.276388) , btScalar(-0.850649),btScalar(-0.447219)), btVector3(btScalar(-0.894426) , btScalar(-0.000000),btScalar(-0.447216)), btVector3(btScalar(-0.276388) , btScalar(0.850649),btScalar(-0.447220)), btVector3(btScalar(0.723608) , btScalar(0.525725),btScalar(-0.447219)), btVector3(btScalar(0.276388) , btScalar(-0.850649),btScalar(0.447220)), btVector3(btScalar(-0.723608) , btScalar(-0.525725),btScalar(0.447219)), btVector3(btScalar(-0.723608) , btScalar(0.525725),btScalar(0.447219)), btVector3(btScalar(0.276388) , btScalar(0.850649),btScalar(0.447219)), btVector3(btScalar(0.894426) , btScalar(0.000000),btScalar(0.447216)), btVector3(btScalar(-0.000000) , btScalar(0.000000),btScalar(1.000000)), btVector3(btScalar(0.425323) , btScalar(-0.309011),btScalar(-0.850654)), btVector3(btScalar(-0.162456) , btScalar(-0.499995),btScalar(-0.850654)), btVector3(btScalar(0.262869) , btScalar(-0.809012),btScalar(-0.525738)), btVector3(btScalar(0.425323) , btScalar(0.309011),btScalar(-0.850654)), btVector3(btScalar(0.850648) , btScalar(-0.000000),btScalar(-0.525736)), btVector3(btScalar(-0.525730) , btScalar(-0.000000),btScalar(-0.850652)), btVector3(btScalar(-0.688190) , btScalar(-0.499997),btScalar(-0.525736)), btVector3(btScalar(-0.162456) , btScalar(0.499995),btScalar(-0.850654)), btVector3(btScalar(-0.688190) , btScalar(0.499997),btScalar(-0.525736)), btVector3(btScalar(0.262869) , btScalar(0.809012),btScalar(-0.525738)), btVector3(btScalar(0.951058) , btScalar(0.309013),btScalar(0.000000)), btVector3(btScalar(0.951058) , btScalar(-0.309013),btScalar(0.000000)), btVector3(btScalar(0.587786) , btScalar(-0.809017),btScalar(0.000000)), btVector3(btScalar(0.000000) , btScalar(-1.000000),btScalar(0.000000)), btVector3(btScalar(-0.587786) , btScalar(-0.809017),btScalar(0.000000)), btVector3(btScalar(-0.951058) , btScalar(-0.309013),btScalar(-0.000000)), btVector3(btScalar(-0.951058) , btScalar(0.309013),btScalar(-0.000000)), btVector3(btScalar(-0.587786) , btScalar(0.809017),btScalar(-0.000000)), btVector3(btScalar(-0.000000) , btScalar(1.000000),btScalar(-0.000000)), btVector3(btScalar(0.587786) , btScalar(0.809017),btScalar(-0.000000)), btVector3(btScalar(0.688190) , btScalar(-0.499997),btScalar(0.525736)), btVector3(btScalar(-0.262869) , btScalar(-0.809012),btScalar(0.525738)), btVector3(btScalar(-0.850648) , btScalar(0.000000),btScalar(0.525736)), btVector3(btScalar(-0.262869) , btScalar(0.809012),btScalar(0.525738)), btVector3(btScalar(0.688190) , btScalar(0.499997),btScalar(0.525736)), btVector3(btScalar(0.525730) , btScalar(0.000000),btScalar(0.850652)), btVector3(btScalar(0.162456) , btScalar(-0.499995),btScalar(0.850654)), btVector3(btScalar(-0.425323) , btScalar(-0.309011),btScalar(0.850654)), btVector3(btScalar(-0.425323) , btScalar(0.309011),btScalar(0.850654)), btVector3(btScalar(0.162456) , btScalar(0.499995),btScalar(0.850654)) }; return sPenetrationDirections; }
/* Bullet Continuous Collision Detection and Physics Library Copyright (c) 2003-2006 Erwin Coumans http://continuousphysics.com/Bullet/ This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. */ #include "btMinkowskiPenetrationDepthSolver.h" #include "BulletCollision/NarrowPhaseCollision/btSubSimplexConvexCast.h" #include "BulletCollision/NarrowPhaseCollision/btVoronoiSimplexSolver.h" #include "BulletCollision/NarrowPhaseCollision/btGjkPairDetector.h" #include "BulletCollision/CollisionShapes/btConvexShape.h" #define NUM_UNITSPHERE_POINTS 42 bool btMinkowskiPenetrationDepthSolver::calcPenDepth(btSimplexSolverInterface& simplexSolver, const btConvexShape* convexA,const btConvexShape* convexB, const btTransform& transA,const btTransform& transB, btVector3& v, btVector3& pa, btVector3& pb, class btIDebugDraw* debugDraw ) { (void)v; bool check2d= convexA->isConvex2d() && convexB->isConvex2d(); struct btIntermediateResult : public btDiscreteCollisionDetectorInterface::Result { btIntermediateResult():m_hasResult(false) { } btVector3 m_normalOnBInWorld; btVector3 m_pointInWorld; btScalar m_depth; bool m_hasResult; virtual void setShapeIdentifiersA(int partId0,int index0) { (void)partId0; (void)index0; } virtual void setShapeIdentifiersB(int partId1,int index1) { (void)partId1; (void)index1; } void addContactPoint(const btVector3& normalOnBInWorld,const btVector3& pointInWorld,btScalar depth) { m_normalOnBInWorld = normalOnBInWorld; m_pointInWorld = pointInWorld; m_depth = depth; m_hasResult = true; } }; //just take fixed number of orientation, and sample the penetration depth in that direction btScalar minProj = btScalar(BT_LARGE_FLOAT); btVector3 minNorm(btScalar(0.), btScalar(0.), btScalar(0.)); btVector3 minA,minB; btVector3 seperatingAxisInA,seperatingAxisInB; btVector3 pInA,qInB,pWorld,qWorld,w; #ifndef __SPU__ #define USE_BATCHED_SUPPORT 1 #endif #ifdef USE_BATCHED_SUPPORT btVector3 supportVerticesABatch[NUM_UNITSPHERE_POINTS+MAX_PREFERRED_PENETRATION_DIRECTIONS*2]; btVector3 supportVerticesBBatch[NUM_UNITSPHERE_POINTS+MAX_PREFERRED_PENETRATION_DIRECTIONS*2]; btVector3 seperatingAxisInABatch[NUM_UNITSPHERE_POINTS+MAX_PREFERRED_PENETRATION_DIRECTIONS*2]; btVector3 seperatingAxisInBBatch[NUM_UNITSPHERE_POINTS+MAX_PREFERRED_PENETRATION_DIRECTIONS*2]; int i; int numSampleDirections = NUM_UNITSPHERE_POINTS; for (i=0;i<numSampleDirections;i++) { btVector3 norm = getPenetrationDirections()[i]; seperatingAxisInABatch[i] = (-norm) * transA.getBasis() ; seperatingAxisInBBatch[i] = norm * transB.getBasis() ; } { int numPDA = convexA->getNumPreferredPenetrationDirections(); if (numPDA) { for (int i=0;i<numPDA;i++) { btVector3 norm; convexA->getPreferredPenetrationDirection(i,norm); norm = transA.getBasis() * norm; getPenetrationDirections()[numSampleDirections] = norm; seperatingAxisInABatch[numSampleDirections] = (-norm) * transA.getBasis(); seperatingAxisInBBatch[numSampleDirections] = norm * transB.getBasis(); numSampleDirections++; } } } { int numPDB = convexB->getNumPreferredPenetrationDirections(); if (numPDB) { for (int i=0;i<numPDB;i++) { btVector3 norm; convexB->getPreferredPenetrationDirection(i,norm); norm = transB.getBasis() * norm; getPenetrationDirections()[numSampleDirections] = norm; seperatingAxisInABatch[numSampleDirections] = (-norm) * transA.getBasis(); seperatingAxisInBBatch[numSampleDirections] = norm * transB.getBasis(); numSampleDirections++; } } } convexA->batchedUnitVectorGetSupportingVertexWithoutMargin(seperatingAxisInABatch,supportVerticesABatch,numSampleDirections); convexB->batchedUnitVectorGetSupportingVertexWithoutMargin(seperatingAxisInBBatch,supportVerticesBBatch,numSampleDirections); for (i=0;i<numSampleDirections;i++) { btVector3 norm = getPenetrationDirections()[i]; if (check2d) { norm[2] = 0.f; } if (norm.length2()>0.01) { seperatingAxisInA = seperatingAxisInABatch[i]; seperatingAxisInB = seperatingAxisInBBatch[i]; pInA = supportVerticesABatch[i]; qInB = supportVerticesBBatch[i]; pWorld = transA(pInA); qWorld = transB(qInB); if (check2d) { pWorld[2] = 0.f; qWorld[2] = 0.f; } w = qWorld - pWorld; btScalar delta = norm.dot(w); //find smallest delta if (delta < minProj) { minProj = delta; minNorm = norm; minA = pWorld; minB = qWorld; } } } #else int numSampleDirections = NUM_UNITSPHERE_POINTS; #ifndef __SPU__ { int numPDA = convexA->getNumPreferredPenetrationDirections(); if (numPDA) { for (int i=0;i<numPDA;i++) { btVector3 norm; convexA->getPreferredPenetrationDirection(i,norm); norm = transA.getBasis() * norm; getPenetrationDirections()[numSampleDirections] = norm; numSampleDirections++; } } } { int numPDB = convexB->getNumPreferredPenetrationDirections(); if (numPDB) { for (int i=0;i<numPDB;i++) { btVector3 norm; convexB->getPreferredPenetrationDirection(i,norm); norm = transB.getBasis() * norm; getPenetrationDirections()[numSampleDirections] = norm; numSampleDirections++; } } } #endif // __SPU__ for (int i=0;i<numSampleDirections;i++) { const btVector3& norm = getPenetrationDirections()[i]; seperatingAxisInA = (-norm)* transA.getBasis(); seperatingAxisInB = norm* transB.getBasis(); pInA = convexA->localGetSupportVertexWithoutMarginNonVirtual(seperatingAxisInA); qInB = convexB->localGetSupportVertexWithoutMarginNonVirtual(seperatingAxisInB); pWorld = transA(pInA); qWorld = transB(qInB); w = qWorld - pWorld; btScalar delta = norm.dot(w); //find smallest delta if (delta < minProj) { minProj = delta; minNorm = norm; minA = pWorld; minB = qWorld; } } #endif //USE_BATCHED_SUPPORT //add the margins minA += minNorm*convexA->getMarginNonVirtual(); minB -= minNorm*convexB->getMarginNonVirtual(); //no penetration if (minProj < btScalar(0.)) return false; btScalar extraSeparation = 0.5f;///scale dependent minProj += extraSeparation+(convexA->getMarginNonVirtual() + convexB->getMarginNonVirtual()); //#define DEBUG_DRAW 1 #ifdef DEBUG_DRAW if (debugDraw) { btVector3 color(0,1,0); debugDraw->drawLine(minA,minB,color); color = btVector3 (1,1,1); btVector3 vec = minB-minA; btScalar prj2 = minNorm.dot(vec); debugDraw->drawLine(minA,minA+(minNorm*minProj),color); } #endif //DEBUG_DRAW btGjkPairDetector gjkdet(convexA,convexB,&simplexSolver,0); btScalar offsetDist = minProj; btVector3 offset = minNorm * offsetDist; btGjkPairDetector::ClosestPointInput input; btVector3 newOrg = transA.getOrigin() + offset; btTransform displacedTrans = transA; displacedTrans.setOrigin(newOrg); input.m_transformA = displacedTrans; input.m_transformB = transB; input.m_maximumDistanceSquared = btScalar(BT_LARGE_FLOAT);//minProj; btIntermediateResult res; gjkdet.setCachedSeperatingAxis(-minNorm); gjkdet.getClosestPoints(input,res,debugDraw); btScalar correctedMinNorm = minProj - res.m_depth; //the penetration depth is over-estimated, relax it btScalar penetration_relaxation= btScalar(1.); minNorm*=penetration_relaxation; if (res.m_hasResult) { pa = res.m_pointInWorld - minNorm * correctedMinNorm; pb = res.m_pointInWorld; v = minNorm; #ifdef DEBUG_DRAW if (debugDraw) { btVector3 color(1,0,0); debugDraw->drawLine(pa,pb,color); } #endif//DEBUG_DRAW } return res.m_hasResult; } btVector3* btMinkowskiPenetrationDepthSolver::getPenetrationDirections() { static btVector3 sPenetrationDirections[NUM_UNITSPHERE_POINTS+MAX_PREFERRED_PENETRATION_DIRECTIONS*2] = { btVector3(btScalar(0.000000) , btScalar(-0.000000),btScalar(-1.000000)), btVector3(btScalar(0.723608) , btScalar(-0.525725),btScalar(-0.447219)), btVector3(btScalar(-0.276388) , btScalar(-0.850649),btScalar(-0.447219)), btVector3(btScalar(-0.894426) , btScalar(-0.000000),btScalar(-0.447216)), btVector3(btScalar(-0.276388) , btScalar(0.850649),btScalar(-0.447220)), btVector3(btScalar(0.723608) , btScalar(0.525725),btScalar(-0.447219)), btVector3(btScalar(0.276388) , btScalar(-0.850649),btScalar(0.447220)), btVector3(btScalar(-0.723608) , btScalar(-0.525725),btScalar(0.447219)), btVector3(btScalar(-0.723608) , btScalar(0.525725),btScalar(0.447219)), btVector3(btScalar(0.276388) , btScalar(0.850649),btScalar(0.447219)), btVector3(btScalar(0.894426) , btScalar(0.000000),btScalar(0.447216)), btVector3(btScalar(-0.000000) , btScalar(0.000000),btScalar(1.000000)), btVector3(btScalar(0.425323) , btScalar(-0.309011),btScalar(-0.850654)), btVector3(btScalar(-0.162456) , btScalar(-0.499995),btScalar(-0.850654)), btVector3(btScalar(0.262869) , btScalar(-0.809012),btScalar(-0.525738)), btVector3(btScalar(0.425323) , btScalar(0.309011),btScalar(-0.850654)), btVector3(btScalar(0.850648) , btScalar(-0.000000),btScalar(-0.525736)), btVector3(btScalar(-0.525730) , btScalar(-0.000000),btScalar(-0.850652)), btVector3(btScalar(-0.688190) , btScalar(-0.499997),btScalar(-0.525736)), btVector3(btScalar(-0.162456) , btScalar(0.499995),btScalar(-0.850654)), btVector3(btScalar(-0.688190) , btScalar(0.499997),btScalar(-0.525736)), btVector3(btScalar(0.262869) , btScalar(0.809012),btScalar(-0.525738)), btVector3(btScalar(0.951058) , btScalar(0.309013),btScalar(0.000000)), btVector3(btScalar(0.951058) , btScalar(-0.309013),btScalar(0.000000)), btVector3(btScalar(0.587786) , btScalar(-0.809017),btScalar(0.000000)), btVector3(btScalar(0.000000) , btScalar(-1.000000),btScalar(0.000000)), btVector3(btScalar(-0.587786) , btScalar(-0.809017),btScalar(0.000000)), btVector3(btScalar(-0.951058) , btScalar(-0.309013),btScalar(-0.000000)), btVector3(btScalar(-0.951058) , btScalar(0.309013),btScalar(-0.000000)), btVector3(btScalar(-0.587786) , btScalar(0.809017),btScalar(-0.000000)), btVector3(btScalar(-0.000000) , btScalar(1.000000),btScalar(-0.000000)), btVector3(btScalar(0.587786) , btScalar(0.809017),btScalar(-0.000000)), btVector3(btScalar(0.688190) , btScalar(-0.499997),btScalar(0.525736)), btVector3(btScalar(-0.262869) , btScalar(-0.809012),btScalar(0.525738)), btVector3(btScalar(-0.850648) , btScalar(0.000000),btScalar(0.525736)), btVector3(btScalar(-0.262869) , btScalar(0.809012),btScalar(0.525738)), btVector3(btScalar(0.688190) , btScalar(0.499997),btScalar(0.525736)), btVector3(btScalar(0.525730) , btScalar(0.000000),btScalar(0.850652)), btVector3(btScalar(0.162456) , btScalar(-0.499995),btScalar(0.850654)), btVector3(btScalar(-0.425323) , btScalar(-0.309011),btScalar(0.850654)), btVector3(btScalar(-0.425323) , btScalar(0.309011),btScalar(0.850654)), btVector3(btScalar(0.162456) , btScalar(0.499995),btScalar(0.850654)) }; return sPenetrationDirections; }
-1
libgdx/libgdx
7,309
Use empty Audio implementations on Android and iOS when audio is disabled
Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
obigu
"2023-12-27T22:37:18Z"
"2023-12-28T19:29:00Z"
2b691f735f4b167c062f8f68186a6d7237d3d855
7f682a7921a47f0da858508f6b6fd58426dd05d7
Use empty Audio implementations on Android and iOS when audio is disabled. Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
./extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/dynamics/contacts/ContactEdge.java
/******************************************************************************* * Copyright (c) 2013, Daniel Murphy * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. * IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. ******************************************************************************/ package org.jbox2d.dynamics.contacts; import org.jbox2d.dynamics.Body; /** A contact edge is used to connect bodies and contacts together in a contact graph where each body is a node and each contact * is an edge. A contact edge belongs to a doubly linked list maintained in each attached body. Each contact has two contact * nodes, one for each attached body. * * @author daniel */ public class ContactEdge { /** provides quick access to the other body attached. */ public Body other = null; /** the contact */ public Contact contact = null; /** the previous contact edge in the body's contact list */ public ContactEdge prev = null; /** the next contact edge in the body's contact list */ public ContactEdge next = null; }
/******************************************************************************* * Copyright (c) 2013, Daniel Murphy * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. * IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. ******************************************************************************/ package org.jbox2d.dynamics.contacts; import org.jbox2d.dynamics.Body; /** A contact edge is used to connect bodies and contacts together in a contact graph where each body is a node and each contact * is an edge. A contact edge belongs to a doubly linked list maintained in each attached body. Each contact has two contact * nodes, one for each attached body. * * @author daniel */ public class ContactEdge { /** provides quick access to the other body attached. */ public Body other = null; /** the contact */ public Contact contact = null; /** the previous contact edge in the body's contact list */ public ContactEdge prev = null; /** the next contact edge in the body's contact list */ public ContactEdge next = null; }
-1
libgdx/libgdx
7,309
Use empty Audio implementations on Android and iOS when audio is disabled
Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
obigu
"2023-12-27T22:37:18Z"
"2023-12-28T19:29:00Z"
2b691f735f4b167c062f8f68186a6d7237d3d855
7f682a7921a47f0da858508f6b6fd58426dd05d7
Use empty Audio implementations on Android and iOS when audio is disabled. Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
./gdx/src/com/badlogic/gdx/scenes/scene2d/ui/ImageButton.java
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.scenes.scene2d.ui; import com.badlogic.gdx.graphics.g2d.Batch; import com.badlogic.gdx.scenes.scene2d.utils.Drawable; import com.badlogic.gdx.utils.Null; import com.badlogic.gdx.utils.Scaling; /** A button with a child {@link Image} to display an image. This is useful when the button must be larger than the image and the * image centered on the button. If the image is the size of the button, a {@link Button} without any children can be used, where * the {@link Button.ButtonStyle#up}, {@link Button.ButtonStyle#down}, and {@link Button.ButtonStyle#checked} nine patches define * the image. * @author Nathan Sweet */ public class ImageButton extends Button { private final Image image; private ImageButtonStyle style; public ImageButton (Skin skin) { this(skin.get(ImageButtonStyle.class)); setSkin(skin); } public ImageButton (Skin skin, String styleName) { this(skin.get(styleName, ImageButtonStyle.class)); setSkin(skin); } public ImageButton (ImageButtonStyle style) { super(style); image = newImage(); add(image); setStyle(style); setSize(getPrefWidth(), getPrefHeight()); } public ImageButton (@Null Drawable imageUp) { this(new ImageButtonStyle(null, null, null, imageUp, null, null)); } public ImageButton (@Null Drawable imageUp, @Null Drawable imageDown) { this(new ImageButtonStyle(null, null, null, imageUp, imageDown, null)); } public ImageButton (@Null Drawable imageUp, @Null Drawable imageDown, @Null Drawable imageChecked) { this(new ImageButtonStyle(null, null, null, imageUp, imageDown, imageChecked)); } protected Image newImage () { return new Image((Drawable)null, Scaling.fit); } public void setStyle (ButtonStyle style) { if (!(style instanceof ImageButtonStyle)) throw new IllegalArgumentException("style must be an ImageButtonStyle."); this.style = (ImageButtonStyle)style; super.setStyle(style); if (image != null) updateImage(); } public ImageButtonStyle getStyle () { return style; } /** Returns the appropriate image drawable from the style based on the current button state. */ protected @Null Drawable getImageDrawable () { if (isDisabled() && style.imageDisabled != null) return style.imageDisabled; if (isPressed()) { if (isChecked() && style.imageCheckedDown != null) return style.imageCheckedDown; if (style.imageDown != null) return style.imageDown; } if (isOver()) { if (isChecked()) { if (style.imageCheckedOver != null) return style.imageCheckedOver; } else { if (style.imageOver != null) return style.imageOver; } } if (isChecked()) { if (style.imageChecked != null) return style.imageChecked; if (isOver() && style.imageOver != null) return style.imageOver; } return style.imageUp; } /** Sets the image drawable based on the current button state. The default implementation sets the image drawable using * {@link #getImageDrawable()}. */ protected void updateImage () { image.setDrawable(getImageDrawable()); } public void draw (Batch batch, float parentAlpha) { updateImage(); super.draw(batch, parentAlpha); } public Image getImage () { return image; } public Cell getImageCell () { return getCell(image); } public String toString () { String name = getName(); if (name != null) return name; String className = getClass().getName(); int dotIndex = className.lastIndexOf('.'); if (dotIndex != -1) className = className.substring(dotIndex + 1); return (className.indexOf('$') != -1 ? "ImageButton " : "") + className + ": " + image.getDrawable(); } /** The style for an image button, see {@link ImageButton}. * @author Nathan Sweet */ static public class ImageButtonStyle extends ButtonStyle { public @Null Drawable imageUp, imageDown, imageOver, imageDisabled; public @Null Drawable imageChecked, imageCheckedDown, imageCheckedOver; public ImageButtonStyle () { } public ImageButtonStyle (@Null Drawable up, @Null Drawable down, @Null Drawable checked, @Null Drawable imageUp, @Null Drawable imageDown, @Null Drawable imageChecked) { super(up, down, checked); this.imageUp = imageUp; this.imageDown = imageDown; this.imageChecked = imageChecked; } public ImageButtonStyle (ImageButtonStyle style) { super(style); imageUp = style.imageUp; imageDown = style.imageDown; imageOver = style.imageOver; imageDisabled = style.imageDisabled; imageChecked = style.imageChecked; imageCheckedDown = style.imageCheckedDown; imageCheckedOver = style.imageCheckedOver; } public ImageButtonStyle (ButtonStyle style) { super(style); } } }
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.scenes.scene2d.ui; import com.badlogic.gdx.graphics.g2d.Batch; import com.badlogic.gdx.scenes.scene2d.utils.Drawable; import com.badlogic.gdx.utils.Null; import com.badlogic.gdx.utils.Scaling; /** A button with a child {@link Image} to display an image. This is useful when the button must be larger than the image and the * image centered on the button. If the image is the size of the button, a {@link Button} without any children can be used, where * the {@link Button.ButtonStyle#up}, {@link Button.ButtonStyle#down}, and {@link Button.ButtonStyle#checked} nine patches define * the image. * @author Nathan Sweet */ public class ImageButton extends Button { private final Image image; private ImageButtonStyle style; public ImageButton (Skin skin) { this(skin.get(ImageButtonStyle.class)); setSkin(skin); } public ImageButton (Skin skin, String styleName) { this(skin.get(styleName, ImageButtonStyle.class)); setSkin(skin); } public ImageButton (ImageButtonStyle style) { super(style); image = newImage(); add(image); setStyle(style); setSize(getPrefWidth(), getPrefHeight()); } public ImageButton (@Null Drawable imageUp) { this(new ImageButtonStyle(null, null, null, imageUp, null, null)); } public ImageButton (@Null Drawable imageUp, @Null Drawable imageDown) { this(new ImageButtonStyle(null, null, null, imageUp, imageDown, null)); } public ImageButton (@Null Drawable imageUp, @Null Drawable imageDown, @Null Drawable imageChecked) { this(new ImageButtonStyle(null, null, null, imageUp, imageDown, imageChecked)); } protected Image newImage () { return new Image((Drawable)null, Scaling.fit); } public void setStyle (ButtonStyle style) { if (!(style instanceof ImageButtonStyle)) throw new IllegalArgumentException("style must be an ImageButtonStyle."); this.style = (ImageButtonStyle)style; super.setStyle(style); if (image != null) updateImage(); } public ImageButtonStyle getStyle () { return style; } /** Returns the appropriate image drawable from the style based on the current button state. */ protected @Null Drawable getImageDrawable () { if (isDisabled() && style.imageDisabled != null) return style.imageDisabled; if (isPressed()) { if (isChecked() && style.imageCheckedDown != null) return style.imageCheckedDown; if (style.imageDown != null) return style.imageDown; } if (isOver()) { if (isChecked()) { if (style.imageCheckedOver != null) return style.imageCheckedOver; } else { if (style.imageOver != null) return style.imageOver; } } if (isChecked()) { if (style.imageChecked != null) return style.imageChecked; if (isOver() && style.imageOver != null) return style.imageOver; } return style.imageUp; } /** Sets the image drawable based on the current button state. The default implementation sets the image drawable using * {@link #getImageDrawable()}. */ protected void updateImage () { image.setDrawable(getImageDrawable()); } public void draw (Batch batch, float parentAlpha) { updateImage(); super.draw(batch, parentAlpha); } public Image getImage () { return image; } public Cell getImageCell () { return getCell(image); } public String toString () { String name = getName(); if (name != null) return name; String className = getClass().getName(); int dotIndex = className.lastIndexOf('.'); if (dotIndex != -1) className = className.substring(dotIndex + 1); return (className.indexOf('$') != -1 ? "ImageButton " : "") + className + ": " + image.getDrawable(); } /** The style for an image button, see {@link ImageButton}. * @author Nathan Sweet */ static public class ImageButtonStyle extends ButtonStyle { public @Null Drawable imageUp, imageDown, imageOver, imageDisabled; public @Null Drawable imageChecked, imageCheckedDown, imageCheckedOver; public ImageButtonStyle () { } public ImageButtonStyle (@Null Drawable up, @Null Drawable down, @Null Drawable checked, @Null Drawable imageUp, @Null Drawable imageDown, @Null Drawable imageChecked) { super(up, down, checked); this.imageUp = imageUp; this.imageDown = imageDown; this.imageChecked = imageChecked; } public ImageButtonStyle (ImageButtonStyle style) { super(style); imageUp = style.imageUp; imageDown = style.imageDown; imageOver = style.imageOver; imageDisabled = style.imageDisabled; imageChecked = style.imageChecked; imageCheckedDown = style.imageCheckedDown; imageCheckedOver = style.imageCheckedOver; } public ImageButtonStyle (ButtonStyle style) { super(style); } } }
-1
libgdx/libgdx
7,309
Use empty Audio implementations on Android and iOS when audio is disabled
Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
obigu
"2023-12-27T22:37:18Z"
"2023-12-28T19:29:00Z"
2b691f735f4b167c062f8f68186a6d7237d3d855
7f682a7921a47f0da858508f6b6fd58426dd05d7
Use empty Audio implementations on Android and iOS when audio is disabled. Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
./extensions/gdx-bullet/jni/swig-src/collision/com/badlogic/gdx/physics/bullet/collision/btGjkEpaPenetrationDepthSolver.java
/* ---------------------------------------------------------------------------- * This file was automatically generated by SWIG (http://www.swig.org). * Version 3.0.11 * * Do not make changes to this file unless you know what you are doing--modify * the SWIG interface file instead. * ----------------------------------------------------------------------------- */ package com.badlogic.gdx.physics.bullet.collision; import com.badlogic.gdx.physics.bullet.linearmath.*; public class btGjkEpaPenetrationDepthSolver extends btConvexPenetrationDepthSolver { private long swigCPtr; protected btGjkEpaPenetrationDepthSolver (final String className, long cPtr, boolean cMemoryOwn) { super(className, CollisionJNI.btGjkEpaPenetrationDepthSolver_SWIGUpcast(cPtr), cMemoryOwn); swigCPtr = cPtr; } /** Construct a new btGjkEpaPenetrationDepthSolver, normally you should not need this constructor it's intended for low-level * usage. */ public btGjkEpaPenetrationDepthSolver (long cPtr, boolean cMemoryOwn) { this("btGjkEpaPenetrationDepthSolver", cPtr, cMemoryOwn); construct(); } @Override protected void reset (long cPtr, boolean cMemoryOwn) { if (!destroyed) destroy(); super.reset(CollisionJNI.btGjkEpaPenetrationDepthSolver_SWIGUpcast(swigCPtr = cPtr), cMemoryOwn); } public static long getCPtr (btGjkEpaPenetrationDepthSolver obj) { return (obj == null) ? 0 : obj.swigCPtr; } @Override protected void finalize () throws Throwable { if (!destroyed) destroy(); super.finalize(); } @Override protected synchronized void delete () { if (swigCPtr != 0) { if (swigCMemOwn) { swigCMemOwn = false; CollisionJNI.delete_btGjkEpaPenetrationDepthSolver(swigCPtr); } swigCPtr = 0; } super.delete(); } public btGjkEpaPenetrationDepthSolver () { this(CollisionJNI.new_btGjkEpaPenetrationDepthSolver(), true); } }
/* ---------------------------------------------------------------------------- * This file was automatically generated by SWIG (http://www.swig.org). * Version 3.0.11 * * Do not make changes to this file unless you know what you are doing--modify * the SWIG interface file instead. * ----------------------------------------------------------------------------- */ package com.badlogic.gdx.physics.bullet.collision; import com.badlogic.gdx.physics.bullet.linearmath.*; public class btGjkEpaPenetrationDepthSolver extends btConvexPenetrationDepthSolver { private long swigCPtr; protected btGjkEpaPenetrationDepthSolver (final String className, long cPtr, boolean cMemoryOwn) { super(className, CollisionJNI.btGjkEpaPenetrationDepthSolver_SWIGUpcast(cPtr), cMemoryOwn); swigCPtr = cPtr; } /** Construct a new btGjkEpaPenetrationDepthSolver, normally you should not need this constructor it's intended for low-level * usage. */ public btGjkEpaPenetrationDepthSolver (long cPtr, boolean cMemoryOwn) { this("btGjkEpaPenetrationDepthSolver", cPtr, cMemoryOwn); construct(); } @Override protected void reset (long cPtr, boolean cMemoryOwn) { if (!destroyed) destroy(); super.reset(CollisionJNI.btGjkEpaPenetrationDepthSolver_SWIGUpcast(swigCPtr = cPtr), cMemoryOwn); } public static long getCPtr (btGjkEpaPenetrationDepthSolver obj) { return (obj == null) ? 0 : obj.swigCPtr; } @Override protected void finalize () throws Throwable { if (!destroyed) destroy(); super.finalize(); } @Override protected synchronized void delete () { if (swigCPtr != 0) { if (swigCMemOwn) { swigCMemOwn = false; CollisionJNI.delete_btGjkEpaPenetrationDepthSolver(swigCPtr); } swigCPtr = 0; } super.delete(); } public btGjkEpaPenetrationDepthSolver () { this(CollisionJNI.new_btGjkEpaPenetrationDepthSolver(), true); } }
-1
libgdx/libgdx
7,309
Use empty Audio implementations on Android and iOS when audio is disabled
Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
obigu
"2023-12-27T22:37:18Z"
"2023-12-28T19:29:00Z"
2b691f735f4b167c062f8f68186a6d7237d3d855
7f682a7921a47f0da858508f6b6fd58426dd05d7
Use empty Audio implementations on Android and iOS when audio is disabled. Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
./gdx/src/com/badlogic/gdx/graphics/glutils/FrameBufferCubemap.java
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.graphics.glutils; import com.badlogic.gdx.Gdx; import com.badlogic.gdx.graphics.Cubemap; import com.badlogic.gdx.graphics.GL20; import com.badlogic.gdx.graphics.Pixmap; import com.badlogic.gdx.graphics.Texture.TextureFilter; import com.badlogic.gdx.graphics.Texture.TextureWrap; import com.badlogic.gdx.utils.GdxRuntimeException; /** * <p> * Encapsulates OpenGL ES 2.0 frame buffer objects. This is a simple helper class which should cover most FBO uses. It will * automatically create a cubemap for the color attachment and a renderbuffer for the depth buffer. You can get a hold of the * cubemap by {@link FrameBufferCubemap#getColorBufferTexture()}. This class will only work with OpenGL ES 2.0. * </p> * * <p> * FrameBuffers are managed. In case of an OpenGL context loss, which only happens on Android when a user switches to another * application or receives an incoming call, the framebuffer will be automatically recreated. * </p> * * <p> * A FrameBuffer must be disposed if it is no longer needed * </p> * * <p> * Typical use: <br /> * FrameBufferCubemap frameBuffer = new FrameBufferCubemap(Format.RGBA8888, fSize, fSize, true); <br /> * frameBuffer.begin(); <br /> * while( frameBuffer.nextSide() ) { <br /> * frameBuffer.getSide().getUp(camera.up); <br /> * frameBuffer.getSide().getDirection(camera.direction);<br /> * camera.update(); <br /> * * Gdx.gl.glClearColor(0, 0, 0, 1); <br /> * Gdx.gl.glClear(GL20.GL_COLOR_BUFFER_BIT | GL20.GL_DEPTH_BUFFER_BIT); <br /> * modelBatch.begin(camera); <br /> * modelBatch.render(renderableProviders); <br /> * modelBatch.end(); <br /> * } <br /> * frameBuffer.end(); <br /> * Cubemap cubemap = frameBuffer.getColorBufferCubemap(); * </p> * * @author realitix */ public class FrameBufferCubemap extends GLFrameBuffer<Cubemap> { /** the zero-based index of the active side **/ private int currentSide; /** cubemap sides cache */ private static final Cubemap.CubemapSide[] cubemapSides = Cubemap.CubemapSide.values(); FrameBufferCubemap () { } /** Creates a GLFrameBuffer from the specifications provided by bufferBuilder * * @param bufferBuilder **/ protected FrameBufferCubemap (GLFrameBufferBuilder<? extends GLFrameBuffer<Cubemap>> bufferBuilder) { super(bufferBuilder); } /** Creates a new FrameBuffer having the given dimensions and potentially a depth buffer attached. * * @param format * @param width * @param height * @param hasDepth */ public FrameBufferCubemap (Pixmap.Format format, int width, int height, boolean hasDepth) { this(format, width, height, hasDepth, false); } /** Creates a new FrameBuffer having the given dimensions and potentially a depth and a stencil buffer attached. * * @param format the format of the color buffer; according to the OpenGL ES 2.0 spec, only RGB565, RGBA4444 and RGB5_A1 are * color-renderable * @param width the width of the cubemap in pixels * @param height the height of the cubemap in pixels * @param hasDepth whether to attach a depth buffer * @param hasStencil whether to attach a stencil buffer * @throws com.badlogic.gdx.utils.GdxRuntimeException in case the FrameBuffer could not be created */ public FrameBufferCubemap (Pixmap.Format format, int width, int height, boolean hasDepth, boolean hasStencil) { FrameBufferCubemapBuilder frameBufferBuilder = new FrameBufferCubemapBuilder(width, height); frameBufferBuilder.addBasicColorTextureAttachment(format); if (hasDepth) frameBufferBuilder.addBasicDepthRenderBuffer(); if (hasStencil) frameBufferBuilder.addBasicStencilRenderBuffer(); this.bufferBuilder = frameBufferBuilder; build(); } @Override protected Cubemap createTexture (FrameBufferTextureAttachmentSpec attachmentSpec) { GLOnlyTextureData data = new GLOnlyTextureData(bufferBuilder.width, bufferBuilder.height, 0, attachmentSpec.internalFormat, attachmentSpec.format, attachmentSpec.type); Cubemap result = new Cubemap(data, data, data, data, data, data); result.setFilter(TextureFilter.Linear, TextureFilter.Linear); result.setWrap(TextureWrap.ClampToEdge, TextureWrap.ClampToEdge); return result; } @Override protected void disposeColorTexture (Cubemap colorTexture) { colorTexture.dispose(); } @Override protected void attachFrameBufferColorTexture (Cubemap texture) { GL20 gl = Gdx.gl20; int glHandle = texture.getTextureObjectHandle(); Cubemap.CubemapSide[] sides = Cubemap.CubemapSide.values(); for (Cubemap.CubemapSide side : sides) { gl.glFramebufferTexture2D(GL20.GL_FRAMEBUFFER, GL20.GL_COLOR_ATTACHMENT0, side.glEnum, glHandle, 0); } } /** Makes the frame buffer current so everything gets drawn to it, must be followed by call to either {@link #nextSide()} or * {@link #bindSide(com.badlogic.gdx.graphics.Cubemap.CubemapSide)} to activate the side to render onto. */ @Override public void bind () { currentSide = -1; super.bind(); } /** Bind the next side of cubemap and return false if no more side. Should be called in between a call to {@link #begin()} and * #end to cycle to each side of the cubemap to render on. */ public boolean nextSide () { if (currentSide > 5) { throw new GdxRuntimeException("No remaining sides."); } else if (currentSide == 5) { return false; } currentSide++; bindSide(getSide()); return true; } /** Bind the side, making it active to render on. Should be called in between a call to {@link #begin()} and {@link #end()}. * @param side The side to bind */ protected void bindSide (final Cubemap.CubemapSide side) { Gdx.gl20.glFramebufferTexture2D(GL20.GL_FRAMEBUFFER, GL20.GL_COLOR_ATTACHMENT0, side.glEnum, getColorBufferTexture().getTextureObjectHandle(), 0); } /** Get the currently bound side. */ public Cubemap.CubemapSide getSide () { return currentSide < 0 ? null : cubemapSides[currentSide]; } }
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.graphics.glutils; import com.badlogic.gdx.Gdx; import com.badlogic.gdx.graphics.Cubemap; import com.badlogic.gdx.graphics.GL20; import com.badlogic.gdx.graphics.Pixmap; import com.badlogic.gdx.graphics.Texture.TextureFilter; import com.badlogic.gdx.graphics.Texture.TextureWrap; import com.badlogic.gdx.utils.GdxRuntimeException; /** * <p> * Encapsulates OpenGL ES 2.0 frame buffer objects. This is a simple helper class which should cover most FBO uses. It will * automatically create a cubemap for the color attachment and a renderbuffer for the depth buffer. You can get a hold of the * cubemap by {@link FrameBufferCubemap#getColorBufferTexture()}. This class will only work with OpenGL ES 2.0. * </p> * * <p> * FrameBuffers are managed. In case of an OpenGL context loss, which only happens on Android when a user switches to another * application or receives an incoming call, the framebuffer will be automatically recreated. * </p> * * <p> * A FrameBuffer must be disposed if it is no longer needed * </p> * * <p> * Typical use: <br /> * FrameBufferCubemap frameBuffer = new FrameBufferCubemap(Format.RGBA8888, fSize, fSize, true); <br /> * frameBuffer.begin(); <br /> * while( frameBuffer.nextSide() ) { <br /> * frameBuffer.getSide().getUp(camera.up); <br /> * frameBuffer.getSide().getDirection(camera.direction);<br /> * camera.update(); <br /> * * Gdx.gl.glClearColor(0, 0, 0, 1); <br /> * Gdx.gl.glClear(GL20.GL_COLOR_BUFFER_BIT | GL20.GL_DEPTH_BUFFER_BIT); <br /> * modelBatch.begin(camera); <br /> * modelBatch.render(renderableProviders); <br /> * modelBatch.end(); <br /> * } <br /> * frameBuffer.end(); <br /> * Cubemap cubemap = frameBuffer.getColorBufferCubemap(); * </p> * * @author realitix */ public class FrameBufferCubemap extends GLFrameBuffer<Cubemap> { /** the zero-based index of the active side **/ private int currentSide; /** cubemap sides cache */ private static final Cubemap.CubemapSide[] cubemapSides = Cubemap.CubemapSide.values(); FrameBufferCubemap () { } /** Creates a GLFrameBuffer from the specifications provided by bufferBuilder * * @param bufferBuilder **/ protected FrameBufferCubemap (GLFrameBufferBuilder<? extends GLFrameBuffer<Cubemap>> bufferBuilder) { super(bufferBuilder); } /** Creates a new FrameBuffer having the given dimensions and potentially a depth buffer attached. * * @param format * @param width * @param height * @param hasDepth */ public FrameBufferCubemap (Pixmap.Format format, int width, int height, boolean hasDepth) { this(format, width, height, hasDepth, false); } /** Creates a new FrameBuffer having the given dimensions and potentially a depth and a stencil buffer attached. * * @param format the format of the color buffer; according to the OpenGL ES 2.0 spec, only RGB565, RGBA4444 and RGB5_A1 are * color-renderable * @param width the width of the cubemap in pixels * @param height the height of the cubemap in pixels * @param hasDepth whether to attach a depth buffer * @param hasStencil whether to attach a stencil buffer * @throws com.badlogic.gdx.utils.GdxRuntimeException in case the FrameBuffer could not be created */ public FrameBufferCubemap (Pixmap.Format format, int width, int height, boolean hasDepth, boolean hasStencil) { FrameBufferCubemapBuilder frameBufferBuilder = new FrameBufferCubemapBuilder(width, height); frameBufferBuilder.addBasicColorTextureAttachment(format); if (hasDepth) frameBufferBuilder.addBasicDepthRenderBuffer(); if (hasStencil) frameBufferBuilder.addBasicStencilRenderBuffer(); this.bufferBuilder = frameBufferBuilder; build(); } @Override protected Cubemap createTexture (FrameBufferTextureAttachmentSpec attachmentSpec) { GLOnlyTextureData data = new GLOnlyTextureData(bufferBuilder.width, bufferBuilder.height, 0, attachmentSpec.internalFormat, attachmentSpec.format, attachmentSpec.type); Cubemap result = new Cubemap(data, data, data, data, data, data); result.setFilter(TextureFilter.Linear, TextureFilter.Linear); result.setWrap(TextureWrap.ClampToEdge, TextureWrap.ClampToEdge); return result; } @Override protected void disposeColorTexture (Cubemap colorTexture) { colorTexture.dispose(); } @Override protected void attachFrameBufferColorTexture (Cubemap texture) { GL20 gl = Gdx.gl20; int glHandle = texture.getTextureObjectHandle(); Cubemap.CubemapSide[] sides = Cubemap.CubemapSide.values(); for (Cubemap.CubemapSide side : sides) { gl.glFramebufferTexture2D(GL20.GL_FRAMEBUFFER, GL20.GL_COLOR_ATTACHMENT0, side.glEnum, glHandle, 0); } } /** Makes the frame buffer current so everything gets drawn to it, must be followed by call to either {@link #nextSide()} or * {@link #bindSide(com.badlogic.gdx.graphics.Cubemap.CubemapSide)} to activate the side to render onto. */ @Override public void bind () { currentSide = -1; super.bind(); } /** Bind the next side of cubemap and return false if no more side. Should be called in between a call to {@link #begin()} and * #end to cycle to each side of the cubemap to render on. */ public boolean nextSide () { if (currentSide > 5) { throw new GdxRuntimeException("No remaining sides."); } else if (currentSide == 5) { return false; } currentSide++; bindSide(getSide()); return true; } /** Bind the side, making it active to render on. Should be called in between a call to {@link #begin()} and {@link #end()}. * @param side The side to bind */ protected void bindSide (final Cubemap.CubemapSide side) { Gdx.gl20.glFramebufferTexture2D(GL20.GL_FRAMEBUFFER, GL20.GL_COLOR_ATTACHMENT0, side.glEnum, getColorBufferTexture().getTextureObjectHandle(), 0); } /** Get the currently bound side. */ public Cubemap.CubemapSide getSide () { return currentSide < 0 ? null : cubemapSides[currentSide]; } }
-1
libgdx/libgdx
7,309
Use empty Audio implementations on Android and iOS when audio is disabled
Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
obigu
"2023-12-27T22:37:18Z"
"2023-12-28T19:29:00Z"
2b691f735f4b167c062f8f68186a6d7237d3d855
7f682a7921a47f0da858508f6b6fd58426dd05d7
Use empty Audio implementations on Android and iOS when audio is disabled. Since `Audio` interfaces for each backend were created some time ago we can use them to free implementations from the responsibility of handling `disabledAudio` configurations. This PR moves the `disabledAudio` config check to a single point in the application (in the `createAudio()` method to be precise) where it decides whether to return the default `Audio` implementation or the `Disabled` one (dummy). The main advantages is that it reduces the implementations complexity and coupling to Configuration also preventing potential mistakes such as the ones present on `OALIOSAudio` in which actions on the OpenAL instance are executed when `disabledAudio` is set to `true` (such as `didBecomeActive()` or `willEnterForeground()` methods. I can't think of a scenario in which this breaks anything but users will always have the chance to override `createAudio()` to make it behave as preferred. The other backends have different approaches and there's room for improvement there but I've chosen to limit the scope of this PR to just Android and iOS.
./gdx/src/com/badlogic/gdx/graphics/g3d/particles/influencers/SpawnInfluencer.java
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.graphics.g3d.particles.influencers; import com.badlogic.gdx.assets.AssetManager; import com.badlogic.gdx.graphics.g3d.particles.ParallelArray.FloatChannel; import com.badlogic.gdx.graphics.g3d.particles.ParticleChannels; import com.badlogic.gdx.graphics.g3d.particles.ResourceData; import com.badlogic.gdx.graphics.g3d.particles.values.PointSpawnShapeValue; import com.badlogic.gdx.graphics.g3d.particles.values.SpawnShapeValue; import com.badlogic.gdx.utils.Json; import com.badlogic.gdx.utils.JsonValue; /** It's an {@link Influencer} which controls where the particles will be spawned. * @author Inferno */ public class SpawnInfluencer extends Influencer { public SpawnShapeValue spawnShapeValue; FloatChannel positionChannel; FloatChannel rotationChannel; public SpawnInfluencer () { spawnShapeValue = new PointSpawnShapeValue(); } public SpawnInfluencer (SpawnShapeValue spawnShapeValue) { this.spawnShapeValue = spawnShapeValue; } public SpawnInfluencer (SpawnInfluencer source) { spawnShapeValue = source.spawnShapeValue.copy(); } @Override public void init () { spawnShapeValue.init(); } @Override public void allocateChannels () { positionChannel = controller.particles.addChannel(ParticleChannels.Position); rotationChannel = controller.particles.addChannel(ParticleChannels.Rotation3D); } @Override public void start () { spawnShapeValue.start(); } @Override public void activateParticles (int startIndex, int count) { for (int i = startIndex * positionChannel.strideSize, c = i + count * positionChannel.strideSize; i < c; i += positionChannel.strideSize) { spawnShapeValue.spawn(TMP_V1, controller.emitter.percent); TMP_V1.mul(controller.transform); positionChannel.data[i + ParticleChannels.XOffset] = TMP_V1.x; positionChannel.data[i + ParticleChannels.YOffset] = TMP_V1.y; positionChannel.data[i + ParticleChannels.ZOffset] = TMP_V1.z; } for (int i = startIndex * rotationChannel.strideSize, c = i + count * rotationChannel.strideSize; i < c; i += rotationChannel.strideSize) { controller.transform.getRotation(TMP_Q, true); rotationChannel.data[i + ParticleChannels.XOffset] = TMP_Q.x; rotationChannel.data[i + ParticleChannels.YOffset] = TMP_Q.y; rotationChannel.data[i + ParticleChannels.ZOffset] = TMP_Q.z; rotationChannel.data[i + ParticleChannels.WOffset] = TMP_Q.w; } } @Override public SpawnInfluencer copy () { return new SpawnInfluencer(this); } @Override public void write (Json json) { json.writeValue("spawnShape", spawnShapeValue, SpawnShapeValue.class); } @Override public void read (Json json, JsonValue jsonData) { spawnShapeValue = json.readValue("spawnShape", SpawnShapeValue.class, jsonData); } @Override public void save (AssetManager manager, ResourceData data) { spawnShapeValue.save(manager, data); } @Override public void load (AssetManager manager, ResourceData data) { spawnShapeValue.load(manager, data); } }
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.graphics.g3d.particles.influencers; import com.badlogic.gdx.assets.AssetManager; import com.badlogic.gdx.graphics.g3d.particles.ParallelArray.FloatChannel; import com.badlogic.gdx.graphics.g3d.particles.ParticleChannels; import com.badlogic.gdx.graphics.g3d.particles.ResourceData; import com.badlogic.gdx.graphics.g3d.particles.values.PointSpawnShapeValue; import com.badlogic.gdx.graphics.g3d.particles.values.SpawnShapeValue; import com.badlogic.gdx.utils.Json; import com.badlogic.gdx.utils.JsonValue; /** It's an {@link Influencer} which controls where the particles will be spawned. * @author Inferno */ public class SpawnInfluencer extends Influencer { public SpawnShapeValue spawnShapeValue; FloatChannel positionChannel; FloatChannel rotationChannel; public SpawnInfluencer () { spawnShapeValue = new PointSpawnShapeValue(); } public SpawnInfluencer (SpawnShapeValue spawnShapeValue) { this.spawnShapeValue = spawnShapeValue; } public SpawnInfluencer (SpawnInfluencer source) { spawnShapeValue = source.spawnShapeValue.copy(); } @Override public void init () { spawnShapeValue.init(); } @Override public void allocateChannels () { positionChannel = controller.particles.addChannel(ParticleChannels.Position); rotationChannel = controller.particles.addChannel(ParticleChannels.Rotation3D); } @Override public void start () { spawnShapeValue.start(); } @Override public void activateParticles (int startIndex, int count) { for (int i = startIndex * positionChannel.strideSize, c = i + count * positionChannel.strideSize; i < c; i += positionChannel.strideSize) { spawnShapeValue.spawn(TMP_V1, controller.emitter.percent); TMP_V1.mul(controller.transform); positionChannel.data[i + ParticleChannels.XOffset] = TMP_V1.x; positionChannel.data[i + ParticleChannels.YOffset] = TMP_V1.y; positionChannel.data[i + ParticleChannels.ZOffset] = TMP_V1.z; } for (int i = startIndex * rotationChannel.strideSize, c = i + count * rotationChannel.strideSize; i < c; i += rotationChannel.strideSize) { controller.transform.getRotation(TMP_Q, true); rotationChannel.data[i + ParticleChannels.XOffset] = TMP_Q.x; rotationChannel.data[i + ParticleChannels.YOffset] = TMP_Q.y; rotationChannel.data[i + ParticleChannels.ZOffset] = TMP_Q.z; rotationChannel.data[i + ParticleChannels.WOffset] = TMP_Q.w; } } @Override public SpawnInfluencer copy () { return new SpawnInfluencer(this); } @Override public void write (Json json) { json.writeValue("spawnShape", spawnShapeValue, SpawnShapeValue.class); } @Override public void read (Json json, JsonValue jsonData) { spawnShapeValue = json.readValue("spawnShape", SpawnShapeValue.class, jsonData); } @Override public void save (AssetManager manager, ResourceData data) { spawnShapeValue.save(manager, data); } @Override public void load (AssetManager manager, ResourceData data) { spawnShapeValue.load(manager, data); } }
-1
libgdx/libgdx
7,305
Adds status detection for an httpRequest
This commit adds the public boolean isHttpRequestPending (HttpRequest httpRequest) method to Gdx.net user interface. It allows end users to detect if an httpRequest is pending or already finished. It helpfull for creating advanced business logic.
supermaximus80
"2023-12-22T21:58:24Z"
"2023-12-27T14:37:55Z"
60f074309093046d7fd9dd3c895bba398b415797
2b691f735f4b167c062f8f68186a6d7237d3d855
Adds status detection for an httpRequest. This commit adds the public boolean isHttpRequestPending (HttpRequest httpRequest) method to Gdx.net user interface. It allows end users to detect if an httpRequest is pending or already finished. It helpfull for creating advanced business logic.
./backends/gdx-backend-android/src/com/badlogic/gdx/backends/android/AndroidNet.java
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.backends.android; import android.app.Activity; import android.content.ActivityNotFoundException; import android.content.Intent; import android.net.Uri; import com.badlogic.gdx.Net; import com.badlogic.gdx.net.NetJavaImpl; import com.badlogic.gdx.net.NetJavaServerSocketImpl; import com.badlogic.gdx.net.NetJavaSocketImpl; import com.badlogic.gdx.net.ServerSocket; import com.badlogic.gdx.net.ServerSocketHints; import com.badlogic.gdx.net.Socket; import com.badlogic.gdx.net.SocketHints; /** Android implementation of the {@link Net} API. * @author acoppes */ public class AndroidNet implements Net { // IMPORTANT: The Gdx.net classes are a currently duplicated for JGLFW/LWJGL + Android! // If you make changes here, make changes in the other backend as well. final AndroidApplicationBase app; NetJavaImpl netJavaImpl; public AndroidNet (AndroidApplicationBase app, AndroidApplicationConfiguration configuration) { this.app = app; netJavaImpl = new NetJavaImpl(configuration.maxNetThreads); } @Override public void sendHttpRequest (HttpRequest httpRequest, final HttpResponseListener httpResponseListener) { netJavaImpl.sendHttpRequest(httpRequest, httpResponseListener); } @Override public void cancelHttpRequest (HttpRequest httpRequest) { netJavaImpl.cancelHttpRequest(httpRequest); } @Override public ServerSocket newServerSocket (Protocol protocol, String hostname, int port, ServerSocketHints hints) { return new NetJavaServerSocketImpl(protocol, hostname, port, hints); } @Override public ServerSocket newServerSocket (Protocol protocol, int port, ServerSocketHints hints) { return new NetJavaServerSocketImpl(protocol, port, hints); } @Override public Socket newClientSocket (Protocol protocol, String host, int port, SocketHints hints) { return new NetJavaSocketImpl(protocol, host, port, hints); } @Override public boolean openURI (String URI) { final Uri uri = Uri.parse(URI); try { Intent intent = new Intent(Intent.ACTION_VIEW, uri); // LiveWallpaper and Daydream applications need this flag if (!(app.getContext() instanceof Activity)) { intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); } app.startActivity(intent); return true; } catch (ActivityNotFoundException e) { return false; } } }
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.backends.android; import android.app.Activity; import android.content.ActivityNotFoundException; import android.content.Intent; import android.net.Uri; import com.badlogic.gdx.Net; import com.badlogic.gdx.net.NetJavaImpl; import com.badlogic.gdx.net.NetJavaServerSocketImpl; import com.badlogic.gdx.net.NetJavaSocketImpl; import com.badlogic.gdx.net.ServerSocket; import com.badlogic.gdx.net.ServerSocketHints; import com.badlogic.gdx.net.Socket; import com.badlogic.gdx.net.SocketHints; /** Android implementation of the {@link Net} API. * @author acoppes */ public class AndroidNet implements Net { // IMPORTANT: The Gdx.net classes are a currently duplicated for JGLFW/LWJGL + Android! // If you make changes here, make changes in the other backend as well. final AndroidApplicationBase app; NetJavaImpl netJavaImpl; public AndroidNet (AndroidApplicationBase app, AndroidApplicationConfiguration configuration) { this.app = app; netJavaImpl = new NetJavaImpl(configuration.maxNetThreads); } @Override public void sendHttpRequest (HttpRequest httpRequest, final HttpResponseListener httpResponseListener) { netJavaImpl.sendHttpRequest(httpRequest, httpResponseListener); } @Override public void cancelHttpRequest (HttpRequest httpRequest) { netJavaImpl.cancelHttpRequest(httpRequest); } @Override public boolean isHttpRequestPending (HttpRequest httpRequest) { return netJavaImpl.isHttpRequestPending(httpRequest); } @Override public ServerSocket newServerSocket (Protocol protocol, String hostname, int port, ServerSocketHints hints) { return new NetJavaServerSocketImpl(protocol, hostname, port, hints); } @Override public ServerSocket newServerSocket (Protocol protocol, int port, ServerSocketHints hints) { return new NetJavaServerSocketImpl(protocol, port, hints); } @Override public Socket newClientSocket (Protocol protocol, String host, int port, SocketHints hints) { return new NetJavaSocketImpl(protocol, host, port, hints); } @Override public boolean openURI (String URI) { final Uri uri = Uri.parse(URI); try { Intent intent = new Intent(Intent.ACTION_VIEW, uri); // LiveWallpaper and Daydream applications need this flag if (!(app.getContext() instanceof Activity)) { intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); } app.startActivity(intent); return true; } catch (ActivityNotFoundException e) { return false; } } }
1
libgdx/libgdx
7,305
Adds status detection for an httpRequest
This commit adds the public boolean isHttpRequestPending (HttpRequest httpRequest) method to Gdx.net user interface. It allows end users to detect if an httpRequest is pending or already finished. It helpfull for creating advanced business logic.
supermaximus80
"2023-12-22T21:58:24Z"
"2023-12-27T14:37:55Z"
60f074309093046d7fd9dd3c895bba398b415797
2b691f735f4b167c062f8f68186a6d7237d3d855
Adds status detection for an httpRequest. This commit adds the public boolean isHttpRequestPending (HttpRequest httpRequest) method to Gdx.net user interface. It allows end users to detect if an httpRequest is pending or already finished. It helpfull for creating advanced business logic.
./backends/gdx-backend-headless/src/com/badlogic/gdx/backends/headless/HeadlessNet.java
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.backends.headless; import java.awt.Desktop; import java.awt.Desktop.Action; import java.awt.GraphicsEnvironment; import com.badlogic.gdx.Gdx; import com.badlogic.gdx.Net; import com.badlogic.gdx.net.NetJavaImpl; import com.badlogic.gdx.net.NetJavaServerSocketImpl; import com.badlogic.gdx.net.NetJavaSocketImpl; import com.badlogic.gdx.net.ServerSocket; import com.badlogic.gdx.net.ServerSocketHints; import com.badlogic.gdx.net.Socket; import com.badlogic.gdx.net.SocketHints; /** Headless implementation of the {@link com.badlogic.gdx.Net} API, based on LWJGL implementation * @author acoppes * @author Jon Renner */ public class HeadlessNet implements Net { NetJavaImpl netJavaImpl; public HeadlessNet (HeadlessApplicationConfiguration configuration) { netJavaImpl = new NetJavaImpl(configuration.maxNetThreads); } @Override public void sendHttpRequest (HttpRequest httpRequest, HttpResponseListener httpResponseListener) { netJavaImpl.sendHttpRequest(httpRequest, httpResponseListener); } @Override public void cancelHttpRequest (HttpRequest httpRequest) { netJavaImpl.cancelHttpRequest(httpRequest); } @Override public ServerSocket newServerSocket (Protocol protocol, String hostname, int port, ServerSocketHints hints) { return new NetJavaServerSocketImpl(protocol, hostname, port, hints); } @Override public ServerSocket newServerSocket (Protocol protocol, int port, ServerSocketHints hints) { return new NetJavaServerSocketImpl(protocol, port, hints); } @Override public Socket newClientSocket (Protocol protocol, String host, int port, SocketHints hints) { return new NetJavaSocketImpl(protocol, host, port, hints); } @Override public boolean openURI (String URI) { boolean result = false; try { if (!GraphicsEnvironment.isHeadless() && Desktop.isDesktopSupported()) { if (Desktop.getDesktop().isSupported(Action.BROWSE)) { Desktop.getDesktop().browse(java.net.URI.create(URI)); result = true; } } else { Gdx.app.error("HeadlessNet", "Opening URIs on this environment is not supported. Ignoring."); } } catch (Throwable t) { Gdx.app.error("HeadlessNet", "Failed to open URI. ", t); } return result; } }
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.backends.headless; import java.awt.Desktop; import java.awt.Desktop.Action; import java.awt.GraphicsEnvironment; import com.badlogic.gdx.Gdx; import com.badlogic.gdx.Net; import com.badlogic.gdx.net.NetJavaImpl; import com.badlogic.gdx.net.NetJavaServerSocketImpl; import com.badlogic.gdx.net.NetJavaSocketImpl; import com.badlogic.gdx.net.ServerSocket; import com.badlogic.gdx.net.ServerSocketHints; import com.badlogic.gdx.net.Socket; import com.badlogic.gdx.net.SocketHints; /** Headless implementation of the {@link com.badlogic.gdx.Net} API, based on LWJGL implementation * @author acoppes * @author Jon Renner */ public class HeadlessNet implements Net { NetJavaImpl netJavaImpl; public HeadlessNet (HeadlessApplicationConfiguration configuration) { netJavaImpl = new NetJavaImpl(configuration.maxNetThreads); } @Override public void sendHttpRequest (HttpRequest httpRequest, HttpResponseListener httpResponseListener) { netJavaImpl.sendHttpRequest(httpRequest, httpResponseListener); } @Override public void cancelHttpRequest (HttpRequest httpRequest) { netJavaImpl.cancelHttpRequest(httpRequest); } @Override public boolean isHttpRequestPending (HttpRequest httpRequest) { return netJavaImpl.isHttpRequestPending(httpRequest); } @Override public ServerSocket newServerSocket (Protocol protocol, String hostname, int port, ServerSocketHints hints) { return new NetJavaServerSocketImpl(protocol, hostname, port, hints); } @Override public ServerSocket newServerSocket (Protocol protocol, int port, ServerSocketHints hints) { return new NetJavaServerSocketImpl(protocol, port, hints); } @Override public Socket newClientSocket (Protocol protocol, String host, int port, SocketHints hints) { return new NetJavaSocketImpl(protocol, host, port, hints); } @Override public boolean openURI (String URI) { boolean result = false; try { if (!GraphicsEnvironment.isHeadless() && Desktop.isDesktopSupported()) { if (Desktop.getDesktop().isSupported(Action.BROWSE)) { Desktop.getDesktop().browse(java.net.URI.create(URI)); result = true; } } else { Gdx.app.error("HeadlessNet", "Opening URIs on this environment is not supported. Ignoring."); } } catch (Throwable t) { Gdx.app.error("HeadlessNet", "Failed to open URI. ", t); } return result; } }
1
libgdx/libgdx
7,305
Adds status detection for an httpRequest
This commit adds the public boolean isHttpRequestPending (HttpRequest httpRequest) method to Gdx.net user interface. It allows end users to detect if an httpRequest is pending or already finished. It helpfull for creating advanced business logic.
supermaximus80
"2023-12-22T21:58:24Z"
"2023-12-27T14:37:55Z"
60f074309093046d7fd9dd3c895bba398b415797
2b691f735f4b167c062f8f68186a6d7237d3d855
Adds status detection for an httpRequest. This commit adds the public boolean isHttpRequestPending (HttpRequest httpRequest) method to Gdx.net user interface. It allows end users to detect if an httpRequest is pending or already finished. It helpfull for creating advanced business logic.
./backends/gdx-backend-lwjgl/src/com/badlogic/gdx/backends/lwjgl/LwjglNet.java
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.backends.lwjgl; import org.lwjgl.Sys; import com.badlogic.gdx.Net; import com.badlogic.gdx.net.NetJavaImpl; import com.badlogic.gdx.net.ServerSocket; import com.badlogic.gdx.net.ServerSocketHints; import com.badlogic.gdx.net.Socket; import com.badlogic.gdx.net.SocketHints; import com.badlogic.gdx.net.NetJavaSocketImpl; import com.badlogic.gdx.net.NetJavaServerSocketImpl; /** LWJGL implementation of the {@link Net} API, it could be reused in other Desktop backends since it doesn't depend on LWJGL. * @author acoppes */ public class LwjglNet implements Net { NetJavaImpl netJavaImpl; public LwjglNet (LwjglApplicationConfiguration configuration) { netJavaImpl = new NetJavaImpl(configuration.maxNetThreads); } @Override public void sendHttpRequest (HttpRequest httpRequest, HttpResponseListener httpResponseListener) { netJavaImpl.sendHttpRequest(httpRequest, httpResponseListener); } @Override public void cancelHttpRequest (HttpRequest httpRequest) { netJavaImpl.cancelHttpRequest(httpRequest); } @Override public ServerSocket newServerSocket (Protocol protocol, String ipAddress, int port, ServerSocketHints hints) { return new NetJavaServerSocketImpl(protocol, ipAddress, port, hints); } @Override public ServerSocket newServerSocket (Protocol protocol, int port, ServerSocketHints hints) { return new NetJavaServerSocketImpl(protocol, port, hints); } @Override public Socket newClientSocket (Protocol protocol, String host, int port, SocketHints hints) { return new NetJavaSocketImpl(protocol, host, port, hints); } @Override public boolean openURI (String URI) { return Sys.openURL(URI); } }
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.backends.lwjgl; import org.lwjgl.Sys; import com.badlogic.gdx.Net; import com.badlogic.gdx.net.NetJavaImpl; import com.badlogic.gdx.net.ServerSocket; import com.badlogic.gdx.net.ServerSocketHints; import com.badlogic.gdx.net.Socket; import com.badlogic.gdx.net.SocketHints; import com.badlogic.gdx.net.NetJavaSocketImpl; import com.badlogic.gdx.net.NetJavaServerSocketImpl; /** LWJGL implementation of the {@link Net} API, it could be reused in other Desktop backends since it doesn't depend on LWJGL. * @author acoppes */ public class LwjglNet implements Net { NetJavaImpl netJavaImpl; public LwjglNet (LwjglApplicationConfiguration configuration) { netJavaImpl = new NetJavaImpl(configuration.maxNetThreads); } @Override public void sendHttpRequest (HttpRequest httpRequest, HttpResponseListener httpResponseListener) { netJavaImpl.sendHttpRequest(httpRequest, httpResponseListener); } @Override public void cancelHttpRequest (HttpRequest httpRequest) { netJavaImpl.cancelHttpRequest(httpRequest); } @Override public boolean isHttpRequestPending (HttpRequest httpRequest) { return netJavaImpl.isHttpRequestPending(httpRequest); } @Override public ServerSocket newServerSocket (Protocol protocol, String ipAddress, int port, ServerSocketHints hints) { return new NetJavaServerSocketImpl(protocol, ipAddress, port, hints); } @Override public ServerSocket newServerSocket (Protocol protocol, int port, ServerSocketHints hints) { return new NetJavaServerSocketImpl(protocol, port, hints); } @Override public Socket newClientSocket (Protocol protocol, String host, int port, SocketHints hints) { return new NetJavaSocketImpl(protocol, host, port, hints); } @Override public boolean openURI (String URI) { return Sys.openURL(URI); } }
1
libgdx/libgdx
7,305
Adds status detection for an httpRequest
This commit adds the public boolean isHttpRequestPending (HttpRequest httpRequest) method to Gdx.net user interface. It allows end users to detect if an httpRequest is pending or already finished. It helpfull for creating advanced business logic.
supermaximus80
"2023-12-22T21:58:24Z"
"2023-12-27T14:37:55Z"
60f074309093046d7fd9dd3c895bba398b415797
2b691f735f4b167c062f8f68186a6d7237d3d855
Adds status detection for an httpRequest. This commit adds the public boolean isHttpRequestPending (HttpRequest httpRequest) method to Gdx.net user interface. It allows end users to detect if an httpRequest is pending or already finished. It helpfull for creating advanced business logic.
./backends/gdx-backend-lwjgl3/src/com/badlogic/gdx/backends/lwjgl3/Lwjgl3Net.java
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.backends.lwjgl3; import java.awt.Desktop; import java.net.URI; import com.badlogic.gdx.Net; import com.badlogic.gdx.net.NetJavaImpl; import com.badlogic.gdx.net.NetJavaServerSocketImpl; import com.badlogic.gdx.net.NetJavaSocketImpl; import com.badlogic.gdx.net.ServerSocket; import com.badlogic.gdx.net.ServerSocketHints; import com.badlogic.gdx.net.Socket; import com.badlogic.gdx.net.SocketHints; import com.badlogic.gdx.utils.SharedLibraryLoader; /** LWJGL implementation of the {@link Net} API, it could be reused in other Desktop backends since it doesn't depend on LWJGL. * @author acoppes */ public class Lwjgl3Net implements Net { NetJavaImpl netJavaImpl; public Lwjgl3Net (Lwjgl3ApplicationConfiguration configuration) { netJavaImpl = new NetJavaImpl(configuration.maxNetThreads); } @Override public void sendHttpRequest (HttpRequest httpRequest, HttpResponseListener httpResponseListener) { netJavaImpl.sendHttpRequest(httpRequest, httpResponseListener); } @Override public void cancelHttpRequest (HttpRequest httpRequest) { netJavaImpl.cancelHttpRequest(httpRequest); } @Override public ServerSocket newServerSocket (Protocol protocol, String ipAddress, int port, ServerSocketHints hints) { return new NetJavaServerSocketImpl(protocol, ipAddress, port, hints); } @Override public ServerSocket newServerSocket (Protocol protocol, int port, ServerSocketHints hints) { return new NetJavaServerSocketImpl(protocol, port, hints); } @Override public Socket newClientSocket (Protocol protocol, String host, int port, SocketHints hints) { return new NetJavaSocketImpl(protocol, host, port, hints); } @Override public boolean openURI (String uri) { if (SharedLibraryLoader.isMac) { try { (new ProcessBuilder("open", (new URI(uri).toString()))).start(); return true; } catch (Throwable t) { return false; } } else if (Desktop.isDesktopSupported() && Desktop.getDesktop().isSupported(Desktop.Action.BROWSE)) { try { Desktop.getDesktop().browse(new URI(uri)); return true; } catch (Throwable t) { return false; } } else if (SharedLibraryLoader.isLinux) { try { (new ProcessBuilder("xdg-open", (new URI(uri).toString()))).start(); return true; } catch (Throwable t) { return false; } } return false; } }
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.backends.lwjgl3; import java.awt.Desktop; import java.net.URI; import com.badlogic.gdx.Net; import com.badlogic.gdx.net.NetJavaImpl; import com.badlogic.gdx.net.NetJavaServerSocketImpl; import com.badlogic.gdx.net.NetJavaSocketImpl; import com.badlogic.gdx.net.ServerSocket; import com.badlogic.gdx.net.ServerSocketHints; import com.badlogic.gdx.net.Socket; import com.badlogic.gdx.net.SocketHints; import com.badlogic.gdx.utils.SharedLibraryLoader; /** LWJGL implementation of the {@link Net} API, it could be reused in other Desktop backends since it doesn't depend on LWJGL. * @author acoppes */ public class Lwjgl3Net implements Net { NetJavaImpl netJavaImpl; public Lwjgl3Net (Lwjgl3ApplicationConfiguration configuration) { netJavaImpl = new NetJavaImpl(configuration.maxNetThreads); } @Override public void sendHttpRequest (HttpRequest httpRequest, HttpResponseListener httpResponseListener) { netJavaImpl.sendHttpRequest(httpRequest, httpResponseListener); } @Override public void cancelHttpRequest (HttpRequest httpRequest) { netJavaImpl.cancelHttpRequest(httpRequest); } @Override public boolean isHttpRequestPending (HttpRequest httpRequest) { return netJavaImpl.isHttpRequestPending(httpRequest); } @Override public ServerSocket newServerSocket (Protocol protocol, String ipAddress, int port, ServerSocketHints hints) { return new NetJavaServerSocketImpl(protocol, ipAddress, port, hints); } @Override public ServerSocket newServerSocket (Protocol protocol, int port, ServerSocketHints hints) { return new NetJavaServerSocketImpl(protocol, port, hints); } @Override public Socket newClientSocket (Protocol protocol, String host, int port, SocketHints hints) { return new NetJavaSocketImpl(protocol, host, port, hints); } @Override public boolean openURI (String uri) { if (SharedLibraryLoader.isMac) { try { (new ProcessBuilder("open", (new URI(uri).toString()))).start(); return true; } catch (Throwable t) { return false; } } else if (Desktop.isDesktopSupported() && Desktop.getDesktop().isSupported(Desktop.Action.BROWSE)) { try { Desktop.getDesktop().browse(new URI(uri)); return true; } catch (Throwable t) { return false; } } else if (SharedLibraryLoader.isLinux) { try { (new ProcessBuilder("xdg-open", (new URI(uri).toString()))).start(); return true; } catch (Throwable t) { return false; } } return false; } }
1
libgdx/libgdx
7,305
Adds status detection for an httpRequest
This commit adds the public boolean isHttpRequestPending (HttpRequest httpRequest) method to Gdx.net user interface. It allows end users to detect if an httpRequest is pending or already finished. It helpfull for creating advanced business logic.
supermaximus80
"2023-12-22T21:58:24Z"
"2023-12-27T14:37:55Z"
60f074309093046d7fd9dd3c895bba398b415797
2b691f735f4b167c062f8f68186a6d7237d3d855
Adds status detection for an httpRequest. This commit adds the public boolean isHttpRequestPending (HttpRequest httpRequest) method to Gdx.net user interface. It allows end users to detect if an httpRequest is pending or already finished. It helpfull for creating advanced business logic.
./backends/gdx-backend-robovm-metalangle/src/com/badlogic/gdx/backends/iosrobovm/IOSNet.java
/*DO NOT EDIT THIS FILE - it is machine generated*/ package com.badlogic.gdx.backends.iosrobovm; import org.robovm.apple.foundation.NSURL; import org.robovm.apple.uikit.UIApplication; import com.badlogic.gdx.Net; import com.badlogic.gdx.net.NetJavaImpl; import com.badlogic.gdx.net.NetJavaServerSocketImpl; import com.badlogic.gdx.net.NetJavaSocketImpl; import com.badlogic.gdx.net.ServerSocket; import com.badlogic.gdx.net.ServerSocketHints; import com.badlogic.gdx.net.Socket; import com.badlogic.gdx.net.SocketHints; /** DO NOT EDIT THIS FILE - it is machine generated */ public class IOSNet implements Net { NetJavaImpl netJavaImpl; final UIApplication uiApp; public IOSNet (IOSApplication app, IOSApplicationConfiguration configuration) { uiApp = app.uiApp; netJavaImpl = new NetJavaImpl(configuration.maxNetThreads); } @Override public void sendHttpRequest (HttpRequest httpRequest, HttpResponseListener httpResponseListener) { netJavaImpl.sendHttpRequest(httpRequest, httpResponseListener); } @Override public void cancelHttpRequest (HttpRequest httpRequest) { netJavaImpl.cancelHttpRequest(httpRequest); } @Override public ServerSocket newServerSocket (Protocol protocol, String hostname, int port, ServerSocketHints hints) { return new NetJavaServerSocketImpl(protocol, hostname, port, hints); } @Override public ServerSocket newServerSocket (Protocol protocol, int port, ServerSocketHints hints) { return new NetJavaServerSocketImpl(protocol, port, hints); } @Override public Socket newClientSocket (Protocol protocol, String host, int port, SocketHints hints) { return new NetJavaSocketImpl(protocol, host, port, hints); } @Override public boolean openURI (String URI) { NSURL url = new NSURL(URI); if (uiApp.canOpenURL(url)) { uiApp.openURL(url); return true; } return false; } }
/*DO NOT EDIT THIS FILE - it is machine generated*/ package com.badlogic.gdx.backends.iosrobovm; import org.robovm.apple.foundation.NSURL; import org.robovm.apple.uikit.UIApplication; import com.badlogic.gdx.Net; import com.badlogic.gdx.net.NetJavaImpl; import com.badlogic.gdx.net.NetJavaServerSocketImpl; import com.badlogic.gdx.net.NetJavaSocketImpl; import com.badlogic.gdx.net.ServerSocket; import com.badlogic.gdx.net.ServerSocketHints; import com.badlogic.gdx.net.Socket; import com.badlogic.gdx.net.SocketHints; /** DO NOT EDIT THIS FILE - it is machine generated */ public class IOSNet implements Net { NetJavaImpl netJavaImpl; final UIApplication uiApp; public IOSNet (IOSApplication app, IOSApplicationConfiguration configuration) { uiApp = app.uiApp; netJavaImpl = new NetJavaImpl(configuration.maxNetThreads); } @Override public void sendHttpRequest (HttpRequest httpRequest, HttpResponseListener httpResponseListener) { netJavaImpl.sendHttpRequest(httpRequest, httpResponseListener); } @Override public void cancelHttpRequest (HttpRequest httpRequest) { netJavaImpl.cancelHttpRequest(httpRequest); } @Override public boolean isHttpRequestPending (HttpRequest httpRequest) { return netJavaImpl.isHttpRequestPending(httpRequest); } @Override public ServerSocket newServerSocket (Protocol protocol, String hostname, int port, ServerSocketHints hints) { return new NetJavaServerSocketImpl(protocol, hostname, port, hints); } @Override public ServerSocket newServerSocket (Protocol protocol, int port, ServerSocketHints hints) { return new NetJavaServerSocketImpl(protocol, port, hints); } @Override public Socket newClientSocket (Protocol protocol, String host, int port, SocketHints hints) { return new NetJavaSocketImpl(protocol, host, port, hints); } @Override public boolean openURI (String URI) { NSURL url = new NSURL(URI); if (uiApp.canOpenURL(url)) { uiApp.openURL(url); return true; } return false; } }
1
libgdx/libgdx
7,305
Adds status detection for an httpRequest
This commit adds the public boolean isHttpRequestPending (HttpRequest httpRequest) method to Gdx.net user interface. It allows end users to detect if an httpRequest is pending or already finished. It helpfull for creating advanced business logic.
supermaximus80
"2023-12-22T21:58:24Z"
"2023-12-27T14:37:55Z"
60f074309093046d7fd9dd3c895bba398b415797
2b691f735f4b167c062f8f68186a6d7237d3d855
Adds status detection for an httpRequest. This commit adds the public boolean isHttpRequestPending (HttpRequest httpRequest) method to Gdx.net user interface. It allows end users to detect if an httpRequest is pending or already finished. It helpfull for creating advanced business logic.
./backends/gdx-backend-robovm/src/com/badlogic/gdx/backends/iosrobovm/IOSNet.java
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.backends.iosrobovm; import org.robovm.apple.foundation.NSURL; import org.robovm.apple.uikit.UIApplication; import com.badlogic.gdx.Net; import com.badlogic.gdx.net.NetJavaImpl; import com.badlogic.gdx.net.NetJavaServerSocketImpl; import com.badlogic.gdx.net.NetJavaSocketImpl; import com.badlogic.gdx.net.ServerSocket; import com.badlogic.gdx.net.ServerSocketHints; import com.badlogic.gdx.net.Socket; import com.badlogic.gdx.net.SocketHints; public class IOSNet implements Net { NetJavaImpl netJavaImpl; final UIApplication uiApp; public IOSNet (IOSApplication app, IOSApplicationConfiguration configuration) { uiApp = app.uiApp; netJavaImpl = new NetJavaImpl(configuration.maxNetThreads); } @Override public void sendHttpRequest (HttpRequest httpRequest, HttpResponseListener httpResponseListener) { netJavaImpl.sendHttpRequest(httpRequest, httpResponseListener); } @Override public void cancelHttpRequest (HttpRequest httpRequest) { netJavaImpl.cancelHttpRequest(httpRequest); } @Override public ServerSocket newServerSocket (Protocol protocol, String hostname, int port, ServerSocketHints hints) { return new NetJavaServerSocketImpl(protocol, hostname, port, hints); } @Override public ServerSocket newServerSocket (Protocol protocol, int port, ServerSocketHints hints) { return new NetJavaServerSocketImpl(protocol, port, hints); } @Override public Socket newClientSocket (Protocol protocol, String host, int port, SocketHints hints) { return new NetJavaSocketImpl(protocol, host, port, hints); } @Override public boolean openURI (String URI) { NSURL url = new NSURL(URI); if (uiApp.canOpenURL(url)) { uiApp.openURL(url); return true; } return false; } }
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.backends.iosrobovm; import org.robovm.apple.foundation.NSURL; import org.robovm.apple.uikit.UIApplication; import com.badlogic.gdx.Net; import com.badlogic.gdx.net.NetJavaImpl; import com.badlogic.gdx.net.NetJavaServerSocketImpl; import com.badlogic.gdx.net.NetJavaSocketImpl; import com.badlogic.gdx.net.ServerSocket; import com.badlogic.gdx.net.ServerSocketHints; import com.badlogic.gdx.net.Socket; import com.badlogic.gdx.net.SocketHints; public class IOSNet implements Net { NetJavaImpl netJavaImpl; final UIApplication uiApp; public IOSNet (IOSApplication app, IOSApplicationConfiguration configuration) { uiApp = app.uiApp; netJavaImpl = new NetJavaImpl(configuration.maxNetThreads); } @Override public void sendHttpRequest (HttpRequest httpRequest, HttpResponseListener httpResponseListener) { netJavaImpl.sendHttpRequest(httpRequest, httpResponseListener); } @Override public void cancelHttpRequest (HttpRequest httpRequest) { netJavaImpl.cancelHttpRequest(httpRequest); } @Override public boolean isHttpRequestPending (HttpRequest httpRequest) { return netJavaImpl.isHttpRequestPending(httpRequest); } @Override public ServerSocket newServerSocket (Protocol protocol, String hostname, int port, ServerSocketHints hints) { return new NetJavaServerSocketImpl(protocol, hostname, port, hints); } @Override public ServerSocket newServerSocket (Protocol protocol, int port, ServerSocketHints hints) { return new NetJavaServerSocketImpl(protocol, port, hints); } @Override public Socket newClientSocket (Protocol protocol, String host, int port, SocketHints hints) { return new NetJavaSocketImpl(protocol, host, port, hints); } @Override public boolean openURI (String URI) { NSURL url = new NSURL(URI); if (uiApp.canOpenURL(url)) { uiApp.openURL(url); return true; } return false; } }
1
libgdx/libgdx
7,305
Adds status detection for an httpRequest
This commit adds the public boolean isHttpRequestPending (HttpRequest httpRequest) method to Gdx.net user interface. It allows end users to detect if an httpRequest is pending or already finished. It helpfull for creating advanced business logic.
supermaximus80
"2023-12-22T21:58:24Z"
"2023-12-27T14:37:55Z"
60f074309093046d7fd9dd3c895bba398b415797
2b691f735f4b167c062f8f68186a6d7237d3d855
Adds status detection for an httpRequest. This commit adds the public boolean isHttpRequestPending (HttpRequest httpRequest) method to Gdx.net user interface. It allows end users to detect if an httpRequest is pending or already finished. It helpfull for creating advanced business logic.
./backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/GwtNet.java
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.backends.gwt; import java.io.IOException; import java.io.InputStream; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.Set; import com.badlogic.gdx.Net; import com.badlogic.gdx.net.HttpStatus; import com.badlogic.gdx.net.ServerSocket; import com.badlogic.gdx.net.ServerSocketHints; import com.badlogic.gdx.net.Socket; import com.badlogic.gdx.net.SocketHints; import com.badlogic.gdx.utils.GdxRuntimeException; import com.badlogic.gdx.utils.ObjectMap; import com.google.gwt.http.client.Header; import com.google.gwt.http.client.Request; import com.google.gwt.http.client.RequestBuilder; import com.google.gwt.http.client.RequestCallback; import com.google.gwt.http.client.Response; import com.google.gwt.user.client.Window; public class GwtNet implements Net { ObjectMap<HttpRequest, Request> requests; ObjectMap<HttpRequest, HttpResponseListener> listeners; GwtApplicationConfiguration config; private final class HttpClientResponse implements HttpResponse { private Response response; private HttpStatus status; public HttpClientResponse (Response response) { this.response = response; this.status = new HttpStatus(response.getStatusCode()); } @Override public byte[] getResult () { throw new GdxRuntimeException("HttpResponse.getResult() is not available on GWT. " + "Use getResultAsString() if possible, or make use of AssetDownloader class."); } @Override public String getResultAsString () { return response.getText(); } @Override public InputStream getResultAsStream () { throw new GdxRuntimeException("HttpResponse.getResultAsStream() is not available on GWT. " + "Use getResultAsString() if possible, or make use of AssetDownloader class."); } @Override public HttpStatus getStatus () { return status; } @Override public Map<String, List<String>> getHeaders () { Map<String, List<String>> headers = new HashMap<String, List<String>>(); Header[] responseHeaders = response.getHeaders(); for (int i = 0; i < responseHeaders.length; i++) { Header header = responseHeaders[i]; if (header != null) { String headerName = responseHeaders[i].getName(); List<String> headerValues = headers.get(headerName); if (headerValues == null) { headerValues = new ArrayList<String>(); headers.put(headerName, headerValues); } headerValues.add(responseHeaders[i].getValue()); } } return headers; } @Override public String getHeader (String name) { return response.getHeader(name); } } public GwtNet (GwtApplicationConfiguration config) { this.config = config; requests = new ObjectMap<HttpRequest, Request>(); listeners = new ObjectMap<HttpRequest, HttpResponseListener>(); } @Override public void sendHttpRequest (final HttpRequest httpRequest, final HttpResponseListener httpResultListener) { if (httpRequest.getUrl() == null) { httpResultListener.failed(new GdxRuntimeException("can't process a HTTP request without URL set")); return; } final String method = httpRequest.getMethod(); final String value = httpRequest.getContent(); final boolean valueInBody = method.equalsIgnoreCase(HttpMethods.POST) || method.equals(HttpMethods.PUT); RequestBuilder builder; String url = httpRequest.getUrl(); if (method.equalsIgnoreCase(HttpMethods.HEAD)) { if (value != null) { url += "?" + value; } builder = new RequestBuilder(RequestBuilder.HEAD, url); } else if (method.equalsIgnoreCase(HttpMethods.GET)) { if (value != null) { url += "?" + value; } builder = new RequestBuilder(RequestBuilder.GET, url); } else if (method.equalsIgnoreCase(HttpMethods.POST)) { builder = new RequestBuilder(RequestBuilder.POST, url); } else if (method.equalsIgnoreCase(HttpMethods.DELETE)) { if (value != null) { url += "?" + value; } builder = new RequestBuilder(RequestBuilder.DELETE, url); } else if (method.equalsIgnoreCase(HttpMethods.PUT)) { builder = new RequestBuilder(RequestBuilder.PUT, url); } else { throw new GdxRuntimeException("Unsupported HTTP Method"); } Map<String, String> content = httpRequest.getHeaders(); Set<String> keySet = content.keySet(); for (String name : keySet) { builder.setHeader(name, content.get(name)); } builder.setTimeoutMillis(httpRequest.getTimeOut()); builder.setIncludeCredentials(httpRequest.getIncludeCredentials()); try { Request request = builder.sendRequest(valueInBody ? value : null, new RequestCallback() { @Override public void onResponseReceived (Request request, Response response) { if (response.getStatusCode() > 0) { httpResultListener.handleHttpResponse(new HttpClientResponse(response)); requests.remove(httpRequest); listeners.remove(httpRequest); } else { onError(request, new IOException("HTTP request failed")); } } @Override public void onError (Request request, Throwable exception) { httpResultListener.failed(exception); requests.remove(httpRequest); listeners.remove(httpRequest); } }); requests.put(httpRequest, request); listeners.put(httpRequest, httpResultListener); } catch (Throwable e) { httpResultListener.failed(e); } } @Override public void cancelHttpRequest (HttpRequest httpRequest) { HttpResponseListener httpResponseListener = listeners.get(httpRequest); Request request = requests.get(httpRequest); if (httpResponseListener != null && request != null) { request.cancel(); httpResponseListener.cancelled(); requests.remove(httpRequest); listeners.remove(httpRequest); } } @Override public ServerSocket newServerSocket (Protocol protocol, String hostname, int port, ServerSocketHints hints) { throw new UnsupportedOperationException("Not implemented"); } @Override public ServerSocket newServerSocket (Protocol protocol, int port, ServerSocketHints hints) { throw new UnsupportedOperationException("Not implemented"); } @Override public Socket newClientSocket (Protocol protocol, String host, int port, SocketHints hints) { throw new UnsupportedOperationException("Not implemented"); } @Override public boolean openURI (String URI) { if (config.openURLInNewWindow) { Window.open(URI, "_blank", null); } else { Window.Location.assign(URI); } return true; } }
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.backends.gwt; import java.io.IOException; import java.io.InputStream; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.Set; import com.badlogic.gdx.Net; import com.badlogic.gdx.net.HttpStatus; import com.badlogic.gdx.net.ServerSocket; import com.badlogic.gdx.net.ServerSocketHints; import com.badlogic.gdx.net.Socket; import com.badlogic.gdx.net.SocketHints; import com.badlogic.gdx.utils.GdxRuntimeException; import com.badlogic.gdx.utils.ObjectMap; import com.google.gwt.http.client.Header; import com.google.gwt.http.client.Request; import com.google.gwt.http.client.RequestBuilder; import com.google.gwt.http.client.RequestCallback; import com.google.gwt.http.client.Response; import com.google.gwt.user.client.Window; public class GwtNet implements Net { ObjectMap<HttpRequest, Request> requests; ObjectMap<HttpRequest, HttpResponseListener> listeners; GwtApplicationConfiguration config; private final class HttpClientResponse implements HttpResponse { private Response response; private HttpStatus status; public HttpClientResponse (Response response) { this.response = response; this.status = new HttpStatus(response.getStatusCode()); } @Override public byte[] getResult () { throw new GdxRuntimeException("HttpResponse.getResult() is not available on GWT. " + "Use getResultAsString() if possible, or make use of AssetDownloader class."); } @Override public String getResultAsString () { return response.getText(); } @Override public InputStream getResultAsStream () { throw new GdxRuntimeException("HttpResponse.getResultAsStream() is not available on GWT. " + "Use getResultAsString() if possible, or make use of AssetDownloader class."); } @Override public HttpStatus getStatus () { return status; } @Override public Map<String, List<String>> getHeaders () { Map<String, List<String>> headers = new HashMap<String, List<String>>(); Header[] responseHeaders = response.getHeaders(); for (int i = 0; i < responseHeaders.length; i++) { Header header = responseHeaders[i]; if (header != null) { String headerName = responseHeaders[i].getName(); List<String> headerValues = headers.get(headerName); if (headerValues == null) { headerValues = new ArrayList<String>(); headers.put(headerName, headerValues); } headerValues.add(responseHeaders[i].getValue()); } } return headers; } @Override public String getHeader (String name) { return response.getHeader(name); } } public GwtNet (GwtApplicationConfiguration config) { this.config = config; requests = new ObjectMap<HttpRequest, Request>(); listeners = new ObjectMap<HttpRequest, HttpResponseListener>(); } @Override public void sendHttpRequest (final HttpRequest httpRequest, final HttpResponseListener httpResultListener) { if (httpRequest.getUrl() == null) { httpResultListener.failed(new GdxRuntimeException("can't process a HTTP request without URL set")); return; } final String method = httpRequest.getMethod(); final String value = httpRequest.getContent(); final boolean valueInBody = method.equalsIgnoreCase(HttpMethods.POST) || method.equals(HttpMethods.PUT); RequestBuilder builder; String url = httpRequest.getUrl(); if (method.equalsIgnoreCase(HttpMethods.HEAD)) { if (value != null) { url += "?" + value; } builder = new RequestBuilder(RequestBuilder.HEAD, url); } else if (method.equalsIgnoreCase(HttpMethods.GET)) { if (value != null) { url += "?" + value; } builder = new RequestBuilder(RequestBuilder.GET, url); } else if (method.equalsIgnoreCase(HttpMethods.POST)) { builder = new RequestBuilder(RequestBuilder.POST, url); } else if (method.equalsIgnoreCase(HttpMethods.DELETE)) { if (value != null) { url += "?" + value; } builder = new RequestBuilder(RequestBuilder.DELETE, url); } else if (method.equalsIgnoreCase(HttpMethods.PUT)) { builder = new RequestBuilder(RequestBuilder.PUT, url); } else { throw new GdxRuntimeException("Unsupported HTTP Method"); } Map<String, String> content = httpRequest.getHeaders(); Set<String> keySet = content.keySet(); for (String name : keySet) { builder.setHeader(name, content.get(name)); } builder.setTimeoutMillis(httpRequest.getTimeOut()); builder.setIncludeCredentials(httpRequest.getIncludeCredentials()); try { Request request = builder.sendRequest(valueInBody ? value : null, new RequestCallback() { @Override public void onResponseReceived (Request request, Response response) { if (response.getStatusCode() > 0) { httpResultListener.handleHttpResponse(new HttpClientResponse(response)); requests.remove(httpRequest); listeners.remove(httpRequest); } else { onError(request, new IOException("HTTP request failed")); } } @Override public void onError (Request request, Throwable exception) { httpResultListener.failed(exception); requests.remove(httpRequest); listeners.remove(httpRequest); } }); requests.put(httpRequest, request); listeners.put(httpRequest, httpResultListener); } catch (Throwable e) { httpResultListener.failed(e); } } @Override public void cancelHttpRequest (HttpRequest httpRequest) { HttpResponseListener httpResponseListener = listeners.get(httpRequest); Request request = requests.get(httpRequest); if (httpResponseListener != null && request != null) { request.cancel(); httpResponseListener.cancelled(); requests.remove(httpRequest); listeners.remove(httpRequest); } } @Override public boolean isHttpRequestPending (HttpRequest httpRequest) { return listeners.get(httpRequest) != null && requests.get(httpRequest) != null; } @Override public ServerSocket newServerSocket (Protocol protocol, String hostname, int port, ServerSocketHints hints) { throw new UnsupportedOperationException("Not implemented"); } @Override public ServerSocket newServerSocket (Protocol protocol, int port, ServerSocketHints hints) { throw new UnsupportedOperationException("Not implemented"); } @Override public Socket newClientSocket (Protocol protocol, String host, int port, SocketHints hints) { throw new UnsupportedOperationException("Not implemented"); } @Override public boolean openURI (String URI) { if (config.openURLInNewWindow) { Window.open(URI, "_blank", null); } else { Window.Location.assign(URI); } return true; } }
1
libgdx/libgdx
7,305
Adds status detection for an httpRequest
This commit adds the public boolean isHttpRequestPending (HttpRequest httpRequest) method to Gdx.net user interface. It allows end users to detect if an httpRequest is pending or already finished. It helpfull for creating advanced business logic.
supermaximus80
"2023-12-22T21:58:24Z"
"2023-12-27T14:37:55Z"
60f074309093046d7fd9dd3c895bba398b415797
2b691f735f4b167c062f8f68186a6d7237d3d855
Adds status detection for an httpRequest. This commit adds the public boolean isHttpRequestPending (HttpRequest httpRequest) method to Gdx.net user interface. It allows end users to detect if an httpRequest is pending or already finished. It helpfull for creating advanced business logic.
./gdx/src/com/badlogic/gdx/Net.java
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx; import java.io.InputStream; import java.io.OutputStream; import java.util.HashMap; import java.util.List; import java.util.Map; import com.badlogic.gdx.Application.ApplicationType; import com.badlogic.gdx.net.HttpRequestHeader; import com.badlogic.gdx.net.HttpResponseHeader; import com.badlogic.gdx.net.HttpStatus; import com.badlogic.gdx.net.ServerSocket; import com.badlogic.gdx.net.ServerSocketHints; import com.badlogic.gdx.net.Socket; import com.badlogic.gdx.net.SocketHints; import com.badlogic.gdx.utils.GdxRuntimeException; import com.badlogic.gdx.utils.Null; import com.badlogic.gdx.utils.Pool.Poolable; /** Provides methods to perform networking operations, such as simple HTTP get and post requests, and TCP server/client socket * communication. * </p> * * To perform an HTTP request create a {@link HttpRequest} with the HTTP method (see {@link HttpMethods} for common methods) and * invoke {@link #sendHttpRequest(HttpRequest, HttpResponseListener)} with it and a {@link HttpResponseListener}. After the HTTP * request was processed, the {@link HttpResponseListener} is called with a {@link HttpResponse} with the HTTP response values and * an status code to determine if the request was successful or not. * </p> * * To create a TCP client socket to communicate with a remote TCP server, invoke the * {@link #newClientSocket(Protocol, String, int, SocketHints)} method. The returned {@link Socket} offers an {@link InputStream} * and {@link OutputStream} to communicate with the end point. * </p> * * To create a TCP server socket that waits for incoming connections, invoke the * {@link #newServerSocket(Protocol, int, ServerSocketHints)} method. The returned {@link ServerSocket} offers an * {@link ServerSocket#accept(SocketHints options)} method that waits for an incoming connection. * * @author mzechner * @author noblemaster * @author arielsan */ public interface Net { /** HTTP response interface with methods to get the response data as a byte[], a {@link String} or an {@link InputStream}. */ public static interface HttpResponse { /** Returns the data of the HTTP response as a byte[]. * <p> * <b>Note</b>: This method may only be called once per response. * </p> * @return the result as a byte[] or null in case of a timeout or if the operation was canceled/terminated abnormally. The * timeout is specified when creating the HTTP request, with {@link HttpRequest#setTimeOut(int)} */ byte[] getResult (); /** Returns the data of the HTTP response as a {@link String}. * <p> * <b>Note</b>: This method may only be called once per response. * </p> * @return the result as a string or null in case of a timeout or if the operation was canceled/terminated abnormally. The * timeout is specified when creating the HTTP request, with {@link HttpRequest#setTimeOut(int)} */ String getResultAsString (); /** Returns the data of the HTTP response as an {@link InputStream}. <b><br> * Warning:</b> Do not store a reference to this InputStream outside of * {@link HttpResponseListener#handleHttpResponse(HttpResponse)}. The underlying HTTP connection will be closed after that * callback finishes executing. Reading from the InputStream after it's connection has been closed will lead to exception. * @return An {@link InputStream} with the {@link HttpResponse} data. */ InputStream getResultAsStream (); /** Returns the {@link HttpStatus} containing the statusCode of the HTTP response. */ HttpStatus getStatus (); /** Returns the value of the header with the given name as a {@link String}, or null if the header is not set. See * {@link HttpResponseHeader}. */ String getHeader (String name); /** Returns a Map of the headers. The keys are Strings that represent the header name. Each values is a List of Strings that * represent the corresponding header values. See {@link HttpResponseHeader}. */ Map<String, List<String>> getHeaders (); } /** Provides common HTTP methods to use when creating a {@link HttpRequest}. * <ul> * <li><b>HEAD</b> Asks for a response identical to that of a GET request but without the response body.</li> * <li><b>GET</b> requests a representation of the specified resource. Requests using GET should only retrieve data.</li> * <li><b>POST</b> is used to submit an entity to the specified resource, often causing a change in state or side effects on * the server.</li> * <li><b>PUT</b> replaces all current representations of the target resource with the request payload.</li> * <li><b>PATCH</b> method is used to apply partial modifications to a resource.</li> * <li><b>DELETE</b> deletes the specified resource.</li> * </ul> */ public static interface HttpMethods { /** The HEAD method asks for a response identical to that of a GET request, but without the response body. **/ public static final String HEAD = "HEAD"; /** The GET method requests a representation of the specified resource. Requests using GET should only retrieve data. **/ public static final String GET = "GET"; /** The POST method is used to submit an entity to the specified resource, often causing a change in state or side effects * on the server. **/ public static final String POST = "POST"; /** The PUT method replaces all current representations of the target resource with the request payload. **/ public static final String PUT = "PUT"; /** The PATCH method is used to apply partial modifications to a resource. **/ public static final String PATCH = "PATCH"; /** The DELETE method deletes the specified resource. **/ public static final String DELETE = "DELETE"; } /** Contains getters and setters for the following parameters: * <ul> * <li><strong>httpMethod:</strong> GET or POST are most common, can use {@link Net.HttpMethods HttpMethods} for static * references</li> * <li><strong>url:</strong> the url</li> * <li><strong>headers:</strong> a map of the headers, setter can be called multiple times</li> * <li><strong>timeout:</strong> time spent trying to connect before giving up</li> * <li><strong>content:</strong> A string containing the data to be used when processing the HTTP request.</li> * </ul> * * Abstracts the concept of a HTTP Request: * * <pre> * Map<String, String> parameters = new HashMap<String, String>(); * parameters.put("user", "myuser"); * * HttpRequest httpGet = new HttpRequest(HttpMethods.Get); * httpGet.setUrl("http://somewhere.net"); * httpGet.setContent(HttpParametersUtils.convertHttpParameters(parameters)); * ... * Gdx.net.sendHttpRequest (httpGet, new HttpResponseListener() { * public void handleHttpResponse(HttpResponse httpResponse) { * status = httpResponse.getResultAsString(); * //do stuff here based on response * } * * public void failed(Throwable t) { * status = "failed"; * //do stuff here based on the failed attempt * } * }); * </pre> */ public static class HttpRequest implements Poolable { private String httpMethod; private String url; private Map<String, String> headers; private int timeOut = 0; private String content; private InputStream contentStream; private long contentLength; private boolean followRedirects = true; private boolean includeCredentials = false; public HttpRequest () { this.headers = new HashMap<String, String>(); } /** Creates a new HTTP request with the specified HTTP method, see {@link HttpMethods}. * @param httpMethod This is the HTTP method for the request, see {@link HttpMethods} */ public HttpRequest (String httpMethod) { this(); this.httpMethod = httpMethod; } /** Sets the URL of the HTTP request. * @param url The URL to set. */ public void setUrl (String url) { this.url = url; } /** Sets a header to this HTTP request, see {@link HttpRequestHeader}. * @param name the name of the header. * @param value the value of the header. */ public void setHeader (String name, String value) { headers.put(name, value); } /** Sets the content to be used in the HTTP request. * @param content A string encoded in the corresponding Content-Encoding set in the headers, with the data to send with the * HTTP request. For example, in case of HTTP GET, the content is used as the query string of the GET while on a * HTTP POST it is used to send the POST data. */ public void setContent (String content) { this.content = content; } /** Sets the content as a stream to be used for a POST for example, to transmit custom data. * @param contentStream The stream with the content data. */ public void setContent (InputStream contentStream, long contentLength) { this.contentStream = contentStream; this.contentLength = contentLength; } /** Sets the time to wait for the HTTP request to be processed, use 0 block until it is done. The timeout is used for both * the timeout when establishing TCP connection, and the timeout until the first byte of data is received. * @param timeOut the number of milliseconds to wait before giving up, 0 or negative to block until the operation is done */ public void setTimeOut (int timeOut) { this.timeOut = timeOut; } /** Sets whether 301 and 302 redirects are followed. By default true. Can't be changed in the GWT backend because this uses * XmlHttpRequests which always redirect. * @param followRedirects whether to follow redirects. * @exception IllegalArgumentException if redirection is disabled on the GWT backend. */ public void setFollowRedirects (boolean followRedirects) throws IllegalArgumentException { if (followRedirects || Gdx.app.getType() != ApplicationType.WebGL) { this.followRedirects = followRedirects; } else { throw new IllegalArgumentException("Following redirects can't be disabled using the GWT/WebGL backend!"); } } /** Sets whether a cross-origin request will include credentials. Only used on GWT backend to allow cross-origin requests to * include credentials such as cookies, authorization headers, etc... */ public void setIncludeCredentials (boolean includeCredentials) { this.includeCredentials = includeCredentials; } /** Sets the HTTP method of the HttpRequest. */ public void setMethod (String httpMethod) { this.httpMethod = httpMethod; } /** Returns the timeOut of the HTTP request. * @return the timeOut. */ public int getTimeOut () { return timeOut; } /** Returns the HTTP method of the HttpRequest. */ public String getMethod () { return httpMethod; } /** Returns the URL of the HTTP request. */ public String getUrl () { return url; } /** Returns the content string to be used for the HTTP request. */ public String getContent () { return content; } /** Returns the content stream. */ public InputStream getContentStream () { return contentStream; } /** Returns the content length in case content is a stream. */ public long getContentLength () { return contentLength; } /** Returns a Map<String, String> with the headers of the HTTP request. */ public Map<String, String> getHeaders () { return headers; } /** Returns whether 301 and 302 redirects are followed. By default true. Whether to follow redirects. */ public boolean getFollowRedirects () { return followRedirects; } /** Returns whether a cross-origin request will include credentials. By default false. */ public boolean getIncludeCredentials () { return includeCredentials; } @Override public void reset () { httpMethod = null; url = null; headers.clear(); timeOut = 0; content = null; contentStream = null; contentLength = 0; followRedirects = true; } } /** Listener to be able to do custom logic once the {@link HttpResponse} is ready to be processed, register it with * {@link Net#sendHttpRequest(HttpRequest, HttpResponseListener)}. */ public static interface HttpResponseListener { /** Called when the {@link HttpRequest} has been processed and there is a {@link HttpResponse} ready. Passing data to the * rendering thread should be done using {@link Application#postRunnable(java.lang.Runnable runnable)} {@link HttpResponse} * contains the {@link HttpStatus} and should be used to determine if the request was successful or not (see more info at * {@link HttpStatus#getStatusCode()}). For example: * * <pre> * HttpResponseListener listener = new HttpResponseListener() { * public void handleHttpResponse (HttpResponse httpResponse) { * HttpStatus status = httpResponse.getStatus(); * if (status.getStatusCode() >= 200 && status.getStatusCode() < 300) { * // it was successful * } else { * // do something else * } * } * } * </pre> * * @param httpResponse The {@link HttpResponse} with the HTTP response values. */ void handleHttpResponse (HttpResponse httpResponse); /** Called if the {@link HttpRequest} failed because an exception when processing the HTTP request, could be a timeout any * other reason (not an HTTP error). * @param t If the HTTP request failed because an Exception, t encapsulates it to give more information. */ void failed (Throwable t); void cancelled (); } /** Process the specified {@link HttpRequest} and reports the {@link HttpResponse} to the specified * {@link HttpResponseListener}. * @param httpRequest The {@link HttpRequest} to be performed. * @param httpResponseListener The {@link HttpResponseListener} to call once the HTTP response is ready to be processed. Could * be null, in that case no listener is called. */ public void sendHttpRequest (HttpRequest httpRequest, @Null HttpResponseListener httpResponseListener); public void cancelHttpRequest (HttpRequest httpRequest); /** Protocol used by {@link Net#newServerSocket(Protocol, int, ServerSocketHints)} and * {@link Net#newClientSocket(Protocol, String, int, SocketHints)}. * @author mzechner */ public enum Protocol { TCP } /** Creates a new server socket on the given address and port, using the given {@link Protocol}, waiting for incoming * connections. * * @param hostname the hostname or ip address to bind the socket to * @param port the port to listen on * @param hints additional {@link ServerSocketHints} used to create the socket. Input null to use the default setting provided * by the system. * @return the {@link ServerSocket} * @throws GdxRuntimeException in case the socket couldn't be opened */ public ServerSocket newServerSocket (Protocol protocol, String hostname, int port, ServerSocketHints hints); /** Creates a new server socket on the given port, using the given {@link Protocol}, waiting for incoming connections. * * @param port the port to listen on * @param hints additional {@link ServerSocketHints} used to create the socket. Input null to use the default setting provided * by the system. * @return the {@link ServerSocket} * @throws GdxRuntimeException in case the socket couldn't be opened */ public ServerSocket newServerSocket (Protocol protocol, int port, ServerSocketHints hints); /** Creates a new TCP client socket that connects to the given host and port. * * @param host the host address * @param port the port * @param hints additional {@link SocketHints} used to create the socket. Input null to use the default setting provided by the * system. * @throws GdxRuntimeException in case the socket couldn't be opened */ public Socket newClientSocket (Protocol protocol, String host, int port, SocketHints hints); /** Launches the default browser to display a URI. If the default browser is not able to handle the specified URI, the * application registered for handling URIs of the specified type is invoked. The application is determined from the protocol * and path of the URI. A best effort is made to open the given URI; however, since external applications are involved, no * guarantee can be made as to whether the URI was actually opened. If it is known that the URI was not opened, false will be * returned; otherwise, true will be returned. * * @param URI the URI to be opened. * @return false if it is known the uri was not opened, true otherwise. */ public boolean openURI (String URI); }
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx; import java.io.InputStream; import java.io.OutputStream; import java.util.HashMap; import java.util.List; import java.util.Map; import com.badlogic.gdx.Application.ApplicationType; import com.badlogic.gdx.net.HttpRequestHeader; import com.badlogic.gdx.net.HttpResponseHeader; import com.badlogic.gdx.net.HttpStatus; import com.badlogic.gdx.net.ServerSocket; import com.badlogic.gdx.net.ServerSocketHints; import com.badlogic.gdx.net.Socket; import com.badlogic.gdx.net.SocketHints; import com.badlogic.gdx.utils.GdxRuntimeException; import com.badlogic.gdx.utils.Null; import com.badlogic.gdx.utils.Pool.Poolable; /** Provides methods to perform networking operations, such as simple HTTP get and post requests, and TCP server/client socket * communication. * </p> * * To perform an HTTP request create a {@link HttpRequest} with the HTTP method (see {@link HttpMethods} for common methods) and * invoke {@link #sendHttpRequest(HttpRequest, HttpResponseListener)} with it and a {@link HttpResponseListener}. After the HTTP * request was processed, the {@link HttpResponseListener} is called with a {@link HttpResponse} with the HTTP response values and * an status code to determine if the request was successful or not. * </p> * * To create a TCP client socket to communicate with a remote TCP server, invoke the * {@link #newClientSocket(Protocol, String, int, SocketHints)} method. The returned {@link Socket} offers an {@link InputStream} * and {@link OutputStream} to communicate with the end point. * </p> * * To create a TCP server socket that waits for incoming connections, invoke the * {@link #newServerSocket(Protocol, int, ServerSocketHints)} method. The returned {@link ServerSocket} offers an * {@link ServerSocket#accept(SocketHints options)} method that waits for an incoming connection. * * @author mzechner * @author noblemaster * @author arielsan */ public interface Net { /** HTTP response interface with methods to get the response data as a byte[], a {@link String} or an {@link InputStream}. */ public static interface HttpResponse { /** Returns the data of the HTTP response as a byte[]. * <p> * <b>Note</b>: This method may only be called once per response. * </p> * @return the result as a byte[] or null in case of a timeout or if the operation was canceled/terminated abnormally. The * timeout is specified when creating the HTTP request, with {@link HttpRequest#setTimeOut(int)} */ byte[] getResult (); /** Returns the data of the HTTP response as a {@link String}. * <p> * <b>Note</b>: This method may only be called once per response. * </p> * @return the result as a string or null in case of a timeout or if the operation was canceled/terminated abnormally. The * timeout is specified when creating the HTTP request, with {@link HttpRequest#setTimeOut(int)} */ String getResultAsString (); /** Returns the data of the HTTP response as an {@link InputStream}. <b><br> * Warning:</b> Do not store a reference to this InputStream outside of * {@link HttpResponseListener#handleHttpResponse(HttpResponse)}. The underlying HTTP connection will be closed after that * callback finishes executing. Reading from the InputStream after it's connection has been closed will lead to exception. * @return An {@link InputStream} with the {@link HttpResponse} data. */ InputStream getResultAsStream (); /** Returns the {@link HttpStatus} containing the statusCode of the HTTP response. */ HttpStatus getStatus (); /** Returns the value of the header with the given name as a {@link String}, or null if the header is not set. See * {@link HttpResponseHeader}. */ String getHeader (String name); /** Returns a Map of the headers. The keys are Strings that represent the header name. Each values is a List of Strings that * represent the corresponding header values. See {@link HttpResponseHeader}. */ Map<String, List<String>> getHeaders (); } /** Provides common HTTP methods to use when creating a {@link HttpRequest}. * <ul> * <li><b>HEAD</b> Asks for a response identical to that of a GET request but without the response body.</li> * <li><b>GET</b> requests a representation of the specified resource. Requests using GET should only retrieve data.</li> * <li><b>POST</b> is used to submit an entity to the specified resource, often causing a change in state or side effects on * the server.</li> * <li><b>PUT</b> replaces all current representations of the target resource with the request payload.</li> * <li><b>PATCH</b> method is used to apply partial modifications to a resource.</li> * <li><b>DELETE</b> deletes the specified resource.</li> * </ul> */ public static interface HttpMethods { /** The HEAD method asks for a response identical to that of a GET request, but without the response body. **/ public static final String HEAD = "HEAD"; /** The GET method requests a representation of the specified resource. Requests using GET should only retrieve data. **/ public static final String GET = "GET"; /** The POST method is used to submit an entity to the specified resource, often causing a change in state or side effects * on the server. **/ public static final String POST = "POST"; /** The PUT method replaces all current representations of the target resource with the request payload. **/ public static final String PUT = "PUT"; /** The PATCH method is used to apply partial modifications to a resource. **/ public static final String PATCH = "PATCH"; /** The DELETE method deletes the specified resource. **/ public static final String DELETE = "DELETE"; } /** Contains getters and setters for the following parameters: * <ul> * <li><strong>httpMethod:</strong> GET or POST are most common, can use {@link Net.HttpMethods HttpMethods} for static * references</li> * <li><strong>url:</strong> the url</li> * <li><strong>headers:</strong> a map of the headers, setter can be called multiple times</li> * <li><strong>timeout:</strong> time spent trying to connect before giving up</li> * <li><strong>content:</strong> A string containing the data to be used when processing the HTTP request.</li> * </ul> * * Abstracts the concept of a HTTP Request: * * <pre> * Map<String, String> parameters = new HashMap<String, String>(); * parameters.put("user", "myuser"); * * HttpRequest httpGet = new HttpRequest(HttpMethods.Get); * httpGet.setUrl("http://somewhere.net"); * httpGet.setContent(HttpParametersUtils.convertHttpParameters(parameters)); * ... * Gdx.net.sendHttpRequest (httpGet, new HttpResponseListener() { * public void handleHttpResponse(HttpResponse httpResponse) { * status = httpResponse.getResultAsString(); * //do stuff here based on response * } * * public void failed(Throwable t) { * status = "failed"; * //do stuff here based on the failed attempt * } * }); * </pre> */ public static class HttpRequest implements Poolable { private String httpMethod; private String url; private Map<String, String> headers; private int timeOut = 0; private String content; private InputStream contentStream; private long contentLength; private boolean followRedirects = true; private boolean includeCredentials = false; public HttpRequest () { this.headers = new HashMap<String, String>(); } /** Creates a new HTTP request with the specified HTTP method, see {@link HttpMethods}. * @param httpMethod This is the HTTP method for the request, see {@link HttpMethods} */ public HttpRequest (String httpMethod) { this(); this.httpMethod = httpMethod; } /** Sets the URL of the HTTP request. * @param url The URL to set. */ public void setUrl (String url) { this.url = url; } /** Sets a header to this HTTP request, see {@link HttpRequestHeader}. * @param name the name of the header. * @param value the value of the header. */ public void setHeader (String name, String value) { headers.put(name, value); } /** Sets the content to be used in the HTTP request. * @param content A string encoded in the corresponding Content-Encoding set in the headers, with the data to send with the * HTTP request. For example, in case of HTTP GET, the content is used as the query string of the GET while on a * HTTP POST it is used to send the POST data. */ public void setContent (String content) { this.content = content; } /** Sets the content as a stream to be used for a POST for example, to transmit custom data. * @param contentStream The stream with the content data. */ public void setContent (InputStream contentStream, long contentLength) { this.contentStream = contentStream; this.contentLength = contentLength; } /** Sets the time to wait for the HTTP request to be processed, use 0 block until it is done. The timeout is used for both * the timeout when establishing TCP connection, and the timeout until the first byte of data is received. * @param timeOut the number of milliseconds to wait before giving up, 0 or negative to block until the operation is done */ public void setTimeOut (int timeOut) { this.timeOut = timeOut; } /** Sets whether 301 and 302 redirects are followed. By default true. Can't be changed in the GWT backend because this uses * XmlHttpRequests which always redirect. * @param followRedirects whether to follow redirects. * @exception IllegalArgumentException if redirection is disabled on the GWT backend. */ public void setFollowRedirects (boolean followRedirects) throws IllegalArgumentException { if (followRedirects || Gdx.app.getType() != ApplicationType.WebGL) { this.followRedirects = followRedirects; } else { throw new IllegalArgumentException("Following redirects can't be disabled using the GWT/WebGL backend!"); } } /** Sets whether a cross-origin request will include credentials. Only used on GWT backend to allow cross-origin requests to * include credentials such as cookies, authorization headers, etc... */ public void setIncludeCredentials (boolean includeCredentials) { this.includeCredentials = includeCredentials; } /** Sets the HTTP method of the HttpRequest. */ public void setMethod (String httpMethod) { this.httpMethod = httpMethod; } /** Returns the timeOut of the HTTP request. * @return the timeOut. */ public int getTimeOut () { return timeOut; } /** Returns the HTTP method of the HttpRequest. */ public String getMethod () { return httpMethod; } /** Returns the URL of the HTTP request. */ public String getUrl () { return url; } /** Returns the content string to be used for the HTTP request. */ public String getContent () { return content; } /** Returns the content stream. */ public InputStream getContentStream () { return contentStream; } /** Returns the content length in case content is a stream. */ public long getContentLength () { return contentLength; } /** Returns a Map<String, String> with the headers of the HTTP request. */ public Map<String, String> getHeaders () { return headers; } /** Returns whether 301 and 302 redirects are followed. By default true. Whether to follow redirects. */ public boolean getFollowRedirects () { return followRedirects; } /** Returns whether a cross-origin request will include credentials. By default false. */ public boolean getIncludeCredentials () { return includeCredentials; } @Override public void reset () { httpMethod = null; url = null; headers.clear(); timeOut = 0; content = null; contentStream = null; contentLength = 0; followRedirects = true; } } /** Listener to be able to do custom logic once the {@link HttpResponse} is ready to be processed, register it with * {@link Net#sendHttpRequest(HttpRequest, HttpResponseListener)}. */ public static interface HttpResponseListener { /** Called when the {@link HttpRequest} has been processed and there is a {@link HttpResponse} ready. Passing data to the * rendering thread should be done using {@link Application#postRunnable(java.lang.Runnable runnable)} {@link HttpResponse} * contains the {@link HttpStatus} and should be used to determine if the request was successful or not (see more info at * {@link HttpStatus#getStatusCode()}). For example: * * <pre> * HttpResponseListener listener = new HttpResponseListener() { * public void handleHttpResponse (HttpResponse httpResponse) { * HttpStatus status = httpResponse.getStatus(); * if (status.getStatusCode() >= 200 && status.getStatusCode() < 300) { * // it was successful * } else { * // do something else * } * } * } * </pre> * * @param httpResponse The {@link HttpResponse} with the HTTP response values. */ void handleHttpResponse (HttpResponse httpResponse); /** Called if the {@link HttpRequest} failed because an exception when processing the HTTP request, could be a timeout any * other reason (not an HTTP error). * @param t If the HTTP request failed because an Exception, t encapsulates it to give more information. */ void failed (Throwable t); void cancelled (); } /** Process the specified {@link HttpRequest} and reports the {@link HttpResponse} to the specified * {@link HttpResponseListener}. * @param httpRequest The {@link HttpRequest} to be performed. * @param httpResponseListener The {@link HttpResponseListener} to call once the HTTP response is ready to be processed. Could * be null, in that case no listener is called. */ public void sendHttpRequest (HttpRequest httpRequest, @Null HttpResponseListener httpResponseListener); public void cancelHttpRequest (HttpRequest httpRequest); public boolean isHttpRequestPending (HttpRequest httpRequest); /** Protocol used by {@link Net#newServerSocket(Protocol, int, ServerSocketHints)} and * {@link Net#newClientSocket(Protocol, String, int, SocketHints)}. * @author mzechner */ public enum Protocol { TCP } /** Creates a new server socket on the given address and port, using the given {@link Protocol}, waiting for incoming * connections. * * @param hostname the hostname or ip address to bind the socket to * @param port the port to listen on * @param hints additional {@link ServerSocketHints} used to create the socket. Input null to use the default setting provided * by the system. * @return the {@link ServerSocket} * @throws GdxRuntimeException in case the socket couldn't be opened */ public ServerSocket newServerSocket (Protocol protocol, String hostname, int port, ServerSocketHints hints); /** Creates a new server socket on the given port, using the given {@link Protocol}, waiting for incoming connections. * * @param port the port to listen on * @param hints additional {@link ServerSocketHints} used to create the socket. Input null to use the default setting provided * by the system. * @return the {@link ServerSocket} * @throws GdxRuntimeException in case the socket couldn't be opened */ public ServerSocket newServerSocket (Protocol protocol, int port, ServerSocketHints hints); /** Creates a new TCP client socket that connects to the given host and port. * * @param host the host address * @param port the port * @param hints additional {@link SocketHints} used to create the socket. Input null to use the default setting provided by the * system. * @throws GdxRuntimeException in case the socket couldn't be opened */ public Socket newClientSocket (Protocol protocol, String host, int port, SocketHints hints); /** Launches the default browser to display a URI. If the default browser is not able to handle the specified URI, the * application registered for handling URIs of the specified type is invoked. The application is determined from the protocol * and path of the URI. A best effort is made to open the given URI; however, since external applications are involved, no * guarantee can be made as to whether the URI was actually opened. If it is known that the URI was not opened, false will be * returned; otherwise, true will be returned. * * @param URI the URI to be opened. * @return false if it is known the uri was not opened, true otherwise. */ public boolean openURI (String URI); }
1
libgdx/libgdx
7,305
Adds status detection for an httpRequest
This commit adds the public boolean isHttpRequestPending (HttpRequest httpRequest) method to Gdx.net user interface. It allows end users to detect if an httpRequest is pending or already finished. It helpfull for creating advanced business logic.
supermaximus80
"2023-12-22T21:58:24Z"
"2023-12-27T14:37:55Z"
60f074309093046d7fd9dd3c895bba398b415797
2b691f735f4b167c062f8f68186a6d7237d3d855
Adds status detection for an httpRequest. This commit adds the public boolean isHttpRequestPending (HttpRequest httpRequest) method to Gdx.net user interface. It allows end users to detect if an httpRequest is pending or already finished. It helpfull for creating advanced business logic.
./gdx/src/com/badlogic/gdx/net/NetJavaImpl.java
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.net; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import java.io.OutputStreamWriter; import java.net.HttpURLConnection; import java.net.URL; import java.util.List; import java.util.Map; import java.util.concurrent.atomic.AtomicInteger; import java.util.concurrent.Future; import java.util.concurrent.LinkedBlockingQueue; import java.util.concurrent.SynchronousQueue; import java.util.concurrent.ThreadFactory; import java.util.concurrent.ThreadPoolExecutor; import java.util.concurrent.TimeUnit; import com.badlogic.gdx.Net; import com.badlogic.gdx.Net.HttpMethods; import com.badlogic.gdx.Net.HttpRequest; import com.badlogic.gdx.Net.HttpResponse; import com.badlogic.gdx.Net.HttpResponseListener; import com.badlogic.gdx.utils.GdxRuntimeException; import com.badlogic.gdx.utils.ObjectMap; import com.badlogic.gdx.utils.StreamUtils; /** Implements part of the {@link Net} API using {@link HttpURLConnection}, to be easily reused between the Android and Desktop * backends. * @author acoppes */ public class NetJavaImpl { static class HttpClientResponse implements HttpResponse { private final HttpURLConnection connection; private HttpStatus status; public HttpClientResponse (HttpURLConnection connection) throws IOException { this.connection = connection; try { this.status = new HttpStatus(connection.getResponseCode()); } catch (IOException e) { this.status = new HttpStatus(-1); } } @Override public byte[] getResult () { InputStream input = getInputStream(); // If the response does not contain any content, input will be null. if (input == null) { return StreamUtils.EMPTY_BYTES; } try { return StreamUtils.copyStreamToByteArray(input, connection.getContentLength()); } catch (IOException e) { return StreamUtils.EMPTY_BYTES; } finally { StreamUtils.closeQuietly(input); } } @Override public String getResultAsString () { InputStream input = getInputStream(); // If the response does not contain any content, input will be null. if (input == null) { return ""; } try { return StreamUtils.copyStreamToString(input, connection.getContentLength(), "UTF8"); } catch (IOException e) { return ""; } finally { StreamUtils.closeQuietly(input); } } @Override public InputStream getResultAsStream () { return getInputStream(); } @Override public HttpStatus getStatus () { return status; } @Override public String getHeader (String name) { return connection.getHeaderField(name); } @Override public Map<String, List<String>> getHeaders () { return connection.getHeaderFields(); } private InputStream getInputStream () { try { return connection.getInputStream(); } catch (IOException e) { return connection.getErrorStream(); } } } private final ThreadPoolExecutor executorService; final ObjectMap<HttpRequest, HttpURLConnection> connections; final ObjectMap<HttpRequest, HttpResponseListener> listeners; final ObjectMap<HttpRequest, Future<?>> tasks; public NetJavaImpl () { this(Integer.MAX_VALUE); } public NetJavaImpl (int maxThreads) { final boolean isCachedPool = maxThreads == Integer.MAX_VALUE; executorService = new ThreadPoolExecutor(isCachedPool ? 0 : maxThreads, maxThreads, 60L, TimeUnit.SECONDS, isCachedPool ? new SynchronousQueue<Runnable>() : new LinkedBlockingQueue<Runnable>(), new ThreadFactory() { AtomicInteger threadID = new AtomicInteger(); @Override public Thread newThread (Runnable r) { Thread thread = new Thread(r, "NetThread" + threadID.getAndIncrement()); thread.setDaemon(true); return thread; } }); executorService.allowCoreThreadTimeOut(!isCachedPool); connections = new ObjectMap<HttpRequest, HttpURLConnection>(); listeners = new ObjectMap<HttpRequest, HttpResponseListener>(); tasks = new ObjectMap<HttpRequest, Future<?>>(); } public void sendHttpRequest (final HttpRequest httpRequest, final HttpResponseListener httpResponseListener) { if (httpRequest.getUrl() == null) { httpResponseListener.failed(new GdxRuntimeException("can't process a HTTP request without URL set")); return; } try { final String method = httpRequest.getMethod(); URL url; final boolean doInput = !method.equalsIgnoreCase(HttpMethods.HEAD); // should be enabled to upload data. final boolean doingOutPut = method.equalsIgnoreCase(HttpMethods.POST) || method.equalsIgnoreCase(HttpMethods.PUT) || method.equalsIgnoreCase(HttpMethods.PATCH); if (method.equalsIgnoreCase(HttpMethods.GET) || method.equalsIgnoreCase(HttpMethods.HEAD)) { String queryString = ""; String value = httpRequest.getContent(); if (value != null && !"".equals(value)) queryString = "?" + value; url = new URL(httpRequest.getUrl() + queryString); } else { url = new URL(httpRequest.getUrl()); } final HttpURLConnection connection = (HttpURLConnection)url.openConnection(); connection.setDoOutput(doingOutPut); connection.setDoInput(doInput); connection.setRequestMethod(method); HttpURLConnection.setFollowRedirects(httpRequest.getFollowRedirects()); putIntoConnectionsAndListeners(httpRequest, httpResponseListener, connection); // Headers get set regardless of the method for (Map.Entry<String, String> header : httpRequest.getHeaders().entrySet()) connection.addRequestProperty(header.getKey(), header.getValue()); // Set Timeouts connection.setConnectTimeout(httpRequest.getTimeOut()); connection.setReadTimeout(httpRequest.getTimeOut()); tasks.put(httpRequest, executorService.submit(new Runnable() { @Override public void run () { try { // Set the content for POST and PUT (GET has the information embedded in the URL) if (doingOutPut) { // we probably need to use the content as stream here instead of using it as a string. String contentAsString = httpRequest.getContent(); if (contentAsString != null) { OutputStreamWriter writer = new OutputStreamWriter(connection.getOutputStream(), "UTF8"); try { writer.write(contentAsString); } finally { StreamUtils.closeQuietly(writer); } } else { InputStream contentAsStream = httpRequest.getContentStream(); if (contentAsStream != null) { OutputStream os = connection.getOutputStream(); try { StreamUtils.copyStream(contentAsStream, os); } finally { StreamUtils.closeQuietly(os); } } } } connection.connect(); final HttpClientResponse clientResponse = new HttpClientResponse(connection); try { HttpResponseListener listener = getFromListeners(httpRequest); if (listener != null) { listener.handleHttpResponse(clientResponse); } removeFromConnectionsAndListeners(httpRequest); } finally { connection.disconnect(); } } catch (final Exception e) { connection.disconnect(); try { httpResponseListener.failed(e); } finally { removeFromConnectionsAndListeners(httpRequest); } } } })); } catch (Exception e) { try { httpResponseListener.failed(e); } finally { removeFromConnectionsAndListeners(httpRequest); } return; } } public void cancelHttpRequest (HttpRequest httpRequest) { HttpResponseListener httpResponseListener = getFromListeners(httpRequest); if (httpResponseListener != null) { httpResponseListener.cancelled(); cancelTask(httpRequest); removeFromConnectionsAndListeners(httpRequest); } } private void cancelTask (HttpRequest httpRequest) { Future<?> task = tasks.get(httpRequest); if (task != null) { task.cancel(false); } } synchronized void removeFromConnectionsAndListeners (final HttpRequest httpRequest) { connections.remove(httpRequest); listeners.remove(httpRequest); tasks.remove(httpRequest); } synchronized void putIntoConnectionsAndListeners (final HttpRequest httpRequest, final HttpResponseListener httpResponseListener, final HttpURLConnection connection) { connections.put(httpRequest, connection); listeners.put(httpRequest, httpResponseListener); } synchronized HttpResponseListener getFromListeners (HttpRequest httpRequest) { HttpResponseListener httpResponseListener = listeners.get(httpRequest); return httpResponseListener; } }
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.net; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import java.io.OutputStreamWriter; import java.net.HttpURLConnection; import java.net.URL; import java.util.List; import java.util.Map; import java.util.concurrent.atomic.AtomicInteger; import java.util.concurrent.Future; import java.util.concurrent.LinkedBlockingQueue; import java.util.concurrent.SynchronousQueue; import java.util.concurrent.ThreadFactory; import java.util.concurrent.ThreadPoolExecutor; import java.util.concurrent.TimeUnit; import com.badlogic.gdx.Net; import com.badlogic.gdx.Net.HttpMethods; import com.badlogic.gdx.Net.HttpRequest; import com.badlogic.gdx.Net.HttpResponse; import com.badlogic.gdx.Net.HttpResponseListener; import com.badlogic.gdx.utils.GdxRuntimeException; import com.badlogic.gdx.utils.ObjectMap; import com.badlogic.gdx.utils.StreamUtils; /** Implements part of the {@link Net} API using {@link HttpURLConnection}, to be easily reused between the Android and Desktop * backends. * @author acoppes */ public class NetJavaImpl { static class HttpClientResponse implements HttpResponse { private final HttpURLConnection connection; private HttpStatus status; public HttpClientResponse (HttpURLConnection connection) throws IOException { this.connection = connection; try { this.status = new HttpStatus(connection.getResponseCode()); } catch (IOException e) { this.status = new HttpStatus(-1); } } @Override public byte[] getResult () { InputStream input = getInputStream(); // If the response does not contain any content, input will be null. if (input == null) { return StreamUtils.EMPTY_BYTES; } try { return StreamUtils.copyStreamToByteArray(input, connection.getContentLength()); } catch (IOException e) { return StreamUtils.EMPTY_BYTES; } finally { StreamUtils.closeQuietly(input); } } @Override public String getResultAsString () { InputStream input = getInputStream(); // If the response does not contain any content, input will be null. if (input == null) { return ""; } try { return StreamUtils.copyStreamToString(input, connection.getContentLength(), "UTF8"); } catch (IOException e) { return ""; } finally { StreamUtils.closeQuietly(input); } } @Override public InputStream getResultAsStream () { return getInputStream(); } @Override public HttpStatus getStatus () { return status; } @Override public String getHeader (String name) { return connection.getHeaderField(name); } @Override public Map<String, List<String>> getHeaders () { return connection.getHeaderFields(); } private InputStream getInputStream () { try { return connection.getInputStream(); } catch (IOException e) { return connection.getErrorStream(); } } } private final ThreadPoolExecutor executorService; final ObjectMap<HttpRequest, HttpURLConnection> connections; final ObjectMap<HttpRequest, HttpResponseListener> listeners; final ObjectMap<HttpRequest, Future<?>> tasks; public NetJavaImpl () { this(Integer.MAX_VALUE); } public NetJavaImpl (int maxThreads) { final boolean isCachedPool = maxThreads == Integer.MAX_VALUE; executorService = new ThreadPoolExecutor(isCachedPool ? 0 : maxThreads, maxThreads, 60L, TimeUnit.SECONDS, isCachedPool ? new SynchronousQueue<Runnable>() : new LinkedBlockingQueue<Runnable>(), new ThreadFactory() { AtomicInteger threadID = new AtomicInteger(); @Override public Thread newThread (Runnable r) { Thread thread = new Thread(r, "NetThread" + threadID.getAndIncrement()); thread.setDaemon(true); return thread; } }); executorService.allowCoreThreadTimeOut(!isCachedPool); connections = new ObjectMap<HttpRequest, HttpURLConnection>(); listeners = new ObjectMap<HttpRequest, HttpResponseListener>(); tasks = new ObjectMap<HttpRequest, Future<?>>(); } public void sendHttpRequest (final HttpRequest httpRequest, final HttpResponseListener httpResponseListener) { if (httpRequest.getUrl() == null) { httpResponseListener.failed(new GdxRuntimeException("can't process a HTTP request without URL set")); return; } try { final String method = httpRequest.getMethod(); URL url; final boolean doInput = !method.equalsIgnoreCase(HttpMethods.HEAD); // should be enabled to upload data. final boolean doingOutPut = method.equalsIgnoreCase(HttpMethods.POST) || method.equalsIgnoreCase(HttpMethods.PUT) || method.equalsIgnoreCase(HttpMethods.PATCH); if (method.equalsIgnoreCase(HttpMethods.GET) || method.equalsIgnoreCase(HttpMethods.HEAD)) { String queryString = ""; String value = httpRequest.getContent(); if (value != null && !"".equals(value)) queryString = "?" + value; url = new URL(httpRequest.getUrl() + queryString); } else { url = new URL(httpRequest.getUrl()); } final HttpURLConnection connection = (HttpURLConnection)url.openConnection(); connection.setDoOutput(doingOutPut); connection.setDoInput(doInput); connection.setRequestMethod(method); HttpURLConnection.setFollowRedirects(httpRequest.getFollowRedirects()); putIntoConnectionsAndListeners(httpRequest, httpResponseListener, connection); // Headers get set regardless of the method for (Map.Entry<String, String> header : httpRequest.getHeaders().entrySet()) connection.addRequestProperty(header.getKey(), header.getValue()); // Set Timeouts connection.setConnectTimeout(httpRequest.getTimeOut()); connection.setReadTimeout(httpRequest.getTimeOut()); tasks.put(httpRequest, executorService.submit(new Runnable() { @Override public void run () { try { // Set the content for POST and PUT (GET has the information embedded in the URL) if (doingOutPut) { // we probably need to use the content as stream here instead of using it as a string. String contentAsString = httpRequest.getContent(); if (contentAsString != null) { OutputStreamWriter writer = new OutputStreamWriter(connection.getOutputStream(), "UTF8"); try { writer.write(contentAsString); } finally { StreamUtils.closeQuietly(writer); } } else { InputStream contentAsStream = httpRequest.getContentStream(); if (contentAsStream != null) { OutputStream os = connection.getOutputStream(); try { StreamUtils.copyStream(contentAsStream, os); } finally { StreamUtils.closeQuietly(os); } } } } connection.connect(); final HttpClientResponse clientResponse = new HttpClientResponse(connection); try { HttpResponseListener listener = getFromListeners(httpRequest); if (listener != null) { listener.handleHttpResponse(clientResponse); } removeFromConnectionsAndListeners(httpRequest); } finally { connection.disconnect(); } } catch (final Exception e) { connection.disconnect(); try { httpResponseListener.failed(e); } finally { removeFromConnectionsAndListeners(httpRequest); } } } })); } catch (Exception e) { try { httpResponseListener.failed(e); } finally { removeFromConnectionsAndListeners(httpRequest); } return; } } public void cancelHttpRequest (HttpRequest httpRequest) { HttpResponseListener httpResponseListener = getFromListeners(httpRequest); if (httpResponseListener != null) { httpResponseListener.cancelled(); cancelTask(httpRequest); removeFromConnectionsAndListeners(httpRequest); } } public boolean isHttpRequestPending (HttpRequest httpRequest) { return getFromListeners(httpRequest) != null; } private void cancelTask (HttpRequest httpRequest) { Future<?> task = tasks.get(httpRequest); if (task != null) { task.cancel(false); } } synchronized void removeFromConnectionsAndListeners (final HttpRequest httpRequest) { connections.remove(httpRequest); listeners.remove(httpRequest); tasks.remove(httpRequest); } synchronized void putIntoConnectionsAndListeners (final HttpRequest httpRequest, final HttpResponseListener httpResponseListener, final HttpURLConnection connection) { connections.put(httpRequest, connection); listeners.put(httpRequest, httpResponseListener); } synchronized HttpResponseListener getFromListeners (HttpRequest httpRequest) { HttpResponseListener httpResponseListener = listeners.get(httpRequest); return httpResponseListener; } }
1
libgdx/libgdx
7,305
Adds status detection for an httpRequest
This commit adds the public boolean isHttpRequestPending (HttpRequest httpRequest) method to Gdx.net user interface. It allows end users to detect if an httpRequest is pending or already finished. It helpfull for creating advanced business logic.
supermaximus80
"2023-12-22T21:58:24Z"
"2023-12-27T14:37:55Z"
60f074309093046d7fd9dd3c895bba398b415797
2b691f735f4b167c062f8f68186a6d7237d3d855
Adds status detection for an httpRequest. This commit adds the public boolean isHttpRequestPending (HttpRequest httpRequest) method to Gdx.net user interface. It allows end users to detect if an httpRequest is pending or already finished. It helpfull for creating advanced business logic.
./gdx/src/com/badlogic/gdx/graphics/glutils/FacedCubemapData.java
package com.badlogic.gdx.graphics.glutils; import com.badlogic.gdx.Gdx; import com.badlogic.gdx.files.FileHandle; import com.badlogic.gdx.graphics.Cubemap; import com.badlogic.gdx.graphics.Cubemap.CubemapSide; import com.badlogic.gdx.graphics.CubemapData; import com.badlogic.gdx.graphics.GL20; import com.badlogic.gdx.graphics.Pixmap; import com.badlogic.gdx.graphics.Pixmap.Blending; import com.badlogic.gdx.graphics.Pixmap.Format; import com.badlogic.gdx.graphics.TextureData; import com.badlogic.gdx.utils.GdxRuntimeException; /** A FacedCubemapData holds a cubemap data definition based on a {@link TextureData} per face. * * @author Vincent Nousquet */ public class FacedCubemapData implements CubemapData { protected final TextureData[] data = new TextureData[6]; /** Construct an empty Cubemap. Use the load(...) methods to set the texture of each side. Every side of the cubemap must be * set before it can be used. */ public FacedCubemapData () { this((TextureData)null, (TextureData)null, (TextureData)null, (TextureData)null, (TextureData)null, (TextureData)null); } /** Construct a Cubemap with the specified texture files for the sides, optionally generating mipmaps. */ public FacedCubemapData (FileHandle positiveX, FileHandle negativeX, FileHandle positiveY, FileHandle negativeY, FileHandle positiveZ, FileHandle negativeZ) { this(TextureData.Factory.loadFromFile(positiveX, false), TextureData.Factory.loadFromFile(negativeX, false), TextureData.Factory.loadFromFile(positiveY, false), TextureData.Factory.loadFromFile(negativeY, false), TextureData.Factory.loadFromFile(positiveZ, false), TextureData.Factory.loadFromFile(negativeZ, false)); } /** Construct a Cubemap with the specified texture files for the sides, optionally generating mipmaps. */ public FacedCubemapData (FileHandle positiveX, FileHandle negativeX, FileHandle positiveY, FileHandle negativeY, FileHandle positiveZ, FileHandle negativeZ, boolean useMipMaps) { this(TextureData.Factory.loadFromFile(positiveX, useMipMaps), TextureData.Factory.loadFromFile(negativeX, useMipMaps), TextureData.Factory.loadFromFile(positiveY, useMipMaps), TextureData.Factory.loadFromFile(negativeY, useMipMaps), TextureData.Factory.loadFromFile(positiveZ, useMipMaps), TextureData.Factory.loadFromFile(negativeZ, useMipMaps)); } /** Construct a Cubemap with the specified {@link Pixmap}s for the sides, does not generate mipmaps. */ public FacedCubemapData (Pixmap positiveX, Pixmap negativeX, Pixmap positiveY, Pixmap negativeY, Pixmap positiveZ, Pixmap negativeZ) { this(positiveX, negativeX, positiveY, negativeY, positiveZ, negativeZ, false); } /** Construct a Cubemap with the specified {@link Pixmap}s for the sides, optionally generating mipmaps. */ public FacedCubemapData (Pixmap positiveX, Pixmap negativeX, Pixmap positiveY, Pixmap negativeY, Pixmap positiveZ, Pixmap negativeZ, boolean useMipMaps) { this(positiveX == null ? null : new PixmapTextureData(positiveX, null, useMipMaps, false), negativeX == null ? null : new PixmapTextureData(negativeX, null, useMipMaps, false), positiveY == null ? null : new PixmapTextureData(positiveY, null, useMipMaps, false), negativeY == null ? null : new PixmapTextureData(negativeY, null, useMipMaps, false), positiveZ == null ? null : new PixmapTextureData(positiveZ, null, useMipMaps, false), negativeZ == null ? null : new PixmapTextureData(negativeZ, null, useMipMaps, false)); } /** Construct a Cubemap with {@link Pixmap}s for each side of the specified size. */ public FacedCubemapData (int width, int height, int depth, Format format) { this(new PixmapTextureData(new Pixmap(depth, height, format), null, false, true), new PixmapTextureData(new Pixmap(depth, height, format), null, false, true), new PixmapTextureData(new Pixmap(width, depth, format), null, false, true), new PixmapTextureData(new Pixmap(width, depth, format), null, false, true), new PixmapTextureData(new Pixmap(width, height, format), null, false, true), new PixmapTextureData(new Pixmap(width, height, format), null, false, true)); } /** Construct a Cubemap with the specified {@link TextureData}'s for the sides */ public FacedCubemapData (TextureData positiveX, TextureData negativeX, TextureData positiveY, TextureData negativeY, TextureData positiveZ, TextureData negativeZ) { data[0] = positiveX; data[1] = negativeX; data[2] = positiveY; data[3] = negativeY; data[4] = positiveZ; data[5] = negativeZ; } @Override public boolean isManaged () { for (TextureData data : this.data) if (!data.isManaged()) return false; return true; } /** Loads the texture specified using the {@link FileHandle} and sets it to specified side, overwriting any previous data set * to that side. Note that you need to reload through {@link Cubemap#load(CubemapData)} any cubemap using this data for the * change to be taken in account. * @param side The {@link CubemapSide} * @param file The texture {@link FileHandle} */ public void load (CubemapSide side, FileHandle file) { data[side.index] = TextureData.Factory.loadFromFile(file, false); } /** Sets the specified side of this cubemap to the specified {@link Pixmap}, overwriting any previous data set to that side. * Note that you need to reload through {@link Cubemap#load(CubemapData)} any cubemap using this data for the change to be * taken in account. * @param side The {@link CubemapSide} * @param pixmap The {@link Pixmap} */ public void load (CubemapSide side, Pixmap pixmap) { data[side.index] = pixmap == null ? null : new PixmapTextureData(pixmap, null, false, false); } /** @return True if all sides of this cubemap are set, false otherwise. */ public boolean isComplete () { for (int i = 0; i < data.length; i++) if (data[i] == null) return false; return true; } /** @return The {@link TextureData} for the specified side, can be null if the cubemap is incomplete. */ public TextureData getTextureData (CubemapSide side) { return data[side.index]; } @Override public int getWidth () { int tmp, width = 0; if (data[CubemapSide.PositiveZ.index] != null && (tmp = data[CubemapSide.PositiveZ.index].getWidth()) > width) width = tmp; if (data[CubemapSide.NegativeZ.index] != null && (tmp = data[CubemapSide.NegativeZ.index].getWidth()) > width) width = tmp; if (data[CubemapSide.PositiveY.index] != null && (tmp = data[CubemapSide.PositiveY.index].getWidth()) > width) width = tmp; if (data[CubemapSide.NegativeY.index] != null && (tmp = data[CubemapSide.NegativeY.index].getWidth()) > width) width = tmp; return width; } @Override public int getHeight () { int tmp, height = 0; if (data[CubemapSide.PositiveZ.index] != null && (tmp = data[CubemapSide.PositiveZ.index].getHeight()) > height) height = tmp; if (data[CubemapSide.NegativeZ.index] != null && (tmp = data[CubemapSide.NegativeZ.index].getHeight()) > height) height = tmp; if (data[CubemapSide.PositiveX.index] != null && (tmp = data[CubemapSide.PositiveX.index].getHeight()) > height) height = tmp; if (data[CubemapSide.NegativeX.index] != null && (tmp = data[CubemapSide.NegativeX.index].getHeight()) > height) height = tmp; return height; } @Override public boolean isPrepared () { return false; } @Override public void prepare () { if (!isComplete()) throw new GdxRuntimeException("You need to complete your cubemap data before using it"); for (int i = 0; i < data.length; i++) if (!data[i].isPrepared()) data[i].prepare(); } @Override public void consumeCubemapData () { for (int i = 0; i < data.length; i++) { if (data[i].getType() == TextureData.TextureDataType.Custom) { data[i].consumeCustomData(GL20.GL_TEXTURE_CUBE_MAP_POSITIVE_X + i); } else { Pixmap pixmap = data[i].consumePixmap(); boolean disposePixmap = data[i].disposePixmap(); if (data[i].getFormat() != pixmap.getFormat()) { Pixmap tmp = new Pixmap(pixmap.getWidth(), pixmap.getHeight(), data[i].getFormat()); tmp.setBlending(Blending.None); tmp.drawPixmap(pixmap, 0, 0, 0, 0, pixmap.getWidth(), pixmap.getHeight()); if (data[i].disposePixmap()) pixmap.dispose(); pixmap = tmp; disposePixmap = true; } Gdx.gl.glPixelStorei(GL20.GL_UNPACK_ALIGNMENT, 1); Gdx.gl.glTexImage2D(GL20.GL_TEXTURE_CUBE_MAP_POSITIVE_X + i, 0, pixmap.getGLInternalFormat(), pixmap.getWidth(), pixmap.getHeight(), 0, pixmap.getGLFormat(), pixmap.getGLType(), pixmap.getPixels()); if (disposePixmap) pixmap.dispose(); } } } }
package com.badlogic.gdx.graphics.glutils; import com.badlogic.gdx.Gdx; import com.badlogic.gdx.files.FileHandle; import com.badlogic.gdx.graphics.Cubemap; import com.badlogic.gdx.graphics.Cubemap.CubemapSide; import com.badlogic.gdx.graphics.CubemapData; import com.badlogic.gdx.graphics.GL20; import com.badlogic.gdx.graphics.Pixmap; import com.badlogic.gdx.graphics.Pixmap.Blending; import com.badlogic.gdx.graphics.Pixmap.Format; import com.badlogic.gdx.graphics.TextureData; import com.badlogic.gdx.utils.GdxRuntimeException; /** A FacedCubemapData holds a cubemap data definition based on a {@link TextureData} per face. * * @author Vincent Nousquet */ public class FacedCubemapData implements CubemapData { protected final TextureData[] data = new TextureData[6]; /** Construct an empty Cubemap. Use the load(...) methods to set the texture of each side. Every side of the cubemap must be * set before it can be used. */ public FacedCubemapData () { this((TextureData)null, (TextureData)null, (TextureData)null, (TextureData)null, (TextureData)null, (TextureData)null); } /** Construct a Cubemap with the specified texture files for the sides, optionally generating mipmaps. */ public FacedCubemapData (FileHandle positiveX, FileHandle negativeX, FileHandle positiveY, FileHandle negativeY, FileHandle positiveZ, FileHandle negativeZ) { this(TextureData.Factory.loadFromFile(positiveX, false), TextureData.Factory.loadFromFile(negativeX, false), TextureData.Factory.loadFromFile(positiveY, false), TextureData.Factory.loadFromFile(negativeY, false), TextureData.Factory.loadFromFile(positiveZ, false), TextureData.Factory.loadFromFile(negativeZ, false)); } /** Construct a Cubemap with the specified texture files for the sides, optionally generating mipmaps. */ public FacedCubemapData (FileHandle positiveX, FileHandle negativeX, FileHandle positiveY, FileHandle negativeY, FileHandle positiveZ, FileHandle negativeZ, boolean useMipMaps) { this(TextureData.Factory.loadFromFile(positiveX, useMipMaps), TextureData.Factory.loadFromFile(negativeX, useMipMaps), TextureData.Factory.loadFromFile(positiveY, useMipMaps), TextureData.Factory.loadFromFile(negativeY, useMipMaps), TextureData.Factory.loadFromFile(positiveZ, useMipMaps), TextureData.Factory.loadFromFile(negativeZ, useMipMaps)); } /** Construct a Cubemap with the specified {@link Pixmap}s for the sides, does not generate mipmaps. */ public FacedCubemapData (Pixmap positiveX, Pixmap negativeX, Pixmap positiveY, Pixmap negativeY, Pixmap positiveZ, Pixmap negativeZ) { this(positiveX, negativeX, positiveY, negativeY, positiveZ, negativeZ, false); } /** Construct a Cubemap with the specified {@link Pixmap}s for the sides, optionally generating mipmaps. */ public FacedCubemapData (Pixmap positiveX, Pixmap negativeX, Pixmap positiveY, Pixmap negativeY, Pixmap positiveZ, Pixmap negativeZ, boolean useMipMaps) { this(positiveX == null ? null : new PixmapTextureData(positiveX, null, useMipMaps, false), negativeX == null ? null : new PixmapTextureData(negativeX, null, useMipMaps, false), positiveY == null ? null : new PixmapTextureData(positiveY, null, useMipMaps, false), negativeY == null ? null : new PixmapTextureData(negativeY, null, useMipMaps, false), positiveZ == null ? null : new PixmapTextureData(positiveZ, null, useMipMaps, false), negativeZ == null ? null : new PixmapTextureData(negativeZ, null, useMipMaps, false)); } /** Construct a Cubemap with {@link Pixmap}s for each side of the specified size. */ public FacedCubemapData (int width, int height, int depth, Format format) { this(new PixmapTextureData(new Pixmap(depth, height, format), null, false, true), new PixmapTextureData(new Pixmap(depth, height, format), null, false, true), new PixmapTextureData(new Pixmap(width, depth, format), null, false, true), new PixmapTextureData(new Pixmap(width, depth, format), null, false, true), new PixmapTextureData(new Pixmap(width, height, format), null, false, true), new PixmapTextureData(new Pixmap(width, height, format), null, false, true)); } /** Construct a Cubemap with the specified {@link TextureData}'s for the sides */ public FacedCubemapData (TextureData positiveX, TextureData negativeX, TextureData positiveY, TextureData negativeY, TextureData positiveZ, TextureData negativeZ) { data[0] = positiveX; data[1] = negativeX; data[2] = positiveY; data[3] = negativeY; data[4] = positiveZ; data[5] = negativeZ; } @Override public boolean isManaged () { for (TextureData data : this.data) if (!data.isManaged()) return false; return true; } /** Loads the texture specified using the {@link FileHandle} and sets it to specified side, overwriting any previous data set * to that side. Note that you need to reload through {@link Cubemap#load(CubemapData)} any cubemap using this data for the * change to be taken in account. * @param side The {@link CubemapSide} * @param file The texture {@link FileHandle} */ public void load (CubemapSide side, FileHandle file) { data[side.index] = TextureData.Factory.loadFromFile(file, false); } /** Sets the specified side of this cubemap to the specified {@link Pixmap}, overwriting any previous data set to that side. * Note that you need to reload through {@link Cubemap#load(CubemapData)} any cubemap using this data for the change to be * taken in account. * @param side The {@link CubemapSide} * @param pixmap The {@link Pixmap} */ public void load (CubemapSide side, Pixmap pixmap) { data[side.index] = pixmap == null ? null : new PixmapTextureData(pixmap, null, false, false); } /** @return True if all sides of this cubemap are set, false otherwise. */ public boolean isComplete () { for (int i = 0; i < data.length; i++) if (data[i] == null) return false; return true; } /** @return The {@link TextureData} for the specified side, can be null if the cubemap is incomplete. */ public TextureData getTextureData (CubemapSide side) { return data[side.index]; } @Override public int getWidth () { int tmp, width = 0; if (data[CubemapSide.PositiveZ.index] != null && (tmp = data[CubemapSide.PositiveZ.index].getWidth()) > width) width = tmp; if (data[CubemapSide.NegativeZ.index] != null && (tmp = data[CubemapSide.NegativeZ.index].getWidth()) > width) width = tmp; if (data[CubemapSide.PositiveY.index] != null && (tmp = data[CubemapSide.PositiveY.index].getWidth()) > width) width = tmp; if (data[CubemapSide.NegativeY.index] != null && (tmp = data[CubemapSide.NegativeY.index].getWidth()) > width) width = tmp; return width; } @Override public int getHeight () { int tmp, height = 0; if (data[CubemapSide.PositiveZ.index] != null && (tmp = data[CubemapSide.PositiveZ.index].getHeight()) > height) height = tmp; if (data[CubemapSide.NegativeZ.index] != null && (tmp = data[CubemapSide.NegativeZ.index].getHeight()) > height) height = tmp; if (data[CubemapSide.PositiveX.index] != null && (tmp = data[CubemapSide.PositiveX.index].getHeight()) > height) height = tmp; if (data[CubemapSide.NegativeX.index] != null && (tmp = data[CubemapSide.NegativeX.index].getHeight()) > height) height = tmp; return height; } @Override public boolean isPrepared () { return false; } @Override public void prepare () { if (!isComplete()) throw new GdxRuntimeException("You need to complete your cubemap data before using it"); for (int i = 0; i < data.length; i++) if (!data[i].isPrepared()) data[i].prepare(); } @Override public void consumeCubemapData () { for (int i = 0; i < data.length; i++) { if (data[i].getType() == TextureData.TextureDataType.Custom) { data[i].consumeCustomData(GL20.GL_TEXTURE_CUBE_MAP_POSITIVE_X + i); } else { Pixmap pixmap = data[i].consumePixmap(); boolean disposePixmap = data[i].disposePixmap(); if (data[i].getFormat() != pixmap.getFormat()) { Pixmap tmp = new Pixmap(pixmap.getWidth(), pixmap.getHeight(), data[i].getFormat()); tmp.setBlending(Blending.None); tmp.drawPixmap(pixmap, 0, 0, 0, 0, pixmap.getWidth(), pixmap.getHeight()); if (data[i].disposePixmap()) pixmap.dispose(); pixmap = tmp; disposePixmap = true; } Gdx.gl.glPixelStorei(GL20.GL_UNPACK_ALIGNMENT, 1); Gdx.gl.glTexImage2D(GL20.GL_TEXTURE_CUBE_MAP_POSITIVE_X + i, 0, pixmap.getGLInternalFormat(), pixmap.getWidth(), pixmap.getHeight(), 0, pixmap.getGLFormat(), pixmap.getGLType(), pixmap.getPixels()); if (disposePixmap) pixmap.dispose(); } } } }
-1
libgdx/libgdx
7,305
Adds status detection for an httpRequest
This commit adds the public boolean isHttpRequestPending (HttpRequest httpRequest) method to Gdx.net user interface. It allows end users to detect if an httpRequest is pending or already finished. It helpfull for creating advanced business logic.
supermaximus80
"2023-12-22T21:58:24Z"
"2023-12-27T14:37:55Z"
60f074309093046d7fd9dd3c895bba398b415797
2b691f735f4b167c062f8f68186a6d7237d3d855
Adds status detection for an httpRequest. This commit adds the public boolean isHttpRequestPending (HttpRequest httpRequest) method to Gdx.net user interface. It allows end users to detect if an httpRequest is pending or already finished. It helpfull for creating advanced business logic.
./gdx/src/com/badlogic/gdx/scenes/scene2d/ui/TooltipManager.java
/******************************************************************************* * Copyright 2015 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.scenes.scene2d.ui; import static com.badlogic.gdx.math.Interpolation.*; import static com.badlogic.gdx.scenes.scene2d.actions.Actions.*; import com.badlogic.gdx.Files; import com.badlogic.gdx.Gdx; import com.badlogic.gdx.math.Interpolation; import com.badlogic.gdx.scenes.scene2d.Stage; import com.badlogic.gdx.utils.Array; import com.badlogic.gdx.utils.Timer; import com.badlogic.gdx.utils.Timer.Task; /** Keeps track of an application's tooltips. * @author Nathan Sweet */ public class TooltipManager { static private TooltipManager instance; static private Files files; /** Seconds from when an actor is hovered to when the tooltip is shown. Default is 2. Call {@link #hideAll()} after changing to * reset internal state. */ public float initialTime = 2; /** Once a tooltip is shown, this is used instead of {@link #initialTime}. Default is 0. */ public float subsequentTime = 0; /** Seconds to use {@link #subsequentTime}. Default is 1.5. */ public float resetTime = 1.5f; /** If false, tooltips will not be shown. Default is true. */ public boolean enabled = true; /** If false, tooltips will be shown without animations. Default is true. */ public boolean animations = true; /** The maximum width of a {@link TextTooltip}. The label will wrap if needed. Default is Integer.MAX_VALUE. */ public float maxWidth = Integer.MAX_VALUE; /** The distance from the mouse position to offset the tooltip actor. Default is 15,19. */ public float offsetX = 15, offsetY = 19; /** The distance from the tooltip actor position to the edge of the screen where the actor will be shown on the other side of * the mouse cursor. Default is 7. */ public float edgeDistance = 7; final Array<Tooltip> shown = new Array(); float time = initialTime; final Task resetTask = new Task() { public void run () { time = initialTime; } }; Tooltip showTooltip; final Task showTask = new Task() { public void run () { if (showTooltip == null || showTooltip.targetActor == null) return; Stage stage = showTooltip.targetActor.getStage(); if (stage == null) return; stage.addActor(showTooltip.container); showTooltip.container.toFront(); shown.add(showTooltip); showTooltip.container.clearActions(); showAction(showTooltip); if (!showTooltip.instant) { time = subsequentTime; resetTask.cancel(); } } }; public void touchDown (Tooltip tooltip) { showTask.cancel(); if (tooltip.container.remove()) resetTask.cancel(); resetTask.run(); if (enabled || tooltip.always) { showTooltip = tooltip; Timer.schedule(showTask, time); } } public void enter (Tooltip tooltip) { showTooltip = tooltip; showTask.cancel(); if (enabled || tooltip.always) { if (time == 0 || tooltip.instant) showTask.run(); else Timer.schedule(showTask, time); } } public void hide (Tooltip tooltip) { showTooltip = null; showTask.cancel(); if (tooltip.container.hasParent()) { shown.removeValue(tooltip, true); hideAction(tooltip); resetTask.cancel(); Timer.schedule(resetTask, resetTime); } } /** Called when tooltip is shown. Default implementation sets actions to animate showing. */ protected void showAction (Tooltip tooltip) { float actionTime = animations ? (time > 0 ? 0.5f : 0.15f) : 0.1f; tooltip.container.setTransform(true); tooltip.container.getColor().a = 0.2f; tooltip.container.setScale(0.05f); tooltip.container.addAction(parallel(fadeIn(actionTime, fade), scaleTo(1, 1, actionTime, Interpolation.fade))); } /** Called when tooltip is hidden. Default implementation sets actions to animate hiding and to remove the actor from the stage * when the actions are complete. A subclass must at least remove the actor. */ protected void hideAction (Tooltip tooltip) { tooltip.container .addAction(sequence(parallel(alpha(0.2f, 0.2f, fade), scaleTo(0.05f, 0.05f, 0.2f, Interpolation.fade)), removeActor())); } public void hideAll () { resetTask.cancel(); showTask.cancel(); time = initialTime; showTooltip = null; for (Tooltip tooltip : shown) tooltip.hide(); shown.clear(); } /** Shows all tooltips on hover without a delay for {@link #resetTime} seconds. */ public void instant () { time = 0; showTask.run(); showTask.cancel(); } static public TooltipManager getInstance () { if (files == null || files != Gdx.files) { files = Gdx.files; instance = new TooltipManager(); } return instance; } }
/******************************************************************************* * Copyright 2015 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.scenes.scene2d.ui; import static com.badlogic.gdx.math.Interpolation.*; import static com.badlogic.gdx.scenes.scene2d.actions.Actions.*; import com.badlogic.gdx.Files; import com.badlogic.gdx.Gdx; import com.badlogic.gdx.math.Interpolation; import com.badlogic.gdx.scenes.scene2d.Stage; import com.badlogic.gdx.utils.Array; import com.badlogic.gdx.utils.Timer; import com.badlogic.gdx.utils.Timer.Task; /** Keeps track of an application's tooltips. * @author Nathan Sweet */ public class TooltipManager { static private TooltipManager instance; static private Files files; /** Seconds from when an actor is hovered to when the tooltip is shown. Default is 2. Call {@link #hideAll()} after changing to * reset internal state. */ public float initialTime = 2; /** Once a tooltip is shown, this is used instead of {@link #initialTime}. Default is 0. */ public float subsequentTime = 0; /** Seconds to use {@link #subsequentTime}. Default is 1.5. */ public float resetTime = 1.5f; /** If false, tooltips will not be shown. Default is true. */ public boolean enabled = true; /** If false, tooltips will be shown without animations. Default is true. */ public boolean animations = true; /** The maximum width of a {@link TextTooltip}. The label will wrap if needed. Default is Integer.MAX_VALUE. */ public float maxWidth = Integer.MAX_VALUE; /** The distance from the mouse position to offset the tooltip actor. Default is 15,19. */ public float offsetX = 15, offsetY = 19; /** The distance from the tooltip actor position to the edge of the screen where the actor will be shown on the other side of * the mouse cursor. Default is 7. */ public float edgeDistance = 7; final Array<Tooltip> shown = new Array(); float time = initialTime; final Task resetTask = new Task() { public void run () { time = initialTime; } }; Tooltip showTooltip; final Task showTask = new Task() { public void run () { if (showTooltip == null || showTooltip.targetActor == null) return; Stage stage = showTooltip.targetActor.getStage(); if (stage == null) return; stage.addActor(showTooltip.container); showTooltip.container.toFront(); shown.add(showTooltip); showTooltip.container.clearActions(); showAction(showTooltip); if (!showTooltip.instant) { time = subsequentTime; resetTask.cancel(); } } }; public void touchDown (Tooltip tooltip) { showTask.cancel(); if (tooltip.container.remove()) resetTask.cancel(); resetTask.run(); if (enabled || tooltip.always) { showTooltip = tooltip; Timer.schedule(showTask, time); } } public void enter (Tooltip tooltip) { showTooltip = tooltip; showTask.cancel(); if (enabled || tooltip.always) { if (time == 0 || tooltip.instant) showTask.run(); else Timer.schedule(showTask, time); } } public void hide (Tooltip tooltip) { showTooltip = null; showTask.cancel(); if (tooltip.container.hasParent()) { shown.removeValue(tooltip, true); hideAction(tooltip); resetTask.cancel(); Timer.schedule(resetTask, resetTime); } } /** Called when tooltip is shown. Default implementation sets actions to animate showing. */ protected void showAction (Tooltip tooltip) { float actionTime = animations ? (time > 0 ? 0.5f : 0.15f) : 0.1f; tooltip.container.setTransform(true); tooltip.container.getColor().a = 0.2f; tooltip.container.setScale(0.05f); tooltip.container.addAction(parallel(fadeIn(actionTime, fade), scaleTo(1, 1, actionTime, Interpolation.fade))); } /** Called when tooltip is hidden. Default implementation sets actions to animate hiding and to remove the actor from the stage * when the actions are complete. A subclass must at least remove the actor. */ protected void hideAction (Tooltip tooltip) { tooltip.container .addAction(sequence(parallel(alpha(0.2f, 0.2f, fade), scaleTo(0.05f, 0.05f, 0.2f, Interpolation.fade)), removeActor())); } public void hideAll () { resetTask.cancel(); showTask.cancel(); time = initialTime; showTooltip = null; for (Tooltip tooltip : shown) tooltip.hide(); shown.clear(); } /** Shows all tooltips on hover without a delay for {@link #resetTime} seconds. */ public void instant () { time = 0; showTask.run(); showTask.cancel(); } static public TooltipManager getInstance () { if (files == null || files != Gdx.files) { files = Gdx.files; instance = new TooltipManager(); } return instance; } }
-1
libgdx/libgdx
7,305
Adds status detection for an httpRequest
This commit adds the public boolean isHttpRequestPending (HttpRequest httpRequest) method to Gdx.net user interface. It allows end users to detect if an httpRequest is pending or already finished. It helpfull for creating advanced business logic.
supermaximus80
"2023-12-22T21:58:24Z"
"2023-12-27T14:37:55Z"
60f074309093046d7fd9dd3c895bba398b415797
2b691f735f4b167c062f8f68186a6d7237d3d855
Adds status detection for an httpRequest. This commit adds the public boolean isHttpRequestPending (HttpRequest httpRequest) method to Gdx.net user interface. It allows end users to detect if an httpRequest is pending or already finished. It helpfull for creating advanced business logic.
./gdx/src/com/badlogic/gdx/Game.java
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx; /** * <p> * An {@link ApplicationListener} that delegates to a {@link Screen}. This allows an application to easily have multiple screens. * </p> * <p> * Screens are not disposed automatically. You must handle whether you want to keep screens around or dispose of them when another * screen is set. * </p> */ public abstract class Game implements ApplicationListener { protected Screen screen; @Override public void dispose () { if (screen != null) screen.hide(); } @Override public void pause () { if (screen != null) screen.pause(); } @Override public void resume () { if (screen != null) screen.resume(); } @Override public void render () { if (screen != null) screen.render(Gdx.graphics.getDeltaTime()); } @Override public void resize (int width, int height) { if (screen != null) screen.resize(width, height); } /** Sets the current screen. {@link Screen#hide()} is called on any old screen, and {@link Screen#show()} is called on the new * screen, if any. * @param screen may be {@code null} */ public void setScreen (Screen screen) { if (this.screen != null) this.screen.hide(); this.screen = screen; if (this.screen != null) { this.screen.show(); this.screen.resize(Gdx.graphics.getWidth(), Gdx.graphics.getHeight()); } } /** @return the currently active {@link Screen}. */ public Screen getScreen () { return screen; } }
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx; /** * <p> * An {@link ApplicationListener} that delegates to a {@link Screen}. This allows an application to easily have multiple screens. * </p> * <p> * Screens are not disposed automatically. You must handle whether you want to keep screens around or dispose of them when another * screen is set. * </p> */ public abstract class Game implements ApplicationListener { protected Screen screen; @Override public void dispose () { if (screen != null) screen.hide(); } @Override public void pause () { if (screen != null) screen.pause(); } @Override public void resume () { if (screen != null) screen.resume(); } @Override public void render () { if (screen != null) screen.render(Gdx.graphics.getDeltaTime()); } @Override public void resize (int width, int height) { if (screen != null) screen.resize(width, height); } /** Sets the current screen. {@link Screen#hide()} is called on any old screen, and {@link Screen#show()} is called on the new * screen, if any. * @param screen may be {@code null} */ public void setScreen (Screen screen) { if (this.screen != null) this.screen.hide(); this.screen = screen; if (this.screen != null) { this.screen.show(); this.screen.resize(Gdx.graphics.getWidth(), Gdx.graphics.getHeight()); } } /** @return the currently active {@link Screen}. */ public Screen getScreen () { return screen; } }
-1
libgdx/libgdx
7,305
Adds status detection for an httpRequest
This commit adds the public boolean isHttpRequestPending (HttpRequest httpRequest) method to Gdx.net user interface. It allows end users to detect if an httpRequest is pending or already finished. It helpfull for creating advanced business logic.
supermaximus80
"2023-12-22T21:58:24Z"
"2023-12-27T14:37:55Z"
60f074309093046d7fd9dd3c895bba398b415797
2b691f735f4b167c062f8f68186a6d7237d3d855
Adds status detection for an httpRequest. This commit adds the public boolean isHttpRequestPending (HttpRequest httpRequest) method to Gdx.net user interface. It allows end users to detect if an httpRequest is pending or already finished. It helpfull for creating advanced business logic.
./extensions/gdx-bullet/jni/swig-src/collision/com/badlogic/gdx/physics/bullet/collision/eLINE_PLANE_INTERSECTION_TYPE.java
/* ---------------------------------------------------------------------------- * This file was automatically generated by SWIG (http://www.swig.org). * Version 3.0.11 * * Do not make changes to this file unless you know what you are doing--modify * the SWIG interface file instead. * ----------------------------------------------------------------------------- */ package com.badlogic.gdx.physics.bullet.collision; public final class eLINE_PLANE_INTERSECTION_TYPE { public final static int G_FRONT_PLANE_S1 = 0; public final static int G_FRONT_PLANE_S2 = G_FRONT_PLANE_S1 + 1; public final static int G_BACK_PLANE_S1 = G_FRONT_PLANE_S2 + 1; public final static int G_BACK_PLANE_S2 = G_BACK_PLANE_S1 + 1; public final static int G_COLLIDE_PLANE_S1 = G_BACK_PLANE_S2 + 1; public final static int G_COLLIDE_PLANE_S2 = G_COLLIDE_PLANE_S1 + 1; }
/* ---------------------------------------------------------------------------- * This file was automatically generated by SWIG (http://www.swig.org). * Version 3.0.11 * * Do not make changes to this file unless you know what you are doing--modify * the SWIG interface file instead. * ----------------------------------------------------------------------------- */ package com.badlogic.gdx.physics.bullet.collision; public final class eLINE_PLANE_INTERSECTION_TYPE { public final static int G_FRONT_PLANE_S1 = 0; public final static int G_FRONT_PLANE_S2 = G_FRONT_PLANE_S1 + 1; public final static int G_BACK_PLANE_S1 = G_FRONT_PLANE_S2 + 1; public final static int G_BACK_PLANE_S2 = G_BACK_PLANE_S1 + 1; public final static int G_COLLIDE_PLANE_S1 = G_BACK_PLANE_S2 + 1; public final static int G_COLLIDE_PLANE_S2 = G_COLLIDE_PLANE_S1 + 1; }
-1
libgdx/libgdx
7,305
Adds status detection for an httpRequest
This commit adds the public boolean isHttpRequestPending (HttpRequest httpRequest) method to Gdx.net user interface. It allows end users to detect if an httpRequest is pending or already finished. It helpfull for creating advanced business logic.
supermaximus80
"2023-12-22T21:58:24Z"
"2023-12-27T14:37:55Z"
60f074309093046d7fd9dd3c895bba398b415797
2b691f735f4b167c062f8f68186a6d7237d3d855
Adds status detection for an httpRequest. This commit adds the public boolean isHttpRequestPending (HttpRequest httpRequest) method to Gdx.net user interface. It allows end users to detect if an httpRequest is pending or already finished. It helpfull for creating advanced business logic.
./gdx/src/com/badlogic/gdx/graphics/g3d/utils/DefaultTextureBinder.java
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.graphics.g3d.utils; import java.nio.IntBuffer; import com.badlogic.gdx.Gdx; import com.badlogic.gdx.graphics.GL20; import com.badlogic.gdx.graphics.GLTexture; import com.badlogic.gdx.utils.BufferUtils; import com.badlogic.gdx.utils.GdxRuntimeException; /** Class that you assign a range of texture units and binds textures for you within that range. It does some basic usage tracking * to avoid unnecessary bind calls. * @author xoppa */ public final class DefaultTextureBinder implements TextureBinder { public final static int ROUNDROBIN = 0; public final static int LRU = 1; /** GLES only supports up to 32 textures */ public final static int MAX_GLES_UNITS = 32; /** The index of the first exclusive texture unit */ private final int offset; /** The amount of exclusive textures that may be used */ private final int count; /** The textures currently exclusive bound */ private final GLTexture[] textures; /** Texture units ordered from most to least recently used */ private int[] unitsLRU; /** The method of binding to use */ private final int method; /** Flag to indicate the current texture is reused */ private boolean reused; private int reuseCount = 0; // TODO remove debug code private int bindCount = 0; // TODO remove debug code /** Uses all available texture units and reuse weight of 3 */ public DefaultTextureBinder (final int method) { this(method, 0); } /** Uses all remaining texture units and reuse weight of 3 */ public DefaultTextureBinder (final int method, final int offset) { this(method, offset, -1); } public DefaultTextureBinder (final int method, final int offset, int count) { final int max = Math.min(getMaxTextureUnits(), MAX_GLES_UNITS); if (count < 0) count = max - offset; if (offset < 0 || count < 0 || (offset + count) > max) throw new GdxRuntimeException("Illegal arguments"); this.method = method; this.offset = offset; this.count = count; this.textures = new GLTexture[count]; this.unitsLRU = (method == LRU) ? new int[count] : null; } private static int getMaxTextureUnits () { IntBuffer buffer = BufferUtils.newIntBuffer(16); Gdx.gl.glGetIntegerv(GL20.GL_MAX_TEXTURE_IMAGE_UNITS, buffer); return buffer.get(0); } @Override public void begin () { for (int i = 0; i < count; i++) { textures[i] = null; if (unitsLRU != null) unitsLRU[i] = i; } } @Override public void end () { /* * No need to unbind and textures are set to null in begin() for(int i = 0; i < count; i++) { if (textures[i] != null) { * Gdx.gl.glActiveTexture(GL20.GL_TEXTURE0 + offset + i); Gdx.gl.glBindTexture(GL20.GL_TEXTURE_2D, 0); textures[i] = null; } * } */ Gdx.gl.glActiveTexture(GL20.GL_TEXTURE0); } @Override public final int bind (final TextureDescriptor textureDesc) { return bindTexture(textureDesc, false); } private final TextureDescriptor tempDesc = new TextureDescriptor(); @Override public final int bind (final GLTexture texture) { tempDesc.set(texture, null, null, null, null); return bindTexture(tempDesc, false); } private final int bindTexture (final TextureDescriptor textureDesc, final boolean rebind) { final int idx, result; final GLTexture texture = textureDesc.texture; reused = false; switch (method) { case ROUNDROBIN: result = offset + (idx = bindTextureRoundRobin(texture)); break; case LRU: result = offset + (idx = bindTextureLRU(texture)); break; default: return -1; } if (reused) { reuseCount++; if (rebind) texture.bind(result); else Gdx.gl.glActiveTexture(GL20.GL_TEXTURE0 + result); } else bindCount++; texture.unsafeSetWrap(textureDesc.uWrap, textureDesc.vWrap); texture.unsafeSetFilter(textureDesc.minFilter, textureDesc.magFilter); return result; } private int currentTexture = 0; private final int bindTextureRoundRobin (final GLTexture texture) { for (int i = 0; i < count; i++) { final int idx = (currentTexture + i) % count; if (textures[idx] == texture) { reused = true; return idx; } } currentTexture = (currentTexture + 1) % count; textures[currentTexture] = texture; texture.bind(offset + currentTexture); return currentTexture; } private final int bindTextureLRU (final GLTexture texture) { int i; for (i = 0; i < count; i++) { final int idx = unitsLRU[i]; if (textures[idx] == texture) { reused = true; break; } if (textures[idx] == null) { break; } } if (i >= count) i = count - 1; final int idx = unitsLRU[i]; while (i > 0) { unitsLRU[i] = unitsLRU[i - 1]; i--; } unitsLRU[0] = idx; if (!reused) { textures[idx] = texture; texture.bind(offset + idx); } return idx; } @Override public final int getBindCount () { return bindCount; } @Override public final int getReuseCount () { return reuseCount; } @Override public final void resetCounts () { bindCount = reuseCount = 0; } }
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.graphics.g3d.utils; import java.nio.IntBuffer; import com.badlogic.gdx.Gdx; import com.badlogic.gdx.graphics.GL20; import com.badlogic.gdx.graphics.GLTexture; import com.badlogic.gdx.utils.BufferUtils; import com.badlogic.gdx.utils.GdxRuntimeException; /** Class that you assign a range of texture units and binds textures for you within that range. It does some basic usage tracking * to avoid unnecessary bind calls. * @author xoppa */ public final class DefaultTextureBinder implements TextureBinder { public final static int ROUNDROBIN = 0; public final static int LRU = 1; /** GLES only supports up to 32 textures */ public final static int MAX_GLES_UNITS = 32; /** The index of the first exclusive texture unit */ private final int offset; /** The amount of exclusive textures that may be used */ private final int count; /** The textures currently exclusive bound */ private final GLTexture[] textures; /** Texture units ordered from most to least recently used */ private int[] unitsLRU; /** The method of binding to use */ private final int method; /** Flag to indicate the current texture is reused */ private boolean reused; private int reuseCount = 0; // TODO remove debug code private int bindCount = 0; // TODO remove debug code /** Uses all available texture units and reuse weight of 3 */ public DefaultTextureBinder (final int method) { this(method, 0); } /** Uses all remaining texture units and reuse weight of 3 */ public DefaultTextureBinder (final int method, final int offset) { this(method, offset, -1); } public DefaultTextureBinder (final int method, final int offset, int count) { final int max = Math.min(getMaxTextureUnits(), MAX_GLES_UNITS); if (count < 0) count = max - offset; if (offset < 0 || count < 0 || (offset + count) > max) throw new GdxRuntimeException("Illegal arguments"); this.method = method; this.offset = offset; this.count = count; this.textures = new GLTexture[count]; this.unitsLRU = (method == LRU) ? new int[count] : null; } private static int getMaxTextureUnits () { IntBuffer buffer = BufferUtils.newIntBuffer(16); Gdx.gl.glGetIntegerv(GL20.GL_MAX_TEXTURE_IMAGE_UNITS, buffer); return buffer.get(0); } @Override public void begin () { for (int i = 0; i < count; i++) { textures[i] = null; if (unitsLRU != null) unitsLRU[i] = i; } } @Override public void end () { /* * No need to unbind and textures are set to null in begin() for(int i = 0; i < count; i++) { if (textures[i] != null) { * Gdx.gl.glActiveTexture(GL20.GL_TEXTURE0 + offset + i); Gdx.gl.glBindTexture(GL20.GL_TEXTURE_2D, 0); textures[i] = null; } * } */ Gdx.gl.glActiveTexture(GL20.GL_TEXTURE0); } @Override public final int bind (final TextureDescriptor textureDesc) { return bindTexture(textureDesc, false); } private final TextureDescriptor tempDesc = new TextureDescriptor(); @Override public final int bind (final GLTexture texture) { tempDesc.set(texture, null, null, null, null); return bindTexture(tempDesc, false); } private final int bindTexture (final TextureDescriptor textureDesc, final boolean rebind) { final int idx, result; final GLTexture texture = textureDesc.texture; reused = false; switch (method) { case ROUNDROBIN: result = offset + (idx = bindTextureRoundRobin(texture)); break; case LRU: result = offset + (idx = bindTextureLRU(texture)); break; default: return -1; } if (reused) { reuseCount++; if (rebind) texture.bind(result); else Gdx.gl.glActiveTexture(GL20.GL_TEXTURE0 + result); } else bindCount++; texture.unsafeSetWrap(textureDesc.uWrap, textureDesc.vWrap); texture.unsafeSetFilter(textureDesc.minFilter, textureDesc.magFilter); return result; } private int currentTexture = 0; private final int bindTextureRoundRobin (final GLTexture texture) { for (int i = 0; i < count; i++) { final int idx = (currentTexture + i) % count; if (textures[idx] == texture) { reused = true; return idx; } } currentTexture = (currentTexture + 1) % count; textures[currentTexture] = texture; texture.bind(offset + currentTexture); return currentTexture; } private final int bindTextureLRU (final GLTexture texture) { int i; for (i = 0; i < count; i++) { final int idx = unitsLRU[i]; if (textures[idx] == texture) { reused = true; break; } if (textures[idx] == null) { break; } } if (i >= count) i = count - 1; final int idx = unitsLRU[i]; while (i > 0) { unitsLRU[i] = unitsLRU[i - 1]; i--; } unitsLRU[0] = idx; if (!reused) { textures[idx] = texture; texture.bind(offset + idx); } return idx; } @Override public final int getBindCount () { return bindCount; } @Override public final int getReuseCount () { return reuseCount; } @Override public final void resetCounts () { bindCount = reuseCount = 0; } }
-1
libgdx/libgdx
7,305
Adds status detection for an httpRequest
This commit adds the public boolean isHttpRequestPending (HttpRequest httpRequest) method to Gdx.net user interface. It allows end users to detect if an httpRequest is pending or already finished. It helpfull for creating advanced business logic.
supermaximus80
"2023-12-22T21:58:24Z"
"2023-12-27T14:37:55Z"
60f074309093046d7fd9dd3c895bba398b415797
2b691f735f4b167c062f8f68186a6d7237d3d855
Adds status detection for an httpRequest. This commit adds the public boolean isHttpRequestPending (HttpRequest httpRequest) method to Gdx.net user interface. It allows end users to detect if an httpRequest is pending or already finished. It helpfull for creating advanced business logic.
./gdx/src/com/badlogic/gdx/graphics/g3d/Renderable.java
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.graphics.g3d; import com.badlogic.gdx.graphics.Mesh; import com.badlogic.gdx.graphics.g3d.model.MeshPart; import com.badlogic.gdx.graphics.g3d.utils.ShaderProvider; import com.badlogic.gdx.math.Matrix4; import com.badlogic.gdx.utils.Array; import com.badlogic.gdx.utils.Pool; /** A Renderable contains all information about a single render instruction (typically a draw call). * </p> * * It defines what (the shape), how (the material) and where (the transform) should be rendered by which shader. * </p> * * The shape is defined using the mesh, meshPartOffset, meshPartSize and primitiveType members. This matches the members of the * {@link MeshPart} class. The meshPartOffset is used to specify the offset within the mesh and the meshPartSize is used to * specify the part (in total number of vertices) to render. If the mesh is indexed (which is when {@link Mesh#getNumIndices()} > * 0) then both values are in number of indices within the indices array of the mesh, otherwise they are in number of vertices * within the vertices array of the mesh. Note that some classes might require the mesh to be indexed. * </p> * * The {@link #material} and (optional) {@link #environment} values are combined to specify how the shape should look like. * Typically these are used to specify uniform values or other OpenGL state changes. When a value is present in both the * {@link #material} and {@link #environment}, then the value of the {@link #material} will be used. * </p> * * Renderables can be rendered directly using a {@link Shader} (in which case the {@link #shader} member is ignored). Though more * typically Renderables are rendered via a {@link ModelBatch}, either directly, or by passing a {@link RenderableProvider} like * {@link ModelInstance} to the RenderBatch. * </p> * * A ModelInstance returns all Renderables via its {@link ModelInstance#getRenderables(Array, Pool)} method. In which case the * value of {@link ModelInstance#userData} will be set to the {@link #userData} member. The {@link #userData} member can be used * to pass additional data to the shader. However, in most scenario's it is advised to use the {@link #material} or * {@link #environment} member with custom {@link Attribute}s to pass data to the shader. * </p> * * In some cases, (for example for non-hierarchical basic game objects requiring only a single draw call) it is possible to extend * the Renderable class and add additional fields to pass to the shader. While extending the Renderable class can be useful, the * shader should not rely on it. Similar to the {@link #userData} member it is advised to use the {@link #material} and * {@link #environment} members to pass data to the shader. * </p> * * When using a ModelBatch to render a Renderable, The Renderable and all its values must not be changed in between the call to * {@link ModelBatch#begin(com.badlogic.gdx.graphics.Camera)} and {@link ModelBatch#end()}. Therefor Renderable instances cannot * be reused for multiple render calls. * </p> * * When the {@link #shader} member of the Renderable is set, the {@link ShaderProvider} of the {@link ModelBatch} may decide to * use that shader instead of the default shader. Therefor, to assure the default shader is used, the {@link #shader} member must * be set to null. * </p> * @author badlogic, xoppa */ public class Renderable { /** Used to specify the transformations (like translation, scale and rotation) to apply to the shape. In other words: it is * used to transform the vertices from model space into world space. **/ public final Matrix4 worldTransform = new Matrix4(); /** The {@link MeshPart} that contains the shape to render **/ public final MeshPart meshPart = new MeshPart(); /** The {@link Material} to be applied to the shape (part of the mesh), must not be null. * @see #environment **/ public Material material; /** The {@link Environment} to be used to render this Renderable, may be null. When specified it will be combined by the shader * with the {@link #material}. When both the material and environment contain an attribute of the same type, the attribute of * the material will be used. **/ public Environment environment; /** The bone transformations used for skinning, or null if not applicable. When specified and the mesh contains one or more * {@link com.badlogic.gdx.graphics.VertexAttributes.Usage#BoneWeight} vertex attributes, then the BoneWeight index is used as * index in the array. If the array isn't large enough then the identity matrix is used. Each BoneWeight weight is used to * combine multiple bones into a single transformation matrix, which is used to transform the vertex to model space. In other * words: the bone transformation is applied prior to the {@link #worldTransform}. */ public Matrix4 bones[]; /** The {@link Shader} to be used to render this Renderable using a {@link ModelBatch}, may be null. It is not guaranteed that * the shader will be used, the used {@link ShaderProvider} is responsible for actually choosing the correct shader to use. **/ public Shader shader; /** User definable value, may be null. */ public Object userData; public Renderable set (Renderable renderable) { worldTransform.set(renderable.worldTransform); material = renderable.material; meshPart.set(renderable.meshPart); bones = renderable.bones; environment = renderable.environment; shader = renderable.shader; userData = renderable.userData; return this; } }
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.graphics.g3d; import com.badlogic.gdx.graphics.Mesh; import com.badlogic.gdx.graphics.g3d.model.MeshPart; import com.badlogic.gdx.graphics.g3d.utils.ShaderProvider; import com.badlogic.gdx.math.Matrix4; import com.badlogic.gdx.utils.Array; import com.badlogic.gdx.utils.Pool; /** A Renderable contains all information about a single render instruction (typically a draw call). * </p> * * It defines what (the shape), how (the material) and where (the transform) should be rendered by which shader. * </p> * * The shape is defined using the mesh, meshPartOffset, meshPartSize and primitiveType members. This matches the members of the * {@link MeshPart} class. The meshPartOffset is used to specify the offset within the mesh and the meshPartSize is used to * specify the part (in total number of vertices) to render. If the mesh is indexed (which is when {@link Mesh#getNumIndices()} > * 0) then both values are in number of indices within the indices array of the mesh, otherwise they are in number of vertices * within the vertices array of the mesh. Note that some classes might require the mesh to be indexed. * </p> * * The {@link #material} and (optional) {@link #environment} values are combined to specify how the shape should look like. * Typically these are used to specify uniform values or other OpenGL state changes. When a value is present in both the * {@link #material} and {@link #environment}, then the value of the {@link #material} will be used. * </p> * * Renderables can be rendered directly using a {@link Shader} (in which case the {@link #shader} member is ignored). Though more * typically Renderables are rendered via a {@link ModelBatch}, either directly, or by passing a {@link RenderableProvider} like * {@link ModelInstance} to the RenderBatch. * </p> * * A ModelInstance returns all Renderables via its {@link ModelInstance#getRenderables(Array, Pool)} method. In which case the * value of {@link ModelInstance#userData} will be set to the {@link #userData} member. The {@link #userData} member can be used * to pass additional data to the shader. However, in most scenario's it is advised to use the {@link #material} or * {@link #environment} member with custom {@link Attribute}s to pass data to the shader. * </p> * * In some cases, (for example for non-hierarchical basic game objects requiring only a single draw call) it is possible to extend * the Renderable class and add additional fields to pass to the shader. While extending the Renderable class can be useful, the * shader should not rely on it. Similar to the {@link #userData} member it is advised to use the {@link #material} and * {@link #environment} members to pass data to the shader. * </p> * * When using a ModelBatch to render a Renderable, The Renderable and all its values must not be changed in between the call to * {@link ModelBatch#begin(com.badlogic.gdx.graphics.Camera)} and {@link ModelBatch#end()}. Therefor Renderable instances cannot * be reused for multiple render calls. * </p> * * When the {@link #shader} member of the Renderable is set, the {@link ShaderProvider} of the {@link ModelBatch} may decide to * use that shader instead of the default shader. Therefor, to assure the default shader is used, the {@link #shader} member must * be set to null. * </p> * @author badlogic, xoppa */ public class Renderable { /** Used to specify the transformations (like translation, scale and rotation) to apply to the shape. In other words: it is * used to transform the vertices from model space into world space. **/ public final Matrix4 worldTransform = new Matrix4(); /** The {@link MeshPart} that contains the shape to render **/ public final MeshPart meshPart = new MeshPart(); /** The {@link Material} to be applied to the shape (part of the mesh), must not be null. * @see #environment **/ public Material material; /** The {@link Environment} to be used to render this Renderable, may be null. When specified it will be combined by the shader * with the {@link #material}. When both the material and environment contain an attribute of the same type, the attribute of * the material will be used. **/ public Environment environment; /** The bone transformations used for skinning, or null if not applicable. When specified and the mesh contains one or more * {@link com.badlogic.gdx.graphics.VertexAttributes.Usage#BoneWeight} vertex attributes, then the BoneWeight index is used as * index in the array. If the array isn't large enough then the identity matrix is used. Each BoneWeight weight is used to * combine multiple bones into a single transformation matrix, which is used to transform the vertex to model space. In other * words: the bone transformation is applied prior to the {@link #worldTransform}. */ public Matrix4 bones[]; /** The {@link Shader} to be used to render this Renderable using a {@link ModelBatch}, may be null. It is not guaranteed that * the shader will be used, the used {@link ShaderProvider} is responsible for actually choosing the correct shader to use. **/ public Shader shader; /** User definable value, may be null. */ public Object userData; public Renderable set (Renderable renderable) { worldTransform.set(renderable.worldTransform); material = renderable.material; meshPart.set(renderable.meshPart); bones = renderable.bones; environment = renderable.environment; shader = renderable.shader; userData = renderable.userData; return this; } }
-1
libgdx/libgdx
7,305
Adds status detection for an httpRequest
This commit adds the public boolean isHttpRequestPending (HttpRequest httpRequest) method to Gdx.net user interface. It allows end users to detect if an httpRequest is pending or already finished. It helpfull for creating advanced business logic.
supermaximus80
"2023-12-22T21:58:24Z"
"2023-12-27T14:37:55Z"
60f074309093046d7fd9dd3c895bba398b415797
2b691f735f4b167c062f8f68186a6d7237d3d855
Adds status detection for an httpRequest. This commit adds the public boolean isHttpRequestPending (HttpRequest httpRequest) method to Gdx.net user interface. It allows end users to detect if an httpRequest is pending or already finished. It helpfull for creating advanced business logic.
./extensions/gdx-bullet/jni/swig-src/dynamics/com/badlogic/gdx/physics/bullet/dynamics/btConstraintSetting.java
/* ---------------------------------------------------------------------------- * This file was automatically generated by SWIG (http://www.swig.org). * Version 3.0.11 * * Do not make changes to this file unless you know what you are doing--modify * the SWIG interface file instead. * ----------------------------------------------------------------------------- */ package com.badlogic.gdx.physics.bullet.dynamics; import com.badlogic.gdx.physics.bullet.BulletBase; import com.badlogic.gdx.physics.bullet.linearmath.*; import com.badlogic.gdx.physics.bullet.collision.*; public class btConstraintSetting extends BulletBase { private long swigCPtr; protected btConstraintSetting (final String className, long cPtr, boolean cMemoryOwn) { super(className, cPtr, cMemoryOwn); swigCPtr = cPtr; } /** Construct a new btConstraintSetting, normally you should not need this constructor it's intended for low-level usage. */ public btConstraintSetting (long cPtr, boolean cMemoryOwn) { this("btConstraintSetting", cPtr, cMemoryOwn); construct(); } @Override protected void reset (long cPtr, boolean cMemoryOwn) { if (!destroyed) destroy(); super.reset(swigCPtr = cPtr, cMemoryOwn); } public static long getCPtr (btConstraintSetting obj) { return (obj == null) ? 0 : obj.swigCPtr; } @Override protected void finalize () throws Throwable { if (!destroyed) destroy(); super.finalize(); } @Override protected synchronized void delete () { if (swigCPtr != 0) { if (swigCMemOwn) { swigCMemOwn = false; DynamicsJNI.delete_btConstraintSetting(swigCPtr); } swigCPtr = 0; } super.delete(); } public btConstraintSetting () { this(DynamicsJNI.new_btConstraintSetting(), true); } public void setTau (float value) { DynamicsJNI.btConstraintSetting_tau_set(swigCPtr, this, value); } public float getTau () { return DynamicsJNI.btConstraintSetting_tau_get(swigCPtr, this); } public void setDamping (float value) { DynamicsJNI.btConstraintSetting_damping_set(swigCPtr, this, value); } public float getDamping () { return DynamicsJNI.btConstraintSetting_damping_get(swigCPtr, this); } public void setImpulseClamp (float value) { DynamicsJNI.btConstraintSetting_impulseClamp_set(swigCPtr, this, value); } public float getImpulseClamp () { return DynamicsJNI.btConstraintSetting_impulseClamp_get(swigCPtr, this); } }
/* ---------------------------------------------------------------------------- * This file was automatically generated by SWIG (http://www.swig.org). * Version 3.0.11 * * Do not make changes to this file unless you know what you are doing--modify * the SWIG interface file instead. * ----------------------------------------------------------------------------- */ package com.badlogic.gdx.physics.bullet.dynamics; import com.badlogic.gdx.physics.bullet.BulletBase; import com.badlogic.gdx.physics.bullet.linearmath.*; import com.badlogic.gdx.physics.bullet.collision.*; public class btConstraintSetting extends BulletBase { private long swigCPtr; protected btConstraintSetting (final String className, long cPtr, boolean cMemoryOwn) { super(className, cPtr, cMemoryOwn); swigCPtr = cPtr; } /** Construct a new btConstraintSetting, normally you should not need this constructor it's intended for low-level usage. */ public btConstraintSetting (long cPtr, boolean cMemoryOwn) { this("btConstraintSetting", cPtr, cMemoryOwn); construct(); } @Override protected void reset (long cPtr, boolean cMemoryOwn) { if (!destroyed) destroy(); super.reset(swigCPtr = cPtr, cMemoryOwn); } public static long getCPtr (btConstraintSetting obj) { return (obj == null) ? 0 : obj.swigCPtr; } @Override protected void finalize () throws Throwable { if (!destroyed) destroy(); super.finalize(); } @Override protected synchronized void delete () { if (swigCPtr != 0) { if (swigCMemOwn) { swigCMemOwn = false; DynamicsJNI.delete_btConstraintSetting(swigCPtr); } swigCPtr = 0; } super.delete(); } public btConstraintSetting () { this(DynamicsJNI.new_btConstraintSetting(), true); } public void setTau (float value) { DynamicsJNI.btConstraintSetting_tau_set(swigCPtr, this, value); } public float getTau () { return DynamicsJNI.btConstraintSetting_tau_get(swigCPtr, this); } public void setDamping (float value) { DynamicsJNI.btConstraintSetting_damping_set(swigCPtr, this, value); } public float getDamping () { return DynamicsJNI.btConstraintSetting_damping_get(swigCPtr, this); } public void setImpulseClamp (float value) { DynamicsJNI.btConstraintSetting_impulseClamp_set(swigCPtr, this, value); } public float getImpulseClamp () { return DynamicsJNI.btConstraintSetting_impulseClamp_get(swigCPtr, this); } }
-1
libgdx/libgdx
7,305
Adds status detection for an httpRequest
This commit adds the public boolean isHttpRequestPending (HttpRequest httpRequest) method to Gdx.net user interface. It allows end users to detect if an httpRequest is pending or already finished. It helpfull for creating advanced business logic.
supermaximus80
"2023-12-22T21:58:24Z"
"2023-12-27T14:37:55Z"
60f074309093046d7fd9dd3c895bba398b415797
2b691f735f4b167c062f8f68186a6d7237d3d855
Adds status detection for an httpRequest. This commit adds the public boolean isHttpRequestPending (HttpRequest httpRequest) method to Gdx.net user interface. It allows end users to detect if an httpRequest is pending or already finished. It helpfull for creating advanced business logic.
./extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/com/badlogic/gdx/physics/box2d/joints/RevoluteJointDef.java
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.physics.box2d.joints; import com.badlogic.gdx.math.Vector2; import com.badlogic.gdx.physics.box2d.Body; import com.badlogic.gdx.physics.box2d.JointDef; /** Revolute joint definition. This requires defining an anchor point where the bodies are joined. The definition uses local * anchor points so that the initial configuration can violate the constraint slightly. You also need to specify the initial * relative angle for joint limits. This helps when saving and loading a game. The local anchor points are measured from the * body's origin rather than the center of mass because: 1. you might not know where the center of mass will be. 2. if you * add/remove shapes from a body and recompute the mass, the joints will be broken. */ public class RevoluteJointDef extends JointDef { public RevoluteJointDef () { type = JointType.RevoluteJoint; } /** Initialize the bodies, anchors, and reference angle using a world anchor point. */ public void initialize (Body bodyA, Body bodyB, Vector2 anchor) { this.bodyA = bodyA; this.bodyB = bodyB; localAnchorA.set(bodyA.getLocalPoint(anchor)); localAnchorB.set(bodyB.getLocalPoint(anchor)); referenceAngle = bodyB.getAngle() - bodyA.getAngle(); } /** The local anchor point relative to body1's origin. */ public final Vector2 localAnchorA = new Vector2(); /** The local anchor point relative to body2's origin. */ public final Vector2 localAnchorB = new Vector2();; /** The body2 angle minus body1 angle in the reference state (radians). */ public float referenceAngle = 0; /** A flag to enable joint limits. */ public boolean enableLimit = false; /** The lower angle for the joint limit (radians). */ public float lowerAngle = 0; /** The upper angle for the joint limit (radians). */ public float upperAngle = 0; /** A flag to enable the joint motor. */ public boolean enableMotor = false; /** The desired motor speed. Usually in radians per second. */ public float motorSpeed = 0; /** The maximum motor torque used to achieve the desired motor speed. Usually in N-m. */ public float maxMotorTorque = 0; @Override public org.jbox2d.dynamics.joints.JointDef toJBox2d () { org.jbox2d.dynamics.joints.RevoluteJointDef jd = new org.jbox2d.dynamics.joints.RevoluteJointDef(); jd.bodyA = bodyA.body; jd.bodyB = bodyB.body; jd.collideConnected = collideConnected; jd.enableLimit = enableLimit; jd.enableMotor = enableMotor; jd.localAnchorA.set(localAnchorA.x, localAnchorA.y); jd.localAnchorB.set(localAnchorB.x, localAnchorB.y); jd.lowerAngle = lowerAngle; jd.maxMotorTorque = maxMotorTorque; jd.motorSpeed = motorSpeed; jd.referenceAngle = referenceAngle; jd.type = org.jbox2d.dynamics.joints.JointType.REVOLUTE; jd.upperAngle = upperAngle; return jd; } }
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.physics.box2d.joints; import com.badlogic.gdx.math.Vector2; import com.badlogic.gdx.physics.box2d.Body; import com.badlogic.gdx.physics.box2d.JointDef; /** Revolute joint definition. This requires defining an anchor point where the bodies are joined. The definition uses local * anchor points so that the initial configuration can violate the constraint slightly. You also need to specify the initial * relative angle for joint limits. This helps when saving and loading a game. The local anchor points are measured from the * body's origin rather than the center of mass because: 1. you might not know where the center of mass will be. 2. if you * add/remove shapes from a body and recompute the mass, the joints will be broken. */ public class RevoluteJointDef extends JointDef { public RevoluteJointDef () { type = JointType.RevoluteJoint; } /** Initialize the bodies, anchors, and reference angle using a world anchor point. */ public void initialize (Body bodyA, Body bodyB, Vector2 anchor) { this.bodyA = bodyA; this.bodyB = bodyB; localAnchorA.set(bodyA.getLocalPoint(anchor)); localAnchorB.set(bodyB.getLocalPoint(anchor)); referenceAngle = bodyB.getAngle() - bodyA.getAngle(); } /** The local anchor point relative to body1's origin. */ public final Vector2 localAnchorA = new Vector2(); /** The local anchor point relative to body2's origin. */ public final Vector2 localAnchorB = new Vector2();; /** The body2 angle minus body1 angle in the reference state (radians). */ public float referenceAngle = 0; /** A flag to enable joint limits. */ public boolean enableLimit = false; /** The lower angle for the joint limit (radians). */ public float lowerAngle = 0; /** The upper angle for the joint limit (radians). */ public float upperAngle = 0; /** A flag to enable the joint motor. */ public boolean enableMotor = false; /** The desired motor speed. Usually in radians per second. */ public float motorSpeed = 0; /** The maximum motor torque used to achieve the desired motor speed. Usually in N-m. */ public float maxMotorTorque = 0; @Override public org.jbox2d.dynamics.joints.JointDef toJBox2d () { org.jbox2d.dynamics.joints.RevoluteJointDef jd = new org.jbox2d.dynamics.joints.RevoluteJointDef(); jd.bodyA = bodyA.body; jd.bodyB = bodyB.body; jd.collideConnected = collideConnected; jd.enableLimit = enableLimit; jd.enableMotor = enableMotor; jd.localAnchorA.set(localAnchorA.x, localAnchorA.y); jd.localAnchorB.set(localAnchorB.x, localAnchorB.y); jd.lowerAngle = lowerAngle; jd.maxMotorTorque = maxMotorTorque; jd.motorSpeed = motorSpeed; jd.referenceAngle = referenceAngle; jd.type = org.jbox2d.dynamics.joints.JointType.REVOLUTE; jd.upperAngle = upperAngle; return jd; } }
-1
libgdx/libgdx
7,305
Adds status detection for an httpRequest
This commit adds the public boolean isHttpRequestPending (HttpRequest httpRequest) method to Gdx.net user interface. It allows end users to detect if an httpRequest is pending or already finished. It helpfull for creating advanced business logic.
supermaximus80
"2023-12-22T21:58:24Z"
"2023-12-27T14:37:55Z"
60f074309093046d7fd9dd3c895bba398b415797
2b691f735f4b167c062f8f68186a6d7237d3d855
Adds status detection for an httpRequest. This commit adds the public boolean isHttpRequestPending (HttpRequest httpRequest) method to Gdx.net user interface. It allows end users to detect if an httpRequest is pending or already finished. It helpfull for creating advanced business logic.
./extensions/gdx-bullet/jni/swig-src/collision/com/badlogic/gdx/physics/bullet/collision/btPositionAndRadius.java
/* ---------------------------------------------------------------------------- * This file was automatically generated by SWIG (http://www.swig.org). * Version 3.0.11 * * Do not make changes to this file unless you know what you are doing--modify * the SWIG interface file instead. * ----------------------------------------------------------------------------- */ package com.badlogic.gdx.physics.bullet.collision; import com.badlogic.gdx.physics.bullet.BulletBase; import com.badlogic.gdx.physics.bullet.linearmath.*; public class btPositionAndRadius extends BulletBase { private long swigCPtr; protected btPositionAndRadius (final String className, long cPtr, boolean cMemoryOwn) { super(className, cPtr, cMemoryOwn); swigCPtr = cPtr; } /** Construct a new btPositionAndRadius, normally you should not need this constructor it's intended for low-level usage. */ public btPositionAndRadius (long cPtr, boolean cMemoryOwn) { this("btPositionAndRadius", cPtr, cMemoryOwn); construct(); } @Override protected void reset (long cPtr, boolean cMemoryOwn) { if (!destroyed) destroy(); super.reset(swigCPtr = cPtr, cMemoryOwn); } public static long getCPtr (btPositionAndRadius obj) { return (obj == null) ? 0 : obj.swigCPtr; } @Override protected void finalize () throws Throwable { if (!destroyed) destroy(); super.finalize(); } @Override protected synchronized void delete () { if (swigCPtr != 0) { if (swigCMemOwn) { swigCMemOwn = false; CollisionJNI.delete_btPositionAndRadius(swigCPtr); } swigCPtr = 0; } super.delete(); } public void setPos (btVector3FloatData value) { CollisionJNI.btPositionAndRadius_pos_set(swigCPtr, this, btVector3FloatData.getCPtr(value), value); } public btVector3FloatData getPos () { long cPtr = CollisionJNI.btPositionAndRadius_pos_get(swigCPtr, this); return (cPtr == 0) ? null : new btVector3FloatData(cPtr, false); } public void setRadius (float value) { CollisionJNI.btPositionAndRadius_radius_set(swigCPtr, this, value); } public float getRadius () { return CollisionJNI.btPositionAndRadius_radius_get(swigCPtr, this); } public btPositionAndRadius () { this(CollisionJNI.new_btPositionAndRadius(), true); } }
/* ---------------------------------------------------------------------------- * This file was automatically generated by SWIG (http://www.swig.org). * Version 3.0.11 * * Do not make changes to this file unless you know what you are doing--modify * the SWIG interface file instead. * ----------------------------------------------------------------------------- */ package com.badlogic.gdx.physics.bullet.collision; import com.badlogic.gdx.physics.bullet.BulletBase; import com.badlogic.gdx.physics.bullet.linearmath.*; public class btPositionAndRadius extends BulletBase { private long swigCPtr; protected btPositionAndRadius (final String className, long cPtr, boolean cMemoryOwn) { super(className, cPtr, cMemoryOwn); swigCPtr = cPtr; } /** Construct a new btPositionAndRadius, normally you should not need this constructor it's intended for low-level usage. */ public btPositionAndRadius (long cPtr, boolean cMemoryOwn) { this("btPositionAndRadius", cPtr, cMemoryOwn); construct(); } @Override protected void reset (long cPtr, boolean cMemoryOwn) { if (!destroyed) destroy(); super.reset(swigCPtr = cPtr, cMemoryOwn); } public static long getCPtr (btPositionAndRadius obj) { return (obj == null) ? 0 : obj.swigCPtr; } @Override protected void finalize () throws Throwable { if (!destroyed) destroy(); super.finalize(); } @Override protected synchronized void delete () { if (swigCPtr != 0) { if (swigCMemOwn) { swigCMemOwn = false; CollisionJNI.delete_btPositionAndRadius(swigCPtr); } swigCPtr = 0; } super.delete(); } public void setPos (btVector3FloatData value) { CollisionJNI.btPositionAndRadius_pos_set(swigCPtr, this, btVector3FloatData.getCPtr(value), value); } public btVector3FloatData getPos () { long cPtr = CollisionJNI.btPositionAndRadius_pos_get(swigCPtr, this); return (cPtr == 0) ? null : new btVector3FloatData(cPtr, false); } public void setRadius (float value) { CollisionJNI.btPositionAndRadius_radius_set(swigCPtr, this, value); } public float getRadius () { return CollisionJNI.btPositionAndRadius_radius_get(swigCPtr, this); } public btPositionAndRadius () { this(CollisionJNI.new_btPositionAndRadius(), true); } }
-1
libgdx/libgdx
7,305
Adds status detection for an httpRequest
This commit adds the public boolean isHttpRequestPending (HttpRequest httpRequest) method to Gdx.net user interface. It allows end users to detect if an httpRequest is pending or already finished. It helpfull for creating advanced business logic.
supermaximus80
"2023-12-22T21:58:24Z"
"2023-12-27T14:37:55Z"
60f074309093046d7fd9dd3c895bba398b415797
2b691f735f4b167c062f8f68186a6d7237d3d855
Adds status detection for an httpRequest. This commit adds the public boolean isHttpRequestPending (HttpRequest httpRequest) method to Gdx.net user interface. It allows end users to detect if an httpRequest is pending or already finished. It helpfull for creating advanced business logic.
./extensions/gdx-box2d/gdx-box2d/src/com/badlogic/gdx/physics/box2d/Shape.java
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.physics.box2d; import com.badlogic.gdx.utils.Disposable; /** A shape is used for collision detection. You can create a shape however you like. Shapes used for simulation in b2World are * created automatically when a b2Fixture is created. Shapes may encapsulate a one or more child shapes. * * NOTE: YOU NEED TO DISPOSE SHAPES YOU CREATED YOURSELF AFTER YOU NO LONGER USE THEM! E.g. after calling body.createFixture(); * @author mzechner */ public abstract class Shape implements Disposable { // @off /*JNI #include <Box2D/Box2D.h> */ /** Enum describing the type of a shape * @author mzechner */ public enum Type { Circle, Edge, Polygon, Chain, }; /** the address of the shape **/ protected long addr; /** Get the type of this shape. You can use this to down cast to the concrete shape. * @return the shape type. */ public abstract Type getType (); /** Returns the radius of this shape */ public float getRadius () { return jniGetRadius(addr); } private native float jniGetRadius (long addr); /* b2Shape* shape = (b2Shape*)addr; return shape->m_radius; */ /** Sets the radius of this shape */ public void setRadius (float radius) { jniSetRadius(addr, radius); } private native void jniSetRadius (long addr, float radius); /* b2Shape* shape = (b2Shape*)addr; shape->m_radius = radius; */ /** Needs to be called when the shape is no longer used, e.g. after a fixture was created based on the shape. */ @Override public void dispose () { jniDispose(addr); } private native void jniDispose (long addr); /* b2Shape* shape = (b2Shape*)addr; delete shape; */ protected static native int jniGetType (long addr); /* b2Shape* shape = (b2Shape*)addr; switch(shape->m_type) { case b2Shape::e_circle: return 0; case b2Shape::e_edge: return 1; case b2Shape::e_polygon: return 2; case b2Shape::e_chain: return 3; default: return -1; } */ /** Get the number of child primitives. */ public int getChildCount () { return jniGetChildCount(addr); } private native int jniGetChildCount (long addr); /* b2Shape* shape = (b2Shape*)addr; return shape->GetChildCount(); */ // /// Test a point for containment in this shape. This only works for convex shapes. // /// @param xf the shape world transform. // /// @param p a point in world coordinates. // virtual bool TestPoint(const b2Transform& xf, const b2Vec2& p) const = 0; // // /// Cast a ray against this shape. // /// @param output the ray-cast results. // /// @param input the ray-cast input parameters. // /// @param transform the transform to be applied to the shape. // virtual bool RayCast(b2RayCastOutput* output, const b2RayCastInput& input, const b2Transform& transform) const = 0; // // /// Given a transform, compute the associated axis aligned bounding box for this shape. // /// @param aabb returns the axis aligned box. // /// @param xf the world transform of the shape. // virtual void ComputeAABB(b2AABB* aabb, const b2Transform& xf) const = 0; // // /// Compute the mass properties of this shape using its dimensions and density. // /// The inertia tensor is computed about the local origin. // /// @param massData returns the mass data for this shape. // /// @param density the density in kilograms per meter squared. // virtual void ComputeMass(b2MassData* massData, float32 density) const = 0; }
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.physics.box2d; import com.badlogic.gdx.utils.Disposable; /** A shape is used for collision detection. You can create a shape however you like. Shapes used for simulation in b2World are * created automatically when a b2Fixture is created. Shapes may encapsulate a one or more child shapes. * * NOTE: YOU NEED TO DISPOSE SHAPES YOU CREATED YOURSELF AFTER YOU NO LONGER USE THEM! E.g. after calling body.createFixture(); * @author mzechner */ public abstract class Shape implements Disposable { // @off /*JNI #include <Box2D/Box2D.h> */ /** Enum describing the type of a shape * @author mzechner */ public enum Type { Circle, Edge, Polygon, Chain, }; /** the address of the shape **/ protected long addr; /** Get the type of this shape. You can use this to down cast to the concrete shape. * @return the shape type. */ public abstract Type getType (); /** Returns the radius of this shape */ public float getRadius () { return jniGetRadius(addr); } private native float jniGetRadius (long addr); /* b2Shape* shape = (b2Shape*)addr; return shape->m_radius; */ /** Sets the radius of this shape */ public void setRadius (float radius) { jniSetRadius(addr, radius); } private native void jniSetRadius (long addr, float radius); /* b2Shape* shape = (b2Shape*)addr; shape->m_radius = radius; */ /** Needs to be called when the shape is no longer used, e.g. after a fixture was created based on the shape. */ @Override public void dispose () { jniDispose(addr); } private native void jniDispose (long addr); /* b2Shape* shape = (b2Shape*)addr; delete shape; */ protected static native int jniGetType (long addr); /* b2Shape* shape = (b2Shape*)addr; switch(shape->m_type) { case b2Shape::e_circle: return 0; case b2Shape::e_edge: return 1; case b2Shape::e_polygon: return 2; case b2Shape::e_chain: return 3; default: return -1; } */ /** Get the number of child primitives. */ public int getChildCount () { return jniGetChildCount(addr); } private native int jniGetChildCount (long addr); /* b2Shape* shape = (b2Shape*)addr; return shape->GetChildCount(); */ // /// Test a point for containment in this shape. This only works for convex shapes. // /// @param xf the shape world transform. // /// @param p a point in world coordinates. // virtual bool TestPoint(const b2Transform& xf, const b2Vec2& p) const = 0; // // /// Cast a ray against this shape. // /// @param output the ray-cast results. // /// @param input the ray-cast input parameters. // /// @param transform the transform to be applied to the shape. // virtual bool RayCast(b2RayCastOutput* output, const b2RayCastInput& input, const b2Transform& transform) const = 0; // // /// Given a transform, compute the associated axis aligned bounding box for this shape. // /// @param aabb returns the axis aligned box. // /// @param xf the world transform of the shape. // virtual void ComputeAABB(b2AABB* aabb, const b2Transform& xf) const = 0; // // /// Compute the mass properties of this shape using its dimensions and density. // /// The inertia tensor is computed about the local origin. // /// @param massData returns the mass data for this shape. // /// @param density the density in kilograms per meter squared. // virtual void ComputeMass(b2MassData* massData, float32 density) const = 0; }
-1
libgdx/libgdx
7,305
Adds status detection for an httpRequest
This commit adds the public boolean isHttpRequestPending (HttpRequest httpRequest) method to Gdx.net user interface. It allows end users to detect if an httpRequest is pending or already finished. It helpfull for creating advanced business logic.
supermaximus80
"2023-12-22T21:58:24Z"
"2023-12-27T14:37:55Z"
60f074309093046d7fd9dd3c895bba398b415797
2b691f735f4b167c062f8f68186a6d7237d3d855
Adds status detection for an httpRequest. This commit adds the public boolean isHttpRequestPending (HttpRequest httpRequest) method to Gdx.net user interface. It allows end users to detect if an httpRequest is pending or already finished. It helpfull for creating advanced business logic.
./extensions/gdx-bullet/jni/swig-src/collision/com/badlogic/gdx/physics/bullet/collision/btMultiSphereShape.java
/* ---------------------------------------------------------------------------- * This file was automatically generated by SWIG (http://www.swig.org). * Version 3.0.11 * * Do not make changes to this file unless you know what you are doing--modify * the SWIG interface file instead. * ----------------------------------------------------------------------------- */ package com.badlogic.gdx.physics.bullet.collision; import com.badlogic.gdx.physics.bullet.linearmath.*; import com.badlogic.gdx.math.Vector3; public class btMultiSphereShape extends btConvexInternalAabbCachingShape { private long swigCPtr; protected btMultiSphereShape (final String className, long cPtr, boolean cMemoryOwn) { super(className, CollisionJNI.btMultiSphereShape_SWIGUpcast(cPtr), cMemoryOwn); swigCPtr = cPtr; } /** Construct a new btMultiSphereShape, normally you should not need this constructor it's intended for low-level usage. */ public btMultiSphereShape (long cPtr, boolean cMemoryOwn) { this("btMultiSphereShape", cPtr, cMemoryOwn); construct(); } @Override protected void reset (long cPtr, boolean cMemoryOwn) { if (!destroyed) destroy(); super.reset(CollisionJNI.btMultiSphereShape_SWIGUpcast(swigCPtr = cPtr), cMemoryOwn); } public static long getCPtr (btMultiSphereShape obj) { return (obj == null) ? 0 : obj.swigCPtr; } @Override protected void finalize () throws Throwable { if (!destroyed) destroy(); super.finalize(); } @Override protected synchronized void delete () { if (swigCPtr != 0) { if (swigCMemOwn) { swigCMemOwn = false; CollisionJNI.delete_btMultiSphereShape(swigCPtr); } swigCPtr = 0; } super.delete(); } public long operatorNew (long sizeInBytes) { return CollisionJNI.btMultiSphereShape_operatorNew__SWIG_0(swigCPtr, this, sizeInBytes); } public void operatorDelete (long ptr) { CollisionJNI.btMultiSphereShape_operatorDelete__SWIG_0(swigCPtr, this, ptr); } public long operatorNew (long arg0, long ptr) { return CollisionJNI.btMultiSphereShape_operatorNew__SWIG_1(swigCPtr, this, arg0, ptr); } public void operatorDelete (long arg0, long arg1) { CollisionJNI.btMultiSphereShape_operatorDelete__SWIG_1(swigCPtr, this, arg0, arg1); } public long operatorNewArray (long sizeInBytes) { return CollisionJNI.btMultiSphereShape_operatorNewArray__SWIG_0(swigCPtr, this, sizeInBytes); } public void operatorDeleteArray (long ptr) { CollisionJNI.btMultiSphereShape_operatorDeleteArray__SWIG_0(swigCPtr, this, ptr); } public long operatorNewArray (long arg0, long ptr) { return CollisionJNI.btMultiSphereShape_operatorNewArray__SWIG_1(swigCPtr, this, arg0, ptr); } public void operatorDeleteArray (long arg0, long arg1) { CollisionJNI.btMultiSphereShape_operatorDeleteArray__SWIG_1(swigCPtr, this, arg0, arg1); } public btMultiSphereShape (Vector3[] positions, float[] radi, int numSpheres) { this(CollisionJNI.new_btMultiSphereShape(positions, radi, numSpheres), true); } public int getSphereCount () { return CollisionJNI.btMultiSphereShape_getSphereCount(swigCPtr, this); } public Vector3 getSpherePosition (int index) { return CollisionJNI.btMultiSphereShape_getSpherePosition(swigCPtr, this, index); } public float getSphereRadius (int index) { return CollisionJNI.btMultiSphereShape_getSphereRadius(swigCPtr, this, index); } }
/* ---------------------------------------------------------------------------- * This file was automatically generated by SWIG (http://www.swig.org). * Version 3.0.11 * * Do not make changes to this file unless you know what you are doing--modify * the SWIG interface file instead. * ----------------------------------------------------------------------------- */ package com.badlogic.gdx.physics.bullet.collision; import com.badlogic.gdx.physics.bullet.linearmath.*; import com.badlogic.gdx.math.Vector3; public class btMultiSphereShape extends btConvexInternalAabbCachingShape { private long swigCPtr; protected btMultiSphereShape (final String className, long cPtr, boolean cMemoryOwn) { super(className, CollisionJNI.btMultiSphereShape_SWIGUpcast(cPtr), cMemoryOwn); swigCPtr = cPtr; } /** Construct a new btMultiSphereShape, normally you should not need this constructor it's intended for low-level usage. */ public btMultiSphereShape (long cPtr, boolean cMemoryOwn) { this("btMultiSphereShape", cPtr, cMemoryOwn); construct(); } @Override protected void reset (long cPtr, boolean cMemoryOwn) { if (!destroyed) destroy(); super.reset(CollisionJNI.btMultiSphereShape_SWIGUpcast(swigCPtr = cPtr), cMemoryOwn); } public static long getCPtr (btMultiSphereShape obj) { return (obj == null) ? 0 : obj.swigCPtr; } @Override protected void finalize () throws Throwable { if (!destroyed) destroy(); super.finalize(); } @Override protected synchronized void delete () { if (swigCPtr != 0) { if (swigCMemOwn) { swigCMemOwn = false; CollisionJNI.delete_btMultiSphereShape(swigCPtr); } swigCPtr = 0; } super.delete(); } public long operatorNew (long sizeInBytes) { return CollisionJNI.btMultiSphereShape_operatorNew__SWIG_0(swigCPtr, this, sizeInBytes); } public void operatorDelete (long ptr) { CollisionJNI.btMultiSphereShape_operatorDelete__SWIG_0(swigCPtr, this, ptr); } public long operatorNew (long arg0, long ptr) { return CollisionJNI.btMultiSphereShape_operatorNew__SWIG_1(swigCPtr, this, arg0, ptr); } public void operatorDelete (long arg0, long arg1) { CollisionJNI.btMultiSphereShape_operatorDelete__SWIG_1(swigCPtr, this, arg0, arg1); } public long operatorNewArray (long sizeInBytes) { return CollisionJNI.btMultiSphereShape_operatorNewArray__SWIG_0(swigCPtr, this, sizeInBytes); } public void operatorDeleteArray (long ptr) { CollisionJNI.btMultiSphereShape_operatorDeleteArray__SWIG_0(swigCPtr, this, ptr); } public long operatorNewArray (long arg0, long ptr) { return CollisionJNI.btMultiSphereShape_operatorNewArray__SWIG_1(swigCPtr, this, arg0, ptr); } public void operatorDeleteArray (long arg0, long arg1) { CollisionJNI.btMultiSphereShape_operatorDeleteArray__SWIG_1(swigCPtr, this, arg0, arg1); } public btMultiSphereShape (Vector3[] positions, float[] radi, int numSpheres) { this(CollisionJNI.new_btMultiSphereShape(positions, radi, numSpheres), true); } public int getSphereCount () { return CollisionJNI.btMultiSphereShape_getSphereCount(swigCPtr, this); } public Vector3 getSpherePosition (int index) { return CollisionJNI.btMultiSphereShape_getSpherePosition(swigCPtr, this, index); } public float getSphereRadius (int index) { return CollisionJNI.btMultiSphereShape_getSphereRadius(swigCPtr, this, index); } }
-1
libgdx/libgdx
7,305
Adds status detection for an httpRequest
This commit adds the public boolean isHttpRequestPending (HttpRequest httpRequest) method to Gdx.net user interface. It allows end users to detect if an httpRequest is pending or already finished. It helpfull for creating advanced business logic.
supermaximus80
"2023-12-22T21:58:24Z"
"2023-12-27T14:37:55Z"
60f074309093046d7fd9dd3c895bba398b415797
2b691f735f4b167c062f8f68186a6d7237d3d855
Adds status detection for an httpRequest. This commit adds the public boolean isHttpRequestPending (HttpRequest httpRequest) method to Gdx.net user interface. It allows end users to detect if an httpRequest is pending or already finished. It helpfull for creating advanced business logic.
./extensions/gdx-tools/src/com/badlogic/gdx/tools/flame/ScaleInfluencerPanel.java
package com.badlogic.gdx.tools.flame; import com.badlogic.gdx.graphics.g3d.particles.influencers.ScaleInfluencer; /** @author Inferno */ public class ScaleInfluencerPanel extends InfluencerPanel<ScaleInfluencer> { ScaledNumericPanel scalePanel; public ScaleInfluencerPanel (FlameMain editor, ScaleInfluencer influencer) { super(editor, influencer, "Scale Influencer", "Particle scale, in world units."); setValue(influencer); } @Override public void setValue (ScaleInfluencer value) { super.setValue(value); if (value == null) return; scalePanel.setValue(value.value); } @Override protected void initializeComponents () { super.initializeComponents(); addContent(0, 0, scalePanel = new ScaledNumericPanel(editor, null, "Life", "", "")); scalePanel.setIsAlwayShown(true); } }
package com.badlogic.gdx.tools.flame; import com.badlogic.gdx.graphics.g3d.particles.influencers.ScaleInfluencer; /** @author Inferno */ public class ScaleInfluencerPanel extends InfluencerPanel<ScaleInfluencer> { ScaledNumericPanel scalePanel; public ScaleInfluencerPanel (FlameMain editor, ScaleInfluencer influencer) { super(editor, influencer, "Scale Influencer", "Particle scale, in world units."); setValue(influencer); } @Override public void setValue (ScaleInfluencer value) { super.setValue(value); if (value == null) return; scalePanel.setValue(value.value); } @Override protected void initializeComponents () { super.initializeComponents(); addContent(0, 0, scalePanel = new ScaledNumericPanel(editor, null, "Life", "", "")); scalePanel.setIsAlwayShown(true); } }
-1
libgdx/libgdx
7,305
Adds status detection for an httpRequest
This commit adds the public boolean isHttpRequestPending (HttpRequest httpRequest) method to Gdx.net user interface. It allows end users to detect if an httpRequest is pending or already finished. It helpfull for creating advanced business logic.
supermaximus80
"2023-12-22T21:58:24Z"
"2023-12-27T14:37:55Z"
60f074309093046d7fd9dd3c895bba398b415797
2b691f735f4b167c062f8f68186a6d7237d3d855
Adds status detection for an httpRequest. This commit adds the public boolean isHttpRequestPending (HttpRequest httpRequest) method to Gdx.net user interface. It allows end users to detect if an httpRequest is pending or already finished. It helpfull for creating advanced business logic.
./gdx/src/com/badlogic/gdx/math/MathUtils.java
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.math; import java.util.Random; /** Utility and fast math functions. * <p> * Thanks to Riven on JavaGaming.org for the basis of sin/cos/floor/ceil. * @author Nathan Sweet */ public final class MathUtils { private MathUtils () { } static public final float nanoToSec = 1 / 1000000000f; // --- static public final float FLOAT_ROUNDING_ERROR = 0.000001f; // 32 bits static public final float PI = (float)Math.PI; static public final float PI2 = PI * 2; static public final float HALF_PI = PI / 2; static public final float E = (float)Math.E; static private final int SIN_BITS = 14; // 16KB. Adjust for accuracy. static private final int SIN_MASK = ~(-1 << SIN_BITS); static private final int SIN_COUNT = SIN_MASK + 1; static private final float radFull = PI2; static private final float degFull = 360; static private final float radToIndex = SIN_COUNT / radFull; static private final float degToIndex = SIN_COUNT / degFull; /** multiply by this to convert from radians to degrees */ static public final float radiansToDegrees = 180f / PI; static public final float radDeg = radiansToDegrees; /** multiply by this to convert from degrees to radians */ static public final float degreesToRadians = PI / 180; static public final float degRad = degreesToRadians; static private class Sin { static final float[] table = new float[SIN_COUNT]; static { for (int i = 0; i < SIN_COUNT; i++) table[i] = (float)Math.sin((i + 0.5f) / SIN_COUNT * radFull); // The four right angles get extra-precise values, because they are // the most likely to need to be correct. table[0] = 0f; table[(int)(90 * degToIndex) & SIN_MASK] = 1f; table[(int)(180 * degToIndex) & SIN_MASK] = 0f; table[(int)(270 * degToIndex) & SIN_MASK] = -1f; } } /** Returns the sine in radians from a lookup table. For optimal precision, use radians between -PI2 and PI2 (both * inclusive). */ static public float sin (float radians) { return Sin.table[(int)(radians * radToIndex) & SIN_MASK]; } /** Returns the cosine in radians from a lookup table. For optimal precision, use radians between -PI2 and PI2 (both * inclusive). */ static public float cos (float radians) { return Sin.table[(int)((radians + HALF_PI) * radToIndex) & SIN_MASK]; } /** Returns the sine in degrees from a lookup table. For optimal precision, use degrees between -360 and 360 (both * inclusive). */ static public float sinDeg (float degrees) { return Sin.table[(int)(degrees * degToIndex) & SIN_MASK]; } /** Returns the cosine in degrees from a lookup table. For optimal precision, use degrees between -360 and 360 (both * inclusive). */ static public float cosDeg (float degrees) { return Sin.table[(int)((degrees + 90) * degToIndex) & SIN_MASK]; } /** Returns the tangent given an input in radians, using a Padé approximant. <br> * Padé approximants tend to be most accurate when they aren't producing results of extreme magnitude; in the tan() function, * those results occur on and near odd multiples of {@code PI/2}, and this method is least accurate when given inputs near * those multiples. <br> * For inputs between -1.57 to 1.57 (just inside half-pi), separated by 0x1p-20f, absolute error is 0.00890192, relative error * is 0.00000090, and the maximum error is 17.98901367 when given 1.56999838. The maximum error might seem concerning, but it's * the difference between the correct 1253.22167969 and the 1235.23266602 this returns, so for many purposes the difference * won't be noticeable. <br> * For inputs between -1.55 to 1.55 (getting less close to half-pi), separated by 0x1p-20f, absolute error is 0.00023368, * relative error is -0.00000009, and the maximum error is 0.02355957 when given -1.54996467. The maximum error is the * difference between the correct -47.99691010 and the -47.97335052 this returns. <br> * While you don't have to use a dedicated method for tan(), and you can use {@code sin(x)/cos(x)}, approximating tan() in that * way is very susceptible to error building up from any of sin(), cos() or the division. Where this tan() has a maximum error * in the -1.55 to 1.55 range of 0.02355957, that simpler division technique on the same range has a maximum error of * 1.25724030 (about 50 times worse), as well as larger absolute and relative errors. Casting the double result of * {@link Math#tan(double)} to float will get the highest precision, but can be anywhere from 2.5x to nearly 4x slower than * this, depending on JVM. <br> * Based on <a href="https://math.stackexchange.com/a/4453027">this Stack Exchange answer by Soonts</a>. * * @param radians a float angle in radians, where 0 to {@link #PI2} is one rotation * @return a float approximation of tan() */ public static float tan (float radians) { radians /= PI; radians += 0.5f; radians -= Math.floor(radians); radians -= 0.5f; radians *= PI; final float x2 = radians * radians, x4 = x2 * x2; return radians * ((0.0010582010582010583f) * x4 - (0.1111111111111111f) * x2 + 1f) / ((0.015873015873015872f) * x4 - (0.4444444444444444f) * x2 + 1f); // How we calculated those long constants above (from Stack Exchange, by Soonts): // return x * ((1.0/945.0) * x4 - (1.0/9.0) * x2 + 1.0) / ((1.0/63.0) * x4 - (4.0/9.0) * x2 + 1.0); // Normally, it would be best to show the division steps, but if GWT isn't computing mathematical constants at // compile-time, which I don't know if it does, that would make the shown-division way slower by 4 divisions. } /** Returns the tangent given an input in degrees, using a Padé approximant. Based on * <a href="https://math.stackexchange.com/a/4453027">this Stack Exchange answer</a>. * * @param degrees an angle in degrees, where 0 to 360 is one rotation * @return a float approximation of tan() */ public static float tanDeg (float degrees) { degrees *= (1f / 180f); degrees += 0.5f; degrees -= Math.floor(degrees); degrees -= 0.5f; degrees *= PI; final float x2 = degrees * degrees, x4 = x2 * x2; return degrees * ((0.0010582010582010583f) * x4 - (0.1111111111111111f) * x2 + 1f) / ((0.015873015873015872f) * x4 - (0.4444444444444444f) * x2 + 1f); } // --- /** A variant on {@link #atan(float)} that does not tolerate infinite inputs for speed reasons. This can be given a double * parameter, but is otherwise the same as atan(float), and returns a float like that method. It uses the same approximation, * from sheet 11 of "Approximations for Digital Computers." This is mostly meant to be used inside * {@link #atan2(float, float)}, but it may be a tiny bit faster than atan(float) in other code. * @param i any finite double or float, but more commonly a float * @return an output from the inverse tangent function, from {@code -HALF_PI} to {@code HALF_PI} inclusive */ public static float atanUnchecked (double i) { // We use double precision internally, because some constants need double precision. double n = Math.abs(i); // c uses the "equally-good" formulation that permits n to be from 0 to almost infinity. double c = (n - 1.0) / (n + 1.0); // The approximation needs 6 odd powers of c. double c2 = c * c; double c3 = c * c2; double c5 = c3 * c2; double c7 = c5 * c2; double c9 = c7 * c2; double c11 = c9 * c2; return (float)(Math.signum(i) * ((Math.PI * 0.25) + (0.99997726 * c - 0.33262347 * c3 + 0.19354346 * c5 - 0.11643287 * c7 + 0.05265332 * c9 - 0.0117212 * c11))); } /** Close approximation of the frequently-used trigonometric method atan2. Average error is 1.057E-6 radians; maximum error is * 1.922E-6. Takes y and x (in that unusual order) as floats, and returns the angle from the origin to that point in radians. * It is about 4 times faster than {@link Math#atan2(double, double)} (roughly 15 ns instead of roughly 60 ns for Math, on Java * 8 HotSpot). <br> * Credit for this goes to the 1955 research study "Approximations for Digital Computers," by RAND Corporation. This is sheet * 11's algorithm, which is the fourth-fastest and fourth-least precise. The algorithms on sheets 8-10 are faster, but only by * a very small degree, and are considerably less precise. That study provides an {@link #atan(float)} method, and that cleanly * translates to atan2(). * @param y y-component of the point to find the angle towards; note the parameter order is unusual by convention * @param x x-component of the point to find the angle towards; note the parameter order is unusual by convention * @return the angle to the given point, in radians as a float; ranges from {@code -PI} to {@code PI} */ public static float atan2 (final float y, float x) { float n = y / x; if (n != n) n = (y == x ? 1f : -1f); // if both y and x are infinite, n would be NaN else if (n - n != n - n) x = 0f; // if n is infinite, y is infinitely larger than x. if (x > 0) return atanUnchecked(n); else if (x < 0) { if (y >= 0) return atanUnchecked(n) + PI; return atanUnchecked(n) - PI; } else if (y > 0) return x + HALF_PI; else if (y < 0) return x - HALF_PI; return x + y; // returns 0 for 0,0 or NaN if either y or x is NaN } /** A variant on {@link #atanDeg(float)} that does not tolerate infinite inputs for speed reasons. This can be given a double * parameter, but is otherwise the same as atanDeg(float), and returns a float like that method. It uses the same * approximation, from sheet 11 of "Approximations for Digital Computers." This is mostly meant to be used inside * {@link #atan2(float, float)}, but it may be a tiny bit faster than atanDeg(float) in other code. * @param i any finite double or float, but more commonly a float * @return an output from the inverse tangent function in degrees, from {@code -90} to {@code 90} inclusive */ public static double atanUncheckedDeg (double i) { // We use double precision internally, because some constants need double precision. double n = Math.abs(i); // c uses the "equally-good" formulation that permits n to be from 0 to almost infinity. double c = (n - 1.0) / (n + 1.0); // The approximation needs 6 odd powers of c. double c2 = c * c; double c3 = c * c2; double c5 = c3 * c2; double c7 = c5 * c2; double c9 = c7 * c2; double c11 = c9 * c2; return (Math.signum(i) * (45.0 + (57.2944766070562 * c - 19.05792099799635 * c3 + 11.089223410359068 * c5 - 6.6711120475953765 * c7 + 3.016813013351768 * c9 - 0.6715752908287405 * c11))); } /** Close approximation of the frequently-used trigonometric method atan2, using positive or negative degrees. Average absolute * error is 0.00006037 degrees; relative error is 0 degrees, maximum error is 0.00010396 degrees. Takes y and x (in that * unusual order) as floats, and returns the angle from the origin to that point in degrees. <br> * Credit for this goes to the 1955 research study "Approximations for Digital Computers," by RAND Corporation. This is sheet * 11's algorithm, which is the fourth-fastest and fourth-least precise. The algorithms on sheets 8-10 are faster, but only by * a very small degree, and are considerably less precise. That study provides an {@link #atan(float)} method, and that cleanly * translates to atan2(). * @param y y-component of the point to find the angle towards; note the parameter order is unusual by convention * @param x x-component of the point to find the angle towards; note the parameter order is unusual by convention * @return the angle to the given point, in degrees as a float; ranges from {@code -180} to {@code 180} */ public static float atan2Deg (final float y, float x) { float n = y / x; if (n != n) n = (y == x ? 1f : -1.0f); // if both y and x are infinite, n would be NaN else if (n - n != n - n) x = 0f; // if n is infinite, y is infinitely larger than x. if (x > 0) return (float)atanUncheckedDeg(n); else if (x < 0) { if (y >= 0) return (float)(atanUncheckedDeg(n) + 180.0); return (float)(atanUncheckedDeg(n) - 180.0); } else if (y > 0) return x + 90f; else if (y < 0) return x - 90f; return x + y; // returns 0 for 0,0 or NaN if either y or x is NaN } /** Close approximation of the frequently-used trigonometric method atan2, using non-negative degrees only. Average absolute * error is 0.00006045 degrees; relative error is 0 degrees; maximum error is 0.00011178 degrees. Takes y and x (in that * unusual order) as floats, and returns the angle from the origin to that point in degrees. <br> * This can be useful when a negative result from atan() would require extra work to handle. <br> * Credit for this goes to the 1955 research study "Approximations for Digital Computers," by RAND Corporation. This is sheet * 11's algorithm, which is the fourth-fastest and fourth-least precise. The algorithms on sheets 8-10 are faster, but only by * a very small degree, and are considerably less precise. That study provides an {@link #atan(float)} method, and that cleanly * translates to atan2Deg360(). * @param y y-component of the point to find the angle towards; note the parameter order is unusual by convention * @param x x-component of the point to find the angle towards; note the parameter order is unusual by convention * @return the angle to the given point, in degrees as a float; ranges from {@code 0} to {@code 360} */ public static float atan2Deg360 (final float y, float x) { float n = y / x; if (n != n) n = (y == x ? 1f : -1.0f); // if both y and x are infinite, n would be NaN else if (n - n != n - n) x = 0f; // if n is infinite, y is infinitely larger than x. if (x > 0) { if (y >= 0) return (float)atanUncheckedDeg(n); else return (float)(atanUncheckedDeg(n) + 360.0); } else if (x < 0) { return (float)(atanUncheckedDeg(n) + 180.0); } else if (y > 0) return x + 90f; else if (y < 0) return x + 270f; return x + y; // returns 0 for 0,0 or NaN if either y or x is NaN } /** Returns acos in radians; less accurate than Math.acos but may be faster. Average error of 0.00002845 radians (0.0016300649 * degrees), largest error of 0.000067548 radians (0.0038702153 degrees). This implementation does not return NaN if given an * out-of-range input (Math.acos does return NaN), unless the input is NaN. * @param a acos is defined only when a is between -1f and 1f, inclusive * @return between {@code 0} and {@code PI} when a is in the defined range */ static public float acos (float a) { float a2 = a * a; // a squared float a3 = a * a2; // a cubed if (a >= 0f) { return (float)Math.sqrt(1f - a) * (1.5707288f - 0.2121144f * a + 0.0742610f * a2 - 0.0187293f * a3); } return 3.14159265358979323846f - (float)Math.sqrt(1f + a) * (1.5707288f + 0.2121144f * a + 0.0742610f * a2 + 0.0187293f * a3); } /** Returns asin in radians; less accurate than Math.asin but may be faster. Average error of 0.000028447 radians (0.0016298931 * degrees), largest error of 0.000067592 radians (0.0038727364 degrees). This implementation does not return NaN if given an * out-of-range input (Math.asin does return NaN), unless the input is NaN. * @param a asin is defined only when a is between -1f and 1f, inclusive * @return between {@code -HALF_PI} and {@code HALF_PI} when a is in the defined range */ static public float asin (float a) { float a2 = a * a; // a squared float a3 = a * a2; // a cubed if (a >= 0f) { return 1.5707963267948966f - (float)Math.sqrt(1f - a) * (1.5707288f - 0.2121144f * a + 0.0742610f * a2 - 0.0187293f * a3); } return -1.5707963267948966f + (float)Math.sqrt(1f + a) * (1.5707288f + 0.2121144f * a + 0.0742610f * a2 + 0.0187293f * a3); } /** Arc tangent approximation with very low error, using an algorithm from the 1955 research study "Approximations for Digital * Computers," by RAND Corporation (this is sheet 11's algorithm, which is the fourth-fastest and fourth-least precise). This * method is usually about 4x faster than {@link Math#atan(double)}, but is somewhat less precise than Math's implementation. * For finite inputs only, you may get a tiny speedup by using {@link #atanUnchecked(double)}, but this method will be correct * enough for infinite inputs, and atanUnchecked() will not be. * @param i an input to the inverse tangent function; any float is accepted * @return an output from the inverse tangent function, from {@code -HALF_PI} to {@code HALF_PI} inclusive * @see #atanUnchecked(double) If you know the input will be finite, you can use atanUnchecked() instead. */ public static float atan (float i) { // We use double precision internally, because some constants need double precision. // This clips infinite inputs at Double.MAX_VALUE, which still probably becomes infinite // again when converted back to float. double n = Math.min(Math.abs(i), Double.MAX_VALUE); // c uses the "equally-good" formulation that permits n to be from 0 to almost infinity. double c = (n - 1.0) / (n + 1.0); // The approximation needs 6 odd powers of c. double c2 = c * c; double c3 = c * c2; double c5 = c3 * c2; double c7 = c5 * c2; double c9 = c7 * c2; double c11 = c9 * c2; return Math.signum(i) * (float)((Math.PI * 0.25) + (0.99997726 * c - 0.33262347 * c3 + 0.19354346 * c5 - 0.11643287 * c7 + 0.05265332 * c9 - 0.0117212 * c11)); } /** Returns arcsine in degrees. This implementation does not return NaN if given an out-of-range input (Math.asin does return * NaN), unless the input is NaN. * @param a asin is defined only when a is between -1f and 1f, inclusive * @return between {@code -90} and {@code 90} when a is in the defined range */ public static float asinDeg (float a) { float a2 = a * a; // a squared float a3 = a * a2; // a cubed if (a >= 0f) { return 90f - (float)Math.sqrt(1f - a) * (89.99613099964837f - 12.153259893949748f * a + 4.2548418824210055f * a2 - 1.0731098432343729f * a3); } return (float)Math.sqrt(1f + a) * (89.99613099964837f + 12.153259893949748f * a + 4.2548418824210055f * a2 + 1.0731098432343729f * a3) - 90f; } /** Returns arccosine in degrees. This implementation does not return NaN if given an out-of-range input (Math.acos does return * NaN), unless the input is NaN. * @param a acos is defined only when a is between -1f and 1f, inclusive * @return between {@code 0} and {@code 180} when a is in the defined range */ public static float acosDeg (float a) { float a2 = a * a; // a squared float a3 = a * a2; // a cubed if (a >= 0f) { return (float)Math.sqrt(1f - a) * (89.99613099964837f - 12.153259533621753f * a + 4.254842010910525f * a2 - 1.0731098035209208f * a3); } return 180f - (float)Math.sqrt(1f + a) * (89.99613099964837f + 12.153259533621753f * a + 4.254842010910525f * a2 + 1.0731098035209208f * a3); } /** Arc tangent approximation returning a value measured in positive or negative degrees, using an algorithm from the 1955 * research study "Approximations for Digital Computers," by RAND Corporation (this is sheet 11's algorithm, which is the * fourth-fastest and fourth-least precise). For finite inputs only, you may get a tiny speedup by using * {@link #atanUncheckedDeg(double)}, but this method will be correct enough for infinite inputs, and atanUnchecked() will not * be. * @param i an input to the inverse tangent function; any float is accepted * @return an output from the inverse tangent function in degrees, from {@code -90} to {@code 90} inclusive * @see #atanUncheckedDeg(double) If you know the input will be finite, you can use atanUncheckedDeg() instead. */ public static float atanDeg (float i) { // We use double precision internally, because some constants need double precision. // This clips infinite inputs at Double.MAX_VALUE, which still probably becomes infinite // again when converted back to float. double n = Math.min(Math.abs(i), Double.MAX_VALUE); // c uses the "equally-good" formulation that permits n to be from 0 to almost infinity. double c = (n - 1.0) / (n + 1.0); // The approximation needs 6 odd powers of c. double c2 = c * c; double c3 = c * c2; double c5 = c3 * c2; double c7 = c5 * c2; double c9 = c7 * c2; double c11 = c9 * c2; return (float)(Math.signum(i) * (45.0 + (57.2944766070562 * c - 19.05792099799635 * c3 + 11.089223410359068 * c5 - 6.6711120475953765 * c7 + 3.016813013351768 * c9 - 0.6715752908287405 * c11))); } // --- static public Random random = new RandomXS128(); /** Returns a random number between 0 (inclusive) and the specified value (inclusive). */ static public int random (int range) { return random.nextInt(range + 1); } /** Returns a random number between start (inclusive) and end (inclusive). */ static public int random (int start, int end) { return start + random.nextInt(end - start + 1); } /** Returns a random number between 0 (inclusive) and the specified value (inclusive). */ static public long random (long range) { // Uses the lower-bounded overload defined below, which is simpler and doesn't lose much optimization. return random(0L, range); } /** Returns a random number between start (inclusive) and end (inclusive). */ static public long random (long start, long end) { final long rand = random.nextLong(); // In order to get the range to go from start to end, instead of overflowing after end and going // back around to start, start must be less than end. if (end < start) { long t = end; end = start; start = t; } long bound = end - start + 1L; // inclusive on end // Credit to https://oroboro.com/large-random-in-range/ for the following technique // It's a 128-bit-product where only the upper 64 of 128 bits are used. final long randLow = rand & 0xFFFFFFFFL; final long boundLow = bound & 0xFFFFFFFFL; final long randHigh = (rand >>> 32); final long boundHigh = (bound >>> 32); return start + (randHigh * boundLow >>> 32) + (randLow * boundHigh >>> 32) + randHigh * boundHigh; } /** Returns a random boolean value. */ static public boolean randomBoolean () { return random.nextBoolean(); } /** Returns true if a random value between 0 and 1 is less than the specified value. */ static public boolean randomBoolean (float chance) { return MathUtils.random() < chance; } /** Returns random number between 0.0 (inclusive) and 1.0 (exclusive). */ static public float random () { return random.nextFloat(); } /** Returns a random number between 0 (inclusive) and the specified value (exclusive). */ static public float random (float range) { return random.nextFloat() * range; } /** Returns a random number between start (inclusive) and end (exclusive). */ static public float random (float start, float end) { return start + random.nextFloat() * (end - start); } /** Returns -1 or 1, randomly. */ static public int randomSign () { return 1 | (random.nextInt() >> 31); } /** Returns a triangularly distributed random number between -1.0 (exclusive) and 1.0 (exclusive), where values around zero are * more likely. * <p> * This is an optimized version of {@link #randomTriangular(float, float, float) randomTriangular(-1, 1, 0)} */ public static float randomTriangular () { return random.nextFloat() - random.nextFloat(); } /** Returns a triangularly distributed random number between {@code -max} (exclusive) and {@code max} (exclusive), where values * around zero are more likely. * <p> * This is an optimized version of {@link #randomTriangular(float, float, float) randomTriangular(-max, max, 0)} * @param max the upper limit */ public static float randomTriangular (float max) { return (random.nextFloat() - random.nextFloat()) * max; } /** Returns a triangularly distributed random number between {@code min} (inclusive) and {@code max} (exclusive), where the * {@code mode} argument defaults to the midpoint between the bounds, giving a symmetric distribution. * <p> * This method is equivalent of {@link #randomTriangular(float, float, float) randomTriangular(min, max, (min + max) * 0.5f)} * @param min the lower limit * @param max the upper limit */ public static float randomTriangular (float min, float max) { return randomTriangular(min, max, (min + max) * 0.5f); } /** Returns a triangularly distributed random number between {@code min} (inclusive) and {@code max} (exclusive), where values * around {@code mode} are more likely. * @param min the lower limit * @param max the upper limit * @param mode the point around which the values are more likely */ public static float randomTriangular (float min, float max, float mode) { float u = random.nextFloat(); float d = max - min; if (u <= (mode - min) / d) return min + (float)Math.sqrt(u * d * (mode - min)); return max - (float)Math.sqrt((1 - u) * d * (max - mode)); } // --- /** Returns the next power of two. Returns the specified value if the value is already a power of two. */ static public int nextPowerOfTwo (int value) { if (value == 0) return 1; value--; value |= value >> 1; value |= value >> 2; value |= value >> 4; value |= value >> 8; value |= value >> 16; return value + 1; } static public boolean isPowerOfTwo (int value) { return value != 0 && (value & value - 1) == 0; } // --- static public short clamp (short value, short min, short max) { if (value < min) return min; if (value > max) return max; return value; } static public int clamp (int value, int min, int max) { if (value < min) return min; if (value > max) return max; return value; } static public long clamp (long value, long min, long max) { if (value < min) return min; if (value > max) return max; return value; } static public float clamp (float value, float min, float max) { if (value < min) return min; if (value > max) return max; return value; } static public double clamp (double value, double min, double max) { if (value < min) return min; if (value > max) return max; return value; } // --- /** Linearly interpolates between fromValue to toValue on progress position. */ static public float lerp (float fromValue, float toValue, float progress) { return fromValue + (toValue - fromValue) * progress; } /** Linearly normalizes value from a range. Range must not be empty. This is the inverse of {@link #lerp(float, float, float)}. * @param rangeStart Range start normalized to 0 * @param rangeEnd Range end normalized to 1 * @param value Value to normalize * @return Normalized value. Values outside of the range are not clamped to 0 and 1 */ static public float norm (float rangeStart, float rangeEnd, float value) { return (value - rangeStart) / (rangeEnd - rangeStart); } /** Linearly map a value from one range to another. Input range must not be empty. This is the same as chaining * {@link #norm(float, float, float)} from input range and {@link #lerp(float, float, float)} to output range. * @param inRangeStart Input range start * @param inRangeEnd Input range end * @param outRangeStart Output range start * @param outRangeEnd Output range end * @param value Value to map * @return Mapped value. Values outside of the input range are not clamped to output range */ static public float map (float inRangeStart, float inRangeEnd, float outRangeStart, float outRangeEnd, float value) { return outRangeStart + (value - inRangeStart) * (outRangeEnd - outRangeStart) / (inRangeEnd - inRangeStart); } /** Linearly interpolates between two angles in radians. Takes into account that angles wrap at two pi and always takes the * direction with the smallest delta angle. * * @param fromRadians start angle in radians * @param toRadians target angle in radians * @param progress interpolation value in the range [0, 1] * @return the interpolated angle in the range [0, PI2[ */ public static float lerpAngle (float fromRadians, float toRadians, float progress) { float delta = (((toRadians - fromRadians) % PI2 + PI2 + PI) % PI2) - PI; return ((fromRadians + delta * progress) % PI2 + PI2) % PI2; } /** Linearly interpolates between two angles in degrees. Takes into account that angles wrap at 360 degrees and always takes * the direction with the smallest delta angle. * * @param fromDegrees start angle in degrees * @param toDegrees target angle in degrees * @param progress interpolation value in the range [0, 1] * @return the interpolated angle in the range [0, 360[ */ public static float lerpAngleDeg (float fromDegrees, float toDegrees, float progress) { float delta = (((toDegrees - fromDegrees) % 360f + 360f + 180f) % 360f) - 180f; return ((fromDegrees + delta * progress) % 360f + 360f) % 360f; } // --- static private final int BIG_ENOUGH_INT = 16 * 1024; static private final double BIG_ENOUGH_FLOOR = BIG_ENOUGH_INT; static private final double CEIL = 0.9999999; static private final double BIG_ENOUGH_CEIL = 16384.999999999996; static private final double BIG_ENOUGH_ROUND = BIG_ENOUGH_INT + 0.5f; /** Returns the largest integer less than or equal to the specified float. This method will only properly floor floats from * -(2^14) to (Float.MAX_VALUE - 2^14). */ static public int floor (float value) { return (int)(value + BIG_ENOUGH_FLOOR) - BIG_ENOUGH_INT; } /** Returns the largest integer less than or equal to the specified float. This method will only properly floor floats that are * positive. Note this method simply casts the float to int. */ static public int floorPositive (float value) { return (int)value; } /** Returns the smallest integer greater than or equal to the specified float. This method will only properly ceil floats from * -(2^14) to (Float.MAX_VALUE - 2^14). */ static public int ceil (float value) { return BIG_ENOUGH_INT - (int)(BIG_ENOUGH_FLOOR - value); } /** Returns the smallest integer greater than or equal to the specified float. This method will only properly ceil floats that * are positive. */ static public int ceilPositive (float value) { return (int)(value + CEIL); } /** Returns the closest integer to the specified float. This method will only properly round floats from -(2^14) to * (Float.MAX_VALUE - 2^14). */ static public int round (float value) { return (int)(value + BIG_ENOUGH_ROUND) - BIG_ENOUGH_INT; } /** Returns the closest integer to the specified float. This method will only properly round floats that are positive. */ static public int roundPositive (float value) { return (int)(value + 0.5f); } /** Returns true if the value is zero (using the default tolerance as upper bound) */ static public boolean isZero (float value) { return Math.abs(value) <= FLOAT_ROUNDING_ERROR; } /** Returns true if the value is zero. * @param tolerance represent an upper bound below which the value is considered zero. */ static public boolean isZero (float value, float tolerance) { return Math.abs(value) <= tolerance; } /** Returns true if a is nearly equal to b. The function uses the default floating error tolerance. * @param a the first value. * @param b the second value. */ static public boolean isEqual (float a, float b) { return Math.abs(a - b) <= FLOAT_ROUNDING_ERROR; } /** Returns true if a is nearly equal to b. * @param a the first value. * @param b the second value. * @param tolerance represent an upper bound below which the two values are considered equal. */ static public boolean isEqual (float a, float b, float tolerance) { return Math.abs(a - b) <= tolerance; } /** @return the logarithm of value with base a */ static public float log (float a, float value) { return (float)(Math.log(value) / Math.log(a)); } /** @return the logarithm of value with base 2 */ static public float log2 (float value) { return log(2, value); } }
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.math; import java.util.Random; /** Utility and fast math functions. * <p> * Thanks to Riven on JavaGaming.org for the basis of sin/cos/floor/ceil. * @author Nathan Sweet */ public final class MathUtils { private MathUtils () { } static public final float nanoToSec = 1 / 1000000000f; // --- static public final float FLOAT_ROUNDING_ERROR = 0.000001f; // 32 bits static public final float PI = (float)Math.PI; static public final float PI2 = PI * 2; static public final float HALF_PI = PI / 2; static public final float E = (float)Math.E; static private final int SIN_BITS = 14; // 16KB. Adjust for accuracy. static private final int SIN_MASK = ~(-1 << SIN_BITS); static private final int SIN_COUNT = SIN_MASK + 1; static private final float radFull = PI2; static private final float degFull = 360; static private final float radToIndex = SIN_COUNT / radFull; static private final float degToIndex = SIN_COUNT / degFull; /** multiply by this to convert from radians to degrees */ static public final float radiansToDegrees = 180f / PI; static public final float radDeg = radiansToDegrees; /** multiply by this to convert from degrees to radians */ static public final float degreesToRadians = PI / 180; static public final float degRad = degreesToRadians; static private class Sin { static final float[] table = new float[SIN_COUNT]; static { for (int i = 0; i < SIN_COUNT; i++) table[i] = (float)Math.sin((i + 0.5f) / SIN_COUNT * radFull); // The four right angles get extra-precise values, because they are // the most likely to need to be correct. table[0] = 0f; table[(int)(90 * degToIndex) & SIN_MASK] = 1f; table[(int)(180 * degToIndex) & SIN_MASK] = 0f; table[(int)(270 * degToIndex) & SIN_MASK] = -1f; } } /** Returns the sine in radians from a lookup table. For optimal precision, use radians between -PI2 and PI2 (both * inclusive). */ static public float sin (float radians) { return Sin.table[(int)(radians * radToIndex) & SIN_MASK]; } /** Returns the cosine in radians from a lookup table. For optimal precision, use radians between -PI2 and PI2 (both * inclusive). */ static public float cos (float radians) { return Sin.table[(int)((radians + HALF_PI) * radToIndex) & SIN_MASK]; } /** Returns the sine in degrees from a lookup table. For optimal precision, use degrees between -360 and 360 (both * inclusive). */ static public float sinDeg (float degrees) { return Sin.table[(int)(degrees * degToIndex) & SIN_MASK]; } /** Returns the cosine in degrees from a lookup table. For optimal precision, use degrees between -360 and 360 (both * inclusive). */ static public float cosDeg (float degrees) { return Sin.table[(int)((degrees + 90) * degToIndex) & SIN_MASK]; } /** Returns the tangent given an input in radians, using a Padé approximant. <br> * Padé approximants tend to be most accurate when they aren't producing results of extreme magnitude; in the tan() function, * those results occur on and near odd multiples of {@code PI/2}, and this method is least accurate when given inputs near * those multiples. <br> * For inputs between -1.57 to 1.57 (just inside half-pi), separated by 0x1p-20f, absolute error is 0.00890192, relative error * is 0.00000090, and the maximum error is 17.98901367 when given 1.56999838. The maximum error might seem concerning, but it's * the difference between the correct 1253.22167969 and the 1235.23266602 this returns, so for many purposes the difference * won't be noticeable. <br> * For inputs between -1.55 to 1.55 (getting less close to half-pi), separated by 0x1p-20f, absolute error is 0.00023368, * relative error is -0.00000009, and the maximum error is 0.02355957 when given -1.54996467. The maximum error is the * difference between the correct -47.99691010 and the -47.97335052 this returns. <br> * While you don't have to use a dedicated method for tan(), and you can use {@code sin(x)/cos(x)}, approximating tan() in that * way is very susceptible to error building up from any of sin(), cos() or the division. Where this tan() has a maximum error * in the -1.55 to 1.55 range of 0.02355957, that simpler division technique on the same range has a maximum error of * 1.25724030 (about 50 times worse), as well as larger absolute and relative errors. Casting the double result of * {@link Math#tan(double)} to float will get the highest precision, but can be anywhere from 2.5x to nearly 4x slower than * this, depending on JVM. <br> * Based on <a href="https://math.stackexchange.com/a/4453027">this Stack Exchange answer by Soonts</a>. * * @param radians a float angle in radians, where 0 to {@link #PI2} is one rotation * @return a float approximation of tan() */ public static float tan (float radians) { radians /= PI; radians += 0.5f; radians -= Math.floor(radians); radians -= 0.5f; radians *= PI; final float x2 = radians * radians, x4 = x2 * x2; return radians * ((0.0010582010582010583f) * x4 - (0.1111111111111111f) * x2 + 1f) / ((0.015873015873015872f) * x4 - (0.4444444444444444f) * x2 + 1f); // How we calculated those long constants above (from Stack Exchange, by Soonts): // return x * ((1.0/945.0) * x4 - (1.0/9.0) * x2 + 1.0) / ((1.0/63.0) * x4 - (4.0/9.0) * x2 + 1.0); // Normally, it would be best to show the division steps, but if GWT isn't computing mathematical constants at // compile-time, which I don't know if it does, that would make the shown-division way slower by 4 divisions. } /** Returns the tangent given an input in degrees, using a Padé approximant. Based on * <a href="https://math.stackexchange.com/a/4453027">this Stack Exchange answer</a>. * * @param degrees an angle in degrees, where 0 to 360 is one rotation * @return a float approximation of tan() */ public static float tanDeg (float degrees) { degrees *= (1f / 180f); degrees += 0.5f; degrees -= Math.floor(degrees); degrees -= 0.5f; degrees *= PI; final float x2 = degrees * degrees, x4 = x2 * x2; return degrees * ((0.0010582010582010583f) * x4 - (0.1111111111111111f) * x2 + 1f) / ((0.015873015873015872f) * x4 - (0.4444444444444444f) * x2 + 1f); } // --- /** A variant on {@link #atan(float)} that does not tolerate infinite inputs for speed reasons. This can be given a double * parameter, but is otherwise the same as atan(float), and returns a float like that method. It uses the same approximation, * from sheet 11 of "Approximations for Digital Computers." This is mostly meant to be used inside * {@link #atan2(float, float)}, but it may be a tiny bit faster than atan(float) in other code. * @param i any finite double or float, but more commonly a float * @return an output from the inverse tangent function, from {@code -HALF_PI} to {@code HALF_PI} inclusive */ public static float atanUnchecked (double i) { // We use double precision internally, because some constants need double precision. double n = Math.abs(i); // c uses the "equally-good" formulation that permits n to be from 0 to almost infinity. double c = (n - 1.0) / (n + 1.0); // The approximation needs 6 odd powers of c. double c2 = c * c; double c3 = c * c2; double c5 = c3 * c2; double c7 = c5 * c2; double c9 = c7 * c2; double c11 = c9 * c2; return (float)(Math.signum(i) * ((Math.PI * 0.25) + (0.99997726 * c - 0.33262347 * c3 + 0.19354346 * c5 - 0.11643287 * c7 + 0.05265332 * c9 - 0.0117212 * c11))); } /** Close approximation of the frequently-used trigonometric method atan2. Average error is 1.057E-6 radians; maximum error is * 1.922E-6. Takes y and x (in that unusual order) as floats, and returns the angle from the origin to that point in radians. * It is about 4 times faster than {@link Math#atan2(double, double)} (roughly 15 ns instead of roughly 60 ns for Math, on Java * 8 HotSpot). <br> * Credit for this goes to the 1955 research study "Approximations for Digital Computers," by RAND Corporation. This is sheet * 11's algorithm, which is the fourth-fastest and fourth-least precise. The algorithms on sheets 8-10 are faster, but only by * a very small degree, and are considerably less precise. That study provides an {@link #atan(float)} method, and that cleanly * translates to atan2(). * @param y y-component of the point to find the angle towards; note the parameter order is unusual by convention * @param x x-component of the point to find the angle towards; note the parameter order is unusual by convention * @return the angle to the given point, in radians as a float; ranges from {@code -PI} to {@code PI} */ public static float atan2 (final float y, float x) { float n = y / x; if (n != n) n = (y == x ? 1f : -1f); // if both y and x are infinite, n would be NaN else if (n - n != n - n) x = 0f; // if n is infinite, y is infinitely larger than x. if (x > 0) return atanUnchecked(n); else if (x < 0) { if (y >= 0) return atanUnchecked(n) + PI; return atanUnchecked(n) - PI; } else if (y > 0) return x + HALF_PI; else if (y < 0) return x - HALF_PI; return x + y; // returns 0 for 0,0 or NaN if either y or x is NaN } /** A variant on {@link #atanDeg(float)} that does not tolerate infinite inputs for speed reasons. This can be given a double * parameter, but is otherwise the same as atanDeg(float), and returns a float like that method. It uses the same * approximation, from sheet 11 of "Approximations for Digital Computers." This is mostly meant to be used inside * {@link #atan2(float, float)}, but it may be a tiny bit faster than atanDeg(float) in other code. * @param i any finite double or float, but more commonly a float * @return an output from the inverse tangent function in degrees, from {@code -90} to {@code 90} inclusive */ public static double atanUncheckedDeg (double i) { // We use double precision internally, because some constants need double precision. double n = Math.abs(i); // c uses the "equally-good" formulation that permits n to be from 0 to almost infinity. double c = (n - 1.0) / (n + 1.0); // The approximation needs 6 odd powers of c. double c2 = c * c; double c3 = c * c2; double c5 = c3 * c2; double c7 = c5 * c2; double c9 = c7 * c2; double c11 = c9 * c2; return (Math.signum(i) * (45.0 + (57.2944766070562 * c - 19.05792099799635 * c3 + 11.089223410359068 * c5 - 6.6711120475953765 * c7 + 3.016813013351768 * c9 - 0.6715752908287405 * c11))); } /** Close approximation of the frequently-used trigonometric method atan2, using positive or negative degrees. Average absolute * error is 0.00006037 degrees; relative error is 0 degrees, maximum error is 0.00010396 degrees. Takes y and x (in that * unusual order) as floats, and returns the angle from the origin to that point in degrees. <br> * Credit for this goes to the 1955 research study "Approximations for Digital Computers," by RAND Corporation. This is sheet * 11's algorithm, which is the fourth-fastest and fourth-least precise. The algorithms on sheets 8-10 are faster, but only by * a very small degree, and are considerably less precise. That study provides an {@link #atan(float)} method, and that cleanly * translates to atan2(). * @param y y-component of the point to find the angle towards; note the parameter order is unusual by convention * @param x x-component of the point to find the angle towards; note the parameter order is unusual by convention * @return the angle to the given point, in degrees as a float; ranges from {@code -180} to {@code 180} */ public static float atan2Deg (final float y, float x) { float n = y / x; if (n != n) n = (y == x ? 1f : -1.0f); // if both y and x are infinite, n would be NaN else if (n - n != n - n) x = 0f; // if n is infinite, y is infinitely larger than x. if (x > 0) return (float)atanUncheckedDeg(n); else if (x < 0) { if (y >= 0) return (float)(atanUncheckedDeg(n) + 180.0); return (float)(atanUncheckedDeg(n) - 180.0); } else if (y > 0) return x + 90f; else if (y < 0) return x - 90f; return x + y; // returns 0 for 0,0 or NaN if either y or x is NaN } /** Close approximation of the frequently-used trigonometric method atan2, using non-negative degrees only. Average absolute * error is 0.00006045 degrees; relative error is 0 degrees; maximum error is 0.00011178 degrees. Takes y and x (in that * unusual order) as floats, and returns the angle from the origin to that point in degrees. <br> * This can be useful when a negative result from atan() would require extra work to handle. <br> * Credit for this goes to the 1955 research study "Approximations for Digital Computers," by RAND Corporation. This is sheet * 11's algorithm, which is the fourth-fastest and fourth-least precise. The algorithms on sheets 8-10 are faster, but only by * a very small degree, and are considerably less precise. That study provides an {@link #atan(float)} method, and that cleanly * translates to atan2Deg360(). * @param y y-component of the point to find the angle towards; note the parameter order is unusual by convention * @param x x-component of the point to find the angle towards; note the parameter order is unusual by convention * @return the angle to the given point, in degrees as a float; ranges from {@code 0} to {@code 360} */ public static float atan2Deg360 (final float y, float x) { float n = y / x; if (n != n) n = (y == x ? 1f : -1.0f); // if both y and x are infinite, n would be NaN else if (n - n != n - n) x = 0f; // if n is infinite, y is infinitely larger than x. if (x > 0) { if (y >= 0) return (float)atanUncheckedDeg(n); else return (float)(atanUncheckedDeg(n) + 360.0); } else if (x < 0) { return (float)(atanUncheckedDeg(n) + 180.0); } else if (y > 0) return x + 90f; else if (y < 0) return x + 270f; return x + y; // returns 0 for 0,0 or NaN if either y or x is NaN } /** Returns acos in radians; less accurate than Math.acos but may be faster. Average error of 0.00002845 radians (0.0016300649 * degrees), largest error of 0.000067548 radians (0.0038702153 degrees). This implementation does not return NaN if given an * out-of-range input (Math.acos does return NaN), unless the input is NaN. * @param a acos is defined only when a is between -1f and 1f, inclusive * @return between {@code 0} and {@code PI} when a is in the defined range */ static public float acos (float a) { float a2 = a * a; // a squared float a3 = a * a2; // a cubed if (a >= 0f) { return (float)Math.sqrt(1f - a) * (1.5707288f - 0.2121144f * a + 0.0742610f * a2 - 0.0187293f * a3); } return 3.14159265358979323846f - (float)Math.sqrt(1f + a) * (1.5707288f + 0.2121144f * a + 0.0742610f * a2 + 0.0187293f * a3); } /** Returns asin in radians; less accurate than Math.asin but may be faster. Average error of 0.000028447 radians (0.0016298931 * degrees), largest error of 0.000067592 radians (0.0038727364 degrees). This implementation does not return NaN if given an * out-of-range input (Math.asin does return NaN), unless the input is NaN. * @param a asin is defined only when a is between -1f and 1f, inclusive * @return between {@code -HALF_PI} and {@code HALF_PI} when a is in the defined range */ static public float asin (float a) { float a2 = a * a; // a squared float a3 = a * a2; // a cubed if (a >= 0f) { return 1.5707963267948966f - (float)Math.sqrt(1f - a) * (1.5707288f - 0.2121144f * a + 0.0742610f * a2 - 0.0187293f * a3); } return -1.5707963267948966f + (float)Math.sqrt(1f + a) * (1.5707288f + 0.2121144f * a + 0.0742610f * a2 + 0.0187293f * a3); } /** Arc tangent approximation with very low error, using an algorithm from the 1955 research study "Approximations for Digital * Computers," by RAND Corporation (this is sheet 11's algorithm, which is the fourth-fastest and fourth-least precise). This * method is usually about 4x faster than {@link Math#atan(double)}, but is somewhat less precise than Math's implementation. * For finite inputs only, you may get a tiny speedup by using {@link #atanUnchecked(double)}, but this method will be correct * enough for infinite inputs, and atanUnchecked() will not be. * @param i an input to the inverse tangent function; any float is accepted * @return an output from the inverse tangent function, from {@code -HALF_PI} to {@code HALF_PI} inclusive * @see #atanUnchecked(double) If you know the input will be finite, you can use atanUnchecked() instead. */ public static float atan (float i) { // We use double precision internally, because some constants need double precision. // This clips infinite inputs at Double.MAX_VALUE, which still probably becomes infinite // again when converted back to float. double n = Math.min(Math.abs(i), Double.MAX_VALUE); // c uses the "equally-good" formulation that permits n to be from 0 to almost infinity. double c = (n - 1.0) / (n + 1.0); // The approximation needs 6 odd powers of c. double c2 = c * c; double c3 = c * c2; double c5 = c3 * c2; double c7 = c5 * c2; double c9 = c7 * c2; double c11 = c9 * c2; return Math.signum(i) * (float)((Math.PI * 0.25) + (0.99997726 * c - 0.33262347 * c3 + 0.19354346 * c5 - 0.11643287 * c7 + 0.05265332 * c9 - 0.0117212 * c11)); } /** Returns arcsine in degrees. This implementation does not return NaN if given an out-of-range input (Math.asin does return * NaN), unless the input is NaN. * @param a asin is defined only when a is between -1f and 1f, inclusive * @return between {@code -90} and {@code 90} when a is in the defined range */ public static float asinDeg (float a) { float a2 = a * a; // a squared float a3 = a * a2; // a cubed if (a >= 0f) { return 90f - (float)Math.sqrt(1f - a) * (89.99613099964837f - 12.153259893949748f * a + 4.2548418824210055f * a2 - 1.0731098432343729f * a3); } return (float)Math.sqrt(1f + a) * (89.99613099964837f + 12.153259893949748f * a + 4.2548418824210055f * a2 + 1.0731098432343729f * a3) - 90f; } /** Returns arccosine in degrees. This implementation does not return NaN if given an out-of-range input (Math.acos does return * NaN), unless the input is NaN. * @param a acos is defined only when a is between -1f and 1f, inclusive * @return between {@code 0} and {@code 180} when a is in the defined range */ public static float acosDeg (float a) { float a2 = a * a; // a squared float a3 = a * a2; // a cubed if (a >= 0f) { return (float)Math.sqrt(1f - a) * (89.99613099964837f - 12.153259533621753f * a + 4.254842010910525f * a2 - 1.0731098035209208f * a3); } return 180f - (float)Math.sqrt(1f + a) * (89.99613099964837f + 12.153259533621753f * a + 4.254842010910525f * a2 + 1.0731098035209208f * a3); } /** Arc tangent approximation returning a value measured in positive or negative degrees, using an algorithm from the 1955 * research study "Approximations for Digital Computers," by RAND Corporation (this is sheet 11's algorithm, which is the * fourth-fastest and fourth-least precise). For finite inputs only, you may get a tiny speedup by using * {@link #atanUncheckedDeg(double)}, but this method will be correct enough for infinite inputs, and atanUnchecked() will not * be. * @param i an input to the inverse tangent function; any float is accepted * @return an output from the inverse tangent function in degrees, from {@code -90} to {@code 90} inclusive * @see #atanUncheckedDeg(double) If you know the input will be finite, you can use atanUncheckedDeg() instead. */ public static float atanDeg (float i) { // We use double precision internally, because some constants need double precision. // This clips infinite inputs at Double.MAX_VALUE, which still probably becomes infinite // again when converted back to float. double n = Math.min(Math.abs(i), Double.MAX_VALUE); // c uses the "equally-good" formulation that permits n to be from 0 to almost infinity. double c = (n - 1.0) / (n + 1.0); // The approximation needs 6 odd powers of c. double c2 = c * c; double c3 = c * c2; double c5 = c3 * c2; double c7 = c5 * c2; double c9 = c7 * c2; double c11 = c9 * c2; return (float)(Math.signum(i) * (45.0 + (57.2944766070562 * c - 19.05792099799635 * c3 + 11.089223410359068 * c5 - 6.6711120475953765 * c7 + 3.016813013351768 * c9 - 0.6715752908287405 * c11))); } // --- static public Random random = new RandomXS128(); /** Returns a random number between 0 (inclusive) and the specified value (inclusive). */ static public int random (int range) { return random.nextInt(range + 1); } /** Returns a random number between start (inclusive) and end (inclusive). */ static public int random (int start, int end) { return start + random.nextInt(end - start + 1); } /** Returns a random number between 0 (inclusive) and the specified value (inclusive). */ static public long random (long range) { // Uses the lower-bounded overload defined below, which is simpler and doesn't lose much optimization. return random(0L, range); } /** Returns a random number between start (inclusive) and end (inclusive). */ static public long random (long start, long end) { final long rand = random.nextLong(); // In order to get the range to go from start to end, instead of overflowing after end and going // back around to start, start must be less than end. if (end < start) { long t = end; end = start; start = t; } long bound = end - start + 1L; // inclusive on end // Credit to https://oroboro.com/large-random-in-range/ for the following technique // It's a 128-bit-product where only the upper 64 of 128 bits are used. final long randLow = rand & 0xFFFFFFFFL; final long boundLow = bound & 0xFFFFFFFFL; final long randHigh = (rand >>> 32); final long boundHigh = (bound >>> 32); return start + (randHigh * boundLow >>> 32) + (randLow * boundHigh >>> 32) + randHigh * boundHigh; } /** Returns a random boolean value. */ static public boolean randomBoolean () { return random.nextBoolean(); } /** Returns true if a random value between 0 and 1 is less than the specified value. */ static public boolean randomBoolean (float chance) { return MathUtils.random() < chance; } /** Returns random number between 0.0 (inclusive) and 1.0 (exclusive). */ static public float random () { return random.nextFloat(); } /** Returns a random number between 0 (inclusive) and the specified value (exclusive). */ static public float random (float range) { return random.nextFloat() * range; } /** Returns a random number between start (inclusive) and end (exclusive). */ static public float random (float start, float end) { return start + random.nextFloat() * (end - start); } /** Returns -1 or 1, randomly. */ static public int randomSign () { return 1 | (random.nextInt() >> 31); } /** Returns a triangularly distributed random number between -1.0 (exclusive) and 1.0 (exclusive), where values around zero are * more likely. * <p> * This is an optimized version of {@link #randomTriangular(float, float, float) randomTriangular(-1, 1, 0)} */ public static float randomTriangular () { return random.nextFloat() - random.nextFloat(); } /** Returns a triangularly distributed random number between {@code -max} (exclusive) and {@code max} (exclusive), where values * around zero are more likely. * <p> * This is an optimized version of {@link #randomTriangular(float, float, float) randomTriangular(-max, max, 0)} * @param max the upper limit */ public static float randomTriangular (float max) { return (random.nextFloat() - random.nextFloat()) * max; } /** Returns a triangularly distributed random number between {@code min} (inclusive) and {@code max} (exclusive), where the * {@code mode} argument defaults to the midpoint between the bounds, giving a symmetric distribution. * <p> * This method is equivalent of {@link #randomTriangular(float, float, float) randomTriangular(min, max, (min + max) * 0.5f)} * @param min the lower limit * @param max the upper limit */ public static float randomTriangular (float min, float max) { return randomTriangular(min, max, (min + max) * 0.5f); } /** Returns a triangularly distributed random number between {@code min} (inclusive) and {@code max} (exclusive), where values * around {@code mode} are more likely. * @param min the lower limit * @param max the upper limit * @param mode the point around which the values are more likely */ public static float randomTriangular (float min, float max, float mode) { float u = random.nextFloat(); float d = max - min; if (u <= (mode - min) / d) return min + (float)Math.sqrt(u * d * (mode - min)); return max - (float)Math.sqrt((1 - u) * d * (max - mode)); } // --- /** Returns the next power of two. Returns the specified value if the value is already a power of two. */ static public int nextPowerOfTwo (int value) { if (value == 0) return 1; value--; value |= value >> 1; value |= value >> 2; value |= value >> 4; value |= value >> 8; value |= value >> 16; return value + 1; } static public boolean isPowerOfTwo (int value) { return value != 0 && (value & value - 1) == 0; } // --- static public short clamp (short value, short min, short max) { if (value < min) return min; if (value > max) return max; return value; } static public int clamp (int value, int min, int max) { if (value < min) return min; if (value > max) return max; return value; } static public long clamp (long value, long min, long max) { if (value < min) return min; if (value > max) return max; return value; } static public float clamp (float value, float min, float max) { if (value < min) return min; if (value > max) return max; return value; } static public double clamp (double value, double min, double max) { if (value < min) return min; if (value > max) return max; return value; } // --- /** Linearly interpolates between fromValue to toValue on progress position. */ static public float lerp (float fromValue, float toValue, float progress) { return fromValue + (toValue - fromValue) * progress; } /** Linearly normalizes value from a range. Range must not be empty. This is the inverse of {@link #lerp(float, float, float)}. * @param rangeStart Range start normalized to 0 * @param rangeEnd Range end normalized to 1 * @param value Value to normalize * @return Normalized value. Values outside of the range are not clamped to 0 and 1 */ static public float norm (float rangeStart, float rangeEnd, float value) { return (value - rangeStart) / (rangeEnd - rangeStart); } /** Linearly map a value from one range to another. Input range must not be empty. This is the same as chaining * {@link #norm(float, float, float)} from input range and {@link #lerp(float, float, float)} to output range. * @param inRangeStart Input range start * @param inRangeEnd Input range end * @param outRangeStart Output range start * @param outRangeEnd Output range end * @param value Value to map * @return Mapped value. Values outside of the input range are not clamped to output range */ static public float map (float inRangeStart, float inRangeEnd, float outRangeStart, float outRangeEnd, float value) { return outRangeStart + (value - inRangeStart) * (outRangeEnd - outRangeStart) / (inRangeEnd - inRangeStart); } /** Linearly interpolates between two angles in radians. Takes into account that angles wrap at two pi and always takes the * direction with the smallest delta angle. * * @param fromRadians start angle in radians * @param toRadians target angle in radians * @param progress interpolation value in the range [0, 1] * @return the interpolated angle in the range [0, PI2[ */ public static float lerpAngle (float fromRadians, float toRadians, float progress) { float delta = (((toRadians - fromRadians) % PI2 + PI2 + PI) % PI2) - PI; return ((fromRadians + delta * progress) % PI2 + PI2) % PI2; } /** Linearly interpolates between two angles in degrees. Takes into account that angles wrap at 360 degrees and always takes * the direction with the smallest delta angle. * * @param fromDegrees start angle in degrees * @param toDegrees target angle in degrees * @param progress interpolation value in the range [0, 1] * @return the interpolated angle in the range [0, 360[ */ public static float lerpAngleDeg (float fromDegrees, float toDegrees, float progress) { float delta = (((toDegrees - fromDegrees) % 360f + 360f + 180f) % 360f) - 180f; return ((fromDegrees + delta * progress) % 360f + 360f) % 360f; } // --- static private final int BIG_ENOUGH_INT = 16 * 1024; static private final double BIG_ENOUGH_FLOOR = BIG_ENOUGH_INT; static private final double CEIL = 0.9999999; static private final double BIG_ENOUGH_CEIL = 16384.999999999996; static private final double BIG_ENOUGH_ROUND = BIG_ENOUGH_INT + 0.5f; /** Returns the largest integer less than or equal to the specified float. This method will only properly floor floats from * -(2^14) to (Float.MAX_VALUE - 2^14). */ static public int floor (float value) { return (int)(value + BIG_ENOUGH_FLOOR) - BIG_ENOUGH_INT; } /** Returns the largest integer less than or equal to the specified float. This method will only properly floor floats that are * positive. Note this method simply casts the float to int. */ static public int floorPositive (float value) { return (int)value; } /** Returns the smallest integer greater than or equal to the specified float. This method will only properly ceil floats from * -(2^14) to (Float.MAX_VALUE - 2^14). */ static public int ceil (float value) { return BIG_ENOUGH_INT - (int)(BIG_ENOUGH_FLOOR - value); } /** Returns the smallest integer greater than or equal to the specified float. This method will only properly ceil floats that * are positive. */ static public int ceilPositive (float value) { return (int)(value + CEIL); } /** Returns the closest integer to the specified float. This method will only properly round floats from -(2^14) to * (Float.MAX_VALUE - 2^14). */ static public int round (float value) { return (int)(value + BIG_ENOUGH_ROUND) - BIG_ENOUGH_INT; } /** Returns the closest integer to the specified float. This method will only properly round floats that are positive. */ static public int roundPositive (float value) { return (int)(value + 0.5f); } /** Returns true if the value is zero (using the default tolerance as upper bound) */ static public boolean isZero (float value) { return Math.abs(value) <= FLOAT_ROUNDING_ERROR; } /** Returns true if the value is zero. * @param tolerance represent an upper bound below which the value is considered zero. */ static public boolean isZero (float value, float tolerance) { return Math.abs(value) <= tolerance; } /** Returns true if a is nearly equal to b. The function uses the default floating error tolerance. * @param a the first value. * @param b the second value. */ static public boolean isEqual (float a, float b) { return Math.abs(a - b) <= FLOAT_ROUNDING_ERROR; } /** Returns true if a is nearly equal to b. * @param a the first value. * @param b the second value. * @param tolerance represent an upper bound below which the two values are considered equal. */ static public boolean isEqual (float a, float b, float tolerance) { return Math.abs(a - b) <= tolerance; } /** @return the logarithm of value with base a */ static public float log (float a, float value) { return (float)(Math.log(value) / Math.log(a)); } /** @return the logarithm of value with base 2 */ static public float log2 (float value) { return log(2, value); } }
-1
libgdx/libgdx
7,305
Adds status detection for an httpRequest
This commit adds the public boolean isHttpRequestPending (HttpRequest httpRequest) method to Gdx.net user interface. It allows end users to detect if an httpRequest is pending or already finished. It helpfull for creating advanced business logic.
supermaximus80
"2023-12-22T21:58:24Z"
"2023-12-27T14:37:55Z"
60f074309093046d7fd9dd3c895bba398b415797
2b691f735f4b167c062f8f68186a6d7237d3d855
Adds status detection for an httpRequest. This commit adds the public boolean isHttpRequestPending (HttpRequest httpRequest) method to Gdx.net user interface. It allows end users to detect if an httpRequest is pending or already finished. It helpfull for creating advanced business logic.
./gdx/test/com/badlogic/gdx/math/Vector2Test.java
package com.badlogic.gdx.math; import static org.junit.Assert.*; import org.junit.Test; public class Vector2Test { @Test public void testToString () { assertEquals("(-5.0,42.00055)", new Vector2(-5f, 42.00055f).toString()); } @Test public void testFromString () { assertEquals(new Vector2(-5f, 42.00055f), new Vector2().fromString("(-5,42.00055)")); } @Test public void testAngle () { assertEquals(270f, new Vector2(0, -1f).angleDeg(), MathUtils.FLOAT_ROUNDING_ERROR); } @Test public void testAngleRelative () { assertEquals(270f, new Vector2(0, -1f).angleDeg(Vector2.X), MathUtils.FLOAT_ROUNDING_ERROR); } @Test public void testAngleStatic () { assertEquals(270f, Vector2.angleDeg(0, -1f), MathUtils.FLOAT_ROUNDING_ERROR); } @Test public void testAngleRad () { assertEquals(-MathUtils.HALF_PI, new Vector2(0, -1f).angleRad(), MathUtils.FLOAT_ROUNDING_ERROR); } @Test public void testAngleRadRelative () { assertEquals(-MathUtils.HALF_PI, new Vector2(0, -1f).angleRad(Vector2.X), MathUtils.FLOAT_ROUNDING_ERROR); } @Test public void testAngleRadStatic () { assertEquals(-MathUtils.HALF_PI, Vector2.angleRad(0, -1f), MathUtils.FLOAT_ROUNDING_ERROR); } }
package com.badlogic.gdx.math; import static org.junit.Assert.*; import org.junit.Test; public class Vector2Test { @Test public void testToString () { assertEquals("(-5.0,42.00055)", new Vector2(-5f, 42.00055f).toString()); } @Test public void testFromString () { assertEquals(new Vector2(-5f, 42.00055f), new Vector2().fromString("(-5,42.00055)")); } @Test public void testAngle () { assertEquals(270f, new Vector2(0, -1f).angleDeg(), MathUtils.FLOAT_ROUNDING_ERROR); } @Test public void testAngleRelative () { assertEquals(270f, new Vector2(0, -1f).angleDeg(Vector2.X), MathUtils.FLOAT_ROUNDING_ERROR); } @Test public void testAngleStatic () { assertEquals(270f, Vector2.angleDeg(0, -1f), MathUtils.FLOAT_ROUNDING_ERROR); } @Test public void testAngleRad () { assertEquals(-MathUtils.HALF_PI, new Vector2(0, -1f).angleRad(), MathUtils.FLOAT_ROUNDING_ERROR); } @Test public void testAngleRadRelative () { assertEquals(-MathUtils.HALF_PI, new Vector2(0, -1f).angleRad(Vector2.X), MathUtils.FLOAT_ROUNDING_ERROR); } @Test public void testAngleRadStatic () { assertEquals(-MathUtils.HALF_PI, Vector2.angleRad(0, -1f), MathUtils.FLOAT_ROUNDING_ERROR); } }
-1
libgdx/libgdx
7,305
Adds status detection for an httpRequest
This commit adds the public boolean isHttpRequestPending (HttpRequest httpRequest) method to Gdx.net user interface. It allows end users to detect if an httpRequest is pending or already finished. It helpfull for creating advanced business logic.
supermaximus80
"2023-12-22T21:58:24Z"
"2023-12-27T14:37:55Z"
60f074309093046d7fd9dd3c895bba398b415797
2b691f735f4b167c062f8f68186a6d7237d3d855
Adds status detection for an httpRequest. This commit adds the public boolean isHttpRequestPending (HttpRequest httpRequest) method to Gdx.net user interface. It allows end users to detect if an httpRequest is pending or already finished. It helpfull for creating advanced business logic.
./backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/java/io/BufferedReader.java
/* Copyright (c) 2008, Avian Contributors Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. There is NO WARRANTY for this software. See license.txt for details. */ package java.io; public class BufferedReader extends Reader { private final Reader in; private final char[] buffer; private int position; private int limit; public BufferedReader (Reader in, int bufferSize) { this.in = in; this.buffer = new char[bufferSize]; } public BufferedReader (Reader in) { this(in, 8192); } private void fill () throws IOException { position = 0; limit = in.read(buffer); } public String readLine () throws IOException { StringBuilder sb = new StringBuilder(); while (true) { if (position >= limit) { fill(); } if (position >= limit) { return sb.length() == 0 ? null : sb.toString(); } for (int i = position; i < limit; ++i) { if (buffer[i] == '\r') { sb.append(buffer, position, i - position); position = i + 1; if (i + 1 < limit) { if (buffer[i + 1] == '\n') { position = i + 2; } } else { fill(); if (buffer[position] == '\n') { position += 1; } } return sb.toString(); } else if (buffer[i] == '\n') { sb.append(buffer, position, i - position); position = i + 1; return sb.toString(); } } sb.append(buffer, position, limit - position); position = limit; } } public int read (char[] b, int offset, int length) throws IOException { int count = 0; if (position >= limit && length < buffer.length) { fill(); } if (position < limit) { int remaining = limit - position; if (remaining > length) { remaining = length; } System.arraycopy(buffer, position, b, offset, remaining); count += remaining; position += remaining; offset += remaining; length -= remaining; } if (length > 0) { int c = in.read(b, offset, length); if (c == -1) { if (count == 0) { count = -1; } } else { count += c; } } return count; } public void close () throws IOException { in.close(); } }
/* Copyright (c) 2008, Avian Contributors Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. There is NO WARRANTY for this software. See license.txt for details. */ package java.io; public class BufferedReader extends Reader { private final Reader in; private final char[] buffer; private int position; private int limit; public BufferedReader (Reader in, int bufferSize) { this.in = in; this.buffer = new char[bufferSize]; } public BufferedReader (Reader in) { this(in, 8192); } private void fill () throws IOException { position = 0; limit = in.read(buffer); } public String readLine () throws IOException { StringBuilder sb = new StringBuilder(); while (true) { if (position >= limit) { fill(); } if (position >= limit) { return sb.length() == 0 ? null : sb.toString(); } for (int i = position; i < limit; ++i) { if (buffer[i] == '\r') { sb.append(buffer, position, i - position); position = i + 1; if (i + 1 < limit) { if (buffer[i + 1] == '\n') { position = i + 2; } } else { fill(); if (buffer[position] == '\n') { position += 1; } } return sb.toString(); } else if (buffer[i] == '\n') { sb.append(buffer, position, i - position); position = i + 1; return sb.toString(); } } sb.append(buffer, position, limit - position); position = limit; } } public int read (char[] b, int offset, int length) throws IOException { int count = 0; if (position >= limit && length < buffer.length) { fill(); } if (position < limit) { int remaining = limit - position; if (remaining > length) { remaining = length; } System.arraycopy(buffer, position, b, offset, remaining); count += remaining; position += remaining; offset += remaining; length -= remaining; } if (length > 0) { int c = in.read(b, offset, length); if (c == -1) { if (count == 0) { count = -1; } } else { count += c; } } return count; } public void close () throws IOException { in.close(); } }
-1
libgdx/libgdx
7,305
Adds status detection for an httpRequest
This commit adds the public boolean isHttpRequestPending (HttpRequest httpRequest) method to Gdx.net user interface. It allows end users to detect if an httpRequest is pending or already finished. It helpfull for creating advanced business logic.
supermaximus80
"2023-12-22T21:58:24Z"
"2023-12-27T14:37:55Z"
60f074309093046d7fd9dd3c895bba398b415797
2b691f735f4b167c062f8f68186a6d7237d3d855
Adds status detection for an httpRequest. This commit adds the public boolean isHttpRequestPending (HttpRequest httpRequest) method to Gdx.net user interface. It allows end users to detect if an httpRequest is pending or already finished. It helpfull for creating advanced business logic.
./extensions/gdx-bullet/jni/swig-src/collision/com/badlogic/gdx/physics/bullet/collision/btActivatingCollisionAlgorithm.java
/* ---------------------------------------------------------------------------- * This file was automatically generated by SWIG (http://www.swig.org). * Version 3.0.11 * * Do not make changes to this file unless you know what you are doing--modify * the SWIG interface file instead. * ----------------------------------------------------------------------------- */ package com.badlogic.gdx.physics.bullet.collision; import com.badlogic.gdx.physics.bullet.linearmath.*; public class btActivatingCollisionAlgorithm extends btCollisionAlgorithm { private long swigCPtr; protected btActivatingCollisionAlgorithm (final String className, long cPtr, boolean cMemoryOwn) { super(className, CollisionJNI.btActivatingCollisionAlgorithm_SWIGUpcast(cPtr), cMemoryOwn); swigCPtr = cPtr; } /** Construct a new btActivatingCollisionAlgorithm, normally you should not need this constructor it's intended for low-level * usage. */ public btActivatingCollisionAlgorithm (long cPtr, boolean cMemoryOwn) { this("btActivatingCollisionAlgorithm", cPtr, cMemoryOwn); construct(); } @Override protected void reset (long cPtr, boolean cMemoryOwn) { if (!destroyed) destroy(); super.reset(CollisionJNI.btActivatingCollisionAlgorithm_SWIGUpcast(swigCPtr = cPtr), cMemoryOwn); } public static long getCPtr (btActivatingCollisionAlgorithm obj) { return (obj == null) ? 0 : obj.swigCPtr; } @Override protected void finalize () throws Throwable { if (!destroyed) destroy(); super.finalize(); } @Override protected synchronized void delete () { if (swigCPtr != 0) { if (swigCMemOwn) { swigCMemOwn = false; CollisionJNI.delete_btActivatingCollisionAlgorithm(swigCPtr); } swigCPtr = 0; } super.delete(); } }
/* ---------------------------------------------------------------------------- * This file was automatically generated by SWIG (http://www.swig.org). * Version 3.0.11 * * Do not make changes to this file unless you know what you are doing--modify * the SWIG interface file instead. * ----------------------------------------------------------------------------- */ package com.badlogic.gdx.physics.bullet.collision; import com.badlogic.gdx.physics.bullet.linearmath.*; public class btActivatingCollisionAlgorithm extends btCollisionAlgorithm { private long swigCPtr; protected btActivatingCollisionAlgorithm (final String className, long cPtr, boolean cMemoryOwn) { super(className, CollisionJNI.btActivatingCollisionAlgorithm_SWIGUpcast(cPtr), cMemoryOwn); swigCPtr = cPtr; } /** Construct a new btActivatingCollisionAlgorithm, normally you should not need this constructor it's intended for low-level * usage. */ public btActivatingCollisionAlgorithm (long cPtr, boolean cMemoryOwn) { this("btActivatingCollisionAlgorithm", cPtr, cMemoryOwn); construct(); } @Override protected void reset (long cPtr, boolean cMemoryOwn) { if (!destroyed) destroy(); super.reset(CollisionJNI.btActivatingCollisionAlgorithm_SWIGUpcast(swigCPtr = cPtr), cMemoryOwn); } public static long getCPtr (btActivatingCollisionAlgorithm obj) { return (obj == null) ? 0 : obj.swigCPtr; } @Override protected void finalize () throws Throwable { if (!destroyed) destroy(); super.finalize(); } @Override protected synchronized void delete () { if (swigCPtr != 0) { if (swigCMemOwn) { swigCMemOwn = false; CollisionJNI.delete_btActivatingCollisionAlgorithm(swigCPtr); } swigCPtr = 0; } super.delete(); } }
-1
libgdx/libgdx
7,305
Adds status detection for an httpRequest
This commit adds the public boolean isHttpRequestPending (HttpRequest httpRequest) method to Gdx.net user interface. It allows end users to detect if an httpRequest is pending or already finished. It helpfull for creating advanced business logic.
supermaximus80
"2023-12-22T21:58:24Z"
"2023-12-27T14:37:55Z"
60f074309093046d7fd9dd3c895bba398b415797
2b691f735f4b167c062f8f68186a6d7237d3d855
Adds status detection for an httpRequest. This commit adds the public boolean isHttpRequestPending (HttpRequest httpRequest) method to Gdx.net user interface. It allows end users to detect if an httpRequest is pending or already finished. It helpfull for creating advanced business logic.
./extensions/gdx-bullet/jni/swig-src/linearmath/com/badlogic/gdx/physics/bullet/linearmath/btSerializationFlags.java
/* ---------------------------------------------------------------------------- * This file was automatically generated by SWIG (http://www.swig.org). * Version 3.0.11 * * Do not make changes to this file unless you know what you are doing--modify * the SWIG interface file instead. * ----------------------------------------------------------------------------- */ package com.badlogic.gdx.physics.bullet.linearmath; public final class btSerializationFlags { public final static int BT_SERIALIZE_NO_BVH = 1; public final static int BT_SERIALIZE_NO_TRIANGLEINFOMAP = 2; public final static int BT_SERIALIZE_NO_DUPLICATE_ASSERT = 4; }
/* ---------------------------------------------------------------------------- * This file was automatically generated by SWIG (http://www.swig.org). * Version 3.0.11 * * Do not make changes to this file unless you know what you are doing--modify * the SWIG interface file instead. * ----------------------------------------------------------------------------- */ package com.badlogic.gdx.physics.bullet.linearmath; public final class btSerializationFlags { public final static int BT_SERIALIZE_NO_BVH = 1; public final static int BT_SERIALIZE_NO_TRIANGLEINFOMAP = 2; public final static int BT_SERIALIZE_NO_DUPLICATE_ASSERT = 4; }
-1
libgdx/libgdx
7,305
Adds status detection for an httpRequest
This commit adds the public boolean isHttpRequestPending (HttpRequest httpRequest) method to Gdx.net user interface. It allows end users to detect if an httpRequest is pending or already finished. It helpfull for creating advanced business logic.
supermaximus80
"2023-12-22T21:58:24Z"
"2023-12-27T14:37:55Z"
60f074309093046d7fd9dd3c895bba398b415797
2b691f735f4b167c062f8f68186a6d7237d3d855
Adds status detection for an httpRequest. This commit adds the public boolean isHttpRequestPending (HttpRequest httpRequest) method to Gdx.net user interface. It allows end users to detect if an httpRequest is pending or already finished. It helpfull for creating advanced business logic.
./extensions/gdx-bullet/jni/swig-src/collision/com/badlogic/gdx/physics/bullet/collision/ConvexResultCallback.java
/* ---------------------------------------------------------------------------- * This file was automatically generated by SWIG (http://www.swig.org). * Version 3.0.11 * * Do not make changes to this file unless you know what you are doing--modify * the SWIG interface file instead. * ----------------------------------------------------------------------------- */ package com.badlogic.gdx.physics.bullet.collision; import com.badlogic.gdx.physics.bullet.BulletBase; import com.badlogic.gdx.physics.bullet.linearmath.*; public class ConvexResultCallback extends BulletBase { private long swigCPtr; protected ConvexResultCallback (final String className, long cPtr, boolean cMemoryOwn) { super(className, cPtr, cMemoryOwn); swigCPtr = cPtr; } /** Construct a new ConvexResultCallback, normally you should not need this constructor it's intended for low-level usage. */ public ConvexResultCallback (long cPtr, boolean cMemoryOwn) { this("ConvexResultCallback", cPtr, cMemoryOwn); construct(); } @Override protected void reset (long cPtr, boolean cMemoryOwn) { if (!destroyed) destroy(); super.reset(swigCPtr = cPtr, cMemoryOwn); } public static long getCPtr (ConvexResultCallback obj) { return (obj == null) ? 0 : obj.swigCPtr; } @Override protected void finalize () throws Throwable { if (!destroyed) destroy(); super.finalize(); } @Override protected synchronized void delete () { if (swigCPtr != 0) { if (swigCMemOwn) { swigCMemOwn = false; CollisionJNI.delete_ConvexResultCallback(swigCPtr); } swigCPtr = 0; } super.delete(); } protected void swigDirectorDisconnect () { swigCMemOwn = false; delete(); } public void swigReleaseOwnership () { swigCMemOwn = false; CollisionJNI.ConvexResultCallback_change_ownership(this, swigCPtr, false); } public void swigTakeOwnership () { swigCMemOwn = true; CollisionJNI.ConvexResultCallback_change_ownership(this, swigCPtr, true); } public void setClosestHitFraction (float value) { CollisionJNI.ConvexResultCallback_closestHitFraction_set(swigCPtr, this, value); } public float getClosestHitFraction () { return CollisionJNI.ConvexResultCallback_closestHitFraction_get(swigCPtr, this); } public void setCollisionFilterGroup (int value) { CollisionJNI.ConvexResultCallback_collisionFilterGroup_set(swigCPtr, this, value); } public int getCollisionFilterGroup () { return CollisionJNI.ConvexResultCallback_collisionFilterGroup_get(swigCPtr, this); } public void setCollisionFilterMask (int value) { CollisionJNI.ConvexResultCallback_collisionFilterMask_set(swigCPtr, this, value); } public int getCollisionFilterMask () { return CollisionJNI.ConvexResultCallback_collisionFilterMask_get(swigCPtr, this); } public ConvexResultCallback () { this(CollisionJNI.new_ConvexResultCallback(), true); CollisionJNI.ConvexResultCallback_director_connect(this, swigCPtr, swigCMemOwn, true); } public boolean hasHit () { return CollisionJNI.ConvexResultCallback_hasHit(swigCPtr, this); } public boolean needsCollision (btBroadphaseProxy proxy0) { return (getClass() == ConvexResultCallback.class) ? CollisionJNI.ConvexResultCallback_needsCollision(swigCPtr, this, btBroadphaseProxy.getCPtr(proxy0), proxy0) : CollisionJNI.ConvexResultCallback_needsCollisionSwigExplicitConvexResultCallback(swigCPtr, this, btBroadphaseProxy.getCPtr(proxy0), proxy0); } public float addSingleResult (LocalConvexResult convexResult, boolean normalInWorldSpace) { return CollisionJNI.ConvexResultCallback_addSingleResult(swigCPtr, this, LocalConvexResult.getCPtr(convexResult), convexResult, normalInWorldSpace); } }
/* ---------------------------------------------------------------------------- * This file was automatically generated by SWIG (http://www.swig.org). * Version 3.0.11 * * Do not make changes to this file unless you know what you are doing--modify * the SWIG interface file instead. * ----------------------------------------------------------------------------- */ package com.badlogic.gdx.physics.bullet.collision; import com.badlogic.gdx.physics.bullet.BulletBase; import com.badlogic.gdx.physics.bullet.linearmath.*; public class ConvexResultCallback extends BulletBase { private long swigCPtr; protected ConvexResultCallback (final String className, long cPtr, boolean cMemoryOwn) { super(className, cPtr, cMemoryOwn); swigCPtr = cPtr; } /** Construct a new ConvexResultCallback, normally you should not need this constructor it's intended for low-level usage. */ public ConvexResultCallback (long cPtr, boolean cMemoryOwn) { this("ConvexResultCallback", cPtr, cMemoryOwn); construct(); } @Override protected void reset (long cPtr, boolean cMemoryOwn) { if (!destroyed) destroy(); super.reset(swigCPtr = cPtr, cMemoryOwn); } public static long getCPtr (ConvexResultCallback obj) { return (obj == null) ? 0 : obj.swigCPtr; } @Override protected void finalize () throws Throwable { if (!destroyed) destroy(); super.finalize(); } @Override protected synchronized void delete () { if (swigCPtr != 0) { if (swigCMemOwn) { swigCMemOwn = false; CollisionJNI.delete_ConvexResultCallback(swigCPtr); } swigCPtr = 0; } super.delete(); } protected void swigDirectorDisconnect () { swigCMemOwn = false; delete(); } public void swigReleaseOwnership () { swigCMemOwn = false; CollisionJNI.ConvexResultCallback_change_ownership(this, swigCPtr, false); } public void swigTakeOwnership () { swigCMemOwn = true; CollisionJNI.ConvexResultCallback_change_ownership(this, swigCPtr, true); } public void setClosestHitFraction (float value) { CollisionJNI.ConvexResultCallback_closestHitFraction_set(swigCPtr, this, value); } public float getClosestHitFraction () { return CollisionJNI.ConvexResultCallback_closestHitFraction_get(swigCPtr, this); } public void setCollisionFilterGroup (int value) { CollisionJNI.ConvexResultCallback_collisionFilterGroup_set(swigCPtr, this, value); } public int getCollisionFilterGroup () { return CollisionJNI.ConvexResultCallback_collisionFilterGroup_get(swigCPtr, this); } public void setCollisionFilterMask (int value) { CollisionJNI.ConvexResultCallback_collisionFilterMask_set(swigCPtr, this, value); } public int getCollisionFilterMask () { return CollisionJNI.ConvexResultCallback_collisionFilterMask_get(swigCPtr, this); } public ConvexResultCallback () { this(CollisionJNI.new_ConvexResultCallback(), true); CollisionJNI.ConvexResultCallback_director_connect(this, swigCPtr, swigCMemOwn, true); } public boolean hasHit () { return CollisionJNI.ConvexResultCallback_hasHit(swigCPtr, this); } public boolean needsCollision (btBroadphaseProxy proxy0) { return (getClass() == ConvexResultCallback.class) ? CollisionJNI.ConvexResultCallback_needsCollision(swigCPtr, this, btBroadphaseProxy.getCPtr(proxy0), proxy0) : CollisionJNI.ConvexResultCallback_needsCollisionSwigExplicitConvexResultCallback(swigCPtr, this, btBroadphaseProxy.getCPtr(proxy0), proxy0); } public float addSingleResult (LocalConvexResult convexResult, boolean normalInWorldSpace) { return CollisionJNI.ConvexResultCallback_addSingleResult(swigCPtr, this, LocalConvexResult.getCPtr(convexResult), convexResult, normalInWorldSpace); } }
-1
libgdx/libgdx
7,305
Adds status detection for an httpRequest
This commit adds the public boolean isHttpRequestPending (HttpRequest httpRequest) method to Gdx.net user interface. It allows end users to detect if an httpRequest is pending or already finished. It helpfull for creating advanced business logic.
supermaximus80
"2023-12-22T21:58:24Z"
"2023-12-27T14:37:55Z"
60f074309093046d7fd9dd3c895bba398b415797
2b691f735f4b167c062f8f68186a6d7237d3d855
Adds status detection for an httpRequest. This commit adds the public boolean isHttpRequestPending (HttpRequest httpRequest) method to Gdx.net user interface. It allows end users to detect if an httpRequest is pending or already finished. It helpfull for creating advanced business logic.
./backends/gdx-backend-robovm-metalangle/src/com/badlogic/gdx/backends/iosrobovm/IOSAudio.java
/*DO NOT EDIT THIS FILE - it is machine generated*/ package com.badlogic.gdx.backends.iosrobovm; import com.badlogic.gdx.Audio; /** DO NOT EDIT THIS FILE - it is machine generated */ public interface IOSAudio extends Audio { public void didBecomeActive (); public void willEnterForeground (); public void willResignActive (); public void willTerminate (); }
/*DO NOT EDIT THIS FILE - it is machine generated*/ package com.badlogic.gdx.backends.iosrobovm; import com.badlogic.gdx.Audio; /** DO NOT EDIT THIS FILE - it is machine generated */ public interface IOSAudio extends Audio { public void didBecomeActive (); public void willEnterForeground (); public void willResignActive (); public void willTerminate (); }
-1
libgdx/libgdx
7,305
Adds status detection for an httpRequest
This commit adds the public boolean isHttpRequestPending (HttpRequest httpRequest) method to Gdx.net user interface. It allows end users to detect if an httpRequest is pending or already finished. It helpfull for creating advanced business logic.
supermaximus80
"2023-12-22T21:58:24Z"
"2023-12-27T14:37:55Z"
60f074309093046d7fd9dd3c895bba398b415797
2b691f735f4b167c062f8f68186a6d7237d3d855
Adds status detection for an httpRequest. This commit adds the public boolean isHttpRequestPending (HttpRequest httpRequest) method to Gdx.net user interface. It allows end users to detect if an httpRequest is pending or already finished. It helpfull for creating advanced business logic.
./extensions/gdx-tools/src/com/badlogic/gdx/tools/particleeditor/ImagePanel.java
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.tools.particleeditor; import java.awt.FileDialog; import java.awt.GridBagConstraints; import java.awt.GridBagLayout; import java.awt.GridLayout; import java.awt.Insets; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.awt.event.ItemEvent; import java.awt.event.ItemListener; import java.io.File; import javax.swing.ButtonGroup; import javax.swing.DefaultListModel; import javax.swing.JButton; import javax.swing.JLabel; import javax.swing.JList; import javax.swing.JPanel; import javax.swing.JRadioButton; import javax.swing.ListSelectionModel; import com.badlogic.gdx.graphics.g2d.ParticleEmitter; import com.badlogic.gdx.graphics.g2d.ParticleEmitter.SpriteMode; import com.badlogic.gdx.utils.Array; class ImagePanel extends EditorPanel { JPanel imagesPanel; JList imageList; DefaultListModel<String> imageListModel; String lastDir; public ImagePanel (final ParticleEditor editor, String name, String description) { super(null, name, description); JPanel contentPanel = getContentPanel(); { JPanel buttonsPanel = new JPanel(new GridLayout(3, 1)); contentPanel.add(buttonsPanel, new GridBagConstraints(0, 0, 1, 1, 1, 0, GridBagConstraints.NORTHWEST, GridBagConstraints.NONE, new Insets(0, 0, 0, 0), 0, 0)); JButton addButton = new JButton("Add"); buttonsPanel.add(addButton); addButton.addActionListener(new ActionListener() { public void actionPerformed (ActionEvent event) { FileDialog dialog = new FileDialog(editor, "Open Image", FileDialog.LOAD); if (lastDir != null) dialog.setDirectory(lastDir); dialog.setMultipleMode(true); dialog.setVisible(true); final File[] files = dialog.getFiles(); final String dir = dialog.getDirectory(); if (dir == null || files == null) return; lastDir = dir; final ParticleEmitter emitter = editor.getEmitter(); for (File file : files) { emitter.getImagePaths().add(file.getAbsolutePath()); } emitter.getSprites().clear(); updateImageList(emitter.getImagePaths()); } }); JButton defaultButton = new JButton("Default"); buttonsPanel.add(defaultButton); defaultButton.addActionListener(new ActionListener() { @Override public void actionPerformed (ActionEvent e) { final ParticleEmitter emitter = editor.getEmitter(); emitter.setImagePaths(new Array<String>(new String[] {ParticleEditor.DEFAULT_PARTICLE})); emitter.getSprites().clear(); updateImageList(emitter.getImagePaths()); } }); JButton defaultPremultButton = new JButton("Default (Premultiplied Alpha)"); buttonsPanel.add(defaultPremultButton); defaultPremultButton.addActionListener(new ActionListener() { @Override public void actionPerformed (ActionEvent e) { final ParticleEmitter emitter = editor.getEmitter(); emitter.setImagePaths(new Array<String>(new String[] {ParticleEditor.DEFAULT_PREMULT_PARTICLE})); emitter.getSprites().clear(); updateImageList(emitter.getImagePaths()); } }); } { JPanel modesPanel = new JPanel(new GridLayout(4, 1)); contentPanel.add(modesPanel, new GridBagConstraints(1, 0, 1, 1, 1, 0, GridBagConstraints.NORTHWEST, GridBagConstraints.NONE, new Insets(0, 0, 0, 0), 0, 0)); JLabel label = new JLabel("Sprite mode:"); modesPanel.add(label); ButtonGroup checkboxGroup = new ButtonGroup(); JRadioButton singleCheckbox = new JRadioButton("Single", editor.getEmitter().getSpriteMode() == SpriteMode.single); modesPanel.add(singleCheckbox); checkboxGroup.add(singleCheckbox); singleCheckbox.addItemListener(new ItemListener() { @Override public void itemStateChanged (ItemEvent e) { if (e.getStateChange() == ItemEvent.SELECTED) { editor.getEmitter().setSpriteMode(SpriteMode.single); } } }); JRadioButton randomCheckbox = new JRadioButton("Random", editor.getEmitter().getSpriteMode() == SpriteMode.random); modesPanel.add(randomCheckbox); checkboxGroup.add(randomCheckbox); randomCheckbox.addItemListener(new ItemListener() { @Override public void itemStateChanged (ItemEvent e) { if (e.getStateChange() == ItemEvent.SELECTED) { editor.getEmitter().setSpriteMode(SpriteMode.random); } } }); JRadioButton animatedCheckbox = new JRadioButton("Animated", editor.getEmitter().getSpriteMode() == SpriteMode.animated); modesPanel.add(animatedCheckbox); checkboxGroup.add(animatedCheckbox); animatedCheckbox.addItemListener(new ItemListener() { @Override public void itemStateChanged (ItemEvent e) { if (e.getStateChange() == ItemEvent.SELECTED) { editor.getEmitter().setSpriteMode(SpriteMode.animated); } } }); } { imagesPanel = new JPanel(new GridBagLayout()); contentPanel.add(imagesPanel, new GridBagConstraints(2, 0, 1, 1, 1, 0, GridBagConstraints.NORTHWEST, GridBagConstraints.NONE, new Insets(0, 0, 0, 0), 0, 0)); imageListModel = new DefaultListModel<String>(); imageList = new JList<String>(imageListModel); imageList.setFixedCellWidth(250); imageList.setSelectionMode(ListSelectionModel.SINGLE_SELECTION); imagesPanel.add(imageList, new GridBagConstraints(0, 0, 1, 3, 0, 0, GridBagConstraints.NORTHWEST, GridBagConstraints.NONE, new Insets(0, 0, 0, 0), 0, 0)); JButton upButton = new JButton("\u2191"); imagesPanel.add(upButton, new GridBagConstraints(1, 0, 1, 1, 0, 0, GridBagConstraints.NORTHWEST, GridBagConstraints.NONE, new Insets(0, 0, 0, 0), 0, 0)); upButton.addActionListener(new ActionListener() { @Override public void actionPerformed (ActionEvent e) { int index = imageList.getSelectedIndex(); if (index <= 0) return; final ParticleEmitter emitter = editor.getEmitter(); String imagePath = emitter.getImagePaths().removeIndex(index); emitter.getImagePaths().insert(index - 1, imagePath); emitter.getSprites().clear(); updateImageList(emitter.getImagePaths()); imageList.setSelectedIndex(index - 1); } }); JButton downButton = new JButton("\u2193"); imagesPanel.add(downButton, new GridBagConstraints(1, 1, 1, 1, 0, 0, GridBagConstraints.NORTHWEST, GridBagConstraints.NONE, new Insets(0, 0, 0, 0), 0, 0)); downButton.addActionListener(new ActionListener() { @Override public void actionPerformed (ActionEvent e) { int index = imageList.getSelectedIndex(); if (index < 0 || index >= imageList.getModel().getSize() - 1) return; final ParticleEmitter emitter = editor.getEmitter(); String imagePath = emitter.getImagePaths().removeIndex(index); emitter.getImagePaths().insert(index + 1, imagePath); emitter.getSprites().clear(); updateImageList(emitter.getImagePaths()); imageList.setSelectedIndex(index + 1); } }); JButton removeButton = new JButton("X"); imagesPanel.add(removeButton, new GridBagConstraints(1, 2, 1, 1, 0, 0, GridBagConstraints.NORTHWEST, GridBagConstraints.NONE, new Insets(0, 0, 0, 0), 0, 0)); removeButton.addActionListener(new ActionListener() { @Override public void actionPerformed (ActionEvent e) { int index = imageList.getSelectedIndex(); if (index < 0) return; final ParticleEmitter emitter = editor.getEmitter(); Array<String> imagePaths = emitter.getImagePaths(); imagePaths.removeIndex(index); if (imagePaths.size == 0) imagePaths.add(ParticleEditor.DEFAULT_PARTICLE); emitter.getSprites().clear(); updateImageList(imagePaths); } }); } updateImageList(editor.getEmitter().getImagePaths()); } public void updateImageList (Array<String> imagePaths) { if (imagePaths != null && imagePaths.size > 0) { imagesPanel.setVisible(true); imageListModel.removeAllElements(); for (String imagePath : imagePaths) { imageListModel.addElement(new File(imagePath).getName()); } } else { imagesPanel.setVisible(false); } revalidate(); } }
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.tools.particleeditor; import java.awt.FileDialog; import java.awt.GridBagConstraints; import java.awt.GridBagLayout; import java.awt.GridLayout; import java.awt.Insets; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.awt.event.ItemEvent; import java.awt.event.ItemListener; import java.io.File; import javax.swing.ButtonGroup; import javax.swing.DefaultListModel; import javax.swing.JButton; import javax.swing.JLabel; import javax.swing.JList; import javax.swing.JPanel; import javax.swing.JRadioButton; import javax.swing.ListSelectionModel; import com.badlogic.gdx.graphics.g2d.ParticleEmitter; import com.badlogic.gdx.graphics.g2d.ParticleEmitter.SpriteMode; import com.badlogic.gdx.utils.Array; class ImagePanel extends EditorPanel { JPanel imagesPanel; JList imageList; DefaultListModel<String> imageListModel; String lastDir; public ImagePanel (final ParticleEditor editor, String name, String description) { super(null, name, description); JPanel contentPanel = getContentPanel(); { JPanel buttonsPanel = new JPanel(new GridLayout(3, 1)); contentPanel.add(buttonsPanel, new GridBagConstraints(0, 0, 1, 1, 1, 0, GridBagConstraints.NORTHWEST, GridBagConstraints.NONE, new Insets(0, 0, 0, 0), 0, 0)); JButton addButton = new JButton("Add"); buttonsPanel.add(addButton); addButton.addActionListener(new ActionListener() { public void actionPerformed (ActionEvent event) { FileDialog dialog = new FileDialog(editor, "Open Image", FileDialog.LOAD); if (lastDir != null) dialog.setDirectory(lastDir); dialog.setMultipleMode(true); dialog.setVisible(true); final File[] files = dialog.getFiles(); final String dir = dialog.getDirectory(); if (dir == null || files == null) return; lastDir = dir; final ParticleEmitter emitter = editor.getEmitter(); for (File file : files) { emitter.getImagePaths().add(file.getAbsolutePath()); } emitter.getSprites().clear(); updateImageList(emitter.getImagePaths()); } }); JButton defaultButton = new JButton("Default"); buttonsPanel.add(defaultButton); defaultButton.addActionListener(new ActionListener() { @Override public void actionPerformed (ActionEvent e) { final ParticleEmitter emitter = editor.getEmitter(); emitter.setImagePaths(new Array<String>(new String[] {ParticleEditor.DEFAULT_PARTICLE})); emitter.getSprites().clear(); updateImageList(emitter.getImagePaths()); } }); JButton defaultPremultButton = new JButton("Default (Premultiplied Alpha)"); buttonsPanel.add(defaultPremultButton); defaultPremultButton.addActionListener(new ActionListener() { @Override public void actionPerformed (ActionEvent e) { final ParticleEmitter emitter = editor.getEmitter(); emitter.setImagePaths(new Array<String>(new String[] {ParticleEditor.DEFAULT_PREMULT_PARTICLE})); emitter.getSprites().clear(); updateImageList(emitter.getImagePaths()); } }); } { JPanel modesPanel = new JPanel(new GridLayout(4, 1)); contentPanel.add(modesPanel, new GridBagConstraints(1, 0, 1, 1, 1, 0, GridBagConstraints.NORTHWEST, GridBagConstraints.NONE, new Insets(0, 0, 0, 0), 0, 0)); JLabel label = new JLabel("Sprite mode:"); modesPanel.add(label); ButtonGroup checkboxGroup = new ButtonGroup(); JRadioButton singleCheckbox = new JRadioButton("Single", editor.getEmitter().getSpriteMode() == SpriteMode.single); modesPanel.add(singleCheckbox); checkboxGroup.add(singleCheckbox); singleCheckbox.addItemListener(new ItemListener() { @Override public void itemStateChanged (ItemEvent e) { if (e.getStateChange() == ItemEvent.SELECTED) { editor.getEmitter().setSpriteMode(SpriteMode.single); } } }); JRadioButton randomCheckbox = new JRadioButton("Random", editor.getEmitter().getSpriteMode() == SpriteMode.random); modesPanel.add(randomCheckbox); checkboxGroup.add(randomCheckbox); randomCheckbox.addItemListener(new ItemListener() { @Override public void itemStateChanged (ItemEvent e) { if (e.getStateChange() == ItemEvent.SELECTED) { editor.getEmitter().setSpriteMode(SpriteMode.random); } } }); JRadioButton animatedCheckbox = new JRadioButton("Animated", editor.getEmitter().getSpriteMode() == SpriteMode.animated); modesPanel.add(animatedCheckbox); checkboxGroup.add(animatedCheckbox); animatedCheckbox.addItemListener(new ItemListener() { @Override public void itemStateChanged (ItemEvent e) { if (e.getStateChange() == ItemEvent.SELECTED) { editor.getEmitter().setSpriteMode(SpriteMode.animated); } } }); } { imagesPanel = new JPanel(new GridBagLayout()); contentPanel.add(imagesPanel, new GridBagConstraints(2, 0, 1, 1, 1, 0, GridBagConstraints.NORTHWEST, GridBagConstraints.NONE, new Insets(0, 0, 0, 0), 0, 0)); imageListModel = new DefaultListModel<String>(); imageList = new JList<String>(imageListModel); imageList.setFixedCellWidth(250); imageList.setSelectionMode(ListSelectionModel.SINGLE_SELECTION); imagesPanel.add(imageList, new GridBagConstraints(0, 0, 1, 3, 0, 0, GridBagConstraints.NORTHWEST, GridBagConstraints.NONE, new Insets(0, 0, 0, 0), 0, 0)); JButton upButton = new JButton("\u2191"); imagesPanel.add(upButton, new GridBagConstraints(1, 0, 1, 1, 0, 0, GridBagConstraints.NORTHWEST, GridBagConstraints.NONE, new Insets(0, 0, 0, 0), 0, 0)); upButton.addActionListener(new ActionListener() { @Override public void actionPerformed (ActionEvent e) { int index = imageList.getSelectedIndex(); if (index <= 0) return; final ParticleEmitter emitter = editor.getEmitter(); String imagePath = emitter.getImagePaths().removeIndex(index); emitter.getImagePaths().insert(index - 1, imagePath); emitter.getSprites().clear(); updateImageList(emitter.getImagePaths()); imageList.setSelectedIndex(index - 1); } }); JButton downButton = new JButton("\u2193"); imagesPanel.add(downButton, new GridBagConstraints(1, 1, 1, 1, 0, 0, GridBagConstraints.NORTHWEST, GridBagConstraints.NONE, new Insets(0, 0, 0, 0), 0, 0)); downButton.addActionListener(new ActionListener() { @Override public void actionPerformed (ActionEvent e) { int index = imageList.getSelectedIndex(); if (index < 0 || index >= imageList.getModel().getSize() - 1) return; final ParticleEmitter emitter = editor.getEmitter(); String imagePath = emitter.getImagePaths().removeIndex(index); emitter.getImagePaths().insert(index + 1, imagePath); emitter.getSprites().clear(); updateImageList(emitter.getImagePaths()); imageList.setSelectedIndex(index + 1); } }); JButton removeButton = new JButton("X"); imagesPanel.add(removeButton, new GridBagConstraints(1, 2, 1, 1, 0, 0, GridBagConstraints.NORTHWEST, GridBagConstraints.NONE, new Insets(0, 0, 0, 0), 0, 0)); removeButton.addActionListener(new ActionListener() { @Override public void actionPerformed (ActionEvent e) { int index = imageList.getSelectedIndex(); if (index < 0) return; final ParticleEmitter emitter = editor.getEmitter(); Array<String> imagePaths = emitter.getImagePaths(); imagePaths.removeIndex(index); if (imagePaths.size == 0) imagePaths.add(ParticleEditor.DEFAULT_PARTICLE); emitter.getSprites().clear(); updateImageList(imagePaths); } }); } updateImageList(editor.getEmitter().getImagePaths()); } public void updateImageList (Array<String> imagePaths) { if (imagePaths != null && imagePaths.size > 0) { imagesPanel.setVisible(true); imageListModel.removeAllElements(); for (String imagePath : imagePaths) { imageListModel.addElement(new File(imagePath).getName()); } } else { imagesPanel.setVisible(false); } revalidate(); } }
-1
libgdx/libgdx
7,305
Adds status detection for an httpRequest
This commit adds the public boolean isHttpRequestPending (HttpRequest httpRequest) method to Gdx.net user interface. It allows end users to detect if an httpRequest is pending or already finished. It helpfull for creating advanced business logic.
supermaximus80
"2023-12-22T21:58:24Z"
"2023-12-27T14:37:55Z"
60f074309093046d7fd9dd3c895bba398b415797
2b691f735f4b167c062f8f68186a6d7237d3d855
Adds status detection for an httpRequest. This commit adds the public boolean isHttpRequestPending (HttpRequest httpRequest) method to Gdx.net user interface. It allows end users to detect if an httpRequest is pending or already finished. It helpfull for creating advanced business logic.
./gdx/src/com/badlogic/gdx/graphics/g3d/model/Animation.java
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.graphics.g3d.model; import com.badlogic.gdx.graphics.g3d.Model; import com.badlogic.gdx.utils.Array; /** An Animation has an id and a list of {@link NodeAnimation} instances. Each NodeAnimation animates a single {@link Node} in the * {@link Model}. Every {@link NodeAnimation} is assumed to have the same amount of keyframes, at the same timestamps, as all * other node animations for faster keyframe searches. * * @author badlogic */ public class Animation { /** the unique id of the animation **/ public String id; /** the duration in seconds **/ public float duration; /** the animation curves for individual nodes **/ public Array<NodeAnimation> nodeAnimations = new Array<NodeAnimation>(); }
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.graphics.g3d.model; import com.badlogic.gdx.graphics.g3d.Model; import com.badlogic.gdx.utils.Array; /** An Animation has an id and a list of {@link NodeAnimation} instances. Each NodeAnimation animates a single {@link Node} in the * {@link Model}. Every {@link NodeAnimation} is assumed to have the same amount of keyframes, at the same timestamps, as all * other node animations for faster keyframe searches. * * @author badlogic */ public class Animation { /** the unique id of the animation **/ public String id; /** the duration in seconds **/ public float duration; /** the animation curves for individual nodes **/ public Array<NodeAnimation> nodeAnimations = new Array<NodeAnimation>(); }
-1
libgdx/libgdx
7,305
Adds status detection for an httpRequest
This commit adds the public boolean isHttpRequestPending (HttpRequest httpRequest) method to Gdx.net user interface. It allows end users to detect if an httpRequest is pending or already finished. It helpfull for creating advanced business logic.
supermaximus80
"2023-12-22T21:58:24Z"
"2023-12-27T14:37:55Z"
60f074309093046d7fd9dd3c895bba398b415797
2b691f735f4b167c062f8f68186a6d7237d3d855
Adds status detection for an httpRequest. This commit adds the public boolean isHttpRequestPending (HttpRequest httpRequest) method to Gdx.net user interface. It allows end users to detect if an httpRequest is pending or already finished. It helpfull for creating advanced business logic.
./backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/java/nio/HeapByteBuffer.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package java.nio; import com.google.gwt.corp.compatibility.Endianness; import com.google.gwt.corp.compatibility.Numbers; /** HeapByteBuffer, ReadWriteHeapByteBuffer and ReadOnlyHeapByteBuffer compose the implementation of array based byte buffers. * <p> * HeapByteBuffer implements all the shared readonly methods and is extended by the other two classes. * </p> * <p> * All methods are marked final for runtime performance. * </p> */ abstract class HeapByteBuffer extends BaseByteBuffer { protected final byte[] backingArray; protected final int offset; HeapByteBuffer (byte[] backingArray) { this(backingArray, backingArray.length, 0); } HeapByteBuffer (int capacity) { this(new byte[capacity], capacity, 0); } HeapByteBuffer (byte[] backingArray, int capacity, int offset) { super(capacity); this.backingArray = backingArray; this.offset = offset; if (offset + capacity > backingArray.length) { throw new IndexOutOfBoundsException(); } } /* * Override ByteBuffer.get(byte[], int, int) to improve performance. * * (non-Javadoc) * * @see java.nio.ByteBuffer#get(byte[], int, int) */ public final ByteBuffer get (byte[] dest, int off, int len) { int length = dest.length; if (off < 0 || len < 0 || (long)off + (long)len > length) { throw new IndexOutOfBoundsException(); } if (len > remaining()) { throw new BufferUnderflowException(); } System.arraycopy(backingArray, offset + position, dest, off, len); position += len; return this; } public final byte get () { if (position == limit) { throw new BufferUnderflowException(); } return backingArray[offset + position++]; } public final byte get (int index) { if (index < 0 || index >= limit) { throw new IndexOutOfBoundsException(); } return backingArray[offset + index]; } public final double getDouble () { return Numbers.longBitsToDouble(getLong()); } public final double getDouble (int index) { return Numbers.longBitsToDouble(getLong(index)); } public final float getFloat () { return Numbers.intBitsToFloat(getInt()); } public final float getFloat (int index) { return Numbers.intBitsToFloat(getInt(index)); } public final int getInt () { int newPosition = position + 4; if (newPosition > limit) { throw new BufferUnderflowException(); } int result = loadInt(position); position = newPosition; return result; } public final int getInt (int index) { if (index < 0 || index + 4 > limit) { throw new IndexOutOfBoundsException(); } return loadInt(index); } public final long getLong () { int newPosition = position + 8; if (newPosition > limit) { throw new BufferUnderflowException(); } long result = loadLong(position); position = newPosition; return result; } public final long getLong (int index) { if (index < 0 || index + 8 > limit) { throw new IndexOutOfBoundsException(); } return loadLong(index); } public final short getShort () { int newPosition = position + 2; if (newPosition > limit) { throw new BufferUnderflowException(); } short result = loadShort(position); position = newPosition; return result; } public final short getShort (int index) { if (index < 0 || index + 2 > limit) { throw new IndexOutOfBoundsException(); } return loadShort(index); } public final boolean isDirect () { return false; } protected final int loadInt (int index) { int baseOffset = offset + index; int bytes = 0; if (order == Endianness.BIG_ENDIAN) { for (int i = 0; i < 4; i++) { bytes = bytes << 8; bytes = bytes | (backingArray[baseOffset + i] & 0xFF); } } else { for (int i = 3; i >= 0; i--) { bytes = bytes << 8; bytes = bytes | (backingArray[baseOffset + i] & 0xFF); } } return bytes; } protected final long loadLong (int index) { int baseOffset = offset + index; long bytes = 0; if (order == Endianness.BIG_ENDIAN) { for (int i = 0; i < 8; i++) { bytes = bytes << 8; bytes = bytes | (backingArray[baseOffset + i] & 0xFF); } } else { for (int i = 7; i >= 0; i--) { bytes = bytes << 8; bytes = bytes | (backingArray[baseOffset + i] & 0xFF); } } return bytes; } protected final short loadShort (int index) { int baseOffset = offset + index; short bytes = 0; if (order == Endianness.BIG_ENDIAN) { bytes = (short)(backingArray[baseOffset] << 8); bytes |= (backingArray[baseOffset + 1] & 0xFF); } else { bytes = (short)(backingArray[baseOffset + 1] << 8); bytes |= (backingArray[baseOffset] & 0xFF); } return bytes; } protected final void store (int index, int value) { int baseOffset = offset + index; if (order == Endianness.BIG_ENDIAN) { for (int i = 3; i >= 0; i--) { backingArray[baseOffset + i] = (byte)(value & 0xFF); value = value >> 8; } } else { for (int i = 0; i <= 3; i++) { backingArray[baseOffset + i] = (byte)(value & 0xFF); value = value >> 8; } } } protected final void store (int index, long value) { int baseOffset = offset + index; if (order == Endianness.BIG_ENDIAN) { for (int i = 7; i >= 0; i--) { backingArray[baseOffset + i] = (byte)(value & 0xFF); value = value >> 8; } } else { for (int i = 0; i <= 7; i++) { backingArray[baseOffset + i] = (byte)(value & 0xFF); value = value >> 8; } } } protected final void store (int index, short value) { int baseOffset = offset + index; if (order == Endianness.BIG_ENDIAN) { backingArray[baseOffset] = (byte)((value >> 8) & 0xFF); backingArray[baseOffset + 1] = (byte)(value & 0xFF); } else { backingArray[baseOffset + 1] = (byte)((value >> 8) & 0xFF); backingArray[baseOffset] = (byte)(value & 0xFF); } } }
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package java.nio; import com.google.gwt.corp.compatibility.Endianness; import com.google.gwt.corp.compatibility.Numbers; /** HeapByteBuffer, ReadWriteHeapByteBuffer and ReadOnlyHeapByteBuffer compose the implementation of array based byte buffers. * <p> * HeapByteBuffer implements all the shared readonly methods and is extended by the other two classes. * </p> * <p> * All methods are marked final for runtime performance. * </p> */ abstract class HeapByteBuffer extends BaseByteBuffer { protected final byte[] backingArray; protected final int offset; HeapByteBuffer (byte[] backingArray) { this(backingArray, backingArray.length, 0); } HeapByteBuffer (int capacity) { this(new byte[capacity], capacity, 0); } HeapByteBuffer (byte[] backingArray, int capacity, int offset) { super(capacity); this.backingArray = backingArray; this.offset = offset; if (offset + capacity > backingArray.length) { throw new IndexOutOfBoundsException(); } } /* * Override ByteBuffer.get(byte[], int, int) to improve performance. * * (non-Javadoc) * * @see java.nio.ByteBuffer#get(byte[], int, int) */ public final ByteBuffer get (byte[] dest, int off, int len) { int length = dest.length; if (off < 0 || len < 0 || (long)off + (long)len > length) { throw new IndexOutOfBoundsException(); } if (len > remaining()) { throw new BufferUnderflowException(); } System.arraycopy(backingArray, offset + position, dest, off, len); position += len; return this; } public final byte get () { if (position == limit) { throw new BufferUnderflowException(); } return backingArray[offset + position++]; } public final byte get (int index) { if (index < 0 || index >= limit) { throw new IndexOutOfBoundsException(); } return backingArray[offset + index]; } public final double getDouble () { return Numbers.longBitsToDouble(getLong()); } public final double getDouble (int index) { return Numbers.longBitsToDouble(getLong(index)); } public final float getFloat () { return Numbers.intBitsToFloat(getInt()); } public final float getFloat (int index) { return Numbers.intBitsToFloat(getInt(index)); } public final int getInt () { int newPosition = position + 4; if (newPosition > limit) { throw new BufferUnderflowException(); } int result = loadInt(position); position = newPosition; return result; } public final int getInt (int index) { if (index < 0 || index + 4 > limit) { throw new IndexOutOfBoundsException(); } return loadInt(index); } public final long getLong () { int newPosition = position + 8; if (newPosition > limit) { throw new BufferUnderflowException(); } long result = loadLong(position); position = newPosition; return result; } public final long getLong (int index) { if (index < 0 || index + 8 > limit) { throw new IndexOutOfBoundsException(); } return loadLong(index); } public final short getShort () { int newPosition = position + 2; if (newPosition > limit) { throw new BufferUnderflowException(); } short result = loadShort(position); position = newPosition; return result; } public final short getShort (int index) { if (index < 0 || index + 2 > limit) { throw new IndexOutOfBoundsException(); } return loadShort(index); } public final boolean isDirect () { return false; } protected final int loadInt (int index) { int baseOffset = offset + index; int bytes = 0; if (order == Endianness.BIG_ENDIAN) { for (int i = 0; i < 4; i++) { bytes = bytes << 8; bytes = bytes | (backingArray[baseOffset + i] & 0xFF); } } else { for (int i = 3; i >= 0; i--) { bytes = bytes << 8; bytes = bytes | (backingArray[baseOffset + i] & 0xFF); } } return bytes; } protected final long loadLong (int index) { int baseOffset = offset + index; long bytes = 0; if (order == Endianness.BIG_ENDIAN) { for (int i = 0; i < 8; i++) { bytes = bytes << 8; bytes = bytes | (backingArray[baseOffset + i] & 0xFF); } } else { for (int i = 7; i >= 0; i--) { bytes = bytes << 8; bytes = bytes | (backingArray[baseOffset + i] & 0xFF); } } return bytes; } protected final short loadShort (int index) { int baseOffset = offset + index; short bytes = 0; if (order == Endianness.BIG_ENDIAN) { bytes = (short)(backingArray[baseOffset] << 8); bytes |= (backingArray[baseOffset + 1] & 0xFF); } else { bytes = (short)(backingArray[baseOffset + 1] << 8); bytes |= (backingArray[baseOffset] & 0xFF); } return bytes; } protected final void store (int index, int value) { int baseOffset = offset + index; if (order == Endianness.BIG_ENDIAN) { for (int i = 3; i >= 0; i--) { backingArray[baseOffset + i] = (byte)(value & 0xFF); value = value >> 8; } } else { for (int i = 0; i <= 3; i++) { backingArray[baseOffset + i] = (byte)(value & 0xFF); value = value >> 8; } } } protected final void store (int index, long value) { int baseOffset = offset + index; if (order == Endianness.BIG_ENDIAN) { for (int i = 7; i >= 0; i--) { backingArray[baseOffset + i] = (byte)(value & 0xFF); value = value >> 8; } } else { for (int i = 0; i <= 7; i++) { backingArray[baseOffset + i] = (byte)(value & 0xFF); value = value >> 8; } } } protected final void store (int index, short value) { int baseOffset = offset + index; if (order == Endianness.BIG_ENDIAN) { backingArray[baseOffset] = (byte)((value >> 8) & 0xFF); backingArray[baseOffset + 1] = (byte)(value & 0xFF); } else { backingArray[baseOffset + 1] = (byte)((value >> 8) & 0xFF); backingArray[baseOffset] = (byte)(value & 0xFF); } } }
-1
libgdx/libgdx
7,305
Adds status detection for an httpRequest
This commit adds the public boolean isHttpRequestPending (HttpRequest httpRequest) method to Gdx.net user interface. It allows end users to detect if an httpRequest is pending or already finished. It helpfull for creating advanced business logic.
supermaximus80
"2023-12-22T21:58:24Z"
"2023-12-27T14:37:55Z"
60f074309093046d7fd9dd3c895bba398b415797
2b691f735f4b167c062f8f68186a6d7237d3d855
Adds status detection for an httpRequest. This commit adds the public boolean isHttpRequestPending (HttpRequest httpRequest) method to Gdx.net user interface. It allows end users to detect if an httpRequest is pending or already finished. It helpfull for creating advanced business logic.
./extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/com/badlogic/gdx/physics/box2d/joints/FrictionJoint.java
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.physics.box2d.joints; import org.jbox2d.common.Vec2; import com.badlogic.gdx.math.Vector2; import com.badlogic.gdx.physics.box2d.Joint; import com.badlogic.gdx.physics.box2d.World; /** Friction joint. This is used for top-down friction. It provides 2D translational friction and angular friction. */ public class FrictionJoint extends Joint { org.jbox2d.dynamics.joints.FrictionJoint joint; Vector2 localAnchorA = new Vector2(); Vector2 localAnchorB = new Vector2(); public FrictionJoint (World world, org.jbox2d.dynamics.joints.FrictionJoint joint) { super(world, joint); this.joint = joint; } public Vector2 getLocalAnchorA () { Vec2 localAnchor = joint.getLocalAnchorA(); localAnchorA.set(localAnchor.x, localAnchor.y); return localAnchorA; } public Vector2 getLocalAnchorB () { Vec2 localAnchor = joint.getLocalAnchorB(); localAnchorB.set(localAnchor.x, localAnchor.y); return localAnchorB; } /** Set the maximum friction force in N. */ public void setMaxForce (float force) { joint.setMaxForce(force); } /** Get the maximum friction force in N. */ public float getMaxForce () { return joint.getMaxForce(); } /** Set the maximum friction torque in N*m. */ public void setMaxTorque (float torque) { joint.setMaxTorque(torque); } /** Get the maximum friction torque in N*m. */ public float getMaxTorque () { return joint.getMaxTorque(); } }
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.physics.box2d.joints; import org.jbox2d.common.Vec2; import com.badlogic.gdx.math.Vector2; import com.badlogic.gdx.physics.box2d.Joint; import com.badlogic.gdx.physics.box2d.World; /** Friction joint. This is used for top-down friction. It provides 2D translational friction and angular friction. */ public class FrictionJoint extends Joint { org.jbox2d.dynamics.joints.FrictionJoint joint; Vector2 localAnchorA = new Vector2(); Vector2 localAnchorB = new Vector2(); public FrictionJoint (World world, org.jbox2d.dynamics.joints.FrictionJoint joint) { super(world, joint); this.joint = joint; } public Vector2 getLocalAnchorA () { Vec2 localAnchor = joint.getLocalAnchorA(); localAnchorA.set(localAnchor.x, localAnchor.y); return localAnchorA; } public Vector2 getLocalAnchorB () { Vec2 localAnchor = joint.getLocalAnchorB(); localAnchorB.set(localAnchor.x, localAnchor.y); return localAnchorB; } /** Set the maximum friction force in N. */ public void setMaxForce (float force) { joint.setMaxForce(force); } /** Get the maximum friction force in N. */ public float getMaxForce () { return joint.getMaxForce(); } /** Set the maximum friction torque in N*m. */ public void setMaxTorque (float torque) { joint.setMaxTorque(torque); } /** Get the maximum friction torque in N*m. */ public float getMaxTorque () { return joint.getMaxTorque(); } }
-1
libgdx/libgdx
7,305
Adds status detection for an httpRequest
This commit adds the public boolean isHttpRequestPending (HttpRequest httpRequest) method to Gdx.net user interface. It allows end users to detect if an httpRequest is pending or already finished. It helpfull for creating advanced business logic.
supermaximus80
"2023-12-22T21:58:24Z"
"2023-12-27T14:37:55Z"
60f074309093046d7fd9dd3c895bba398b415797
2b691f735f4b167c062f8f68186a6d7237d3d855
Adds status detection for an httpRequest. This commit adds the public boolean isHttpRequestPending (HttpRequest httpRequest) method to Gdx.net user interface. It allows end users to detect if an httpRequest is pending or already finished. It helpfull for creating advanced business logic.
./tests/gdx-tests/src/com/badlogic/gdx/tests/bullet/BasicShapesTest.java
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.tests.bullet; import com.badlogic.gdx.Gdx; import com.badlogic.gdx.graphics.Texture; import com.badlogic.gdx.graphics.VertexAttributes.Usage; import com.badlogic.gdx.graphics.g3d.Material; import com.badlogic.gdx.graphics.g3d.Model; import com.badlogic.gdx.graphics.g3d.attributes.ColorAttribute; import com.badlogic.gdx.graphics.g3d.attributes.FloatAttribute; import com.badlogic.gdx.graphics.g3d.attributes.TextureAttribute; import com.badlogic.gdx.physics.bullet.collision.btBoxShape; import com.badlogic.gdx.physics.bullet.collision.btCapsuleShape; import com.badlogic.gdx.physics.bullet.collision.btConeShape; import com.badlogic.gdx.physics.bullet.collision.btCylinderShape; import com.badlogic.gdx.physics.bullet.collision.btSphereShape; public class BasicShapesTest extends BaseBulletTest { @Override public void create () { super.create(); final Texture texture = new Texture(Gdx.files.internal("data/badlogic.jpg")); disposables.add(texture); final Material material = new Material(TextureAttribute.createDiffuse(texture), ColorAttribute.createSpecular(1, 1, 1, 1), FloatAttribute.createShininess(8f)); final long attributes = Usage.Position | Usage.Normal | Usage.TextureCoordinates; final Model sphere = modelBuilder.createSphere(4f, 4f, 4f, 24, 24, material, attributes); disposables.add(sphere); world.addConstructor("sphere", new BulletConstructor(sphere, 10f, new btSphereShape(2f))); final Model cylinder = modelBuilder.createCylinder(4f, 6f, 4f, 16, material, attributes); disposables.add(cylinder); world.addConstructor("cylinder", new BulletConstructor(cylinder, 10f, new btCylinderShape(tmpV1.set(2f, 3f, 2f)))); final Model capsule = modelBuilder.createCapsule(2f, 6f, 16, material, attributes); disposables.add(capsule); world.addConstructor("capsule", new BulletConstructor(capsule, 10f, new btCapsuleShape(2f, 2f))); final Model box = modelBuilder.createBox(4f, 4f, 2f, material, attributes); disposables.add(box); world.addConstructor("box2", new BulletConstructor(box, 10f, new btBoxShape(tmpV1.set(2f, 2f, 1f)))); final Model cone = modelBuilder.createCone(4f, 6f, 4f, 16, material, attributes); disposables.add(cone); world.addConstructor("cone", new BulletConstructor(cone, 10f, new btConeShape(2f, 6f))); // Create the entities world.add("ground", 0f, 0f, 0f).setColor(0.25f + 0.5f * (float)Math.random(), 0.25f + 0.5f * (float)Math.random(), 0.25f + 0.5f * (float)Math.random(), 1f); world.add("sphere", 0, 5, 5); world.add("cylinder", 5, 5, 0); world.add("box2", 0, 5, 0); world.add("capsule", 5, 5, 5); world.add("cone", 10, 5, 0); } @Override public boolean tap (float x, float y, int count, int button) { shoot(x, y); return true; } }
/******************************************************************************* * Copyright 2011 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.tests.bullet; import com.badlogic.gdx.Gdx; import com.badlogic.gdx.graphics.Texture; import com.badlogic.gdx.graphics.VertexAttributes.Usage; import com.badlogic.gdx.graphics.g3d.Material; import com.badlogic.gdx.graphics.g3d.Model; import com.badlogic.gdx.graphics.g3d.attributes.ColorAttribute; import com.badlogic.gdx.graphics.g3d.attributes.FloatAttribute; import com.badlogic.gdx.graphics.g3d.attributes.TextureAttribute; import com.badlogic.gdx.physics.bullet.collision.btBoxShape; import com.badlogic.gdx.physics.bullet.collision.btCapsuleShape; import com.badlogic.gdx.physics.bullet.collision.btConeShape; import com.badlogic.gdx.physics.bullet.collision.btCylinderShape; import com.badlogic.gdx.physics.bullet.collision.btSphereShape; public class BasicShapesTest extends BaseBulletTest { @Override public void create () { super.create(); final Texture texture = new Texture(Gdx.files.internal("data/badlogic.jpg")); disposables.add(texture); final Material material = new Material(TextureAttribute.createDiffuse(texture), ColorAttribute.createSpecular(1, 1, 1, 1), FloatAttribute.createShininess(8f)); final long attributes = Usage.Position | Usage.Normal | Usage.TextureCoordinates; final Model sphere = modelBuilder.createSphere(4f, 4f, 4f, 24, 24, material, attributes); disposables.add(sphere); world.addConstructor("sphere", new BulletConstructor(sphere, 10f, new btSphereShape(2f))); final Model cylinder = modelBuilder.createCylinder(4f, 6f, 4f, 16, material, attributes); disposables.add(cylinder); world.addConstructor("cylinder", new BulletConstructor(cylinder, 10f, new btCylinderShape(tmpV1.set(2f, 3f, 2f)))); final Model capsule = modelBuilder.createCapsule(2f, 6f, 16, material, attributes); disposables.add(capsule); world.addConstructor("capsule", new BulletConstructor(capsule, 10f, new btCapsuleShape(2f, 2f))); final Model box = modelBuilder.createBox(4f, 4f, 2f, material, attributes); disposables.add(box); world.addConstructor("box2", new BulletConstructor(box, 10f, new btBoxShape(tmpV1.set(2f, 2f, 1f)))); final Model cone = modelBuilder.createCone(4f, 6f, 4f, 16, material, attributes); disposables.add(cone); world.addConstructor("cone", new BulletConstructor(cone, 10f, new btConeShape(2f, 6f))); // Create the entities world.add("ground", 0f, 0f, 0f).setColor(0.25f + 0.5f * (float)Math.random(), 0.25f + 0.5f * (float)Math.random(), 0.25f + 0.5f * (float)Math.random(), 1f); world.add("sphere", 0, 5, 5); world.add("cylinder", 5, 5, 0); world.add("box2", 0, 5, 0); world.add("capsule", 5, 5, 5); world.add("cone", 10, 5, 0); } @Override public boolean tap (float x, float y, int count, int button) { shoot(x, y); return true; } }
-1
libgdx/libgdx
7,305
Adds status detection for an httpRequest
This commit adds the public boolean isHttpRequestPending (HttpRequest httpRequest) method to Gdx.net user interface. It allows end users to detect if an httpRequest is pending or already finished. It helpfull for creating advanced business logic.
supermaximus80
"2023-12-22T21:58:24Z"
"2023-12-27T14:37:55Z"
60f074309093046d7fd9dd3c895bba398b415797
2b691f735f4b167c062f8f68186a6d7237d3d855
Adds status detection for an httpRequest. This commit adds the public boolean isHttpRequestPending (HttpRequest httpRequest) method to Gdx.net user interface. It allows end users to detect if an httpRequest is pending or already finished. It helpfull for creating advanced business logic.
./extensions/gdx-bullet/jni/swig-src/collision/com/badlogic/gdx/physics/bullet/collision/SWIGTYPE_p_btAlignedObjectArrayT_int_t.java
/* ---------------------------------------------------------------------------- * This file was automatically generated by SWIG (http://www.swig.org). * Version 3.0.11 * * Do not make changes to this file unless you know what you are doing--modify * the SWIG interface file instead. * ----------------------------------------------------------------------------- */ package com.badlogic.gdx.physics.bullet.collision; public class SWIGTYPE_p_btAlignedObjectArrayT_int_t { private transient long swigCPtr; protected SWIGTYPE_p_btAlignedObjectArrayT_int_t (long cPtr, @SuppressWarnings("unused") boolean futureUse) { swigCPtr = cPtr; } protected SWIGTYPE_p_btAlignedObjectArrayT_int_t () { swigCPtr = 0; } protected static long getCPtr (SWIGTYPE_p_btAlignedObjectArrayT_int_t obj) { return (obj == null) ? 0 : obj.swigCPtr; } }
/* ---------------------------------------------------------------------------- * This file was automatically generated by SWIG (http://www.swig.org). * Version 3.0.11 * * Do not make changes to this file unless you know what you are doing--modify * the SWIG interface file instead. * ----------------------------------------------------------------------------- */ package com.badlogic.gdx.physics.bullet.collision; public class SWIGTYPE_p_btAlignedObjectArrayT_int_t { private transient long swigCPtr; protected SWIGTYPE_p_btAlignedObjectArrayT_int_t (long cPtr, @SuppressWarnings("unused") boolean futureUse) { swigCPtr = cPtr; } protected SWIGTYPE_p_btAlignedObjectArrayT_int_t () { swigCPtr = 0; } protected static long getCPtr (SWIGTYPE_p_btAlignedObjectArrayT_int_t obj) { return (obj == null) ? 0 : obj.swigCPtr; } }
-1
libgdx/libgdx
7,305
Adds status detection for an httpRequest
This commit adds the public boolean isHttpRequestPending (HttpRequest httpRequest) method to Gdx.net user interface. It allows end users to detect if an httpRequest is pending or already finished. It helpfull for creating advanced business logic.
supermaximus80
"2023-12-22T21:58:24Z"
"2023-12-27T14:37:55Z"
60f074309093046d7fd9dd3c895bba398b415797
2b691f735f4b167c062f8f68186a6d7237d3d855
Adds status detection for an httpRequest. This commit adds the public boolean isHttpRequestPending (HttpRequest httpRequest) method to Gdx.net user interface. It allows end users to detect if an httpRequest is pending or already finished. It helpfull for creating advanced business logic.
./tests/gdx-tests/src/com/badlogic/gdx/tests/gles31/GL31FrameBufferMultisampleTest.java
/******************************************************************************* * Copyright 2022 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.tests.gles31; import com.badlogic.gdx.Gdx; import com.badlogic.gdx.graphics.Color; import com.badlogic.gdx.graphics.GL20; import com.badlogic.gdx.graphics.GL30; import com.badlogic.gdx.graphics.Pixmap.Format; import com.badlogic.gdx.graphics.Texture.TextureFilter; import com.badlogic.gdx.graphics.g2d.SpriteBatch; import com.badlogic.gdx.graphics.glutils.FrameBuffer; import com.badlogic.gdx.graphics.glutils.ShapeRenderer; import com.badlogic.gdx.graphics.glutils.ShapeRenderer.ShapeType; import com.badlogic.gdx.tests.utils.GdxTest; import com.badlogic.gdx.tests.utils.GdxTestConfig; import com.badlogic.gdx.utils.Disposable; import com.badlogic.gdx.utils.GdxRuntimeException; import com.badlogic.gdx.utils.ScreenUtils; @GdxTestConfig(requireGL31 = true) public class GL31FrameBufferMultisampleTest extends GdxTest { private static class FrameBufferMS implements Disposable { public int framebufferHandle; public int width, height; private int colorBufferHandle; public FrameBufferMS (Format format, int width, int height, int samples) { this.width = width; this.height = height; // create render buffer colorBufferHandle = Gdx.gl.glGenRenderbuffer(); Gdx.gl.glBindRenderbuffer(GL20.GL_RENDERBUFFER, colorBufferHandle); Gdx.gl31.glRenderbufferStorageMultisample(GL20.GL_RENDERBUFFER, samples, GL30.GL_RGBA8, width, height); // create frame buffer framebufferHandle = Gdx.gl.glGenFramebuffer(); Gdx.gl.glBindFramebuffer(GL20.GL_FRAMEBUFFER, framebufferHandle); // attach render buffer Gdx.gl.glFramebufferRenderbuffer(GL20.GL_FRAMEBUFFER, GL20.GL_COLOR_ATTACHMENT0, GL20.GL_RENDERBUFFER, colorBufferHandle); int result = Gdx.gl.glCheckFramebufferStatus(GL20.GL_FRAMEBUFFER); Gdx.gl.glBindRenderbuffer(GL20.GL_RENDERBUFFER, 0); Gdx.gl.glBindTexture(GL20.GL_TEXTURE_2D, 0); Gdx.gl.glBindFramebuffer(GL20.GL_FRAMEBUFFER, 0); if (result != GL20.GL_FRAMEBUFFER_COMPLETE) { throw new GdxRuntimeException("error"); } } @Override public void dispose () { Gdx.gl.glDeleteFramebuffer(framebufferHandle); Gdx.gl.glDeleteRenderbuffer(colorBufferHandle); } public void begin () { bind(); setFrameBufferViewport(); } protected void setFrameBufferViewport () { Gdx.gl20.glViewport(0, 0, width, height); } public void end () { end(0, 0, Gdx.graphics.getBackBufferWidth(), Gdx.graphics.getBackBufferHeight()); } public void end (int x, int y, int width, int height) { unbind(); Gdx.gl20.glViewport(x, y, width, height); } public void bind () { Gdx.gl20.glBindFramebuffer(GL20.GL_FRAMEBUFFER, framebufferHandle); } public static void unbind () { Gdx.gl20.glBindFramebuffer(GL20.GL_FRAMEBUFFER, 0); } public int getHeight () { return height; } public int getWidth () { return width; } public int getFramebufferHandle () { return framebufferHandle; } } private FrameBuffer fbo; private FrameBufferMS fboMS; private SpriteBatch batch; private ShapeRenderer shapes; @Override public void create () { fboMS = new FrameBufferMS(Format.RGBA8888, 64, 64, 4); fbo = new FrameBuffer(Format.RGBA8888, 64, 64, false); fbo.getColorBufferTexture().setFilter(TextureFilter.Nearest, TextureFilter.Nearest); batch = new SpriteBatch(); shapes = new ShapeRenderer(); } @Override public void dispose () { fboMS.dispose(); fbo.dispose(); batch.dispose(); shapes.dispose(); } @Override public void render () { batch.getProjectionMatrix().setToOrtho2D(0, 0, 2, 2); // render a line into the non multisample FBO and display it fbo.begin(); ScreenUtils.clear(Color.CLEAR); shapes.getProjectionMatrix().setToOrtho2D(0, 0, 1, 1); shapes.begin(ShapeType.Line); shapes.line(0, 0, 1, .3f); shapes.end(); fbo.end(); batch.begin(); batch.draw(fbo.getColorBufferTexture(), 0, 0, 1, 1, 0, 0, 1, 1); batch.end(); // render a line into the multisample FBO, blit to the other FBO and display it fboMS.begin(); ScreenUtils.clear(Color.CLEAR); shapes.getProjectionMatrix().setToOrtho2D(0, 0, 1, 1); shapes.begin(ShapeType.Line); shapes.line(0, 0, 1, .3f); shapes.end(); fboMS.end(); Gdx.gl.glBindFramebuffer(GL30.GL_READ_FRAMEBUFFER, fboMS.getFramebufferHandle()); Gdx.gl.glBindFramebuffer(GL30.GL_DRAW_FRAMEBUFFER, fbo.getFramebufferHandle()); Gdx.gl30.glBlitFramebuffer(0, 0, fboMS.getWidth(), fboMS.getHeight(), 0, 0, fbo.getWidth(), fbo.getHeight(), GL20.GL_COLOR_BUFFER_BIT, GL20.GL_NEAREST); Gdx.gl.glBindFramebuffer(GL30.GL_READ_FRAMEBUFFER, 0); Gdx.gl.glBindFramebuffer(GL30.GL_DRAW_FRAMEBUFFER, 0); batch.begin(); batch.draw(fbo.getColorBufferTexture(), 1, 0, 1, 1, 0, 0, 1, 1); batch.end(); } }
/******************************************************************************* * Copyright 2022 See AUTHORS file. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.badlogic.gdx.tests.gles31; import com.badlogic.gdx.Gdx; import com.badlogic.gdx.graphics.Color; import com.badlogic.gdx.graphics.GL20; import com.badlogic.gdx.graphics.GL30; import com.badlogic.gdx.graphics.Pixmap.Format; import com.badlogic.gdx.graphics.Texture.TextureFilter; import com.badlogic.gdx.graphics.g2d.SpriteBatch; import com.badlogic.gdx.graphics.glutils.FrameBuffer; import com.badlogic.gdx.graphics.glutils.ShapeRenderer; import com.badlogic.gdx.graphics.glutils.ShapeRenderer.ShapeType; import com.badlogic.gdx.tests.utils.GdxTest; import com.badlogic.gdx.tests.utils.GdxTestConfig; import com.badlogic.gdx.utils.Disposable; import com.badlogic.gdx.utils.GdxRuntimeException; import com.badlogic.gdx.utils.ScreenUtils; @GdxTestConfig(requireGL31 = true) public class GL31FrameBufferMultisampleTest extends GdxTest { private static class FrameBufferMS implements Disposable { public int framebufferHandle; public int width, height; private int colorBufferHandle; public FrameBufferMS (Format format, int width, int height, int samples) { this.width = width; this.height = height; // create render buffer colorBufferHandle = Gdx.gl.glGenRenderbuffer(); Gdx.gl.glBindRenderbuffer(GL20.GL_RENDERBUFFER, colorBufferHandle); Gdx.gl31.glRenderbufferStorageMultisample(GL20.GL_RENDERBUFFER, samples, GL30.GL_RGBA8, width, height); // create frame buffer framebufferHandle = Gdx.gl.glGenFramebuffer(); Gdx.gl.glBindFramebuffer(GL20.GL_FRAMEBUFFER, framebufferHandle); // attach render buffer Gdx.gl.glFramebufferRenderbuffer(GL20.GL_FRAMEBUFFER, GL20.GL_COLOR_ATTACHMENT0, GL20.GL_RENDERBUFFER, colorBufferHandle); int result = Gdx.gl.glCheckFramebufferStatus(GL20.GL_FRAMEBUFFER); Gdx.gl.glBindRenderbuffer(GL20.GL_RENDERBUFFER, 0); Gdx.gl.glBindTexture(GL20.GL_TEXTURE_2D, 0); Gdx.gl.glBindFramebuffer(GL20.GL_FRAMEBUFFER, 0); if (result != GL20.GL_FRAMEBUFFER_COMPLETE) { throw new GdxRuntimeException("error"); } } @Override public void dispose () { Gdx.gl.glDeleteFramebuffer(framebufferHandle); Gdx.gl.glDeleteRenderbuffer(colorBufferHandle); } public void begin () { bind(); setFrameBufferViewport(); } protected void setFrameBufferViewport () { Gdx.gl20.glViewport(0, 0, width, height); } public void end () { end(0, 0, Gdx.graphics.getBackBufferWidth(), Gdx.graphics.getBackBufferHeight()); } public void end (int x, int y, int width, int height) { unbind(); Gdx.gl20.glViewport(x, y, width, height); } public void bind () { Gdx.gl20.glBindFramebuffer(GL20.GL_FRAMEBUFFER, framebufferHandle); } public static void unbind () { Gdx.gl20.glBindFramebuffer(GL20.GL_FRAMEBUFFER, 0); } public int getHeight () { return height; } public int getWidth () { return width; } public int getFramebufferHandle () { return framebufferHandle; } } private FrameBuffer fbo; private FrameBufferMS fboMS; private SpriteBatch batch; private ShapeRenderer shapes; @Override public void create () { fboMS = new FrameBufferMS(Format.RGBA8888, 64, 64, 4); fbo = new FrameBuffer(Format.RGBA8888, 64, 64, false); fbo.getColorBufferTexture().setFilter(TextureFilter.Nearest, TextureFilter.Nearest); batch = new SpriteBatch(); shapes = new ShapeRenderer(); } @Override public void dispose () { fboMS.dispose(); fbo.dispose(); batch.dispose(); shapes.dispose(); } @Override public void render () { batch.getProjectionMatrix().setToOrtho2D(0, 0, 2, 2); // render a line into the non multisample FBO and display it fbo.begin(); ScreenUtils.clear(Color.CLEAR); shapes.getProjectionMatrix().setToOrtho2D(0, 0, 1, 1); shapes.begin(ShapeType.Line); shapes.line(0, 0, 1, .3f); shapes.end(); fbo.end(); batch.begin(); batch.draw(fbo.getColorBufferTexture(), 0, 0, 1, 1, 0, 0, 1, 1); batch.end(); // render a line into the multisample FBO, blit to the other FBO and display it fboMS.begin(); ScreenUtils.clear(Color.CLEAR); shapes.getProjectionMatrix().setToOrtho2D(0, 0, 1, 1); shapes.begin(ShapeType.Line); shapes.line(0, 0, 1, .3f); shapes.end(); fboMS.end(); Gdx.gl.glBindFramebuffer(GL30.GL_READ_FRAMEBUFFER, fboMS.getFramebufferHandle()); Gdx.gl.glBindFramebuffer(GL30.GL_DRAW_FRAMEBUFFER, fbo.getFramebufferHandle()); Gdx.gl30.glBlitFramebuffer(0, 0, fboMS.getWidth(), fboMS.getHeight(), 0, 0, fbo.getWidth(), fbo.getHeight(), GL20.GL_COLOR_BUFFER_BIT, GL20.GL_NEAREST); Gdx.gl.glBindFramebuffer(GL30.GL_READ_FRAMEBUFFER, 0); Gdx.gl.glBindFramebuffer(GL30.GL_DRAW_FRAMEBUFFER, 0); batch.begin(); batch.draw(fbo.getColorBufferTexture(), 1, 0, 1, 1, 0, 0, 1, 1); batch.end(); } }
-1