Spaces:
Running
Running
zzysteve commited on
Commit ·
5221c8c
0
Parent(s):
Initial commit
Browse filesThis view is limited to 50 files because it contains too many changes. See raw diff
- .dockerignore +8 -0
- .gitattributes +12 -0
- .gitignore +13 -0
- Dockerfile +40 -0
- LICENSE +187 -0
- NOTICE +31 -0
- README.md +76 -0
- app.py +502 -0
- config/animo_train.yml +94 -0
- config/human_train.yml +96 -0
- config/multi_dataset_train.yml +96 -0
- config/sample.yml +62 -0
- data/gradio_animo/bvh/arctic_wolf_female_fightflee.bvh +0 -0
- data/gradio_animo/bvh/arctic_wolf_female_fighttaunt.bvh +0 -0
- data/gradio_animo/bvh/dromedary_camel_male_runtostandturnl.bvh +295 -0
- data/gradio_animo/conversion_summary.json +28 -0
- data/gradio_animo/joint_text_features/arctic_wolf_female_fightflee.npz +3 -0
- data/gradio_animo/joint_text_features/arctic_wolf_female_fighttaunt.npz +3 -0
- data/gradio_animo/joint_text_features/dromedary_camel_male_runtostandturnl.npz +3 -0
- data/gradio_animo/processed/arctic_wolf_female_fightflee.npz +3 -0
- data/gradio_animo/processed/arctic_wolf_female_fighttaunt.npz +3 -0
- data/gradio_animo/processed/dromedary_camel_male_runtostandturnl.npz +3 -0
- data/gradio_human/bvh/000327.bvh +0 -0
- data/gradio_human/bvh/000419.bvh +0 -0
- data/gradio_human/bvh/000708.bvh +197 -0
- data/gradio_human/bvh/000926.bvh +0 -0
- data/gradio_human/conversion_summary.json +35 -0
- data/gradio_human/joint_text_features/000327.npz +3 -0
- data/gradio_human/joint_text_features/000419.npz +3 -0
- data/gradio_human/joint_text_features/000708.npz +3 -0
- data/gradio_human/joint_text_features/000926.npz +3 -0
- data/gradio_human/processed/000327.npz +3 -0
- data/gradio_human/processed/000419.npz +3 -0
- data/gradio_human/processed/000708.npz +3 -0
- data/gradio_human/processed/000926.npz +3 -0
- data/gradio_skel/animo/joint_text_features/dama_gazelle_male_runtostandturnl.npz +3 -0
- data/gradio_skel/animo/joint_text_features/malayan_tapir_male_standidle01.npz +3 -0
- data/gradio_skel/animo/joint_text_features/wisent_male_attackfence.npz +3 -0
- data/gradio_skel/animo/processed/dama_gazelle_male_runtostandturnl.npz +3 -0
- data/gradio_skel/animo/processed/malayan_tapir_male_standidle01.npz +3 -0
- data/gradio_skel/animo/processed/wisent_male_attackfence.npz +3 -0
- data/gradio_skel/human/joint_text_features/amy.npz +3 -0
- data/gradio_skel/human/joint_text_features/guard.npz +3 -0
- data/gradio_skel/human/joint_text_features/mousey.npz +3 -0
- data/gradio_skel/human/processed/amy.npz +3 -0
- data/gradio_skel/human/processed/guard.npz +3 -0
- data/gradio_skel/human/processed/mousey.npz +3 -0
- data/gradio_target_bvh/animo/dama_gazelle_male_runtostandturnl.bvh +329 -0
- data/gradio_target_bvh/animo/fennec_fox_male_drinktostand.bvh +308 -0
- data/gradio_target_bvh/animo/malayan_tapir_male_standidle01.bvh +0 -0
.dockerignore
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
.git/
|
| 2 |
+
__pycache__/
|
| 3 |
+
*.py[cod]
|
| 4 |
+
.ipynb_checkpoints/
|
| 5 |
+
.gradio/
|
| 6 |
+
.vscode/
|
| 7 |
+
gradio/output/
|
| 8 |
+
gradio/.gradio_tmp/
|
.gitattributes
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
*.pt filter=lfs diff=lfs merge=lfs -text
|
| 2 |
+
*.pth filter=lfs diff=lfs merge=lfs -text
|
| 3 |
+
*.tar filter=lfs diff=lfs merge=lfs -text
|
| 4 |
+
*.pkl filter=lfs diff=lfs merge=lfs -text
|
| 5 |
+
*.npz filter=lfs diff=lfs merge=lfs -text
|
| 6 |
+
*.npy filter=lfs diff=lfs merge=lfs -text
|
| 7 |
+
*.gif filter=lfs diff=lfs merge=lfs -text
|
| 8 |
+
*.png filter=lfs diff=lfs merge=lfs -text
|
| 9 |
+
*.jpg filter=lfs diff=lfs merge=lfs -text
|
| 10 |
+
*.jpeg filter=lfs diff=lfs merge=lfs -text
|
| 11 |
+
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 12 |
+
*.h5 filter=lfs diff=lfs merge=lfs -text
|
.gitignore
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
__pycache__/
|
| 2 |
+
*.py[cod]
|
| 3 |
+
*.so
|
| 4 |
+
.ipynb_checkpoints/
|
| 5 |
+
|
| 6 |
+
.gradio/
|
| 7 |
+
gradio/output/
|
| 8 |
+
gradio/.gradio_tmp/
|
| 9 |
+
.vscode/
|
| 10 |
+
.DS_Store
|
| 11 |
+
*.egg-info/
|
| 12 |
+
.gradio_tmp/
|
| 13 |
+
gradio/.gradio/
|
Dockerfile
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
FROM python:3.11-slim
|
| 2 |
+
|
| 3 |
+
ENV DEBIAN_FRONTEND=noninteractive \
|
| 4 |
+
PIP_NO_CACHE_DIR=1 \
|
| 5 |
+
PYTHONUNBUFFERED=1 \
|
| 6 |
+
PORT=7860 \
|
| 7 |
+
GRADIO_SERVER_NAME=0.0.0.0 \
|
| 8 |
+
SATA_DEVICE=cpu \
|
| 9 |
+
SATA_GEN_DEVICE=cpu
|
| 10 |
+
|
| 11 |
+
RUN apt-get update && apt-get install -y --no-install-recommends \
|
| 12 |
+
build-essential \
|
| 13 |
+
git \
|
| 14 |
+
curl \
|
| 15 |
+
ffmpeg \
|
| 16 |
+
libglib2.0-0 \
|
| 17 |
+
libgl1 \
|
| 18 |
+
libgomp1 \
|
| 19 |
+
libsm6 \
|
| 20 |
+
libx11-6 \
|
| 21 |
+
libxext6 \
|
| 22 |
+
libxrender1 \
|
| 23 |
+
libegl1 \
|
| 24 |
+
&& rm -rf /var/lib/apt/lists/*
|
| 25 |
+
|
| 26 |
+
WORKDIR /app
|
| 27 |
+
COPY . /app
|
| 28 |
+
|
| 29 |
+
RUN python -m pip install --upgrade pip setuptools wheel
|
| 30 |
+
RUN python -m pip install torch==2.5.1 torchvision==0.20.1 torchaudio==2.5.1 --index-url https://download.pytorch.org/whl/cu121
|
| 31 |
+
RUN python -m pip install torch_scatter torch_sparse torch_cluster torch_spline_conv -f https://data.pyg.org/whl/torch-2.5.1+cu121.html
|
| 32 |
+
RUN python -m pip install torch_geometric==2.7.0
|
| 33 |
+
RUN python -m pip install -r requirements-hf.txt
|
| 34 |
+
RUN python -m pip install https://github.com/openai/CLIP/archive/refs/heads/main.zip
|
| 35 |
+
RUN python -m pip install --no-build-isolation chumpy==0.70 && python scripts/patch_chumpy.py
|
| 36 |
+
RUN python -m pip install -e .
|
| 37 |
+
RUN mkdir -p /app/gradio/output /app/gradio/.gradio_tmp
|
| 38 |
+
|
| 39 |
+
EXPOSE 7860
|
| 40 |
+
CMD ["python", "app.py"]
|
LICENSE
ADDED
|
@@ -0,0 +1,187 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Apache License
|
| 2 |
+
Version 2.0, January 2004
|
| 3 |
+
http://www.apache.org/licenses/
|
| 4 |
+
|
| 5 |
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
| 6 |
+
|
| 7 |
+
1. Definitions.
|
| 8 |
+
|
| 9 |
+
"License" shall mean the terms and conditions for use, reproduction,
|
| 10 |
+
and distribution as defined by Sections 1 through 9 of this document.
|
| 11 |
+
|
| 12 |
+
"Licensor" shall mean the copyright owner or entity authorized by
|
| 13 |
+
the copyright owner that is granting the License.
|
| 14 |
+
|
| 15 |
+
"Legal Entity" shall mean the union of the acting entity and all
|
| 16 |
+
other entities that control, are controlled by, or are under common
|
| 17 |
+
control with that entity. For the purposes of this definition,
|
| 18 |
+
"control" means (i) the power, direct or indirect, to cause the
|
| 19 |
+
direction or management of such entity, whether by contract or
|
| 20 |
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
| 21 |
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
| 22 |
+
|
| 23 |
+
"You" (or "Your") shall mean an individual or Legal Entity
|
| 24 |
+
exercising permissions granted by this License.
|
| 25 |
+
|
| 26 |
+
"Source" form shall mean the preferred form for making modifications,
|
| 27 |
+
including but not limited to software source code, documentation
|
| 28 |
+
source, and configuration files.
|
| 29 |
+
|
| 30 |
+
"Object" form shall mean any form resulting from mechanical
|
| 31 |
+
transformation or translation of a Source form, including but
|
| 32 |
+
not limited to compiled object code, generated documentation,
|
| 33 |
+
and conversions to other media types.
|
| 34 |
+
|
| 35 |
+
"Work" shall mean the work of authorship, whether in Source or
|
| 36 |
+
Object form, made available under the License, as indicated by a
|
| 37 |
+
copyright notice that is included in or attached to the work
|
| 38 |
+
(an example is provided in the Appendix below).
|
| 39 |
+
|
| 40 |
+
"Derivative Works" shall mean any work, whether in Source or Object
|
| 41 |
+
form, that is based on (or derived from) the Work and for which the
|
| 42 |
+
editorial revisions, annotations, elaborations, or other modifications
|
| 43 |
+
represent, as a whole, an original work of authorship. For the purposes
|
| 44 |
+
of this License, Derivative Works shall not include works that remain
|
| 45 |
+
separable from, or merely link (or bind by name) to the interfaces of,
|
| 46 |
+
the Work and Derivative Works thereof.
|
| 47 |
+
|
| 48 |
+
"Contribution" shall mean any work of authorship, including
|
| 49 |
+
the original version of the Work and any modifications or additions
|
| 50 |
+
to that Work or Derivative Works thereof, that is intentionally
|
| 51 |
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
| 52 |
+
or by an individual or Legal Entity authorized to submit on behalf of
|
| 53 |
+
the copyright owner. For the purposes of this definition, "submitted"
|
| 54 |
+
means any form of electronic, verbal, or written communication sent
|
| 55 |
+
to the Licensor or its representatives, including but not limited to
|
| 56 |
+
communication on electronic mailing lists, source code control systems,
|
| 57 |
+
and issue tracking systems that are managed by, or on behalf of, the
|
| 58 |
+
Licensor for the purpose of discussing and improving the Work, but
|
| 59 |
+
excluding communication that is conspicuously marked or otherwise
|
| 60 |
+
designated in writing by the copyright owner as "Not a Contribution."
|
| 61 |
+
|
| 62 |
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
| 63 |
+
on behalf of whom a Contribution has been received by Licensor and
|
| 64 |
+
subsequently incorporated within the Work.
|
| 65 |
+
|
| 66 |
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
| 67 |
+
this License, each Contributor hereby grants to You a perpetual,
|
| 68 |
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
| 69 |
+
copyright license to reproduce, prepare Derivative Works of,
|
| 70 |
+
publicly display, publicly perform, sublicense, and distribute the
|
| 71 |
+
Work and such Derivative Works in Source or Object form.
|
| 72 |
+
|
| 73 |
+
3. Grant of Patent License. Subject to the terms and conditions of
|
| 74 |
+
this License, each Contributor hereby grants to You a perpetual,
|
| 75 |
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
| 76 |
+
(except as stated in this section) patent license to make, have made,
|
| 77 |
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
| 78 |
+
where such license applies only to those patent claims licensable
|
| 79 |
+
by such Contributor that are necessarily infringed by their
|
| 80 |
+
Contribution(s) alone or by combination of their Contribution(s)
|
| 81 |
+
with the Work to which such Contribution(s) was submitted. If You
|
| 82 |
+
institute patent litigation against any entity (including a
|
| 83 |
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
| 84 |
+
or a Contribution incorporated within the Work constitutes direct
|
| 85 |
+
or contributory patent infringement, then any patent licenses
|
| 86 |
+
granted to You under this License for that Work shall terminate
|
| 87 |
+
as of the date such litigation is filed.
|
| 88 |
+
|
| 89 |
+
4. Redistribution. You may reproduce and distribute copies of the
|
| 90 |
+
Work or Derivative Works thereof in any medium, with or without
|
| 91 |
+
modifications, and in Source or Object form, provided that You
|
| 92 |
+
meet the following conditions:
|
| 93 |
+
|
| 94 |
+
(a) You must give any other recipients of the Work or
|
| 95 |
+
Derivative Works a copy of this License; and
|
| 96 |
+
|
| 97 |
+
(b) You must cause any modified files to carry prominent notices
|
| 98 |
+
stating that You changed the files; and
|
| 99 |
+
|
| 100 |
+
(c) You must retain, in the Source form of any Derivative Works
|
| 101 |
+
that You distribute, all copyright, patent, trademark, and
|
| 102 |
+
attribution notices from the Source form of the Work,
|
| 103 |
+
excluding those notices that do not pertain to any part of
|
| 104 |
+
the Derivative Works; and
|
| 105 |
+
|
| 106 |
+
(d) If the Work includes a "NOTICE" text file as part of its
|
| 107 |
+
distribution, then any Derivative Works that You distribute must
|
| 108 |
+
include a readable copy of the attribution notices contained
|
| 109 |
+
within such NOTICE file, excluding those notices that do not
|
| 110 |
+
pertain to any part of the Derivative Works, in at least one
|
| 111 |
+
of the following places: within a NOTICE text file distributed
|
| 112 |
+
as part of the Derivative Works; within the Source form or
|
| 113 |
+
documentation, if provided along with the Derivative Works; or,
|
| 114 |
+
within a display generated by the Derivative Works, if and
|
| 115 |
+
wherever such third-party notices normally appear. The contents
|
| 116 |
+
of the NOTICE file are for informational purposes only and
|
| 117 |
+
do not modify the License. You may add Your own attribution
|
| 118 |
+
notices within Derivative Works that You distribute, alongside
|
| 119 |
+
or as an addendum to the NOTICE text from the Work, provided
|
| 120 |
+
that such additional attribution notices cannot be construed
|
| 121 |
+
as modifying the License.
|
| 122 |
+
|
| 123 |
+
You may add Your own copyright statement to Your modifications and
|
| 124 |
+
may provide additional or different license terms and conditions
|
| 125 |
+
for use, reproduction, or distribution of Your modifications, or
|
| 126 |
+
for any such Derivative Works as a whole, provided Your use,
|
| 127 |
+
reproduction, and distribution of the Work otherwise complies with
|
| 128 |
+
the conditions stated in this License.
|
| 129 |
+
|
| 130 |
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
| 131 |
+
any Contribution intentionally submitted for inclusion in the Work
|
| 132 |
+
by You to the Licensor shall be under the terms and conditions of
|
| 133 |
+
this License, without any additional terms or conditions.
|
| 134 |
+
Notwithstanding the above, nothing herein shall supersede or modify
|
| 135 |
+
the terms of any separate license agreement you may have executed
|
| 136 |
+
with Licensor regarding such Contributions.
|
| 137 |
+
|
| 138 |
+
6. Trademarks. This License does not grant permission to use the trade
|
| 139 |
+
names, trademarks, service marks, or product names of the Licensor,
|
| 140 |
+
except as required for reasonable and customary use in describing the
|
| 141 |
+
origin of the Work and reproducing the content of the NOTICE file.
|
| 142 |
+
|
| 143 |
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
| 144 |
+
agreed to in writing, Licensor provides the Work (and each
|
| 145 |
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
| 146 |
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
| 147 |
+
implied, including, without limitation, any warranties or conditions
|
| 148 |
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
| 149 |
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
| 150 |
+
appropriateness of using or redistributing the Work and assume any
|
| 151 |
+
risks associated with Your exercise of permissions under this License.
|
| 152 |
+
|
| 153 |
+
8. Limitation of Liability. In no event and under no legal theory,
|
| 154 |
+
whether in tort (including negligence), contract, or otherwise,
|
| 155 |
+
unless required by applicable law (such as deliberate and grossly
|
| 156 |
+
negligent acts) or agreed to in writing, shall any Contributor be
|
| 157 |
+
liable to You for damages, including any direct, indirect, special,
|
| 158 |
+
incidental, or consequential damages of any character arising as a
|
| 159 |
+
result of this License or out of the use or inability to use the
|
| 160 |
+
Work (including but not limited to damages for loss of goodwill,
|
| 161 |
+
work stoppage, computer failure or malfunction, or any and all
|
| 162 |
+
other commercial damages or losses), even if such Contributor
|
| 163 |
+
has been advised of the possibility of such damages.
|
| 164 |
+
|
| 165 |
+
9. Accepting Warranty or Additional Liability. While redistributing
|
| 166 |
+
the Work or Derivative Works thereof, You may choose to offer,
|
| 167 |
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
| 168 |
+
or other liability obligations and/or rights consistent with this
|
| 169 |
+
License. However, in accepting such obligations, You may act only
|
| 170 |
+
on Your own behalf and on Your sole responsibility, not on behalf
|
| 171 |
+
of any other Contributor, and only if You agree to indemnify,
|
| 172 |
+
defend, and hold each Contributor harmless for any liability
|
| 173 |
+
incurred by, or claims asserted against, such Contributor by reason
|
| 174 |
+
of your accepting any such warranty or additional liability.
|
| 175 |
+
|
| 176 |
+
END OF TERMS AND CONDITIONS
|
| 177 |
+
|
| 178 |
+
APPENDIX: How to apply the Apache License to your work.
|
| 179 |
+
|
| 180 |
+
To apply the Apache License to your work, attach the following
|
| 181 |
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
| 182 |
+
replaced with your own identifying information. (Don't include
|
| 183 |
+
the brackets!) The text should be enclosed in the appropriate
|
| 184 |
+
comment syntax for the file format. We also recommend that a
|
| 185 |
+
file or class name and description of purpose be included on the
|
| 186 |
+
same "printed page" as the copyright notice for easier
|
| 187 |
+
identification within third-party archives.
|
NOTICE
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
SATA: Semantic-Aware Motion Encoding for Topology-Agnostic Character Animation
|
| 2 |
+
Copyright 2026 Zongye Zhang and contributors
|
| 3 |
+
|
| 4 |
+
The original SATA code in this repository is licensed under the Apache License,
|
| 5 |
+
Version 2.0. See the LICENSE file for the full license text.
|
| 6 |
+
|
| 7 |
+
Third-party submodules
|
| 8 |
+
----------------------
|
| 9 |
+
|
| 10 |
+
This repository references the following external projects as Git submodules.
|
| 11 |
+
They are not relicensed by the top-level Apache License. Their use,
|
| 12 |
+
redistribution, and citation requirements are governed by the licenses and
|
| 13 |
+
notices in the corresponding upstream repositories:
|
| 14 |
+
|
| 15 |
+
- src/fairmotion: https://github.com/zzysteve/fairmotion.git
|
| 16 |
+
- src/mdm: https://github.com/zzysteve/SATA-motion-diffusion-model.git
|
| 17 |
+
- src/momask-preenc: https://github.com/zzysteve/SATA-momask-codes.git
|
| 18 |
+
|
| 19 |
+
Please review the license files in each submodule or upstream repository before
|
| 20 |
+
using or redistributing those components.
|
| 21 |
+
|
| 22 |
+
Files or assets outside the submodules that carry their own copyright or
|
| 23 |
+
license notices remain governed by those notices and are not relicensed by this
|
| 24 |
+
file.
|
| 25 |
+
|
| 26 |
+
External artifacts
|
| 27 |
+
------------------
|
| 28 |
+
|
| 29 |
+
Model checkpoints, datasets, demo assets, body models, and other downloaded
|
| 30 |
+
artifacts may have separate license terms. They are not covered by the top-level
|
| 31 |
+
Apache License unless explicitly stated by their respective providers.
|
README.md
ADDED
|
@@ -0,0 +1,76 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
title: SATA Demo
|
| 3 |
+
sdk: docker
|
| 4 |
+
app_port: 7860
|
| 5 |
+
suggested_hardware: cpu-basic
|
| 6 |
+
pinned: false
|
| 7 |
+
license: apache-2.0
|
| 8 |
+
---
|
| 9 |
+
|
| 10 |
+
# SATA: Semantic-Aware Motion Encoding for Topology-Agnostic Character Animation
|
| 11 |
+
|
| 12 |
+
[](https://zzysteve.github.io/project_pages/sata.html)
|
| 13 |
+
[](https://arxiv.org/abs/2605.27055)
|
| 14 |
+
[](https://github.com/zzysteve/SATA)
|
| 15 |
+
|
| 16 |
+
Official Hugging Face Space demo for **Semantic-Aware Motion Encoding for Topology-Agnostic Character Animation**.
|
| 17 |
+
|
| 18 |
+
SATA is a semantic-aware, topology-agnostic motion representation framework for heterogeneous character animation. It learns a unified latent motion manifold across diverse skeletal topologies and supports motion reconstruction, text-to-motion generation, and zero-shot cross-species retargeting.
|
| 19 |
+
|
| 20 |
+
## Hugging Face Space
|
| 21 |
+
|
| 22 |
+
This repository packages the Gradio demo for Hugging Face Spaces using the Docker SDK. The hosted Space is configured to run on CPU by default.
|
| 23 |
+
|
| 24 |
+
This Space copy keeps deployment-specific runtime adjustments:
|
| 25 |
+
|
| 26 |
+
- the app listens on the Hugging Face `PORT` environment variable, defaulting to `7860`;
|
| 27 |
+
- CPU is used by default through `SATA_DEVICE=cpu` and `SATA_GEN_DEVICE=cpu`;
|
| 28 |
+
- demo assets and checkpoints are included in the Space repository so the container can start without a separate artifact download step;
|
| 29 |
+
- MDM text-to-latent generation avoids SMPL-backed xyz conversion because the demo only saves latent `z` outputs.
|
| 30 |
+
|
| 31 |
+
If the Space is moved to GPU hardware later, set `SATA_DEVICE=cuda:0` and `SATA_GEN_DEVICE=cuda:0` in the Space environment.
|
| 32 |
+
|
| 33 |
+
Run command inside the container:
|
| 34 |
+
|
| 35 |
+
```shell
|
| 36 |
+
python app.py
|
| 37 |
+
```
|
| 38 |
+
|
| 39 |
+
## Main Repository
|
| 40 |
+
|
| 41 |
+
The source release is maintained at:
|
| 42 |
+
|
| 43 |
+
```text
|
| 44 |
+
https://github.com/zzysteve/SATA
|
| 45 |
+
```
|
| 46 |
+
|
| 47 |
+
## Citation
|
| 48 |
+
|
| 49 |
+
```bibtex
|
| 50 |
+
@inproceedings{zhang2026sata,
|
| 51 |
+
title = {Semantic-Aware Motion Encoding for Topology-Agnostic Character Animation},
|
| 52 |
+
author = {Zongye Zhang and Yuzhuo Cui and Qingjie Liu and Yunhong Wang},
|
| 53 |
+
booktitle = {Proceedings of the International Conference on Machine Learning},
|
| 54 |
+
year = {2026},
|
| 55 |
+
note = {To appear. arXiv:2605.27055},
|
| 56 |
+
url = {https://arxiv.org/abs/2605.27055},
|
| 57 |
+
}
|
| 58 |
+
```
|
| 59 |
+
|
| 60 |
+
## Contact
|
| 61 |
+
|
| 62 |
+
For questions about the project, please contact the authors or open an issue after the initial code release.
|
| 63 |
+
|
| 64 |
+
## License
|
| 65 |
+
|
| 66 |
+
The original SATA code in this repository is released under the Apache License 2.0. See [LICENSE](LICENSE) and [NOTICE](NOTICE).
|
| 67 |
+
|
| 68 |
+
The following bundled external components remain governed by their respective upstream licenses:
|
| 69 |
+
|
| 70 |
+
```text
|
| 71 |
+
src/fairmotion https://github.com/zzysteve/fairmotion.git
|
| 72 |
+
src/mdm https://github.com/zzysteve/SATA-motion-diffusion-model.git
|
| 73 |
+
src/momask-preenc https://github.com/zzysteve/SATA-momask-codes.git
|
| 74 |
+
```
|
| 75 |
+
|
| 76 |
+
Please refer to the license files in each component or upstream repository before using or redistributing those components. Files or assets that carry their own copyright or license notices remain governed by those notices. Model checkpoints, datasets, demo assets, body models, and other downloaded artifacts may have separate terms and are not covered by the top-level Apache License unless explicitly stated by their providers.
|
app.py
ADDED
|
@@ -0,0 +1,502 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""
|
| 2 |
+
SATA Demo
|
| 3 |
+
|
| 4 |
+
Retarget:
|
| 5 |
+
Task 1: Human -> Human
|
| 6 |
+
Task 2: Animo -> Animo
|
| 7 |
+
Task 3: Human -> Animo
|
| 8 |
+
Task 4: Animo -> Human
|
| 9 |
+
|
| 10 |
+
Generation:
|
| 11 |
+
Task 5: Text -> Motion
|
| 12 |
+
"""
|
| 13 |
+
import os
|
| 14 |
+
import sys
|
| 15 |
+
import threading
|
| 16 |
+
import time
|
| 17 |
+
import uuid
|
| 18 |
+
|
| 19 |
+
# Path setup
|
| 20 |
+
RELEASE_DIR = os.path.dirname(os.path.abspath(__file__))
|
| 21 |
+
GRADIO_DIR = os.path.join(RELEASE_DIR, 'gradio')
|
| 22 |
+
sys.path.insert(0, GRADIO_DIR)
|
| 23 |
+
sys.path.insert(0, os.path.join(RELEASE_DIR, 'src'))
|
| 24 |
+
sys.path.insert(0, os.path.join(RELEASE_DIR, 'src', 'fairmotion'))
|
| 25 |
+
sys.path.insert(0, os.path.join(RELEASE_DIR, 'src', 'Visualization'))
|
| 26 |
+
|
| 27 |
+
# Gradio 6 reads DEFAULT_TEMP_DIR at import time, so set it first.
|
| 28 |
+
_gradio_tmp = os.path.join(GRADIO_DIR, ".gradio_tmp")
|
| 29 |
+
os.makedirs(_gradio_tmp, exist_ok=True)
|
| 30 |
+
os.environ["GRADIO_TEMP_DIR"] = _gradio_tmp
|
| 31 |
+
|
| 32 |
+
import gradio as gr
|
| 33 |
+
|
| 34 |
+
from config import (
|
| 35 |
+
OUTPUT_DIR, MODEL_TYPE, MODEL_EPOCH, DEVICE,
|
| 36 |
+
TASK1_Z_OPTIONS, TASK1_SKEL_OPTIONS,
|
| 37 |
+
TASK2_Z_OPTIONS, TASK2_SKEL_OPTIONS,
|
| 38 |
+
TASK3_PAIRS, TASK4_PAIRS,
|
| 39 |
+
GEN_DEVICE, GEN_DEFAULT_MOTION_FRAMES,
|
| 40 |
+
GEN_MIN_MOTION_FRAMES, GEN_MAX_MOTION_FRAMES,
|
| 41 |
+
GEN_MODEL_OPTIONS, HUMAN_GEN_SKEL_OPTIONS,
|
| 42 |
+
)
|
| 43 |
+
from bvh_stick_viewer import get_bvh_viewer_html, iframe_html_for_motion
|
| 44 |
+
|
| 45 |
+
|
| 46 |
+
# ════════════════════════════════════════════════════════════
|
| 47 |
+
# Model loading (lazy and thread-safe)
|
| 48 |
+
# ════════════════════════════════════════════════════════════
|
| 49 |
+
_model_state = None
|
| 50 |
+
_model_lock = threading.Lock()
|
| 51 |
+
|
| 52 |
+
def get_model_state():
|
| 53 |
+
global _model_state
|
| 54 |
+
if _model_state is None:
|
| 55 |
+
with _model_lock:
|
| 56 |
+
if _model_state is None:
|
| 57 |
+
print("[model] Loading model...")
|
| 58 |
+
from sata.utils.model_loading import load_model_by_type
|
| 59 |
+
model, cfg, ms_dict = load_model_by_type(MODEL_TYPE, MODEL_EPOCH, DEVICE)
|
| 60 |
+
model = model.to(DEVICE)
|
| 61 |
+
model.eval()
|
| 62 |
+
_model_state = (model, cfg, ms_dict)
|
| 63 |
+
print("[model] Model loaded.")
|
| 64 |
+
return _model_state
|
| 65 |
+
|
| 66 |
+
|
| 67 |
+
# ════════════════════════════════════════════════════════════
|
| 68 |
+
# Decode and render helpers
|
| 69 |
+
# ════════════════════════════════════════════════════════════
|
| 70 |
+
VIEWER_H = 360
|
| 71 |
+
|
| 72 |
+
|
| 73 |
+
def empty_viewer(title):
|
| 74 |
+
return iframe_html_for_motion(None, title=title, height=VIEWER_H)
|
| 75 |
+
|
| 76 |
+
|
| 77 |
+
def option_label(options, key):
|
| 78 |
+
return options[key].get('label', key)
|
| 79 |
+
|
| 80 |
+
|
| 81 |
+
def dropdown_choices(options):
|
| 82 |
+
return [option_label(options, key) for key in options.keys()]
|
| 83 |
+
|
| 84 |
+
|
| 85 |
+
def default_choice(options):
|
| 86 |
+
return option_label(options, list(options.keys())[0])
|
| 87 |
+
|
| 88 |
+
|
| 89 |
+
def unique_output_name(base_name):
|
| 90 |
+
stamp = time.strftime('%y%m%d%H%M%S')
|
| 91 |
+
suffix = uuid.uuid4().hex[:8]
|
| 92 |
+
return f"{base_name}__{stamp}_{suffix}"
|
| 93 |
+
|
| 94 |
+
|
| 95 |
+
def resolve_option_key(options, selected):
|
| 96 |
+
if selected in options:
|
| 97 |
+
return selected
|
| 98 |
+
for key in options.keys():
|
| 99 |
+
if option_label(options, key) == selected:
|
| 100 |
+
return key
|
| 101 |
+
raise KeyError(selected)
|
| 102 |
+
|
| 103 |
+
|
| 104 |
+
def run_retarget(z_path, skel_path, output_name, task_name):
|
| 105 |
+
"""
|
| 106 |
+
Decode to BVH and return the Three.js stick viewer.
|
| 107 |
+
"""
|
| 108 |
+
from decode_z_sliding import decode_z_skel_to_bvh
|
| 109 |
+
|
| 110 |
+
task_out_dir = os.path.join(OUTPUT_DIR, task_name)
|
| 111 |
+
os.makedirs(task_out_dir, exist_ok=True)
|
| 112 |
+
|
| 113 |
+
try:
|
| 114 |
+
bvh_path = decode_z_skel_to_bvh(
|
| 115 |
+
z_path=z_path,
|
| 116 |
+
skel_path=skel_path,
|
| 117 |
+
model_epoch=MODEL_EPOCH,
|
| 118 |
+
output_dir=task_out_dir,
|
| 119 |
+
output_name=output_name,
|
| 120 |
+
device=DEVICE,
|
| 121 |
+
model_type=MODEL_TYPE,
|
| 122 |
+
model_state=get_model_state(),
|
| 123 |
+
)
|
| 124 |
+
return get_bvh_viewer_html(
|
| 125 |
+
bvh_path, title=output_name, height=VIEWER_H
|
| 126 |
+
)
|
| 127 |
+
except Exception as e:
|
| 128 |
+
print(f"[error] retarget failed: {e}")
|
| 129 |
+
import traceback; traceback.print_exc()
|
| 130 |
+
return empty_viewer("Retarget failed")
|
| 131 |
+
|
| 132 |
+
|
| 133 |
+
# ════════════════════════════════════════════════════════════
|
| 134 |
+
# Tab callbacks
|
| 135 |
+
# ════════════════════════════════════════════════════════════
|
| 136 |
+
|
| 137 |
+
# ── Task 1 ──────────────────────────────────────────────────
|
| 138 |
+
def t1_src_change(z_key):
|
| 139 |
+
z_key = resolve_option_key(TASK1_Z_OPTIONS, z_key)
|
| 140 |
+
info = TASK1_Z_OPTIONS[z_key]
|
| 141 |
+
return get_bvh_viewer_html(
|
| 142 |
+
info['src_bvh'], title=f"Source: {option_label(TASK1_Z_OPTIONS, z_key)}", height=VIEWER_H,
|
| 143 |
+
)
|
| 144 |
+
|
| 145 |
+
def t1_tgt_change(skel_key):
|
| 146 |
+
skel_key = resolve_option_key(TASK1_SKEL_OPTIONS, skel_key)
|
| 147 |
+
info = TASK1_SKEL_OPTIONS[skel_key]
|
| 148 |
+
return get_bvh_viewer_html(
|
| 149 |
+
info['tgt_bvh'], title=f"Target skeleton: {option_label(TASK1_SKEL_OPTIONS, skel_key)}",
|
| 150 |
+
height=VIEWER_H, max_frames=1,
|
| 151 |
+
)
|
| 152 |
+
|
| 153 |
+
def t1_run(z_key, skel_key):
|
| 154 |
+
z_key = resolve_option_key(TASK1_Z_OPTIONS, z_key)
|
| 155 |
+
skel_key = resolve_option_key(TASK1_SKEL_OPTIONS, skel_key)
|
| 156 |
+
z = TASK1_Z_OPTIONS[z_key]
|
| 157 |
+
skel = TASK1_SKEL_OPTIONS[skel_key]
|
| 158 |
+
name = unique_output_name(f"{z['name']}__{skel['name']}")
|
| 159 |
+
return run_retarget(z['z_path'], skel['skel_path'], name, 'task1')
|
| 160 |
+
|
| 161 |
+
# ── Task 2 ──────────────────────────────────────────────────
|
| 162 |
+
def t2_src_change(z_key):
|
| 163 |
+
z_key = resolve_option_key(TASK2_Z_OPTIONS, z_key)
|
| 164 |
+
info = TASK2_Z_OPTIONS[z_key]
|
| 165 |
+
return get_bvh_viewer_html(
|
| 166 |
+
info['src_bvh'], title=f"Source: {option_label(TASK2_Z_OPTIONS, z_key)}", height=VIEWER_H,
|
| 167 |
+
)
|
| 168 |
+
|
| 169 |
+
def t2_tgt_change(skel_key):
|
| 170 |
+
skel_key = resolve_option_key(TASK2_SKEL_OPTIONS, skel_key)
|
| 171 |
+
info = TASK2_SKEL_OPTIONS[skel_key]
|
| 172 |
+
return get_bvh_viewer_html(
|
| 173 |
+
info['tgt_bvh'], title=f"Target skeleton: {option_label(TASK2_SKEL_OPTIONS, skel_key)}",
|
| 174 |
+
height=VIEWER_H, max_frames=1,
|
| 175 |
+
)
|
| 176 |
+
|
| 177 |
+
def t2_run(z_key, skel_key):
|
| 178 |
+
z_key = resolve_option_key(TASK2_Z_OPTIONS, z_key)
|
| 179 |
+
skel_key = resolve_option_key(TASK2_SKEL_OPTIONS, skel_key)
|
| 180 |
+
z = TASK2_Z_OPTIONS[z_key]
|
| 181 |
+
skel = TASK2_SKEL_OPTIONS[skel_key]
|
| 182 |
+
name = unique_output_name(f"{z['name']}__{skel['name']}")
|
| 183 |
+
return run_retarget(z['z_path'], skel['skel_path'], name, 'task2')
|
| 184 |
+
|
| 185 |
+
# ── Task 3 ──────────────────────────────────────────────────
|
| 186 |
+
def t3_pair_change(pair_key):
|
| 187 |
+
pair_key = resolve_option_key(TASK3_PAIRS, pair_key)
|
| 188 |
+
pair = TASK3_PAIRS[pair_key]
|
| 189 |
+
label = option_label(TASK3_PAIRS, pair_key)
|
| 190 |
+
src = get_bvh_viewer_html(
|
| 191 |
+
pair['src_bvh'], title=f"Source: {label}", height=VIEWER_H,
|
| 192 |
+
)
|
| 193 |
+
tgt = get_bvh_viewer_html(
|
| 194 |
+
pair['tgt_bvh'], title=f"Target skeleton: {label}",
|
| 195 |
+
height=VIEWER_H, max_frames=1,
|
| 196 |
+
)
|
| 197 |
+
return src, tgt
|
| 198 |
+
|
| 199 |
+
def t3_run(pair_key):
|
| 200 |
+
pair_key = resolve_option_key(TASK3_PAIRS, pair_key)
|
| 201 |
+
pair = TASK3_PAIRS[pair_key]
|
| 202 |
+
name = unique_output_name(pair['output_name'])
|
| 203 |
+
return run_retarget(pair['z_path'], pair['skel_path'], name, 'task3')
|
| 204 |
+
|
| 205 |
+
# ── Task 4 ──────────────────────────────────────────────────
|
| 206 |
+
def t4_pair_change(pair_key):
|
| 207 |
+
pair_key = resolve_option_key(TASK4_PAIRS, pair_key)
|
| 208 |
+
pair = TASK4_PAIRS[pair_key]
|
| 209 |
+
label = option_label(TASK4_PAIRS, pair_key)
|
| 210 |
+
src = get_bvh_viewer_html(
|
| 211 |
+
pair['src_bvh'], title=f"Source: {label}", height=VIEWER_H,
|
| 212 |
+
)
|
| 213 |
+
tgt = get_bvh_viewer_html(
|
| 214 |
+
pair['tgt_bvh'], title=f"Target skeleton: {label}",
|
| 215 |
+
height=VIEWER_H, max_frames=1,
|
| 216 |
+
)
|
| 217 |
+
return src, tgt
|
| 218 |
+
|
| 219 |
+
def t4_run(pair_key):
|
| 220 |
+
pair_key = resolve_option_key(TASK4_PAIRS, pair_key)
|
| 221 |
+
pair = TASK4_PAIRS[pair_key]
|
| 222 |
+
name = unique_output_name(pair['output_name'])
|
| 223 |
+
return run_retarget(pair['z_path'], pair['skel_path'], name, 'task4')
|
| 224 |
+
|
| 225 |
+
|
| 226 |
+
# ════════════════════════════════════════════════════════════
|
| 227 |
+
# Task 5: generation callbacks
|
| 228 |
+
# ════════════════════════════════════════════════════════════
|
| 229 |
+
def run_generation(text: str, skel_key: str, generation_label: str,
|
| 230 |
+
motion_frames: int, skel_options: dict) -> str:
|
| 231 |
+
"""
|
| 232 |
+
Generation pipeline: text -> latent/code -> BVH -> viewer.
|
| 233 |
+
"""
|
| 234 |
+
from gen_runner import generate_motion_from_text
|
| 235 |
+
|
| 236 |
+
text = text.strip()
|
| 237 |
+
if not text:
|
| 238 |
+
return empty_viewer("Enter a text prompt")
|
| 239 |
+
|
| 240 |
+
motion_frames = int(round(float(motion_frames)))
|
| 241 |
+
motion_frames = min(max(motion_frames, GEN_MIN_MOTION_FRAMES), GEN_MAX_MOTION_FRAMES)
|
| 242 |
+
|
| 243 |
+
if not skel_key:
|
| 244 |
+
skel_key = list(skel_options.keys())[0]
|
| 245 |
+
else:
|
| 246 |
+
skel_key = resolve_option_key(skel_options, skel_key)
|
| 247 |
+
|
| 248 |
+
skel_info = skel_options[skel_key]
|
| 249 |
+
skel_path = skel_info['skel_path']
|
| 250 |
+
display_name = unique_output_name(skel_info['name'])
|
| 251 |
+
generation_type = GEN_MODEL_OPTIONS[generation_label]
|
| 252 |
+
gen_out_dir = os.path.join(OUTPUT_DIR, 'generation', generation_type)
|
| 253 |
+
os.makedirs(gen_out_dir, exist_ok=True)
|
| 254 |
+
|
| 255 |
+
try:
|
| 256 |
+
bvh_path = generate_motion_from_text(
|
| 257 |
+
text=text,
|
| 258 |
+
skel_npz_path=skel_path,
|
| 259 |
+
generation_type=generation_type,
|
| 260 |
+
output_dir=gen_out_dir,
|
| 261 |
+
device_str=GEN_DEVICE,
|
| 262 |
+
skel_name=skel_info['name'],
|
| 263 |
+
motion_frames=motion_frames,
|
| 264 |
+
)
|
| 265 |
+
if not bvh_path:
|
| 266 |
+
return empty_viewer("Generation failed")
|
| 267 |
+
return get_bvh_viewer_html(
|
| 268 |
+
bvh_path,
|
| 269 |
+
title=f"{display_name} - {generation_label} - {motion_frames} frames - {text}",
|
| 270 |
+
height=VIEWER_H,
|
| 271 |
+
)
|
| 272 |
+
except Exception as e:
|
| 273 |
+
print(f"[error] generation failed: {e}")
|
| 274 |
+
import traceback; traceback.print_exc()
|
| 275 |
+
return empty_viewer("Generation failed")
|
| 276 |
+
|
| 277 |
+
|
| 278 |
+
def t5_run(text, skel_key, generation_label, motion_frames):
|
| 279 |
+
return run_generation(text, skel_key, generation_label, motion_frames, HUMAN_GEN_SKEL_OPTIONS)
|
| 280 |
+
|
| 281 |
+
|
| 282 |
+
def t5_tgt_change(skel_key):
|
| 283 |
+
info = HUMAN_GEN_SKEL_OPTIONS[skel_key]
|
| 284 |
+
return get_bvh_viewer_html(
|
| 285 |
+
info['tgt_bvh'], title=f"Target skeleton: {skel_key}",
|
| 286 |
+
height=VIEWER_H, max_frames=1,
|
| 287 |
+
)
|
| 288 |
+
|
| 289 |
+
|
| 290 |
+
# ════════════════════════════════════════════════════════════
|
| 291 |
+
# Page-load previews
|
| 292 |
+
# ════════════════════════════════════════════════════════════
|
| 293 |
+
def on_load():
|
| 294 |
+
try:
|
| 295 |
+
return (
|
| 296 |
+
t1_src_change(list(TASK1_Z_OPTIONS.keys())[0]),
|
| 297 |
+
t1_tgt_change(list(TASK1_SKEL_OPTIONS.keys())[0]),
|
| 298 |
+
empty_viewer("Source motion"),
|
| 299 |
+
empty_viewer("Target skeleton"),
|
| 300 |
+
empty_viewer("Source human motion"),
|
| 301 |
+
empty_viewer("Target animal skeleton"),
|
| 302 |
+
empty_viewer("Source animal motion"),
|
| 303 |
+
empty_viewer("Target human skeleton"),
|
| 304 |
+
t5_tgt_change('mousey'),
|
| 305 |
+
)
|
| 306 |
+
except Exception as e:
|
| 307 |
+
print(f"[on_load] Preview preload failed, possibly because a BVH file is missing: {e}")
|
| 308 |
+
return (None,) * 9
|
| 309 |
+
|
| 310 |
+
|
| 311 |
+
# ════════════════════════════════════════════════════════════
|
| 312 |
+
# Gradio UI
|
| 313 |
+
# ════════════════════════════════════════════════════════════
|
| 314 |
+
DEFAULT_TEXT_PROMPT = "A person walks forward, bends down to pick something up off the ground."
|
| 315 |
+
|
| 316 |
+
|
| 317 |
+
with gr.Blocks(title="SATA Demo") as app:
|
| 318 |
+
|
| 319 |
+
gr.Markdown(
|
| 320 |
+
"""
|
| 321 |
+
# SATA: Semantic-Aware Motion Encoding for Topology-Agnostic Character Animation
|
| 322 |
+
Interactive visualization for motion retargeting and text-to-motion generation.
|
| 323 |
+
"""
|
| 324 |
+
)
|
| 325 |
+
|
| 326 |
+
gr.Markdown("## Motion Retargeting")
|
| 327 |
+
|
| 328 |
+
with gr.Tabs() as retarget_tabs:
|
| 329 |
+
|
| 330 |
+
# ╔══════════════════════════════════════════════════╗
|
| 331 |
+
# ║ Task 1: Human -> Human ║
|
| 332 |
+
# ╚══════════════════════════════════════════════════╝
|
| 333 |
+
with gr.TabItem("Task 1 - Human -> Human") as t1_tab:
|
| 334 |
+
gr.Markdown("**Free selection**: choose any source motion and target skeleton.")
|
| 335 |
+
with gr.Row():
|
| 336 |
+
t1_z_dd = gr.Dropdown(dropdown_choices(TASK1_Z_OPTIONS),
|
| 337 |
+
value=default_choice(TASK1_Z_OPTIONS),
|
| 338 |
+
label="Source motion", scale=2)
|
| 339 |
+
t1_sk_dd = gr.Dropdown(dropdown_choices(TASK1_SKEL_OPTIONS),
|
| 340 |
+
value=default_choice(TASK1_SKEL_OPTIONS),
|
| 341 |
+
label="Target skeleton", scale=2)
|
| 342 |
+
t1_btn = gr.Button("Run Model", variant="primary", scale=1)
|
| 343 |
+
with gr.Row():
|
| 344 |
+
t1_v_src = gr.HTML(value=empty_viewer("Source motion"))
|
| 345 |
+
t1_v_tgt = gr.HTML(value=empty_viewer("Target skeleton"))
|
| 346 |
+
t1_v_out = gr.HTML(value=empty_viewer("Retarget result"))
|
| 347 |
+
|
| 348 |
+
t1_z_dd.change(t1_src_change, t1_z_dd, t1_v_src)
|
| 349 |
+
t1_sk_dd.change(t1_tgt_change, t1_sk_dd, t1_v_tgt)
|
| 350 |
+
t1_btn.click(t1_run, [t1_z_dd, t1_sk_dd], t1_v_out)
|
| 351 |
+
|
| 352 |
+
# ╔══════════════════════════════════════════════════╗
|
| 353 |
+
# ║ Task 2: Animo -> Animo ║
|
| 354 |
+
# ╚══════════════════════════════════════════════════╝
|
| 355 |
+
with gr.TabItem("Task 2 - Animo -> Animo") as t2_tab:
|
| 356 |
+
gr.Markdown("**Zero-shot retargeting**: choose any animal source motion and target skeleton.")
|
| 357 |
+
with gr.Row():
|
| 358 |
+
t2_z_dd = gr.Dropdown(dropdown_choices(TASK2_Z_OPTIONS),
|
| 359 |
+
value=default_choice(TASK2_Z_OPTIONS),
|
| 360 |
+
label="Source motion", scale=2)
|
| 361 |
+
t2_sk_dd = gr.Dropdown(dropdown_choices(TASK2_SKEL_OPTIONS),
|
| 362 |
+
value=default_choice(TASK2_SKEL_OPTIONS),
|
| 363 |
+
label="Target skeleton", scale=2)
|
| 364 |
+
t2_btn = gr.Button("Run Model", variant="primary", scale=1)
|
| 365 |
+
with gr.Row():
|
| 366 |
+
t2_v_src = gr.HTML(value=empty_viewer("Source motion"))
|
| 367 |
+
t2_v_tgt = gr.HTML(value=empty_viewer("Target skeleton"))
|
| 368 |
+
t2_v_out = gr.HTML(value=empty_viewer("Retarget result"))
|
| 369 |
+
|
| 370 |
+
t2_z_dd.change(t2_src_change, t2_z_dd, t2_v_src)
|
| 371 |
+
t2_sk_dd.change(t2_tgt_change, t2_sk_dd, t2_v_tgt)
|
| 372 |
+
t2_btn.click(t2_run, [t2_z_dd, t2_sk_dd], t2_v_out)
|
| 373 |
+
|
| 374 |
+
# ╔══════════════════════════════════════════════════╗
|
| 375 |
+
# ║ Task 3: Human -> Animo ║
|
| 376 |
+
# ╚══════════════════════════════════════════════════╝
|
| 377 |
+
with gr.TabItem("Task 3 - Human -> Animo") as t3_tab:
|
| 378 |
+
gr.Markdown("**Zero-shot retargeting**: selected human-to-animal samples.")
|
| 379 |
+
with gr.Row():
|
| 380 |
+
t3_dd = gr.Dropdown(dropdown_choices(TASK3_PAIRS),
|
| 381 |
+
value=default_choice(TASK3_PAIRS),
|
| 382 |
+
label="Sample pair", scale=3)
|
| 383 |
+
t3_btn = gr.Button("Run Model", variant="primary", scale=1)
|
| 384 |
+
with gr.Row():
|
| 385 |
+
t3_v_src = gr.HTML(value=empty_viewer("Source human motion"))
|
| 386 |
+
t3_v_tgt = gr.HTML(value=empty_viewer("Target animal skeleton"))
|
| 387 |
+
t3_v_out = gr.HTML(value=empty_viewer("Retarget result"))
|
| 388 |
+
|
| 389 |
+
t3_dd.change(t3_pair_change, t3_dd, [t3_v_src, t3_v_tgt])
|
| 390 |
+
t3_btn.click(t3_run, t3_dd, t3_v_out)
|
| 391 |
+
|
| 392 |
+
# ╔══════════════════════════════════════════════════╗
|
| 393 |
+
# ║ Task 4: Animo -> Human ║
|
| 394 |
+
# ╚══════════════════════════════════════════════════╝
|
| 395 |
+
with gr.TabItem("Task 4 - Animo -> Human") as t4_tab:
|
| 396 |
+
gr.Markdown("**Zero-shot retargeting**: selected animal-to-human samples.")
|
| 397 |
+
with gr.Row():
|
| 398 |
+
t4_dd = gr.Dropdown(dropdown_choices(TASK4_PAIRS),
|
| 399 |
+
value=default_choice(TASK4_PAIRS),
|
| 400 |
+
label="Sample pair", scale=3)
|
| 401 |
+
t4_btn = gr.Button("Run Model", variant="primary", scale=1)
|
| 402 |
+
with gr.Row():
|
| 403 |
+
t4_v_src = gr.HTML(value=empty_viewer("Source animal motion"))
|
| 404 |
+
t4_v_tgt = gr.HTML(value=empty_viewer("Target human skeleton"))
|
| 405 |
+
t4_v_out = gr.HTML(value=empty_viewer("Retarget result"))
|
| 406 |
+
|
| 407 |
+
t4_dd.change(t4_pair_change, t4_dd, [t4_v_src, t4_v_tgt])
|
| 408 |
+
t4_btn.click(t4_run, t4_dd, t4_v_out)
|
| 409 |
+
|
| 410 |
+
# Refresh source/target previews whenever a tab is selected.
|
| 411 |
+
t1_tab.select(
|
| 412 |
+
lambda z_key, skel_key: (t1_src_change(z_key), t1_tgt_change(skel_key)),
|
| 413 |
+
[t1_z_dd, t1_sk_dd],
|
| 414 |
+
[t1_v_src, t1_v_tgt],
|
| 415 |
+
)
|
| 416 |
+
t2_tab.select(
|
| 417 |
+
lambda z_key, skel_key: (t2_src_change(z_key), t2_tgt_change(skel_key)),
|
| 418 |
+
[t2_z_dd, t2_sk_dd],
|
| 419 |
+
[t2_v_src, t2_v_tgt],
|
| 420 |
+
)
|
| 421 |
+
t3_tab.select(t3_pair_change, t3_dd, [t3_v_src, t3_v_tgt])
|
| 422 |
+
t4_tab.select(t4_pair_change, t4_dd, [t4_v_src, t4_v_tgt])
|
| 423 |
+
|
| 424 |
+
# ════════════════════════════════════════════════════════
|
| 425 |
+
# Generation
|
| 426 |
+
# ════════════════════════════════════════════════════════
|
| 427 |
+
gr.Markdown("---")
|
| 428 |
+
gr.Markdown("## Text-to-motion Generation")
|
| 429 |
+
gr.Markdown(
|
| 430 |
+
"Enter a text prompt, choose a target skeleton and generation method, then click **Generate**."
|
| 431 |
+
)
|
| 432 |
+
|
| 433 |
+
with gr.Tabs():
|
| 434 |
+
|
| 435 |
+
# ╔══════════════════════════════════════════════════╗
|
| 436 |
+
# ║ Task 5: Text-to-motion generation ║
|
| 437 |
+
# ╚══════════════════════════════════════════════════╝
|
| 438 |
+
with gr.TabItem("Task 5 - Text-to-motion Generation"):
|
| 439 |
+
gr.Markdown("Generate a motion from text and decode it onto the selected character skeleton.")
|
| 440 |
+
gr.Markdown("Generation models MDM and MoMask are large; each run can take about 2 minutes.")
|
| 441 |
+
with gr.Row():
|
| 442 |
+
t5_text = gr.Textbox(
|
| 443 |
+
label="Text prompt (English)",
|
| 444 |
+
value=DEFAULT_TEXT_PROMPT,
|
| 445 |
+
lines=2,
|
| 446 |
+
)
|
| 447 |
+
with gr.Row():
|
| 448 |
+
t5_sk_dd = gr.Dropdown(
|
| 449 |
+
dropdown_choices(HUMAN_GEN_SKEL_OPTIONS),
|
| 450 |
+
value="mousey",
|
| 451 |
+
label="Target skeleton",
|
| 452 |
+
scale=2,
|
| 453 |
+
)
|
| 454 |
+
t5_model_dd = gr.Dropdown(
|
| 455 |
+
list(GEN_MODEL_OPTIONS.keys()),
|
| 456 |
+
value="RVQ",
|
| 457 |
+
label="Method",
|
| 458 |
+
scale=1,
|
| 459 |
+
)
|
| 460 |
+
t5_motion_frames = gr.Slider(
|
| 461 |
+
minimum=GEN_MIN_MOTION_FRAMES,
|
| 462 |
+
maximum=GEN_MAX_MOTION_FRAMES,
|
| 463 |
+
value=GEN_DEFAULT_MOTION_FRAMES,
|
| 464 |
+
step=1,
|
| 465 |
+
label="Motion length",
|
| 466 |
+
scale=2,
|
| 467 |
+
)
|
| 468 |
+
t5_btn = gr.Button("Generate", variant="primary", scale=1)
|
| 469 |
+
with gr.Row():
|
| 470 |
+
t5_v_tgt = gr.HTML(value=empty_viewer("Selected target skeleton"))
|
| 471 |
+
t5_v_out = gr.HTML(value=empty_viewer("Generation result"))
|
| 472 |
+
|
| 473 |
+
t5_sk_dd.change(t5_tgt_change, t5_sk_dd, t5_v_tgt)
|
| 474 |
+
t5_btn.click(t5_run, [t5_text, t5_sk_dd, t5_model_dd, t5_motion_frames], t5_v_out)
|
| 475 |
+
|
| 476 |
+
# Preload default interactive previews.
|
| 477 |
+
app.load(
|
| 478 |
+
fn=on_load,
|
| 479 |
+
outputs=[t1_v_src, t1_v_tgt,
|
| 480 |
+
t2_v_src, t2_v_tgt,
|
| 481 |
+
t3_v_src, t3_v_tgt,
|
| 482 |
+
t4_v_src, t4_v_tgt,
|
| 483 |
+
t5_v_tgt],
|
| 484 |
+
)
|
| 485 |
+
|
| 486 |
+
|
| 487 |
+
def _env_flag(name: str, default: bool = False) -> bool:
|
| 488 |
+
value = os.environ.get(name)
|
| 489 |
+
if value is None:
|
| 490 |
+
return default
|
| 491 |
+
return value.strip().lower() in {"1", "true", "yes", "on"}
|
| 492 |
+
|
| 493 |
+
|
| 494 |
+
if __name__ == "__main__":
|
| 495 |
+
app.launch(
|
| 496 |
+
server_name=os.environ.get("GRADIO_SERVER_NAME", "0.0.0.0"),
|
| 497 |
+
server_port=int(os.environ.get("PORT", "7860")),
|
| 498 |
+
share=_env_flag("GRADIO_SHARE", False),
|
| 499 |
+
debug=_env_flag("GRADIO_DEBUG", False),
|
| 500 |
+
show_error=True,
|
| 501 |
+
theme=gr.themes.Soft(primary_hue="blue"),
|
| 502 |
+
)
|
config/animo_train.yml
ADDED
|
@@ -0,0 +1,94 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
train_data:
|
| 2 |
+
dir: zooV2_train_wtextV2/motion/processed
|
| 3 |
+
mask: []
|
| 4 |
+
|
| 5 |
+
test_data:
|
| 6 |
+
dir: zooV2_test_wtextV2/motion/processed
|
| 7 |
+
sample_num: 50 # Use only the first 50 samples for quick tests
|
| 8 |
+
|
| 9 |
+
representation:
|
| 10 |
+
skel: [lo, go, tf] # S
|
| 11 |
+
pose: [q, p, r, pv, qv, c] # D_t
|
| 12 |
+
out: [r, q, c] # \hat{D_t}
|
| 13 |
+
|
| 14 |
+
model:
|
| 15 |
+
z_dim: 128
|
| 16 |
+
Encoder:
|
| 17 |
+
type: GPSEncTemporal
|
| 18 |
+
hidden_dim: 256 # Fixed hidden dimension for all GPS layers
|
| 19 |
+
num_layers: 3 # Number of GPS layers
|
| 20 |
+
heads: 4 # Number of attention heads (for spatial GPS)
|
| 21 |
+
attn_type: multihead
|
| 22 |
+
attn_kwargs:
|
| 23 |
+
dropout: 0.1
|
| 24 |
+
# Temporal Transformer parameters (NEW!)
|
| 25 |
+
temporal_type: transformer # 'conv' or 'transformer'
|
| 26 |
+
temporal_num_heads: 4 # Number of attention heads for temporal
|
| 27 |
+
temporal_dropout: 0.1
|
| 28 |
+
temporal_ff_dim_multiplier: 2 # FFN hidden layer multiplier
|
| 29 |
+
use_temporal_pos_encoding: True # Use positional encoding
|
| 30 |
+
pos_encoding_type: sinusoidal # 'sinusoidal' (extrapolates) or 'learnable' (fixed length)
|
| 31 |
+
max_seq_len: 512 # Only needed for learnable encoding
|
| 32 |
+
sample_posterior: True
|
| 33 |
+
Decoder:
|
| 34 |
+
type: GPSDecTemporal
|
| 35 |
+
hidden_dim: 256 # Fixed hidden dimension for all GPS layers
|
| 36 |
+
num_layers: 3 # Number of GPS layers
|
| 37 |
+
heads: 4 # Number of attention heads (for spatial GPS)
|
| 38 |
+
attn_type: multihead
|
| 39 |
+
attn_kwargs:
|
| 40 |
+
dropout: 0.1
|
| 41 |
+
# Temporal Transformer parameters (NEW!)
|
| 42 |
+
temporal_type: transformer # 'conv' or 'transformer'
|
| 43 |
+
temporal_num_heads: 4 # Number of attention heads for temporal
|
| 44 |
+
temporal_dropout: 0.1
|
| 45 |
+
temporal_ff_dim_multiplier: 2 # FFN hidden layer multiplier
|
| 46 |
+
use_temporal_pos_encoding: True # Use positional encoding
|
| 47 |
+
pos_encoding_type: sinusoidal # 'sinusoidal' (extrapolates) or 'learnable' (fixed length)
|
| 48 |
+
max_seq_len: 512 # Only needed for learnable encoding
|
| 49 |
+
# load:
|
| 50 |
+
# - dir: blahblah
|
| 51 |
+
# epoch:
|
| 52 |
+
# prefix: encoder
|
| 53 |
+
# freeze: True
|
| 54 |
+
|
| 55 |
+
train:
|
| 56 |
+
consq_n: 64
|
| 57 |
+
min_motion_lens: 20
|
| 58 |
+
batch_size: 12 # 16 if GPU memory allows
|
| 59 |
+
grad_max_norm: 0.5
|
| 60 |
+
learning_rate: 0.0003
|
| 61 |
+
|
| 62 |
+
lr_schedule:
|
| 63 |
+
type: exponential
|
| 64 |
+
gamma: 0.99
|
| 65 |
+
min: 0.01
|
| 66 |
+
|
| 67 |
+
epoch_num: 400
|
| 68 |
+
save_per: 5
|
| 69 |
+
|
| 70 |
+
# load trainer to continue training
|
| 71 |
+
# load:
|
| 72 |
+
# dir: prev_trainer
|
| 73 |
+
# epoch: None
|
| 74 |
+
|
| 75 |
+
# misc
|
| 76 |
+
copy_orig_contact: False
|
| 77 |
+
|
| 78 |
+
loss:
|
| 79 |
+
q: 5
|
| 80 |
+
p: 0.01
|
| 81 |
+
r: 10
|
| 82 |
+
pv: 1
|
| 83 |
+
c: 1
|
| 84 |
+
cv: 6
|
| 85 |
+
pen: 0.1
|
| 86 |
+
slide: 6
|
| 87 |
+
jerk: 0.2
|
| 88 |
+
|
| 89 |
+
metric: [qR, ra_xz, pa, slide, jerk, pen]
|
| 90 |
+
|
| 91 |
+
vae_kl:
|
| 92 |
+
kl_weight: 0.000001
|
| 93 |
+
nll_loss_type: None
|
| 94 |
+
|
config/human_train.yml
ADDED
|
@@ -0,0 +1,96 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
train_data:
|
| 2 |
+
dir: train_faceZ_mirror_wtextV3/motion/processed
|
| 3 |
+
mask: []
|
| 4 |
+
|
| 5 |
+
test_data:
|
| 6 |
+
dir: test_recon_faceZ_mirror_wtextV3/motion/processed
|
| 7 |
+
sample_num: 50 # Use only the first 50 samples for quick tests
|
| 8 |
+
|
| 9 |
+
representation:
|
| 10 |
+
skel: [lo, go, tf] # S
|
| 11 |
+
pose: [q, p, r, pv, qv, c] # D_t
|
| 12 |
+
out: [r, q, c] # \hat{D_t}
|
| 13 |
+
|
| 14 |
+
model:
|
| 15 |
+
z_dim: 128
|
| 16 |
+
Encoder:
|
| 17 |
+
type: GPSEncTemporal
|
| 18 |
+
hidden_dim: 256 # Fixed hidden dimension for all GPS layers
|
| 19 |
+
num_layers: 3 # Number of GPS layers
|
| 20 |
+
heads: 4 # Number of attention heads (for spatial GPS)
|
| 21 |
+
attn_type: multihead
|
| 22 |
+
attn_kwargs:
|
| 23 |
+
dropout: 0.1
|
| 24 |
+
# Temporal Transformer parameters (NEW!)
|
| 25 |
+
temporal_type: transformer # 'conv' or 'transformer'
|
| 26 |
+
temporal_num_heads: 4 # Number of attention heads for temporal
|
| 27 |
+
temporal_dropout: 0.1
|
| 28 |
+
temporal_ff_dim_multiplier: 2 # FFN hidden layer multiplier
|
| 29 |
+
use_temporal_pos_encoding: True # Use positional encoding
|
| 30 |
+
pos_encoding_type: sinusoidal # 'sinusoidal' (extrapolates) or 'learnable' (fixed length)
|
| 31 |
+
max_seq_len: 512 # Only needed for learnable encoding
|
| 32 |
+
consq_n: 64 # Number of consecutive frames (must match train.consq_n)
|
| 33 |
+
sample_posterior: True
|
| 34 |
+
Decoder:
|
| 35 |
+
type: GPSDecTemporal
|
| 36 |
+
hidden_dim: 256 # Fixed hidden dimension for all GPS layers
|
| 37 |
+
num_layers: 3 # Number of GPS layers
|
| 38 |
+
heads: 4 # Number of attention heads (for spatial GPS)
|
| 39 |
+
attn_type: multihead
|
| 40 |
+
attn_kwargs:
|
| 41 |
+
dropout: 0.1
|
| 42 |
+
# Temporal Transformer parameters (NEW!)
|
| 43 |
+
temporal_type: transformer # 'conv' or 'transformer'
|
| 44 |
+
temporal_num_heads: 4 # Number of attention heads for temporal
|
| 45 |
+
temporal_dropout: 0.1
|
| 46 |
+
temporal_ff_dim_multiplier: 2 # FFN hidden layer multiplier
|
| 47 |
+
use_temporal_pos_encoding: True # Use positional encoding
|
| 48 |
+
pos_encoding_type: sinusoidal # 'sinusoidal' (extrapolates) or 'learnable' (fixed length)
|
| 49 |
+
max_seq_len: 512 # Only needed for learnable encoding
|
| 50 |
+
consq_n: 64 # Number of consecutive frames (must match train.consq_n)
|
| 51 |
+
# load:
|
| 52 |
+
# - dir: blahblah
|
| 53 |
+
# epoch:
|
| 54 |
+
# prefix: encoder
|
| 55 |
+
# freeze: True
|
| 56 |
+
|
| 57 |
+
train:
|
| 58 |
+
consq_n: 64
|
| 59 |
+
min_motion_lens: 20
|
| 60 |
+
batch_size: 16 # 16 if GPU memory allows
|
| 61 |
+
grad_max_norm: 0.5
|
| 62 |
+
learning_rate: 0.0003
|
| 63 |
+
|
| 64 |
+
lr_schedule:
|
| 65 |
+
type: exponential
|
| 66 |
+
gamma: 0.99
|
| 67 |
+
min: 0.01
|
| 68 |
+
|
| 69 |
+
epoch_num: 400
|
| 70 |
+
save_per: 5
|
| 71 |
+
|
| 72 |
+
# load trainer to continue training
|
| 73 |
+
# load:
|
| 74 |
+
# dir: prev_trainer
|
| 75 |
+
# epoch: None
|
| 76 |
+
|
| 77 |
+
# misc
|
| 78 |
+
copy_orig_contact: False
|
| 79 |
+
|
| 80 |
+
loss:
|
| 81 |
+
q: 5
|
| 82 |
+
p: 0.01
|
| 83 |
+
r: 10
|
| 84 |
+
pv: 1
|
| 85 |
+
c: 1
|
| 86 |
+
cv: 6
|
| 87 |
+
pen: 0.1
|
| 88 |
+
slide: 6
|
| 89 |
+
jerk: 0.2
|
| 90 |
+
|
| 91 |
+
metric: [qR, ra_xz, pa, slide, jerk, pen]
|
| 92 |
+
|
| 93 |
+
vae_kl:
|
| 94 |
+
kl_weight: 0.000001
|
| 95 |
+
nll_loss_type: None
|
| 96 |
+
|
config/multi_dataset_train.yml
ADDED
|
@@ -0,0 +1,96 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
train_data:
|
| 2 |
+
dir: merge_train_faceZ_mirror_wtextV3_zooV2_train_wtextV2/motion/processed
|
| 3 |
+
mask: []
|
| 4 |
+
|
| 5 |
+
test_data:
|
| 6 |
+
dir: test_recon_faceZ_mirror_wtextV3/motion/processed
|
| 7 |
+
sample_num: 50 # Use only the first 50 samples for quick tests
|
| 8 |
+
|
| 9 |
+
representation:
|
| 10 |
+
skel: [lo, go, tf] # S
|
| 11 |
+
pose: [q, p, r, pv, qv, c] # D_t
|
| 12 |
+
out: [r, q, c] # \hat{D_t}
|
| 13 |
+
|
| 14 |
+
model:
|
| 15 |
+
z_dim: 128
|
| 16 |
+
Encoder:
|
| 17 |
+
type: GPSEncTemporal
|
| 18 |
+
hidden_dim: 256 # Fixed hidden dimension for all GPS layers
|
| 19 |
+
num_layers: 3 # Number of GPS layers
|
| 20 |
+
heads: 4 # Number of attention heads (for spatial GPS)
|
| 21 |
+
attn_type: multihead
|
| 22 |
+
attn_kwargs:
|
| 23 |
+
dropout: 0.1
|
| 24 |
+
# Temporal Transformer parameters (NEW!)
|
| 25 |
+
temporal_type: transformer # 'conv' or 'transformer'
|
| 26 |
+
temporal_num_heads: 4 # Number of attention heads for temporal
|
| 27 |
+
temporal_dropout: 0.1
|
| 28 |
+
temporal_ff_dim_multiplier: 2 # FFN hidden layer multiplier
|
| 29 |
+
use_temporal_pos_encoding: True # Use positional encoding
|
| 30 |
+
pos_encoding_type: sinusoidal # 'sinusoidal' (extrapolates) or 'learnable' (fixed length)
|
| 31 |
+
max_seq_len: 512 # Only needed for learnable encoding
|
| 32 |
+
consq_n: 64 # Number of consecutive frames (must match train.consq_n)
|
| 33 |
+
sample_posterior: True
|
| 34 |
+
Decoder:
|
| 35 |
+
type: GPSDecTemporal
|
| 36 |
+
hidden_dim: 256 # Fixed hidden dimension for all GPS layers
|
| 37 |
+
num_layers: 3 # Number of GPS layers
|
| 38 |
+
heads: 4 # Number of attention heads (for spatial GPS)
|
| 39 |
+
attn_type: multihead
|
| 40 |
+
attn_kwargs:
|
| 41 |
+
dropout: 0.1
|
| 42 |
+
# Temporal Transformer parameters (NEW!)
|
| 43 |
+
temporal_type: transformer # 'conv' or 'transformer'
|
| 44 |
+
temporal_num_heads: 4 # Number of attention heads for temporal
|
| 45 |
+
temporal_dropout: 0.1
|
| 46 |
+
temporal_ff_dim_multiplier: 2 # FFN hidden layer multiplier
|
| 47 |
+
use_temporal_pos_encoding: True # Use positional encoding
|
| 48 |
+
pos_encoding_type: sinusoidal # 'sinusoidal' (extrapolates) or 'learnable' (fixed length)
|
| 49 |
+
max_seq_len: 512 # Only needed for learnable encoding
|
| 50 |
+
consq_n: 64 # Number of consecutive frames (must match train.consq_n)
|
| 51 |
+
# load:
|
| 52 |
+
# - dir: blahblah
|
| 53 |
+
# epoch:
|
| 54 |
+
# prefix: encoder
|
| 55 |
+
# freeze: True
|
| 56 |
+
|
| 57 |
+
train:
|
| 58 |
+
consq_n: 64
|
| 59 |
+
min_motion_lens: 20
|
| 60 |
+
batch_size: 12 # 16 if GPU memory allows
|
| 61 |
+
grad_max_norm: 0.5
|
| 62 |
+
learning_rate: 0.0003
|
| 63 |
+
|
| 64 |
+
lr_schedule:
|
| 65 |
+
type: exponential
|
| 66 |
+
gamma: 0.99
|
| 67 |
+
min: 0.01
|
| 68 |
+
|
| 69 |
+
epoch_num: 400
|
| 70 |
+
save_per: 5
|
| 71 |
+
|
| 72 |
+
# load trainer to continue training
|
| 73 |
+
# load:
|
| 74 |
+
# dir: prev_trainer
|
| 75 |
+
# epoch: None
|
| 76 |
+
|
| 77 |
+
# misc
|
| 78 |
+
copy_orig_contact: False
|
| 79 |
+
|
| 80 |
+
loss:
|
| 81 |
+
q: 5
|
| 82 |
+
p: 0.01
|
| 83 |
+
r: 10
|
| 84 |
+
pv: 1
|
| 85 |
+
c: 1
|
| 86 |
+
cv: 6
|
| 87 |
+
pen: 0.1
|
| 88 |
+
slide: 6
|
| 89 |
+
jerk: 0.2
|
| 90 |
+
|
| 91 |
+
metric: [qR, ra_xz, pa, slide, jerk, pen]
|
| 92 |
+
|
| 93 |
+
vae_kl:
|
| 94 |
+
kl_weight: 0.000001
|
| 95 |
+
nll_loss_type: None
|
| 96 |
+
|
config/sample.yml
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
train_data:
|
| 2 |
+
dir: sample/motion/processed
|
| 3 |
+
mask: [src, tgt]
|
| 4 |
+
|
| 5 |
+
representation:
|
| 6 |
+
skel: [lo, go] # S
|
| 7 |
+
pose: [q, p, r, pv, qv, pprev, c] # D_t
|
| 8 |
+
out: [r, q, c] # \hat{D_t}
|
| 9 |
+
|
| 10 |
+
model:
|
| 11 |
+
z_dim: 32
|
| 12 |
+
Encoder:
|
| 13 |
+
type: GATEnc
|
| 14 |
+
hid_lyrs: [16, 16, 16]
|
| 15 |
+
heads_num: 16
|
| 16 |
+
Decoder:
|
| 17 |
+
type: GATDec
|
| 18 |
+
hid_lyrs: [16, 16, 16]
|
| 19 |
+
heads_num: 16
|
| 20 |
+
tgt_all_lyr: True
|
| 21 |
+
# load:
|
| 22 |
+
# - dir: blahblah
|
| 23 |
+
# epoch:
|
| 24 |
+
# prefix: encoder
|
| 25 |
+
# freeze: True
|
| 26 |
+
|
| 27 |
+
train:
|
| 28 |
+
consq_n: 8
|
| 29 |
+
batch_size: 256 # 512 if GPU memory allows
|
| 30 |
+
grad_max_norm: 0.5
|
| 31 |
+
learning_rate: 0.01
|
| 32 |
+
|
| 33 |
+
lr_schedule:
|
| 34 |
+
type: exponential
|
| 35 |
+
gamma: 0.99
|
| 36 |
+
min: 0.01
|
| 37 |
+
|
| 38 |
+
epoch_num: 300
|
| 39 |
+
save_per: 30
|
| 40 |
+
|
| 41 |
+
# load trainer to continue training
|
| 42 |
+
# load:
|
| 43 |
+
# dir: prev_trainer
|
| 44 |
+
# epoch: None
|
| 45 |
+
|
| 46 |
+
# misc
|
| 47 |
+
copy_orig_contact: False
|
| 48 |
+
|
| 49 |
+
loss:
|
| 50 |
+
q: 5
|
| 51 |
+
p: 0.01
|
| 52 |
+
r: 10
|
| 53 |
+
pv: 1
|
| 54 |
+
c: 1
|
| 55 |
+
cv: 6
|
| 56 |
+
z: 1
|
| 57 |
+
pen: 0.1
|
| 58 |
+
slide: 6
|
| 59 |
+
jerk: 0.2
|
| 60 |
+
|
| 61 |
+
metric: [qR, ra_xz, pa, slide, jerk, pen]
|
| 62 |
+
|
data/gradio_animo/bvh/arctic_wolf_female_fightflee.bvh
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/gradio_animo/bvh/arctic_wolf_female_fighttaunt.bvh
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/gradio_animo/bvh/dromedary_camel_male_runtostandturnl.bvh
ADDED
|
@@ -0,0 +1,295 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
HIERARCHY
|
| 2 |
+
ROOT joint_3652173982
|
| 3 |
+
{
|
| 4 |
+
OFFSET 0.000000 0.000000 0.000000
|
| 5 |
+
CHANNELS 6 Xposition Yposition Zposition Xrotation Yrotation Zrotation
|
| 6 |
+
JOINT joint_1065643261
|
| 7 |
+
{
|
| 8 |
+
OFFSET 0.000000 0.251600 -0.000000
|
| 9 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 10 |
+
JOINT joint_3369486670
|
| 11 |
+
{
|
| 12 |
+
OFFSET 0.000000 -5.031500 0.000000
|
| 13 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 14 |
+
JOINT joint_602128083
|
| 15 |
+
{
|
| 16 |
+
OFFSET 0.000000 -24.972099 -1.180000
|
| 17 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 18 |
+
JOINT joint_1164186991
|
| 19 |
+
{
|
| 20 |
+
OFFSET 0.000000 -24.868000 -2.565500
|
| 21 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 22 |
+
JOINT joint_1661228954
|
| 23 |
+
{
|
| 24 |
+
OFFSET 0.000000 -27.949499 -2.633300
|
| 25 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 26 |
+
JOINT joint_1393197377
|
| 27 |
+
{
|
| 28 |
+
OFFSET 0.000000 -31.537001 -8.536100
|
| 29 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 30 |
+
JOINT joint_283295117
|
| 31 |
+
{
|
| 32 |
+
OFFSET 0.000000 -24.062300 -4.144600
|
| 33 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 34 |
+
JOINT joint_172969524
|
| 35 |
+
{
|
| 36 |
+
OFFSET 0.000000 -24.337700 1.956700
|
| 37 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 38 |
+
JOINT joint_722122187
|
| 39 |
+
{
|
| 40 |
+
OFFSET 0.000000 -16.444000 18.478701
|
| 41 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 42 |
+
JOINT joint_482564213
|
| 43 |
+
{
|
| 44 |
+
OFFSET 0.000000 -8.510100 27.868700
|
| 45 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 46 |
+
JOINT joint_2290643481
|
| 47 |
+
{
|
| 48 |
+
OFFSET 0.000000 -2.095100 -3.463800
|
| 49 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 50 |
+
End Site
|
| 51 |
+
{
|
| 52 |
+
OFFSET 0.000000 -35.555618 -5.086917
|
| 53 |
+
}
|
| 54 |
+
}
|
| 55 |
+
JOINT joint_1816776104
|
| 56 |
+
{
|
| 57 |
+
OFFSET 9.829900 -16.800600 4.601600
|
| 58 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 59 |
+
End Site
|
| 60 |
+
{
|
| 61 |
+
OFFSET 1.083200 -0.549100 0.000000
|
| 62 |
+
}
|
| 63 |
+
}
|
| 64 |
+
JOINT joint_1637253561
|
| 65 |
+
{
|
| 66 |
+
OFFSET -9.829900 -16.800200 4.601700
|
| 67 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 68 |
+
End Site
|
| 69 |
+
{
|
| 70 |
+
OFFSET -1.083200 -0.549100 0.000000
|
| 71 |
+
}
|
| 72 |
+
}
|
| 73 |
+
}
|
| 74 |
+
}
|
| 75 |
+
}
|
| 76 |
+
}
|
| 77 |
+
}
|
| 78 |
+
JOINT joint_3717329289
|
| 79 |
+
{
|
| 80 |
+
OFFSET 12.345500 -19.388300 14.345600
|
| 81 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 82 |
+
JOINT joint_2924335438
|
| 83 |
+
{
|
| 84 |
+
OFFSET 3.528800 -10.724200 -30.398500
|
| 85 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 86 |
+
JOINT joint_1256690376
|
| 87 |
+
{
|
| 88 |
+
OFFSET -1.609000 22.300100 -28.436800
|
| 89 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 90 |
+
JOINT joint_452321840
|
| 91 |
+
{
|
| 92 |
+
OFFSET -0.340000 -4.427100 -50.441299
|
| 93 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 94 |
+
JOINT joint_3029316820
|
| 95 |
+
{
|
| 96 |
+
OFFSET 0.395800 2.286300 -45.104900
|
| 97 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 98 |
+
End Site
|
| 99 |
+
{
|
| 100 |
+
OFFSET 2.136950 -7.658850 -9.307650
|
| 101 |
+
}
|
| 102 |
+
}
|
| 103 |
+
}
|
| 104 |
+
JOINT joint_1830591162
|
| 105 |
+
{
|
| 106 |
+
OFFSET -0.170000 -2.213500 -25.220600
|
| 107 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 108 |
+
End Site
|
| 109 |
+
{
|
| 110 |
+
OFFSET -0.102000 -1.328100 -15.132400
|
| 111 |
+
}
|
| 112 |
+
}
|
| 113 |
+
}
|
| 114 |
+
}
|
| 115 |
+
}
|
| 116 |
+
JOINT joint_1864294951
|
| 117 |
+
{
|
| 118 |
+
OFFSET -12.345500 -19.388300 14.345200
|
| 119 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 120 |
+
JOINT joint_2523110081
|
| 121 |
+
{
|
| 122 |
+
OFFSET -3.528700 -10.724200 -30.398001
|
| 123 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 124 |
+
JOINT joint_111892690
|
| 125 |
+
{
|
| 126 |
+
OFFSET 1.608900 22.300100 -28.437000
|
| 127 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 128 |
+
JOINT joint_2213059258
|
| 129 |
+
{
|
| 130 |
+
OFFSET 0.340000 -4.427100 -50.441200
|
| 131 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 132 |
+
JOINT joint_875639747
|
| 133 |
+
{
|
| 134 |
+
OFFSET -0.395800 2.286200 -45.104801
|
| 135 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 136 |
+
End Site
|
| 137 |
+
{
|
| 138 |
+
OFFSET -2.136950 -7.658800 -9.307700
|
| 139 |
+
}
|
| 140 |
+
}
|
| 141 |
+
}
|
| 142 |
+
JOINT joint_2864695845
|
| 143 |
+
{
|
| 144 |
+
OFFSET 0.170000 -2.213500 -25.220600
|
| 145 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 146 |
+
End Site
|
| 147 |
+
{
|
| 148 |
+
OFFSET 0.102000 -1.328100 -15.132400
|
| 149 |
+
}
|
| 150 |
+
}
|
| 151 |
+
}
|
| 152 |
+
}
|
| 153 |
+
}
|
| 154 |
+
}
|
| 155 |
+
}
|
| 156 |
+
}
|
| 157 |
+
}
|
| 158 |
+
JOINT joint_3654464912
|
| 159 |
+
{
|
| 160 |
+
OFFSET 0.000000 25.554300 1.350900
|
| 161 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 162 |
+
JOINT joint_4041021681
|
| 163 |
+
{
|
| 164 |
+
OFFSET 0.000000 11.525400 -8.677300
|
| 165 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 166 |
+
End Site
|
| 167 |
+
{
|
| 168 |
+
OFFSET 0.000000 10.466900 -9.681700
|
| 169 |
+
}
|
| 170 |
+
}
|
| 171 |
+
}
|
| 172 |
+
JOINT joint_3736563935
|
| 173 |
+
{
|
| 174 |
+
OFFSET 16.096201 19.807301 -3.324200
|
| 175 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 176 |
+
JOINT joint_765483633
|
| 177 |
+
{
|
| 178 |
+
OFFSET 3.251300 -5.096100 -60.039398
|
| 179 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 180 |
+
JOINT joint_887334106
|
| 181 |
+
{
|
| 182 |
+
OFFSET -6.215900 21.873400 -41.419201
|
| 183 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 184 |
+
JOINT joint_2694044589
|
| 185 |
+
{
|
| 186 |
+
OFFSET 4.433700 -6.536300 -40.040798
|
| 187 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 188 |
+
End Site
|
| 189 |
+
{
|
| 190 |
+
OFFSET 2.670650 -9.349200 -13.122650
|
| 191 |
+
}
|
| 192 |
+
}
|
| 193 |
+
}
|
| 194 |
+
JOINT joint_131332004
|
| 195 |
+
{
|
| 196 |
+
OFFSET -3.107900 10.936700 -20.709600
|
| 197 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 198 |
+
End Site
|
| 199 |
+
{
|
| 200 |
+
OFFSET -1.864800 6.562000 -12.425800
|
| 201 |
+
}
|
| 202 |
+
}
|
| 203 |
+
}
|
| 204 |
+
JOINT joint_3630937574
|
| 205 |
+
{
|
| 206 |
+
OFFSET 1.625600 -2.548000 -30.019699
|
| 207 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 208 |
+
End Site
|
| 209 |
+
{
|
| 210 |
+
OFFSET 0.975400 -1.528800 -18.011801
|
| 211 |
+
}
|
| 212 |
+
}
|
| 213 |
+
}
|
| 214 |
+
JOINT joint_1060371951
|
| 215 |
+
{
|
| 216 |
+
OFFSET -16.096201 19.807301 -3.324700
|
| 217 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 218 |
+
JOINT joint_2091398058
|
| 219 |
+
{
|
| 220 |
+
OFFSET -3.251300 -5.096100 -60.039001
|
| 221 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 222 |
+
JOINT joint_3955709968
|
| 223 |
+
{
|
| 224 |
+
OFFSET 6.215900 21.873400 -41.419201
|
| 225 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 226 |
+
JOINT joint_3894818105
|
| 227 |
+
{
|
| 228 |
+
OFFSET -4.433600 -6.536300 -40.040798
|
| 229 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 230 |
+
End Site
|
| 231 |
+
{
|
| 232 |
+
OFFSET -2.670650 -9.349200 -13.122600
|
| 233 |
+
}
|
| 234 |
+
}
|
| 235 |
+
}
|
| 236 |
+
JOINT joint_105297424
|
| 237 |
+
{
|
| 238 |
+
OFFSET 3.107900 10.936700 -20.709600
|
| 239 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 240 |
+
End Site
|
| 241 |
+
{
|
| 242 |
+
OFFSET 1.864800 6.562000 -12.425800
|
| 243 |
+
}
|
| 244 |
+
}
|
| 245 |
+
}
|
| 246 |
+
JOINT joint_4010156290
|
| 247 |
+
{
|
| 248 |
+
OFFSET -1.625600 -2.548000 -30.019501
|
| 249 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 250 |
+
End Site
|
| 251 |
+
{
|
| 252 |
+
OFFSET -0.975400 -1.528800 -18.011700
|
| 253 |
+
}
|
| 254 |
+
}
|
| 255 |
+
}
|
| 256 |
+
JOINT joint_4044042034
|
| 257 |
+
{
|
| 258 |
+
OFFSET -0.124900 32.522900 -16.225901
|
| 259 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 260 |
+
End Site
|
| 261 |
+
{
|
| 262 |
+
OFFSET 0.000000 5.394500 -1.864600
|
| 263 |
+
}
|
| 264 |
+
}
|
| 265 |
+
}
|
| 266 |
+
}
|
| 267 |
+
MOTION
|
| 268 |
+
Frames: 26
|
| 269 |
+
Frame Time: 0.050000
|
| 270 |
+
4.996357 143.046799 43.242477 -95.241299 10.205813 10.572636 0.000000 -0.000001 0.005543 -3.131104 0.018228 -0.236865 -2.212023 0.027582 6.383848 0.137973 -0.947171 18.907190 3.301258 0.001812 17.450462 -1.584496 -1.442347 14.978867 8.230672 -3.640175 1.192987 9.175678 -0.935375 4.673979 -5.075739 -0.384090 6.669859 -24.643687 4.847425 4.919033 -5.997080 0.000003 0.000000 -4.120415 -8.348802 0.508513 -3.850572 8.259474 -1.796394 8.364322 -9.633745 7.093896 -31.779884 13.829268 3.512720 -1.672002 8.735820 -18.893277 42.210904 -3.674898 3.505656 -17.098660 -11.562365 -5.112657 -0.001677 -0.021229 -0.241915 -4.483377 -7.547251 -7.431535 -42.862284 18.238267 12.982348 -7.696743 -10.395194 -20.315332 36.056870 3.405517 -2.632448 -0.418934 -8.534516 11.768816 -0.001089 0.014173 0.161549 -0.005413 0.000000 -0.000008 3.432831 -0.000001 0.000000 18.089598 2.097976 2.961525 33.674172 10.732201 -2.365506 -16.081223 -2.664409 -0.749122 39.346726 9.364605 8.358458 -0.111759 0.403531 -0.762294 0.000013 0.000000 0.000006 0.139869 9.604948 19.649407 38.302822 -12.005197 3.162693 -18.724556 -0.384549 0.709852 6.802784 -18.381147 1.658254 -0.403621 -1.573365 2.953599 0.000003 -0.000003 -0.000002 -0.005954 0.000002 -0.000007
|
| 271 |
+
15.727739 147.499603 81.666749 -91.150872 9.129551 19.225220 -0.000000 0.000000 0.005543 -7.159961 0.024093 -0.204634 -1.660540 1.084409 5.938094 6.130371 3.149694 18.767763 4.408660 1.839616 17.335148 -1.461229 0.104071 20.868178 4.310179 -4.616886 0.808245 0.799978 1.852729 2.215887 -10.145267 -1.455990 2.999416 -20.599806 4.502557 4.015110 -5.997082 0.000004 0.000002 -3.804714 -7.808800 0.843122 -3.698557 7.769682 -1.320964 15.957065 -8.738422 7.843138 -35.189368 9.056585 3.019777 5.245831 5.982888 -12.853618 31.388224 -3.094055 2.047581 -18.854868 -10.289164 -11.431598 -0.000775 -0.009918 -0.113011 -6.434761 -9.536389 -9.008834 -50.800413 21.737435 18.532794 -6.273183 -17.694049 -14.617090 27.907304 2.845402 -1.634545 -3.909456 -10.619646 8.870724 -0.000519 0.006837 0.077936 -1.767927 0.267685 -0.070660 -3.890227 0.327706 -0.105389 -17.123090 -0.010610 1.257143 62.901699 17.323370 -8.880664 -37.903653 -8.534913 -4.411148 58.617232 12.880548 8.646474 -0.121382 0.439286 -0.829662 0.000011 0.000003 0.000005 9.216770 11.635843 23.794242 29.053567 -9.391847 1.674225 -7.436767 -1.461415 0.014718 21.303370 -24.490668 7.580116 -0.214268 -0.793191 1.495144 0.000005 0.000000 -0.000001 -0.005961 -0.000002 -0.000007
|
| 272 |
+
29.968049 154.686905 116.658220 -90.814419 7.394562 27.041924 -0.000000 0.000000 0.005542 -9.615582 -0.025024 0.504657 2.099102 2.399239 5.762258 13.003541 7.885038 18.066813 3.017257 2.993549 17.327384 -2.220693 1.398946 27.697741 1.108444 -4.373736 -0.386874 -4.395847 2.332681 -0.562033 -11.265954 -2.559349 -1.922198 -20.737462 6.387705 5.802623 -5.997082 0.000003 0.000000 -3.369749 -7.061741 1.294629 -3.465323 7.077245 -0.644604 14.337376 -6.809241 5.175385 -31.081520 2.912046 0.002406 14.481427 3.293913 -4.303876 12.540940 -1.379985 0.357786 9.198797 -7.155911 -13.200596 -0.000085 -0.001051 -0.011979 -7.014523 -6.532844 -5.365616 -54.581768 18.833544 17.557745 7.543215 -16.051190 -6.564766 0.735956 0.075628 0.001541 24.728615 -14.439490 11.453246 0.000053 -0.000501 -0.005675 4.270948 0.126760 -0.554817 -2.356936 0.297461 -0.633499 -37.909176 -0.839332 2.682959 54.389468 15.784866 -6.655175 -31.075222 -4.257495 -2.627845 56.882571 5.755332 13.714480 -0.356134 1.369470 -2.573491 0.000017 0.000002 0.000004 2.295405 12.806874 25.332044 44.262122 -13.529029 4.333266 -17.409337 4.981560 1.008376 21.755764 -25.903499 9.094176 0.054339 0.188978 -0.358249 0.000005 -0.000004 -0.000003 -0.005961 0.000000 -0.000009
|
| 273 |
+
47.510709 158.080642 148.884097 -93.243118 4.219588 34.873613 0.000000 -0.000000 0.005544 -6.146088 -0.045459 0.763827 0.890533 4.054208 5.714678 11.521327 9.042172 17.206575 6.428301 4.569525 17.869699 -1.792492 2.415041 29.311003 1.369233 3.357040 -1.798605 -2.311297 -5.341383 -0.949261 -11.053579 -2.333201 -4.768999 -23.867909 6.579982 6.737709 -5.997082 0.000004 0.000001 -2.838499 -6.092693 1.862610 -3.149919 6.150509 0.263396 10.988007 -3.127357 2.011293 -34.228842 -3.910567 -4.328964 -8.240378 4.804378 1.637247 47.690108 -3.784484 4.403790 51.188712 -4.545411 -12.143775 -0.002378 -0.029785 -0.339458 -5.782365 -3.100944 -1.199563 -33.317021 10.230403 9.237856 -7.709731 -9.995461 -19.898226 17.262039 1.884503 -0.671661 16.724521 -9.395953 14.657907 -0.000159 0.002251 0.025682 10.333596 -0.157791 -0.922327 0.746873 0.062664 -0.999493 -39.586584 -0.677021 6.924497 31.659244 10.155756 -2.050874 -13.503279 3.463889 -0.126553 36.040628 -11.400370 13.564849 -0.472641 1.881524 -3.526707 0.000008 0.000004 0.000006 -10.486321 11.713830 23.401549 59.991019 -16.835705 8.094959 -34.061141 11.453343 4.215146 29.095101 -23.736288 11.612769 0.302814 1.001794 -1.909061 0.000000 -0.000004 -0.000003 -0.005959 0.000001 -0.000008
|
| 274 |
+
67.803996 155.339996 179.594928 -98.532038 -1.437394 43.110269 0.000000 0.000000 0.005544 -2.194442 -0.021792 0.289679 1.515136 3.595337 5.771370 10.197925 7.913385 17.121498 9.163980 4.316405 18.084095 3.318277 3.693920 28.084713 2.443489 10.236532 -2.239183 -0.237368 -10.039557 -1.281558 -10.750278 -2.767639 -4.963881 -22.276928 5.516663 5.403373 -5.997082 0.000005 0.000001 -2.259629 -4.991140 2.488598 -2.725038 5.081002 1.334073 10.125195 -0.918658 0.568731 -43.742209 -3.016339 -8.076782 -7.129415 4.471643 3.349015 61.695808 -3.558751 6.749170 48.970239 -6.433298 -8.080201 -0.004729 -0.057285 -0.653002 -1.505619 -1.875200 0.341690 -19.754097 2.425012 8.368765 -12.928729 -4.278177 -34.827082 29.017816 2.918621 -1.757070 10.169683 -3.006729 22.384038 -0.000610 0.008060 0.091873 7.012162 -0.101685 -0.620665 -0.867765 0.039810 -0.808395 -23.651959 5.427790 10.380609 5.381271 1.796910 0.054916 0.482630 6.967137 0.790791 22.517489 -20.638649 9.674234 -0.294702 1.114208 -2.096575 0.000009 0.000002 0.000006 -21.187320 5.102017 21.581489 59.793675 -16.801178 8.042572 -34.855482 11.628781 4.432524 19.282156 -16.366803 5.223667 0.301279 0.996984 -1.899839 0.000007 -0.000002 0.000001 -0.005956 -0.000001 -0.000011
|
| 275 |
+
87.652408 150.609496 204.088337 -103.010872 -8.597777 49.436845 -0.000000 -0.000001 0.005544 2.207259 0.009580 -0.209828 2.927141 2.457278 5.859531 8.388310 5.678594 17.172565 10.789115 3.101359 17.670762 11.094422 5.035812 26.381779 2.705402 10.116369 -1.605788 -0.264323 -5.989859 -4.453813 -10.300695 -4.950454 -3.158163 -17.844859 4.458409 3.775407 -5.997080 0.000003 0.000000 -1.650727 -3.768511 3.154212 -2.174844 3.845973 2.592349 13.826908 -0.154201 5.435165 -47.482062 1.051732 -10.754543 -25.927858 9.325818 0.216167 73.307068 -2.673783 8.764443 57.887534 -4.897251 -2.072218 -0.007665 -0.089352 -1.018805 5.077765 -1.824323 0.223678 -18.142261 -0.652067 9.715841 -2.362329 -5.820211 -45.227270 19.349495 2.085716 -0.828031 18.931613 3.550329 29.579429 -0.000205 0.002862 0.032645 2.452926 -0.029969 -0.221366 -3.142859 0.057235 -0.501607 -15.834824 4.896899 10.922918 16.351493 5.424520 -0.354380 -9.786057 1.433571 0.290990 22.410728 -18.826822 7.205978 -0.216597 0.802370 -1.512345 0.000011 0.000001 0.000005 -19.167488 1.317348 24.090128 55.090987 -15.924393 6.829902 -30.279678 10.135648 3.385883 8.670140 -11.770577 1.958344 0.243289 0.814085 -1.549444 0.000003 -0.000001 -0.000003 -0.005957 0.000001 -0.000007
|
| 276 |
+
108.308842 146.690795 224.824620 -105.246439 -14.847647 55.350061 0.000000 0.000000 0.005542 5.802130 0.032760 -0.515296 3.974356 0.996663 6.045669 6.649118 3.048600 16.749729 11.773821 1.621936 16.539243 18.273468 6.039808 24.355192 2.961870 9.720466 -0.999303 -0.103405 -1.759593 -7.816076 -9.463463 -7.404521 -0.826751 -13.099119 3.412798 2.427500 -5.997084 0.000002 0.000002 -1.053102 -2.494825 3.833889 -1.505997 2.523189 3.982323 17.110281 1.240191 11.975307 -46.501702 7.779531 -7.904463 -35.417369 10.721411 -6.283582 50.478735 -3.808945 4.820926 64.103668 -4.465566 -8.259416 -0.002737 -0.034067 -0.388232 11.947465 -1.835002 0.096503 -20.298822 2.285390 10.822148 3.763176 -7.052095 -44.201020 19.127679 2.061318 -0.797206 26.982857 8.294373 32.864426 -0.000183 0.002556 0.029164 0.000179 -0.002483 -0.000166 -4.304861 0.229269 -0.182713 -5.609919 2.478344 7.282747 43.062340 13.233319 -4.085152 -30.275579 -6.875970 -2.886051 12.846935 -14.261279 1.509125 -0.095925 0.345084 -0.652098 0.000011 0.000002 0.000004 -18.144643 -1.157345 25.412716 48.545875 -14.536932 5.267469 -24.266894 7.969996 2.184059 2.761081 -8.936050 0.612944 0.163801 0.556794 -1.057976 0.000005 -0.000004 -0.000003 -0.005961 -0.000002 -0.000006
|
| 277 |
+
131.153265 146.303252 241.464238 -104.081760 -17.195268 62.296112 -0.000001 0.000000 0.005544 7.205226 0.101529 -1.592626 4.162862 -0.059787 5.832012 5.115081 0.994618 16.277570 10.876222 0.308323 15.155126 22.312819 6.341089 22.151275 2.910028 9.096418 -0.554582 0.035277 1.066360 -9.842311 -7.691803 -8.616013 1.153175 -8.709726 2.764344 1.655746 -5.997082 0.000004 0.000002 -0.480115 -1.153554 4.513147 -0.707115 1.113414 5.510050 2.759446 3.083924 11.664848 -28.719539 8.640337 -8.343377 -30.971649 2.219615 0.063881 31.287018 -3.088938 2.056887 25.925710 -3.185462 -15.875808 -0.000800 -0.010221 -0.116493 15.934567 -1.887127 0.027737 -24.203093 5.566307 11.541122 8.299549 -10.036131 -34.156913 9.997755 1.111908 -0.289049 50.405620 7.703072 23.201346 -0.000065 0.001028 0.011744 0.000181 -0.002487 -0.000158 2.049801 0.876535 0.069925 6.289012 1.702530 0.976437 48.987898 14.636575 -5.368022 -37.269843 -9.982200 -4.705694 19.042142 -5.891285 0.737469 0.042338 -0.147532 0.279635 0.000012 0.000003 0.000002 -18.204656 -0.517659 27.749139 37.891817 -11.895193 3.087825 -16.272563 4.954944 0.951742 8.319256 -12.885607 1.999919 0.074645 0.258469 -0.490200 0.000007 -0.000003 -0.000002 -0.005955 -0.000000 -0.000008
|
| 278 |
+
154.011680 147.606397 254.671086 -102.176466 -17.433623 69.460639 0.000000 0.000000 0.005544 6.650070 0.162967 -2.718625 4.729413 -1.234450 5.414750 4.751863 -0.689368 14.828072 8.605076 -1.039273 13.076347 22.870899 5.771878 19.750890 2.402334 8.549807 -0.352765 0.107786 2.023949 -9.984346 -4.767287 -7.953900 2.233042 -3.611655 3.106216 1.497529 -5.997078 0.000003 0.000000 0.063768 0.161898 5.178884 0.216828 -0.317299 7.140637 -1.441687 3.291713 10.677439 -21.917969 12.804916 -5.710192 -16.934856 -5.820591 -1.347737 6.294484 -0.698700 0.090318 16.593699 -4.608174 -14.126506 -0.000041 -0.000438 -0.005012 16.106275 -1.830605 -0.007281 -27.134615 7.177611 11.469156 -14.058433 -2.670708 -27.093252 43.450399 3.684355 -3.710520 56.702594 4.453821 14.289126 -0.001786 0.022732 0.259093 0.000181 -0.002488 -0.000161 13.642277 1.766294 0.216691 17.268051 -0.409749 -6.090128 44.175056 13.507781 -4.315065 -35.078311 -9.722857 -4.347761 25.195957 0.416973 -0.457815 0.063009 -0.218647 0.414592 0.000011 0.000002 0.000002 -17.657186 0.143867 28.097658 26.737974 -8.696759 1.368843 -8.991435 2.019531 0.179863 15.317575 -15.681879 4.036575 -0.000540 -0.001866 0.003538 0.000010 -0.000004 -0.000009 -0.005954 0.000001 -0.000006
|
| 279 |
+
175.710152 149.632902 264.342626 -100.796356 -16.593272 75.955860 -0.000001 -0.000000 0.005540 4.664416 0.175690 -2.925280 6.062022 -2.628172 5.224985 5.220408 -2.197692 12.112248 5.766833 -2.300806 10.494484 19.886712 4.338785 17.613674 1.489942 8.032899 -0.325434 0.454313 2.126276 -9.272373 -1.755390 -6.773402 2.931532 2.220185 4.426526 1.598069 -5.997083 0.000004 0.000001 0.564752 1.449263 5.780512 1.253506 -1.743226 8.848792 0.204938 1.857115 8.543384 -28.186392 18.914817 -1.206823 -12.266874 -11.926443 -1.069544 21.363724 -2.281372 0.995078 15.136777 -1.873053 -13.784055 -0.000299 -0.003802 -0.043334 14.536734 -1.619287 -0.067015 -35.587444 6.646799 10.337401 -17.044119 -2.471897 -23.747872 49.199274 3.782415 -4.656133 18.201543 2.832160 23.268246 -0.002639 0.033125 0.377544 0.000179 -0.002489 -0.000158 22.004426 2.361141 0.273309 19.212352 -2.187621 -0.190880 42.929247 13.200164 -4.058008 -33.558259 -10.035812 -4.248620 26.940253 2.077534 -0.495328 0.128454 -0.439743 0.834966 0.000010 0.000002 0.000006 -8.835851 0.059271 23.254885 33.702532 -10.740199 2.370078 -19.332407 4.243387 1.221054 10.639305 -10.490216 1.081470 -0.063179 -0.225523 0.426478 0.000001 -0.000003 -0.000002 -0.005956 -0.000001 -0.000004
|
| 280 |
+
195.815698 151.946301 271.685826 -100.029671 -15.237380 81.550817 0.000001 0.000000 0.005546 2.425932 0.178487 -3.019979 7.815485 -3.337459 5.156434 5.647103 -3.000279 9.942303 2.961291 -3.007113 8.529995 14.883809 2.632904 15.407633 0.682673 7.093521 -0.312898 0.763826 2.051330 -8.012429 0.042881 -5.625120 3.329903 7.122828 5.648327 1.512749 -5.997076 0.000004 0.000003 1.001505 2.686394 6.373311 2.391131 -3.120612 10.607579 1.793969 0.439162 5.744897 -20.784556 17.053608 1.326903 -11.498656 -10.528427 -2.247759 25.323188 -2.625960 1.360712 0.057623 1.427555 -13.716333 -0.000372 -0.004719 -0.053784 13.197270 -1.465341 -0.099290 -41.135441 4.960264 8.289294 -7.538406 -4.964977 -21.527525 30.413102 3.024971 -1.918952 5.541376 3.357176 28.202114 -0.000708 0.009282 0.105806 0.000184 -0.002485 -0.000159 21.361895 2.324024 0.207897 17.591745 -3.249684 4.480747 43.236571 13.276622 -4.120806 -30.012828 -11.594147 -4.109392 26.320890 5.058311 1.481407 0.378437 -1.234466 2.356170 0.000009 0.000002 0.000004 2.763457 -1.444313 18.301074 30.618103 -9.852934 1.896243 -24.666311 4.988818 1.781519 10.099243 -6.661781 0.003498 -0.122432 -0.443129 0.836932 0.000003 -0.000006 -0.000002 -0.005959 0.000002 -0.000008
|
| 281 |
+
214.498133 154.235242 276.786535 -99.875494 -13.747478 86.020035 0.000000 -0.000000 0.005541 0.096592 0.193680 -3.306670 8.876833 -3.509589 5.195612 7.085761 -3.017993 9.189123 2.548737 -3.040605 7.562704 8.609606 1.074487 13.218398 0.351238 5.553108 -0.162608 0.600670 2.139244 -6.599897 0.225395 -4.662961 3.083682 9.037769 5.522473 1.263638 -5.997080 0.006829 0.001521 1.394983 3.842433 6.906985 3.596647 -4.402867 12.386657 0.104374 -0.897542 0.454341 -15.131597 12.828626 4.366971 -8.820787 -7.118578 -2.830936 25.390012 -2.629909 1.369978 -7.096264 2.994050 -12.355073 -0.000464 -0.005943 -0.067719 11.975563 -1.330175 -0.121085 -40.872575 3.455610 5.864881 -14.424694 -3.467151 -15.635327 34.135708 3.250048 -2.413383 1.395050 2.059319 27.346132 -0.000998 0.012951 0.147613 0.000181 -0.002487 -0.000160 12.011467 1.761397 -0.031002 -1.754226 -7.327864 0.667948 54.139360 15.734575 -6.593280 -35.818690 -14.237566 -5.514465 28.371994 4.936731 2.774726 0.581324 -1.830361 3.508177 0.000011 0.000003 0.000005 12.043512 -4.490714 14.388280 23.114016 -7.581190 0.947838 -21.368291 4.224816 1.330261 13.325284 -5.137987 0.206346 -0.106671 -0.384628 0.726680 0.000004 -0.000003 -0.000003 -0.005959 0.000001 -0.000008
|
| 282 |
+
232.378062 157.317700 280.317663 -100.246776 -11.033927 88.150184 -0.000001 -0.000001 0.005543 -1.451826 0.129428 -2.183225 7.352271 -3.861918 6.254682 7.062846 -3.137162 8.392442 4.245041 -2.721689 6.897444 2.188031 -0.316449 11.122086 0.110515 3.675446 0.103144 0.245139 2.287549 -5.145238 0.056388 -3.694463 2.486498 8.893027 4.294921 0.977117 -5.976096 0.027312 0.006081 1.747734 4.916366 7.394178 4.838480 -5.587417 14.145779 1.956684 -1.495151 -4.078744 -16.068976 7.999442 7.596215 0.423945 -4.882616 -3.978528 16.893610 -1.832396 0.629439 -9.981825 3.351818 -11.202566 -0.000178 -0.002273 -0.025914 10.783189 -1.213536 -0.136208 -38.840652 1.294327 3.336751 -6.610000 -3.352008 -10.522360 11.017239 1.234681 -0.290070 10.674018 2.010089 24.886127 -0.000036 0.000723 0.008260 0.000178 -0.002488 -0.000161 0.435915 1.100529 -0.327586 -18.336087 -9.971636 -1.140948 50.474226 14.965366 -5.711556 -34.481759 -13.896637 -5.321522 34.656844 4.426867 2.883545 0.557940 -1.763652 3.378692 0.000009 0.000002 0.000004 11.984525 -6.431846 12.438765 19.639028 -6.483688 0.611117 -19.346366 4.156887 1.216507 19.195917 -6.229690 0.870328 -0.070343 -0.251484 0.475497 0.000004 -0.000002 -0.000000 -0.005956 -0.000001 -0.000007
|
| 283 |
+
248.320415 159.365597 282.395452 -99.951870 -10.242379 90.247820 -0.000000 0.000001 0.005543 -0.338335 0.070438 -1.211331 4.446314 -3.738788 6.438874 5.912014 -3.023495 7.982549 6.148346 -2.303064 6.718014 -3.085306 -1.379918 9.128571 -0.296031 1.859185 0.367803 -0.042207 2.346991 -3.710658 0.062482 -2.671380 1.689147 6.854867 2.764529 0.718094 -5.955115 0.047796 0.010632 2.023123 5.891217 7.829899 6.079533 -6.618188 15.841190 3.962928 -2.515139 -6.643073 -20.665784 4.941984 7.031116 -1.232782 -1.636009 -2.134973 28.910715 -2.908217 1.774232 -1.461786 2.198388 -10.968405 -0.000678 -0.008695 -0.099073 9.800917 -1.106557 -0.132366 -31.694199 -1.733558 1.136083 -4.528066 -1.130331 -13.380119 9.914388 1.089061 -0.232038 4.392604 2.126626 27.400323 -0.000016 0.000415 0.004776 0.000177 -0.002489 -0.000162 -8.024918 0.696822 -0.504085 -21.464857 -10.242515 3.186479 28.054008 9.093624 -1.538977 -21.210280 -9.845041 -2.864298 36.751134 1.021812 3.988751 0.351706 -1.152899 2.199268 0.000008 0.000003 0.000007 3.685900 -6.733708 10.065250 29.644986 -9.566989 1.756680 -18.550180 5.988156 1.473378 3.723814 -3.390719 -1.244296 0.094625 0.326280 -0.619069 0.000003 -0.000004 -0.000001 -0.005961 -0.000001 -0.000010
|
| 284 |
+
262.295269 159.399196 283.697973 -98.598495 -14.153043 92.102715 -0.000001 -0.000001 0.005544 4.287948 -0.011160 0.165962 3.159959 -3.238969 5.669839 4.354504 -2.713118 7.391760 7.533093 -2.032194 6.404509 -5.998687 -1.778037 7.387151 -0.679433 0.656910 0.524304 -0.168960 2.165542 -2.608564 0.191980 -1.886168 1.108381 4.061052 1.465931 0.449129 -5.955121 0.068277 0.015200 2.198400 6.485881 8.097749 6.890527 -7.238746 16.928831 2.019167 -5.596554 -7.547245 -18.322830 7.334424 1.663325 -7.824943 0.688713 4.214864 43.992537 -3.715393 3.789071 14.947317 0.741812 -8.845143 -0.001873 -0.023673 -0.269780 9.070842 -1.024845 -0.142770 -31.974690 -4.080594 -0.974683 1.848332 0.956162 -12.939459 18.498865 1.997291 -0.750416 -5.147695 0.906799 27.614010 -0.000181 0.002557 0.029163 0.000181 -0.002487 -0.000160 -11.308018 0.630188 -0.537844 -12.921291 -6.193022 13.118871 -2.240273 -0.744906 -0.072509 -2.252787 -3.304261 -0.841587 30.098888 -5.644764 4.885353 0.101029 -0.347812 0.660037 0.000008 -0.000001 0.000009 -3.937884 -7.115977 11.307252 44.579841 -13.606379 4.399991 -18.262642 8.669287 1.306468 -11.733708 0.695777 -6.888154 0.396186 1.288267 -2.459737 0.000005 -0.000005 0.000002 -0.005959 -0.000001 -0.000007
|
| 285 |
+
275.714856 158.266902 283.954442 -96.268807 -18.094063 94.324331 -0.000001 0.000000 0.005543 8.624877 -0.062365 1.047280 2.266685 -2.515643 4.585321 2.595924 -2.252664 6.607227 8.978781 -1.663814 5.954751 -7.038422 -1.755837 5.832150 -1.032339 -0.165879 0.641164 -0.254814 1.755107 -1.532843 0.322762 -1.165359 0.565313 1.411066 0.440582 0.137534 -5.934141 0.075110 0.016695 2.353104 7.017216 8.334885 7.662319 -7.777091 17.942547 -0.526077 -6.520897 -7.714707 -19.058506 7.401913 -0.090378 -13.352327 1.612649 4.040605 53.456728 -3.789364 5.318386 29.867084 2.873894 -7.531797 -0.003177 -0.039258 -0.447455 7.899961 -0.923779 -0.126094 -28.983330 -5.534501 -1.473222 7.444362 1.230959 -13.269813 19.205868 2.067571 -0.808142 -7.046283 1.255978 27.263496 -0.000254 0.003473 0.039614 0.000185 -0.002487 -0.000161 -12.296479 0.655142 -0.570511 -9.121801 -5.499356 16.527678 -2.939651 -0.976717 -0.101102 0.962348 -1.581632 -0.382829 23.265793 -8.482045 3.657890 0.063483 -0.220262 0.417669 0.000008 0.000001 0.000006 -5.585923 -5.014622 9.501525 45.154709 -13.745283 4.521772 -16.377041 8.420441 0.893319 -8.283390 0.041001 -8.323936 0.431300 1.393656 -2.662892 0.000003 -0.000001 0.000000 -0.005955 0.000001 -0.000008
|
| 286 |
+
288.549177 155.706294 283.520757 -92.839094 -21.057173 97.405093 0.000000 0.000000 0.005544 10.561706 -0.053100 0.934056 2.254847 -1.646886 3.495535 1.756955 -1.558951 5.818917 9.960093 -1.137902 5.329872 -6.812371 -1.632955 4.550519 -1.262271 -0.616503 0.737171 -0.455421 1.121552 -0.407315 0.279382 -0.378198 -0.180101 -0.425248 -0.302922 -0.130774 -5.913164 0.095598 0.021230 2.538790 7.737316 8.657287 8.758006 -8.474280 19.353080 -3.435750 -4.931569 -6.732476 -14.604274 5.305465 -0.652809 -12.671392 2.222708 2.065995 47.638954 -3.789182 4.360091 25.214363 4.646325 -7.760727 -0.002333 -0.029174 -0.332489 6.186288 -0.760826 -0.095508 -20.765166 -7.149408 -0.447089 8.441008 1.034992 -14.075741 17.630710 1.910741 -0.684244 -6.253895 2.272458 26.590453 -0.000181 0.002556 0.029163 0.000186 -0.002489 -0.000161 -12.669157 0.699159 -0.605365 -10.150510 -9.232426 15.787375 19.792708 6.532749 -0.624598 -10.667934 -4.758970 -0.802677 17.657258 -8.107100 1.637177 0.143494 -0.489704 0.930130 0.000009 0.000001 0.000006 -2.750953 0.199685 2.684712 40.869833 -12.678249 3.647727 -17.910024 7.615984 1.324981 -1.171935 -0.965900 -4.248131 0.283873 0.942500 -1.795364 0.000001 -0.000003 -0.000002 -0.005959 0.000001 -0.000007
|
| 287 |
+
300.596480 155.511042 282.290746 -90.242205 -20.647235 99.917994 -0.000001 0.000001 0.005543 11.707995 -0.048694 0.823842 2.888952 -0.994368 2.903249 0.705666 -1.019490 4.928237 8.642497 -0.835382 4.408616 -5.197437 -1.335105 3.745619 -1.261914 -0.444722 0.715898 -0.759180 0.723729 -0.094042 0.002666 -0.116975 -0.506585 -0.870494 -0.553270 -0.227947 -5.871211 0.136579 0.030276 2.682843 8.319876 8.902941 9.686760 -9.018937 20.543604 -5.494894 -2.738254 -4.884095 -10.808014 3.303052 -0.733927 -7.875382 2.691748 -2.338197 31.479393 -3.091437 2.069840 21.064714 5.594545 -4.687231 -0.000795 -0.010222 -0.116492 4.478029 -0.578897 -0.067648 -13.252296 -7.653606 0.859073 6.815153 1.140857 -14.506869 18.681822 2.012324 -0.769351 -4.737400 3.058655 25.647188 -0.000183 0.002556 0.029163 0.000177 -0.002488 -0.000161 -13.031257 0.748208 -0.645031 -6.666651 -8.225399 15.117696 25.180842 8.221374 -1.179339 -16.827405 -5.727970 -1.390843 15.949206 -6.325940 0.679675 0.099113 -0.341360 0.647772 0.000011 0.000001 0.000006 0.034389 3.966442 -3.682514 34.680546 -11.015178 2.530122 -18.459813 5.950186 1.385201 3.681142 -0.834917 -0.245241 0.100850 0.347271 -0.658989 0.000003 -0.000003 -0.000003 -0.005957 0.000000 -0.000007
|
| 288 |
+
312.084395 158.917002 280.581304 -89.441437 -15.692989 101.478709 0.000002 0.000000 0.005543 11.497226 -0.045868 0.769363 2.377985 -0.474808 2.655488 -0.900869 -0.613634 4.090982 5.918136 -0.576233 3.455629 -3.175384 -1.007448 2.987337 -1.248928 -0.154771 0.680088 -1.005682 0.447725 -0.077587 -0.219614 -0.111879 -0.450063 -1.420495 -0.685713 -0.286359 -5.829274 0.177566 0.039292 2.801286 8.785532 9.109161 10.465614 -9.430375 21.528824 -4.895442 -1.536423 -3.319092 -9.548196 2.157602 -0.500006 -2.519896 2.139158 -4.394290 18.403257 -1.994523 0.731608 4.826508 1.839819 -2.511753 -0.000179 -0.002274 -0.025914 3.032323 -0.375757 -0.069939 -6.874251 -7.212669 1.855819 2.470771 1.576758 -15.240206 21.496759 2.284772 -0.995217 4.697910 4.395825 24.005389 -0.000181 0.002556 0.029163 0.000184 -0.002487 -0.000160 -13.680441 0.771284 -0.670163 -4.926749 -5.704329 14.582494 19.336250 6.386936 -0.584938 -12.419085 -4.353812 -0.873702 10.774618 -4.943337 0.145116 0.078157 -0.270331 0.512766 0.000005 0.000003 0.000006 1.604527 3.886424 -6.816058 21.801491 -7.169607 0.812855 -11.743397 3.566184 0.631588 3.496636 -0.763362 0.435695 0.043091 0.150228 -0.284727 0.000005 -0.000002 -0.000004 -0.005959 0.000000 -0.000007
|
| 289 |
+
318.685653 161.187693 279.610204 -89.441722 -10.370064 102.592653 -0.000000 -0.000000 0.005544 7.921412 -0.020744 0.410966 2.019068 -0.257420 2.445164 -0.168215 -0.338287 3.513101 3.818646 -0.358530 2.789225 -2.012236 -0.826540 2.157663 -1.227077 -0.008727 0.619769 -1.125990 0.435261 -0.247651 -0.344360 -0.152812 -0.473120 -1.764153 -0.794730 -0.334854 -5.829283 0.187807 0.041575 2.842657 8.970740 9.186686 10.777282 -9.589391 21.923047 -2.805593 -1.037875 -2.089024 -6.802054 1.566956 -0.412751 -1.340486 1.653761 -5.475150 13.165910 -1.449265 0.396562 -5.528091 -0.539225 -2.190057 -0.000036 -0.000440 -0.005011 2.347993 -0.237048 -0.084973 -3.441214 -6.366674 2.172233 -3.061586 2.042717 -13.938751 29.715436 2.955239 -1.880004 9.999281 3.227875 20.621111 -0.000730 0.009587 0.109289 0.000184 -0.002487 -0.000160 -13.972995 0.783174 -0.687506 -4.912652 -3.117628 13.887600 11.404243 3.801447 -0.083730 -7.322570 -2.681067 -0.422975 8.116162 -4.092706 -0.037361 0.049367 -0.171786 0.325651 0.000011 0.000001 0.000007 2.441021 2.838650 -8.159666 12.949081 -4.311337 0.153167 -6.469251 2.341003 0.289964 0.826431 -1.156095 0.235178 0.048718 0.169625 -0.321527 0.000003 -0.000003 -0.000003 -0.005958 0.000000 -0.000007
|
| 290 |
+
325.087722 161.858988 278.397557 -89.432732 -6.828565 103.521448 0.000001 0.000000 0.005543 4.265804 0.000095 0.007678 2.608228 -0.125228 2.261225 1.153263 -0.128140 3.121997 2.051805 -0.204278 2.256959 -1.014781 -0.693278 1.244055 -1.189709 0.066167 0.562147 -1.223522 0.428971 -0.345733 -0.455495 -0.163842 -0.473676 -2.094298 -0.901541 -0.383307 -5.809418 0.205890 0.051003 2.880843 9.106006 9.242036 11.012829 -9.707914 22.211006 -1.736267 -0.649515 -1.299373 -3.910467 1.128914 -0.380964 -2.337781 1.386694 -6.500444 11.565885 -1.279360 0.309094 -6.767745 -0.424940 -1.623806 -0.000003 0.000000 -0.000001 1.811546 -0.108097 -0.096746 -5.301005 -4.447614 1.303809 -18.226512 2.594070 -9.054007 58.198428 3.694158 -6.131450 17.558748 -1.445474 16.910843 -0.007504 0.049328 0.562361 -0.005411 0.000001 -0.000009 -14.192969 0.789534 -0.690274 -4.666299 -1.691168 13.139495 7.786474 2.599638 0.024858 -4.922688 -1.863615 -0.259013 5.575676 -3.376504 -0.144852 0.035543 -0.120850 0.229445 0.000009 0.000002 0.000011 3.603390 2.207379 -9.131576 7.723874 -2.578769 -0.026061 -3.308577 1.796485 0.187363 -1.844280 -1.661652 -0.024413 0.059309 0.202666 -0.384667 0.000004 -0.000003 0.000003 -0.005956 0.000000 -0.000008
|
| 291 |
+
329.594467 161.984049 277.457250 -89.452890 -4.271884 104.278482 0.000000 0.000000 0.005542 2.300348 0.022441 -0.351820 2.250374 -0.006974 1.979182 1.337318 -0.031318 2.874148 1.228981 -0.097169 1.922329 0.811706 -0.470280 0.398675 -1.147960 0.090063 0.495751 -1.266055 0.329529 -0.285626 -0.514988 -0.172222 -0.242426 -2.772933 -0.910893 -0.394961 -5.791949 0.226387 0.055501 2.915888 9.238118 9.299412 11.242721 -9.820024 22.515788 -0.834147 -0.310567 -0.622471 -1.675184 0.781561 -0.290525 -2.565595 0.982772 -7.705511 8.778600 -0.975514 0.187483 -6.383818 -0.398434 -0.803003 -0.000003 0.000001 -0.000001 1.125154 0.061978 -0.099266 -6.294641 -3.282038 0.754135 -17.703470 -0.426841 -3.209168 50.275005 3.790012 -4.810508 9.399412 -4.800160 10.830177 -0.006227 0.034356 0.391653 -0.005411 0.000001 -0.000008 -14.420230 0.797120 -0.692172 -4.645620 -0.732022 12.409352 5.453387 1.820996 0.054512 -3.287220 -1.245630 -0.153275 3.747752 -2.959415 -0.144036 0.024835 -0.083650 0.158917 0.000011 0.000002 0.000008 4.459653 1.762680 -9.927220 3.950942 -1.318967 -0.056803 -1.223624 1.186571 0.123005 -3.595272 -1.887534 -0.190975 0.048494 0.165497 -0.314124 0.000003 -0.000002 -0.000001 -0.005956 0.000000 -0.000008
|
| 292 |
+
332.022812 161.956598 276.968205 -89.536127 -2.338710 104.837182 0.000000 0.000000 0.005542 1.475072 0.036635 -0.515578 1.278471 0.077479 1.583893 0.566090 -0.012918 2.728164 0.541449 -0.042734 1.681245 3.717891 -0.128349 -0.270952 -1.105130 -0.021412 0.417917 -1.252589 0.131639 0.025643 -0.504538 -0.096032 0.117502 -3.884622 -0.821421 -0.372339 -5.760494 0.246899 0.059938 2.922355 9.327806 9.340335 11.393737 -9.882750 22.695516 -0.151608 -0.059345 -0.112852 0.635333 0.563370 -0.263492 -2.172414 0.507825 -8.597656 5.493117 -0.613327 0.081251 -5.151500 -0.468786 -0.101149 -0.000003 0.000000 0.000000 0.538821 0.195487 -0.098955 -5.757667 -2.458678 0.465186 -12.216627 -1.819925 1.247701 33.172774 3.226509 -2.260552 -0.053342 -3.735138 3.754905 -0.004362 0.011432 0.130367 -0.005406 0.000001 -0.000009 -14.556455 0.813325 -0.705384 -4.991762 -0.060772 11.811468 3.632286 1.212480 0.055594 -2.075549 -0.729437 -0.072256 2.807922 -2.762858 -0.110636 0.012328 -0.039962 0.076136 0.000007 0.000002 0.000011 4.659465 1.451051 -10.510906 1.307564 -0.436017 -0.028879 0.028595 0.550003 0.061961 -4.372000 -1.837495 -0.265640 0.030275 0.102441 -0.194521 0.000005 -0.000003 -0.000009 -0.005956 0.000000 -0.000008
|
| 293 |
+
332.848526 161.868097 276.840550 -89.645110 -1.270844 105.187093 0.000000 0.000000 0.005543 1.013476 0.043484 -0.567656 0.672574 0.103980 1.283300 0.037982 -0.024786 2.592184 0.134935 -0.018868 1.523919 5.587470 0.074556 -0.875306 -1.061881 -0.205855 0.377424 -1.231293 0.029237 0.322524 -0.487520 0.040913 0.243654 -4.604844 -0.776035 -0.359106 -5.739535 0.267403 0.064409 2.929115 9.325699 9.346228 11.404547 -9.891821 22.711363 -0.002207 -0.001352 0.003439 2.029618 0.545473 -0.324266 -1.853272 0.336824 -8.552952 4.320421 -0.478259 0.050578 -4.888843 -0.543035 0.082968 -0.000003 0.000000 -0.000001 0.306183 0.201173 -0.095392 -5.754576 -1.930540 0.269983 -4.439693 -1.007980 3.297163 14.378095 1.572988 -0.493219 -2.334579 -0.139111 0.552819 -0.003599 0.001649 0.018885 -0.005406 0.000001 -0.000009 -14.563503 0.808562 -0.700244 -5.436003 0.256052 11.459494 2.700331 0.901085 0.048664 -1.529498 -0.508345 -0.042156 2.557708 -2.650035 -0.101480 0.008168 -0.025397 0.048541 0.000010 0.000002 0.000009 4.508355 1.254834 -10.855079 0.050524 -0.016829 -0.001318 0.482883 0.177234 0.030448 -4.511590 -1.716679 -0.301445 0.014496 0.047432 -0.090268 0.000004 -0.000003 0.000001 -0.005960 0.000000 -0.000008
|
| 294 |
+
333.845383 161.755197 276.610051 -89.772129 -0.555057 105.419424 0.000000 0.000000 0.005543 0.523763 0.037057 -0.620353 0.284339 0.101581 1.126380 -0.084259 -0.031331 2.455025 0.015834 -0.012956 1.410376 6.400502 0.152799 -1.403750 -1.047089 -0.332392 0.350859 -1.210114 -0.000684 0.480791 -0.498424 0.137029 0.240248 -4.912712 -0.787304 -0.378015 -5.739555 0.287884 0.068977 2.929114 9.325699 9.346231 11.404546 -9.891819 22.711364 -0.002207 -0.001352 0.003438 2.868025 0.548744 -0.386420 -1.473084 0.235396 -8.283236 3.589176 -0.386404 0.033804 -4.990539 -0.635802 0.102877 -0.000003 0.000001 -0.000001 0.166724 0.194504 -0.083756 -4.582441 -1.838542 0.295075 -1.666277 -0.451296 3.930875 6.658741 0.735173 -0.105229 -0.579281 0.907664 -0.112791 -0.003503 0.000425 0.004950 -0.005410 0.000001 -0.000009 -14.563507 0.808562 -0.700244 -5.618946 0.396899 11.230120 2.259258 0.753749 0.043623 -1.267282 -0.430396 -0.045119 2.207290 -2.539606 -0.110300 0.007700 -0.023779 0.045476 0.000008 0.000002 0.000007 4.678476 1.039561 -11.065322 -0.994404 0.331040 0.028588 0.816726 -0.132081 -0.009587 -4.725588 -1.663814 -0.339195 0.003421 0.008585 -0.016684 0.000004 -0.000001 -0.000000 -0.005958 0.000000 -0.000008
|
| 295 |
+
334.246078 161.672800 276.507542 -89.865798 -0.138266 105.544759 0.000000 0.000000 0.005543 0.166971 0.032562 -0.662570 0.060588 0.095517 1.042198 -0.062789 -0.042479 2.359061 -0.005007 -0.019098 1.350875 6.621377 0.169884 -1.737304 -1.046762 -0.387459 0.333005 -1.220573 -0.003540 0.518518 -0.477655 0.189542 0.212374 -4.996788 -0.807129 -0.390792 -5.718598 0.308391 0.073433 2.929114 9.325698 9.346231 11.404549 -9.891821 22.711362 -0.002203 -0.001353 0.003438 3.219206 0.544523 -0.411026 -1.323748 0.208237 -8.129877 3.285564 -0.359129 0.024412 -5.032306 -0.668869 0.116392 -0.000003 0.000001 -0.000001 0.042729 0.088046 -0.031405 -3.351624 -1.709803 0.321079 -2.115241 -0.382140 4.063301 5.558538 0.620321 -0.084323 0.011825 0.972344 -0.155965 -0.003503 0.000426 0.004951 -0.005405 0.000001 -0.000009 -14.563505 0.808562 -0.700244 -5.832687 0.439543 11.104750 2.083487 0.695050 0.041296 -1.168452 -0.397433 -0.028167 2.071999 -2.485618 -0.116239 0.007708 -0.023776 0.045473 0.000010 0.000002 0.000006 4.652434 0.921039 -11.173978 -1.468844 0.488769 0.044251 0.922746 -0.293946 -0.026616 -4.766434 -1.610474 -0.350854 -0.003020 -0.014078 0.026231 0.000004 -0.000003 -0.000005 -0.005959 0.000000 -0.000008
|
data/gradio_animo/conversion_summary.json
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"success_count": 3,
|
| 3 |
+
"failed_count": 0,
|
| 4 |
+
"total": 3,
|
| 5 |
+
"results": [
|
| 6 |
+
{
|
| 7 |
+
"filename": "arctic_wolf_female_fightflee",
|
| 8 |
+
"num_frames": 107,
|
| 9 |
+
"num_joints": 54,
|
| 10 |
+
"bvh_path": "/gpfsdata/home/cuiyuzhuo/019/release/data/gradio_animo/bvh/arctic_wolf_female_fightflee.bvh",
|
| 11 |
+
"success": true
|
| 12 |
+
},
|
| 13 |
+
{
|
| 14 |
+
"filename": "arctic_wolf_female_fighttaunt",
|
| 15 |
+
"num_frames": 139,
|
| 16 |
+
"num_joints": 54,
|
| 17 |
+
"bvh_path": "/gpfsdata/home/cuiyuzhuo/019/release/data/gradio_animo/bvh/arctic_wolf_female_fighttaunt.bvh",
|
| 18 |
+
"success": true
|
| 19 |
+
},
|
| 20 |
+
{
|
| 21 |
+
"filename": "dromedary_camel_male_runtostandturnl",
|
| 22 |
+
"num_frames": 26,
|
| 23 |
+
"num_joints": 56,
|
| 24 |
+
"bvh_path": "/gpfsdata/home/cuiyuzhuo/019/release/data/gradio_animo/bvh/dromedary_camel_male_runtostandturnl.bvh",
|
| 25 |
+
"success": true
|
| 26 |
+
}
|
| 27 |
+
]
|
| 28 |
+
}
|
data/gradio_animo/joint_text_features/arctic_wolf_female_fightflee.npz
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:feab8254e314979f988f2c2cc89e7f903b315cfc477fae775fac833d3b371e99
|
| 3 |
+
size 131672
|
data/gradio_animo/joint_text_features/arctic_wolf_female_fighttaunt.npz
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:feab8254e314979f988f2c2cc89e7f903b315cfc477fae775fac833d3b371e99
|
| 3 |
+
size 131672
|
data/gradio_animo/joint_text_features/dromedary_camel_male_runtostandturnl.npz
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1efcdd0f8c9990323a8d01c641178466c2f6e456378e6e8b3fe8784b962b3efb
|
| 3 |
+
size 131731
|
data/gradio_animo/processed/arctic_wolf_female_fightflee.npz
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7fc747fc0532d54a54c3e7cf4cf43bd9277c18b06e7543a2329fc6342e37146b
|
| 3 |
+
size 433869
|
data/gradio_animo/processed/arctic_wolf_female_fighttaunt.npz
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8673d7a84a8c0f14ede339f94e6d81d2a885f1e31ef2bbc71353969987a9bafb
|
| 3 |
+
size 557904
|
data/gradio_animo/processed/dromedary_camel_male_runtostandturnl.npz
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4e529a030fe1492b79c88a4c053ec819d0ca28fb8b07ce6319005085908a26b0
|
| 3 |
+
size 111870
|
data/gradio_human/bvh/000327.bvh
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/gradio_human/bvh/000419.bvh
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/gradio_human/bvh/000708.bvh
ADDED
|
@@ -0,0 +1,197 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
HIERARCHY
|
| 2 |
+
ROOT joint_3128009143
|
| 3 |
+
{
|
| 4 |
+
OFFSET 0.000000 0.000000 0.000000
|
| 5 |
+
CHANNELS 6 Xposition Yposition Zposition Xrotation Yrotation Zrotation
|
| 6 |
+
JOINT joint_3095699716
|
| 7 |
+
{
|
| 8 |
+
OFFSET 5.659700 1.017830 -9.058814
|
| 9 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 10 |
+
JOINT joint_1726421641
|
| 11 |
+
{
|
| 12 |
+
OFFSET 3.825843 -0.627751 -35.531322
|
| 13 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 14 |
+
JOINT joint_132207077
|
| 15 |
+
{
|
| 16 |
+
OFFSET -1.537450 3.711881 -36.457790
|
| 17 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 18 |
+
JOINT joint_3264224812
|
| 19 |
+
{
|
| 20 |
+
OFFSET 2.847295 -11.420543 -4.985844
|
| 21 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 22 |
+
End Site
|
| 23 |
+
{
|
| 24 |
+
OFFSET 0.000000 0.000000 0.000000
|
| 25 |
+
}
|
| 26 |
+
}
|
| 27 |
+
}
|
| 28 |
+
}
|
| 29 |
+
}
|
| 30 |
+
JOINT joint_396593456
|
| 31 |
+
{
|
| 32 |
+
OFFSET -5.625093 0.898211 -8.889191
|
| 33 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 34 |
+
JOINT joint_2198230946
|
| 35 |
+
{
|
| 36 |
+
OFFSET -3.772874 0.171158 -36.422077
|
| 37 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 38 |
+
JOINT joint_3287897233
|
| 39 |
+
{
|
| 40 |
+
OFFSET 1.671101 3.664619 -36.299397
|
| 41 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 42 |
+
JOINT joint_1747479872
|
| 43 |
+
{
|
| 44 |
+
OFFSET -2.328376 -11.847854 -4.287172
|
| 45 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 46 |
+
End Site
|
| 47 |
+
{
|
| 48 |
+
OFFSET 0.000000 0.000000 0.000000
|
| 49 |
+
}
|
| 50 |
+
}
|
| 51 |
+
}
|
| 52 |
+
}
|
| 53 |
+
}
|
| 54 |
+
JOINT joint_3730462863
|
| 55 |
+
{
|
| 56 |
+
OFFSET -0.264308 2.507220 11.286632
|
| 57 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 58 |
+
JOINT joint_2403096931
|
| 59 |
+
{
|
| 60 |
+
OFFSET 1.031003 -1.072757 16.003370
|
| 61 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 62 |
+
JOINT joint_1230490324
|
| 63 |
+
{
|
| 64 |
+
OFFSET 0.103244 -1.696144 5.970602
|
| 65 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 66 |
+
JOINT joint_2035619977
|
| 67 |
+
{
|
| 68 |
+
OFFSET -0.132393 2.028674 20.121174
|
| 69 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 70 |
+
JOINT joint_3749906687
|
| 71 |
+
{
|
| 72 |
+
OFFSET 0.988185 -5.553662 7.383417
|
| 73 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 74 |
+
End Site
|
| 75 |
+
{
|
| 76 |
+
OFFSET 0.000000 0.000000 0.000000
|
| 77 |
+
}
|
| 78 |
+
}
|
| 79 |
+
}
|
| 80 |
+
JOINT joint_408431726
|
| 81 |
+
{
|
| 82 |
+
OFFSET 7.570128 2.550323 11.546081
|
| 83 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 84 |
+
JOINT joint_3078640559
|
| 85 |
+
{
|
| 86 |
+
OFFSET 9.085510 0.887260 2.413414
|
| 87 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 88 |
+
JOINT joint_1599716102
|
| 89 |
+
{
|
| 90 |
+
OFFSET 23.969933 2.169971 -1.037790
|
| 91 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 92 |
+
JOINT joint_86764776
|
| 93 |
+
{
|
| 94 |
+
OFFSET 23.375410 0.595938 0.640223
|
| 95 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 96 |
+
End Site
|
| 97 |
+
{
|
| 98 |
+
OFFSET 8.271320 0.460200 -0.828124
|
| 99 |
+
}
|
| 100 |
+
}
|
| 101 |
+
}
|
| 102 |
+
}
|
| 103 |
+
}
|
| 104 |
+
JOINT joint_1718067033
|
| 105 |
+
{
|
| 106 |
+
OFFSET -7.868145 2.852892 10.902870
|
| 107 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 108 |
+
JOINT joint_1791882276
|
| 109 |
+
{
|
| 110 |
+
OFFSET -9.973220 0.685927 2.612803
|
| 111 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 112 |
+
JOINT joint_2971727967
|
| 113 |
+
{
|
| 114 |
+
OFFSET -23.251417 1.679162 -0.874967
|
| 115 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 116 |
+
JOINT joint_3102869284
|
| 117 |
+
{
|
| 118 |
+
OFFSET -23.875307 1.072404 0.357927
|
| 119 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 120 |
+
End Site
|
| 121 |
+
{
|
| 122 |
+
OFFSET -7.952037 -0.033256 -0.858522
|
| 123 |
+
}
|
| 124 |
+
}
|
| 125 |
+
}
|
| 126 |
+
}
|
| 127 |
+
}
|
| 128 |
+
}
|
| 129 |
+
}
|
| 130 |
+
}
|
| 131 |
+
}
|
| 132 |
+
MOTION
|
| 133 |
+
Frames: 63
|
| 134 |
+
Frame Time: 0.050000
|
| 135 |
+
-0.874229 108.353905 2.208687 -82.617703 -3.355432 0.383736 -14.120402 -5.948582 -6.086921 23.591320 3.696407 -3.722688 6.325357 4.272327 0.024463 0.000000 0.000000 0.000000 -18.807441 6.265266 0.906997 29.128824 -7.567636 -8.699060 13.803479 -7.693347 3.606561 0.000000 0.000000 -0.000000 0.093011 2.465070 -3.043696 5.076400 -3.752791 -7.016141 -5.125405 -0.444961 -3.745546 12.910804 4.925501 -6.191613 -27.065881 -7.318318 2.424535 19.862649 12.034379 1.758212 10.145142 59.660211 -0.596498 10.035306 -24.969829 -96.167004 -30.637310 18.016500 -32.196317 19.321375 -5.729869 -2.651213 30.044145 -72.553670 22.078999 -8.283190 25.045635 121.568706 -53.872464 -36.345973 14.905345
|
| 136 |
+
-1.606723 116.071511 2.388631 -84.784223 -2.689544 -2.072582 -21.680253 -3.437495 -10.480119 59.566148 5.920989 -4.516827 1.572498 1.718203 5.298410 -0.000000 0.000000 -0.000000 -25.773747 1.017227 4.187573 65.722400 -13.865121 -7.748945 6.048660 -5.959412 0.775886 0.000000 0.000000 0.000000 1.234059 3.440128 -2.014992 5.914644 -5.168789 -5.471853 -7.687152 1.128271 -2.713195 15.655325 1.104045 -6.236703 -23.098034 -5.461834 2.128897 21.416865 19.891290 -2.528368 3.681343 62.229434 5.836373 13.095316 -27.353683 -66.150951 -19.346627 13.652910 -27.464975 22.895508 -11.897712 1.467614 9.225241 -70.138580 -0.719180 -11.483018 31.866545 109.680263 -51.036784 -25.321551 20.754204
|
| 137 |
+
-2.335173 120.147194 2.138076 -89.701576 -0.687110 -3.286270 -28.431124 -0.266051 -11.272005 103.799624 4.804557 -7.102429 -0.274367 -1.540731 5.670126 0.000000 0.000000 -0.000000 -29.136579 -5.013145 5.194234 108.730478 -20.767463 -3.123675 5.947340 1.281736 -2.200823 -0.000000 0.000000 0.000000 7.952508 2.424363 -1.875756 5.159837 -5.872090 -3.956669 -9.883003 1.475694 -1.357716 18.834359 -0.546613 -8.722472 -21.101693 -5.227151 2.749937 18.933074 22.162856 -9.726457 -3.086742 60.926483 9.726833 19.424373 -24.052700 -37.910896 -8.608010 30.058877 -12.294865 23.355256 -12.888134 9.605621 -3.136095 -63.591944 -14.338316 -5.961798 36.399060 93.495260 -55.854711 -27.002524 12.066984
|
| 138 |
+
-3.264255 121.373208 2.509535 -94.354458 0.977311 -1.933344 -26.659863 0.681158 -12.418811 138.202703 3.776221 -12.182845 14.671841 -1.821429 5.747327 0.000000 0.000000 -0.000000 -24.780912 -4.286039 5.288373 142.012848 -19.527426 6.345451 22.097250 1.548082 -0.831700 -0.000000 0.000000 -0.000000 11.365985 1.084229 -2.265090 9.174878 -8.160560 -4.023426 -12.079693 1.557363 -0.962550 21.354858 0.339104 -11.736013 -22.071358 -5.441935 4.202884 18.950023 20.698268 -13.212502 -4.550868 57.764194 15.834030 16.529048 -22.590278 -46.235430 -9.703778 39.367051 -7.536239 21.171752 -10.890068 13.373708 -6.633111 -62.887216 -20.402187 -7.678183 28.144100 94.473333 -62.023950 -34.087695 5.243776
|
| 139 |
+
-3.447109 121.908463 3.181900 -97.839384 2.699561 -0.967949 -20.952606 0.123044 -11.359819 146.548057 4.333654 -13.353055 38.181903 8.679676 1.917356 -0.000000 0.000000 -0.000000 -21.745642 -2.317213 7.219509 148.198255 -14.015970 6.947470 40.108095 -2.053181 6.217657 -0.000000 0.000000 0.000000 13.214568 -1.610839 -3.507146 11.920616 -9.940879 -4.014981 -13.434762 1.063670 -0.742885 23.951508 2.348664 -12.398802 -22.754038 -5.333093 5.305686 19.069386 18.289567 -10.304498 -6.538390 53.956301 22.605304 11.541132 -18.933568 -66.430000 -19.224074 47.031265 -6.929925 18.719192 -9.478891 11.334745 -10.039227 -66.943914 -25.117749 -10.489025 19.078742 98.018486 -59.959686 -26.490111 13.210110
|
| 140 |
+
-3.073771 121.510567 4.203562 -97.842323 4.477123 0.133472 -20.149114 3.071904 -7.579964 128.926552 8.039866 -11.622423 12.352897 2.744349 5.976451 -0.000000 0.000000 -0.000000 -23.576880 -4.285885 7.998152 132.956427 -15.426332 3.426279 16.859926 5.367088 -2.028640 0.000000 0.000000 0.000000 14.774920 -5.221192 -5.424927 5.468695 -10.502041 -4.559621 -10.432827 -0.588748 -1.379877 26.312312 3.943035 -11.149719 -22.788029 -3.440226 7.546138 20.139489 16.480630 -4.399420 -9.679847 53.227477 27.753265 7.077257 -16.243172 -79.742192 -39.080263 43.544785 -7.587884 20.129012 -10.424606 8.100477 -9.341518 -67.071388 -23.573771 -10.353714 15.733100 91.985401 -54.266537 -13.999797 23.553790
|
| 141 |
+
-3.120654 118.659501 4.624565 -94.484984 4.800320 0.609113 -22.940563 4.162891 -3.961359 105.375193 8.622462 -5.468428 -13.385999 -3.306463 5.634157 -0.000000 0.000000 0.000000 -28.784228 -3.697802 7.783967 112.538865 -12.750091 -1.303432 -3.280444 5.977265 -3.794047 -0.000000 0.000000 -0.000000 13.806672 -7.683138 -6.932898 -0.061990 -9.876970 -4.828039 -6.301269 -1.685522 -1.687469 22.140715 4.415169 -8.085823 -21.020361 -1.803906 8.267071 19.671124 15.296572 1.127040 -11.410859 53.659305 29.344307 1.759111 -15.387820 -90.922397 -43.966937 35.391028 -16.796834 19.719623 -12.038014 4.761958 -8.669211 -67.004202 -22.030866 -11.789235 13.482543 83.345013 -45.908860 -7.138696 27.235536
|
| 142 |
+
-3.168539 113.136704 4.800627 -92.153308 3.821676 -0.238098 -22.497067 3.257967 -3.001826 76.008891 10.012501 -0.945691 -19.443899 -3.607537 5.106804 0.000000 0.000000 -0.000000 -27.667572 -0.320126 7.585777 84.092324 -8.161793 -6.635604 -2.693255 2.305339 -6.825721 -0.000000 0.000000 0.000000 13.754630 -8.299760 -6.498988 -1.189174 -8.689754 -4.785912 -5.842418 -2.190481 -1.584210 18.222135 6.390963 -7.150580 -20.805284 -2.478295 9.039087 19.989204 14.508684 3.554572 -12.196588 57.322125 26.976735 -5.435166 -19.674349 -98.366143 -38.982294 23.233372 -28.221811 19.252315 -11.032680 2.832501 -10.514211 -69.883519 -23.781761 -13.058601 13.791092 77.342083 -41.768961 -4.676062 27.782212
|
| 143 |
+
-3.240651 105.604286 4.795334 -89.657778 2.755736 -1.631118 -22.127820 1.495758 -2.577178 49.377280 10.062078 3.681212 -15.400368 -2.083619 7.000557 0.000000 0.000000 0.000000 -24.271088 3.018055 6.684332 54.244703 -3.336836 -5.713493 2.439045 -0.139102 -6.358767 -0.000000 0.000000 -0.000000 11.290731 -8.194468 -5.734982 0.090532 -7.062682 -4.863822 -4.202734 -1.910139 -1.614928 14.371770 8.328651 -4.510355 -23.418731 -3.438110 8.056981 18.841089 14.309948 6.408974 -10.403486 62.092192 20.202184 -9.680680 -25.761296 -100.726895 -38.005689 10.670364 -36.836275 20.261602 -11.638430 1.452562 -8.113021 -71.684417 -18.057423 -11.454267 17.630821 74.966067 -42.295549 -5.297456 30.823658
|
| 144 |
+
-4.250390 95.073043 4.500814 -88.277096 1.985036 -2.547762 -24.265017 0.138136 -4.961229 41.395400 8.335095 -6.987518 -19.444043 -5.276003 6.682559 0.000000 0.000000 0.000000 -23.115840 5.332728 7.246155 43.068008 -3.817667 -1.138522 -7.487889 -0.938248 -3.701434 -0.000000 0.000000 -0.000000 9.694845 -6.462643 -4.144177 7.106997 -6.997081 -4.930408 -6.570034 -0.779921 -1.981362 11.467408 5.858619 7.849449 -29.030187 2.734144 -0.404356 10.035476 14.625279 8.230066 17.581010 65.576633 -5.120594 -17.072363 -23.969716 -96.426142 -28.373369 4.817065 -42.024658 14.795104 -13.066960 2.560225 12.995676 -72.675183 -0.459981 -11.127107 22.710532 75.346993 -45.725560 -4.423728 34.844736
|
| 145 |
+
-5.532493 85.313087 3.041144 -89.185497 1.821677 -3.168285 -32.121921 0.225001 -6.193686 55.776264 7.227123 -13.169247 -35.042861 -10.734831 4.047733 0.000000 0.000000 -0.000000 -28.563474 4.955442 6.388343 55.772385 -3.201162 1.295655 -28.316284 2.731887 -5.161398 0.000000 0.000000 -0.000000 16.153901 -5.505160 -3.007219 6.416039 -4.749162 -4.766999 -6.388013 -0.601641 -1.679293 4.213978 5.510955 9.432739 -27.437723 3.037003 -1.105620 5.574844 14.519356 3.110979 25.829679 65.663875 -14.653976 -17.691254 -26.381328 -86.831366 -23.345640 6.067707 -38.669833 11.370411 -14.140746 7.988649 26.703189 -72.393632 12.458587 -11.399626 26.519872 75.027680 -46.319261 -4.742642 36.701244
|
| 146 |
+
-5.958863 81.727233 1.032446 -90.868812 1.955958 -3.505750 -37.369979 2.044915 -7.907815 65.490196 7.210533 -10.994406 -36.210309 -13.090140 5.748832 0.000000 0.000000 -0.000000 -33.776159 3.078307 8.789056 66.052894 -3.539750 1.120102 -29.267836 4.852428 -7.172586 0.000000 0.000000 0.000000 24.063710 -5.528383 -2.617531 6.457251 -2.793479 -4.280994 -7.946041 -0.096322 -1.365082 -1.323187 4.468972 10.026108 -25.976391 2.856950 -1.805827 4.040303 13.564890 -3.082333 33.299299 63.531333 -25.891998 -11.322786 -29.560012 -69.348847 -16.151615 5.526864 -35.961942 9.552462 -12.127748 13.090300 36.936952 -71.215075 23.438823 -9.563015 28.364123 73.241945 -45.602678 -5.359953 36.378356
|
| 147 |
+
-5.781242 82.691161 -1.137228 -89.732450 1.867858 -3.569069 -38.474941 2.788205 -8.340208 62.311126 6.468929 -10.592631 -33.455263 -13.081550 7.123929 0.000000 0.000000 0.000000 -35.373011 2.542800 9.771750 63.350404 -3.810469 0.114731 -27.173823 5.427278 -7.813136 -0.000000 0.000000 -0.000000 28.665711 -5.309767 -2.649870 5.679205 -1.608383 -4.155965 -9.303820 -0.091778 -1.391824 -2.620251 4.260716 10.223974 -28.256274 2.397296 -2.120327 3.556638 13.208841 -5.245942 38.153020 63.846540 -30.067813 -3.752757 -32.430806 -61.125710 -10.736136 2.896144 -38.238824 9.652928 -11.341388 15.624934 37.194526 -69.803458 24.621863 -7.379323 29.020998 74.060301 -43.474465 -6.987525 38.138369
|
| 148 |
+
-5.291884 86.324378 -3.568798 -85.020183 0.995254 -4.088628 -39.399843 -0.045492 -6.780128 50.922614 8.761334 -8.772222 -29.061132 -8.082298 4.361598 0.000000 0.000000 -0.000000 -37.406319 4.168367 8.912342 53.281349 -3.994577 -1.052075 -21.709810 3.561858 -6.592884 -0.000000 0.000000 0.000000 28.782680 -4.568098 -3.047710 3.058319 -0.621644 -4.075485 -7.787305 0.119183 -1.454648 -6.126359 3.670538 10.558277 -28.166599 2.558654 -2.770827 4.396047 14.561098 -3.736391 41.744001 63.839853 -32.070080 -0.393631 -32.963726 -59.876293 -13.922496 -3.018297 -42.066515 10.759803 -11.825994 14.029422 37.484837 -70.120773 26.729726 -5.827773 27.804100 76.007390 -44.667280 -3.886260 39.201761
|
| 149 |
+
-4.837613 90.130576 -5.710792 -81.364445 0.667409 -4.613911 -37.697353 -3.623562 -4.551579 38.439981 10.687610 -4.740652 -24.703706 -4.087000 4.615357 -0.000000 0.000000 -0.000000 -37.797039 5.453474 7.549861 44.692034 -6.124818 -2.812880 -18.050068 0.754665 -4.757962 -0.000000 0.000000 -0.000000 28.956892 -3.642021 -3.209866 1.515332 -0.366320 -3.735524 -7.352527 -0.133916 -1.719302 -5.976739 3.599847 10.590331 -30.314590 3.388796 -3.591334 5.034984 14.907636 -1.955923 44.866280 64.152555 -34.157001 3.008064 -33.369120 -58.130331 -16.776484 -7.842075 -45.040242 11.383191 -11.891798 12.931763 36.723017 -70.064887 25.084579 -3.635311 27.304836 75.843061 -44.830010 -1.464189 40.941845
|
| 150 |
+
-4.623665 91.270789 -7.392785 -78.853307 1.041327 -4.804865 -38.281467 -4.274551 -5.337447 36.406706 8.541444 -0.044545 -22.311440 -5.918852 9.211648 -0.000000 0.000000 0.000000 -39.449872 5.273841 5.806587 46.785937 -10.577884 -3.565131 -16.666846 -2.933714 -2.289305 0.000000 0.000000 -0.000000 27.436972 -2.265167 -2.958601 1.566133 -1.068777 -3.935618 -6.403241 -0.695183 -2.211937 -6.854386 3.118982 10.828407 -29.990231 1.427524 -4.764916 5.175770 15.138510 -1.127523 44.372409 65.791517 -34.122213 2.394607 -31.090252 -56.681850 -14.839351 -6.782438 -44.392055 12.065744 -13.276864 12.023961 29.152927 -68.193213 17.187664 -1.539235 26.549010 75.015013 -40.329160 -4.287689 39.397259
|
| 151 |
+
-4.425465 90.059318 -8.732195 -78.147565 0.791311 -4.507165 -39.350518 -2.760421 -8.539482 43.309540 6.761696 -4.468231 -24.563011 -7.333369 8.857671 0.000000 0.000000 0.000000 -39.581181 4.740408 4.284743 53.768689 -13.833558 -3.148175 -16.059876 -1.940025 -2.248376 0.000000 0.000000 0.000000 27.764550 -0.324283 -2.966672 1.116137 -1.679862 -4.392808 -6.440285 -1.489176 -2.627208 -6.714795 3.011370 9.824080 -31.247223 -1.293841 -5.649596 5.230570 15.967717 -2.864815 43.165688 66.415338 -33.866112 -2.385193 -25.558806 -53.310968 -17.409711 -9.192389 -44.357740 11.228961 -14.323407 12.767242 25.700962 -67.924678 13.022571 -0.988911 25.318872 71.834921 -38.748291 -1.969637 38.999545
|
| 152 |
+
-4.057096 86.283843 -9.596245 -79.181892 0.530271 -4.248300 -41.494382 -0.721732 -10.970792 57.506295 5.860069 -9.110579 -30.076983 -9.182094 9.440711 -0.000000 0.000000 -0.000000 -38.331587 3.063793 4.774594 63.283288 -14.101756 -1.793572 -21.285642 2.853987 -5.403411 -0.000000 0.000000 -0.000000 28.275523 0.700273 -2.471026 1.014980 -2.223594 -4.794685 -7.184179 -2.040799 -2.165896 -7.832009 4.009460 7.618071 -32.488168 -3.011387 -5.601819 6.331295 18.182972 -7.430382 33.903433 62.910615 -27.636894 -7.624126 -20.019890 -50.884034 -21.431301 -4.522410 -40.976296 11.569146 -16.322806 16.597569 19.220428 -67.587792 6.836015 -4.961092 24.426439 71.331688 -39.445824 -0.997730 37.424443
|
| 153 |
+
-3.811886 81.799979 -10.009730 -81.921878 0.272240 -4.293670 -39.896581 0.135343 -10.859232 65.532009 5.544397 -13.331206 -39.902208 -13.508834 9.534929 0.000000 0.000000 -0.000000 -35.389459 1.520782 5.063206 70.424366 -12.063375 0.800787 -30.778283 7.602259 -7.300397 -0.000000 0.000000 0.000000 28.755718 1.201273 -1.816722 2.790123 -2.551313 -4.622469 -8.386887 -1.989486 -1.801924 -13.922787 2.996931 8.037188 -28.303820 -0.811128 -5.890290 5.339845 18.262156 -8.527502 25.882432 58.036970 -25.247223 -14.137976 -16.922802 -55.990855 -17.932585 6.989128 -37.142449 10.012423 -18.887379 18.319493 16.925552 -66.262366 6.625449 -13.946143 22.403843 79.391254 -39.661613 -8.407827 32.383217
|
| 154 |
+
-3.665257 81.498870 -9.622647 -83.811149 -0.368760 -4.321622 -37.153738 -0.452962 -9.653198 65.321862 6.931288 -13.740208 -42.963677 -14.381267 7.384466 0.000000 0.000000 0.000000 -31.113663 1.195688 4.611760 67.816990 -10.688482 0.030649 -36.675727 9.449693 -8.108450 -0.000000 0.000000 0.000000 26.562555 1.102953 -1.635291 1.787044 -2.053433 -4.583894 -7.517632 -1.606357 -1.779530 -13.823116 2.436102 7.896206 -26.573833 1.500351 -6.531478 2.990999 13.276567 -6.835758 22.155819 56.266703 -25.899135 -21.267681 -16.994350 -76.262094 -19.594362 17.314535 -32.229770 7.088582 -16.342195 15.990627 21.046422 -66.161855 16.697689 -20.493999 22.838625 98.005123 -42.584010 -16.877371 26.534692
|
| 155 |
+
-3.951980 86.988837 -7.506126 -83.832226 -1.185921 -4.247696 -29.947345 -1.861063 -7.875291 53.425550 7.541483 -11.778492 -35.819172 -10.008861 4.629841 -0.000000 0.000000 -0.000000 -23.858487 2.068348 3.865027 54.589768 -9.527333 -3.151226 -29.375591 6.915738 -6.977776 0.000000 0.000000 0.000000 17.684275 0.992924 -1.246963 4.164480 -1.882709 -4.306199 -8.096439 -0.608544 -1.581529 -8.401689 2.012956 7.760758 -24.232999 2.067987 -7.288459 3.366302 10.885012 -5.476780 20.467175 52.093179 -23.933824 -22.002132 -16.951184 -97.194830 -17.340165 26.444027 -32.084502 6.952516 -12.696862 13.369035 28.129225 -67.705072 26.711912 -21.094764 21.736642 115.171875 -43.646108 -22.800762 22.310742
|
| 156 |
+
-4.834506 97.880783 -4.900734 -81.274856 -1.705501 -3.968669 -21.556154 -4.120726 -8.175356 32.789952 6.849941 -9.777860 -15.282834 0.281019 3.865467 -0.000000 0.000000 0.000000 -17.912635 1.705522 3.738171 37.559275 -9.301152 -7.592756 -7.177145 0.005406 -5.898863 0.000000 0.000000 0.000000 5.592700 2.632939 -0.791432 5.130168 -3.156159 -4.007668 -8.524566 -0.575919 -0.946602 3.217504 5.253199 6.256144 -25.240765 -1.447754 -7.601641 7.092336 13.422743 -2.160620 21.294403 49.836950 -19.417506 -10.339535 -17.844174 -95.617970 -16.812399 37.002665 -27.732713 13.574485 -13.416965 12.123150 29.032955 -68.240181 25.683425 -10.146061 20.364912 112.874659 -44.526128 -33.012467 17.216263
|
| 157 |
+
-5.814696 108.501579 -3.169188 -78.913617 -1.077051 -2.801520 -23.876156 -5.189096 -12.405077 39.782805 5.737414 -10.785438 -4.963195 2.449361 8.931210 0.000000 0.000000 -0.000000 -21.963652 -1.610037 4.884279 49.616057 -14.855807 -7.855662 -1.700068 -4.259811 -5.499846 0.000000 0.000000 0.000000 -3.963638 4.631072 -0.004126 7.461480 -4.561074 -3.925707 -12.472268 -0.997010 -0.976028 17.298556 8.739901 1.979670 -29.654788 -8.080913 -6.811034 11.196309 19.944927 -2.180215 16.955653 45.223270 -7.956841 0.620570 -20.119241 -78.257548 -9.555482 49.404603 -19.588036 20.512914 -16.836132 13.760730 15.015229 -67.383970 6.095064 -4.588322 19.577767 102.017824 -47.191372 -40.795022 9.451644
|
| 158 |
+
-7.032921 113.668556 -2.728269 -82.400601 -0.598925 -1.349490 -31.443829 -3.699101 -17.843945 83.127719 6.503210 -11.616241 -7.993577 -9.903764 20.197351 -0.000000 0.000000 -0.000000 -27.110475 -5.733399 4.061468 91.887876 -24.230204 2.956124 -7.917292 -0.871351 -3.628041 -0.000000 0.000000 0.000000 -3.396828 7.337214 0.589523 10.213196 -5.484159 -3.675776 -14.816235 -0.546872 -1.521538 16.149701 6.065650 -0.397108 -24.907313 -9.744789 -4.607741 14.272065 19.369571 -2.389963 10.130363 41.794718 0.302732 5.308707 -22.458680 -59.309109 -7.321421 53.215447 -9.171340 18.529336 -15.029738 11.740092 2.067091 -66.278036 -9.258779 -7.061555 16.282074 101.615111 -54.156340 -38.701286 7.084070
|
| 159 |
+
-7.576958 115.636132 -2.673939 -86.881564 -0.181187 -1.527216 -34.022002 -2.168681 -19.824390 128.997060 4.795079 -14.875645 -13.752575 -20.270920 24.096107 0.000000 0.000000 -0.000000 -27.535212 -7.154051 3.345700 137.514391 -23.493455 19.754825 -10.682090 3.293979 1.450030 0.000000 0.000000 0.000000 1.062730 6.705742 -0.785139 7.318871 -5.134702 -2.341352 -12.457412 0.550550 -1.336430 16.542050 4.639994 -0.722596 -25.440186 -8.396424 -3.911748 14.778578 16.416411 1.538166 0.766971 39.243449 11.178944 0.913846 -22.089208 -54.347301 -10.685810 49.538971 -8.095115 15.663204 -11.365746 8.045574 -14.555932 -61.231912 -23.724655 -10.046392 11.356932 104.889218 -55.529181 -32.256901 14.048416
|
| 160 |
+
-7.158836 116.201310 -2.025733 -88.919223 -0.435527 -4.532593 -30.630122 -3.089717 -16.244661 148.356244 8.245416 -20.619667 -13.452255 -22.546291 23.709901 0.000000 0.000000 0.000000 -27.509884 -2.976721 6.103508 151.595868 -13.465119 25.119920 -3.694472 0.957888 9.301902 -0.000000 0.000000 -0.000000 2.418713 4.300821 -1.025102 5.268004 -4.565098 -0.010433 -10.910313 1.758125 -0.126881 17.880586 1.948587 2.429203 -25.600061 -1.951257 -4.909554 12.765258 11.465019 7.855022 -2.925097 39.009029 20.957648 -6.807804 -22.116057 -65.510909 -18.042997 46.837073 -9.104161 14.044346 -9.417620 4.453441 -20.167537 -57.608746 -27.399499 -14.526080 7.806262 100.842467 -54.137200 -26.588656 17.242941
|
| 161 |
+
-6.851156 117.001107 -0.385120 -90.110005 0.382134 -4.945681 -29.149292 -3.624978 -9.822085 129.605417 12.097797 -19.668208 -20.502586 -17.946336 15.491680 -0.000000 0.000000 -0.000000 -29.426922 0.488929 7.057425 133.582425 -14.674472 16.261167 -5.194668 4.236265 -0.686194 0.000000 0.000000 0.000000 2.022615 2.016217 -0.960182 3.537372 -4.679934 0.905446 -8.902740 1.276342 0.483397 19.531932 2.358656 3.670464 -25.668031 1.526185 -5.338101 11.895515 9.438592 12.802752 -3.566845 37.812692 26.438580 -12.243326 -22.484168 -77.259209 -22.892288 45.935906 -13.653836 13.315125 -9.293318 1.136233 -16.534209 -56.817807 -25.955440 -17.435946 11.768400 94.951006 -53.428132 -25.283238 17.486047
|
| 162 |
+
-6.395109 116.084816 1.593192 -91.299404 0.898696 -1.646870 -22.709616 -2.101089 -6.262825 93.525934 11.610015 -13.712553 -20.958979 -13.559812 13.260621 0.000000 0.000000 0.000000 -25.497997 4.362406 4.713744 101.413570 -17.494040 1.315451 -2.195789 1.787914 -9.567678 -0.000000 0.000000 -0.000000 0.793843 -0.352531 -1.778433 4.129118 -4.801143 0.299157 -6.790310 1.069663 0.160947 20.782217 4.138215 3.445963 -28.372272 2.767955 -5.495172 12.608219 8.400999 15.860764 -5.320481 39.061455 30.502631 -15.216546 -21.135128 -90.359701 -25.178280 40.655799 -18.818097 14.867333 -8.030937 -0.511022 -13.566466 -59.707060 -25.552389 -14.279768 15.393681 90.571889 -53.739798 -23.211513 19.207391
|
| 163 |
+
-6.284241 112.629982 3.074505 -91.501829 1.505004 1.437455 -14.817538 -2.371094 -4.247319 56.668544 8.163268 -4.374690 -13.878949 -9.976024 15.934296 -0.000000 0.000000 -0.000000 -18.904588 5.564341 1.522573 67.353337 -15.561382 -7.509688 1.795462 -1.628833 -8.979390 0.000000 0.000000 0.000000 -2.037650 -1.949664 -1.676148 8.409962 -5.621344 -0.229840 -6.872154 0.772026 -0.240457 18.840594 4.687696 4.865744 -28.337184 4.743964 -7.737199 12.688141 8.109251 19.350519 -5.573589 42.644451 29.882364 -15.665532 -19.754001 -101.921190 -19.570392 36.815180 -27.631392 15.789341 -8.192538 -2.547892 -7.680248 -62.105334 -21.598955 -11.314079 15.813990 86.987821 -51.272390 -24.301493 20.975345
|
| 164 |
+
-6.259601 105.806923 3.109713 -88.573325 0.885007 5.277479 -14.826948 -1.743028 -5.650253 34.126377 5.987335 -5.489852 -5.259515 -1.761079 11.805959 0.000000 0.000000 -0.000000 -17.549141 5.771399 1.877722 41.540595 -11.386519 -8.781908 4.264490 -3.262593 -6.804003 0.000000 0.000000 -0.000000 -3.967556 -1.377857 -1.571588 7.739239 -5.135895 -1.105937 -6.489815 -0.033583 -0.952101 16.790030 5.099701 3.722272 -30.387696 4.407553 -8.132078 11.868418 9.746313 20.258618 -0.431766 47.110967 26.694162 -14.056975 -17.537103 -107.469811 -20.854645 22.351407 -36.664169 16.700412 -9.990553 -3.100261 -0.995158 -63.374105 -15.852135 -7.569426 18.655247 84.702882 -49.739093 -23.691760 23.635031
|
| 165 |
+
-6.332077 96.375579 1.976477 -88.700340 -0.022435 8.635571 -18.784865 -0.763107 -9.000075 35.637827 6.771415 -14.340384 -14.880110 -4.362150 9.290227 -0.000000 0.000000 0.000000 -19.274877 5.531677 5.345421 38.149931 -7.242811 -3.485329 -7.559313 -0.447250 -7.944023 0.000000 0.000000 0.000000 1.878173 -0.918958 -1.702378 5.175741 -4.357418 -1.659814 -6.675011 -0.666564 -1.195219 10.208203 5.111343 2.407248 -31.056153 4.270862 -7.313856 10.100843 12.595327 18.775086 5.414618 52.343177 21.271368 -14.640066 -18.812571 -108.237070 -22.509860 9.757144 -42.927599 15.481974 -12.704393 -1.062239 6.706888 -63.616411 -7.600971 -6.278903 22.283913 82.702314 -48.802202 -19.407014 27.185217
|
| 166 |
+
-6.841206 87.083190 0.038630 -91.895515 0.445886 10.010893 -24.931022 -1.104354 -6.896452 52.897247 5.712598 -16.483300 -34.381229 -10.946272 5.224823 0.000000 0.000000 -0.000000 -24.164557 5.076242 5.546402 54.320112 -7.359432 -0.678051 -26.527397 3.432984 -7.047292 -0.000000 0.000000 -0.000000 12.492892 -3.868997 -2.037594 4.337762 -3.430455 -0.931034 -6.838336 -0.135774 -0.630443 -0.795933 3.032154 3.260994 -26.414687 7.084139 -6.905821 6.359479 14.105126 14.347244 13.801055 60.226478 8.838168 -15.846097 -25.639557 -98.911812 -15.292814 6.232252 -41.407351 11.328880 -14.607787 4.546115 18.498834 -63.729394 7.058225 -8.257176 25.504031 78.304621 -45.171061 -15.469981 31.034771
|
| 167 |
+
-7.210082 82.936912 -2.344373 -93.116738 0.353520 9.230953 -29.896682 -0.167792 -7.408691 62.106528 5.954289 -13.649004 -39.744691 -12.731368 4.417023 -0.000000 0.000000 0.000000 -29.723736 4.521964 6.094512 64.071159 -6.735504 -0.168240 -30.255810 4.905931 -6.816361 0.000000 0.000000 -0.000000 19.034842 -5.483949 -1.222368 7.000688 -2.729552 -0.491194 -8.815268 0.224937 0.506815 -5.827922 2.535791 3.800405 -25.404593 8.814244 -7.342807 4.035636 16.084381 7.173219 25.246675 64.982979 -8.760255 -12.877206 -28.350285 -81.647382 -6.051331 13.830813 -34.787944 9.673520 -14.924040 12.655777 27.362121 -63.679272 18.564542 -11.565421 25.469123 75.213169 -41.893585 -16.863548 30.989129
|
| 168 |
+
-7.019579 85.094115 -4.716992 -91.895006 0.774166 7.445192 -29.950656 -0.417665 -7.657256 56.429785 6.264115 -12.146982 -35.573421 -11.488150 5.778952 0.000000 0.000000 0.000000 -30.124698 3.297404 7.501882 58.132292 -5.943019 -0.832759 -26.556297 4.751809 -6.810727 -0.000000 0.000000 -0.000000 24.026985 -6.619266 -1.307780 5.033698 -1.930136 -0.098224 -8.291898 0.083308 1.037477 -7.125953 2.669410 4.964898 -27.061101 8.380909 -7.371947 3.455365 15.960664 3.813867 34.430119 66.147101 -18.807883 -6.169675 -30.992265 -73.875755 -5.178070 10.466273 -36.456330 9.850029 -14.226556 15.703973 30.969587 -63.126173 24.551120 -8.792819 25.658501 78.115939 -41.638249 -17.682327 30.637757
|
| 169 |
+
-6.619787 89.217422 -7.230160 -86.436926 1.237404 5.481747 -31.292095 -1.514270 -7.267843 45.720245 7.062631 -9.355397 -30.627530 -7.453250 5.635768 0.000000 0.000000 -0.000000 -32.075421 3.440107 8.227356 46.913017 -5.929785 -1.209740 -21.738393 1.883570 -4.163309 -0.000000 0.000000 -0.000000 23.949501 -5.683884 -1.380959 2.794044 -2.462810 -0.566281 -8.215275 -0.582341 0.622419 -6.950708 2.789999 5.774812 -29.924391 6.561527 -6.577054 3.631971 16.271053 4.538377 39.924849 66.425971 -23.254492 -2.510547 -31.686331 -74.577985 -5.940277 7.706700 -39.506665 9.636192 -15.580541 14.619707 31.822728 -60.501577 25.793188 -5.606413 26.584764 82.335860 -40.186079 -21.656155 28.835444
|
| 170 |
+
-6.425187 91.816070 -9.266884 -82.211909 1.746656 3.429779 -32.126624 -2.868193 -8.234565 42.233146 8.381262 -7.337554 -26.772559 -5.781571 6.009451 -0.000000 0.000000 -0.000000 -33.279476 3.915375 7.117212 41.262399 -8.541913 -0.961375 -17.361598 -2.026416 -0.552797 -0.000000 0.000000 0.000000 22.977954 -3.674733 -1.405810 0.486064 -3.394323 -1.792481 -6.808081 -1.929660 -0.454138 -8.912037 3.348057 4.837882 -31.191913 2.793086 -5.362429 5.285366 18.073774 4.058770 33.889298 68.167856 -18.474835 -10.637776 -23.203445 -80.962764 -14.003004 13.288411 -37.060094 11.116536 -17.492207 13.078899 19.686630 -56.866384 16.587025 -6.202263 21.901107 92.281371 -37.689769 -28.350654 24.694677
|
| 171 |
+
-6.460435 91.293350 -10.761402 -80.246318 2.206590 2.166855 -32.862307 -3.109760 -8.567085 47.525592 7.724260 -8.179341 -26.826358 -6.796671 4.815567 -0.000000 0.000000 -0.000000 -35.036890 4.131204 5.574553 45.808919 -11.772416 -2.729231 -15.190503 -0.121351 0.203129 0.000000 0.000000 -0.000000 22.019904 -2.477188 -2.162206 -0.001027 -3.827983 -2.572197 -5.735821 -2.090634 -1.298123 -12.115664 1.709969 4.803413 -30.591039 2.263236 -4.571631 4.265594 13.674360 5.260038 23.144830 65.309513 -10.581471 -20.002942 -13.819251 -93.704900 -27.951691 23.925101 -31.406617 8.859268 -14.268778 9.172190 10.267840 -54.178826 10.674877 -12.116391 14.312162 107.555157 -40.143769 -30.198096 23.686882
|
| 172 |
+
-6.716243 91.247947 -11.014587 -79.824943 2.052724 0.767172 -28.308488 -3.542807 -6.252473 39.823911 6.285382 -8.445730 -29.174078 -7.459806 4.948314 -0.000000 0.000000 0.000000 -31.203315 3.768105 4.141914 38.810575 -11.019860 -2.527443 -16.464461 1.975460 -1.645998 -0.000000 0.000000 0.000000 19.537171 -2.907736 -2.648525 -1.408617 -1.829655 -2.533007 -3.710643 -1.353540 -1.635973 -11.503439 -1.123267 6.045497 -31.214639 2.746109 -5.001256 1.106009 2.423392 7.271698 9.581863 58.952758 -1.002043 -28.393364 -8.204566 -106.886376 -32.988921 30.125778 -33.727431 3.598350 -1.798149 3.021988 1.005351 -52.896160 3.033556 -16.814039 9.788179 120.556747 -50.181995 -33.931075 20.169676
|
| 173 |
+
-6.923581 97.290992 -10.413467 -79.039790 0.943393 -1.048705 -19.666298 -4.210587 -5.393841 20.777369 5.047504 -7.556789 -13.708315 -0.664337 3.908130 0.000000 0.000000 -0.000000 -23.274138 3.316244 3.123392 21.375987 -8.786361 -6.497827 -2.157912 -0.133915 -3.720109 -0.000000 0.000000 0.000000 13.707174 -1.691066 -2.585877 -0.937980 -0.437537 -2.424222 -3.813280 -1.108056 -2.019595 -0.748816 0.996392 6.585958 -35.253580 0.548071 -5.835286 4.584627 -1.368979 5.882171 4.876132 54.326925 6.383062 -26.852243 -11.907053 -115.508801 -28.808007 35.837642 -33.872144 7.184887 6.702476 1.569068 -0.219681 -52.762535 -3.084966 -11.772600 13.440724 126.424332 -57.419632 -39.300994 16.327908
|
| 174 |
+
-7.114191 105.365463 -9.416211 -79.387161 -0.677810 -2.641552 -19.075962 -2.508718 -9.443186 29.272077 4.695569 -8.186986 -2.608494 4.222931 4.370145 0.000000 0.000000 -0.000000 -23.650962 1.623018 3.574906 35.599510 -11.137239 -8.900114 4.409550 -4.487101 -3.819525 0.000000 0.000000 -0.000000 6.586273 2.339997 -2.158448 3.012457 -0.972312 -3.424636 -4.796749 -0.918916 -2.263997 13.532824 6.683592 2.723704 -38.092532 -6.157218 -4.877928 9.950252 8.119587 4.269187 14.171064 60.246367 -1.804363 -12.995395 -16.113475 -97.736849 -21.975156 39.864894 -26.380596 14.702739 -0.061682 1.619882 5.175724 -60.855262 -6.159457 -0.707626 19.312827 113.314212 -57.664687 -47.165206 6.631294
|
| 175 |
+
-7.251704 109.835976 -9.065996 -83.684778 -0.728879 -3.680769 -25.347318 -0.102093 -14.681815 71.425449 9.716641 -10.160003 -5.036256 -3.803114 14.119175 -0.000000 0.000000 0.000000 -26.637757 -3.706003 8.150205 77.592830 -18.064652 -0.544196 -1.890043 -0.724785 -1.383639 -0.000000 0.000000 0.000000 5.330787 4.921491 -2.011259 11.903012 -2.004483 -3.847273 -10.349706 -0.048333 -2.295638 21.788371 8.820609 -1.080049 -37.053082 -9.955500 -3.199663 12.116985 23.519972 -1.049623 18.201275 58.672851 -6.642144 -10.657546 -15.991323 -73.679305 -11.992588 34.838572 -23.580005 16.575168 -12.349662 4.737574 3.666354 -64.036963 -16.869262 0.274640 18.597142 91.316768 -56.648189 -43.850651 3.230176
|
| 176 |
+
-6.947304 109.356186 -10.290142 -87.781930 -0.053674 -5.758491 -32.410455 0.585318 -14.470627 122.212299 11.777730 -17.066490 -12.401217 -12.173411 18.236284 -0.000000 0.000000 -0.000000 -30.059806 -5.764610 9.421454 126.227729 -20.541213 9.569495 -6.222168 6.844698 -3.396340 0.000000 0.000000 0.000000 7.813932 4.349511 -2.944925 14.896453 -1.931235 -2.498394 -10.879315 1.212122 -1.891699 21.696276 7.106326 0.460191 -34.539631 -6.043062 -2.512965 12.059806 24.526118 -1.521259 22.458808 62.017673 -9.567607 -7.584186 -16.223978 -77.436326 -14.359934 30.585143 -24.420541 15.345785 -12.936670 6.850460 -1.006754 -66.994206 -25.764332 -2.764259 17.283320 69.785440 -61.265558 -31.990245 8.248848
|
| 177 |
+
-6.381373 107.538948 -11.732809 -89.138764 -0.538654 -7.612444 -34.890433 -1.591524 -12.873089 153.273435 10.627591 -24.924857 -16.763713 -16.492682 16.336493 0.000000 0.000000 -0.000000 -34.304511 -1.716414 9.533063 154.873893 -13.813564 15.293318 -7.507001 8.872034 -2.939443 -0.000000 0.000000 -0.000000 10.195361 4.383024 -3.555253 15.121314 -2.426514 -1.463768 -11.287651 1.832576 -1.746325 18.886626 4.463429 4.403750 -33.093536 0.746302 -3.282975 12.426856 18.878397 2.721991 29.942260 69.541828 -17.354283 -5.371508 -15.115142 -91.346917 -14.270777 32.760226 -25.419092 17.058252 -11.354231 5.665775 -7.204614 -66.225901 -30.742565 -3.939957 24.277012 55.967590 -52.113561 -27.960641 8.165507
|
| 178 |
+
-5.498750 106.125069 -12.253400 -90.853442 0.421821 -6.466177 -36.011236 -1.302874 -11.039946 131.661161 13.505874 -17.565323 -22.273239 -16.938476 14.640304 0.000000 0.000000 0.000000 -38.036560 0.265491 9.265013 133.791129 -16.827363 10.552960 -10.888220 10.483988 -4.182887 0.000000 0.000000 -0.000000 13.608808 1.171082 -4.603881 14.744805 -2.753593 -1.955451 -12.426292 1.547102 -1.737980 16.601981 6.389809 5.252475 -32.955816 1.648540 -3.313578 11.434099 19.055405 3.210612 32.454577 66.808456 -19.533482 -5.513133 -14.524526 -92.683290 -14.136076 27.678041 -28.708926 16.914683 -10.152319 4.702556 -5.315201 -66.055163 -31.870486 -4.982112 22.036494 50.779893 -51.295143 -22.879652 14.019555
|
| 179 |
+
-4.665780 103.881615 -12.593056 -90.553680 1.576323 -5.073688 -32.043998 -0.980351 -9.033461 92.065663 11.997780 -7.327951 -22.347354 -11.829126 16.810742 0.000000 0.000000 -0.000000 -35.469340 -0.291393 8.120824 94.822441 -17.291073 -2.807841 -5.393645 6.833469 -11.601748 -0.000000 0.000000 -0.000000 15.279031 -2.482925 -5.858051 9.073949 -2.777741 -3.197222 -8.668103 0.686394 -2.110040 13.822946 8.740804 7.168717 -32.325090 0.788420 -2.525236 9.704108 18.119027 3.663359 31.641716 66.765868 -21.949942 -5.310064 -15.691033 -81.714474 -9.142607 20.058354 -33.233278 16.339998 -8.638030 2.890301 -5.870776 -65.069671 -32.058757 -2.183528 21.296555 51.290093 -45.089617 -23.893688 15.433366
|
| 180 |
+
-4.210476 98.464180 -12.498539 -87.892957 1.167375 -4.842834 -24.115195 -1.402413 -7.700270 54.017009 7.445880 -4.797621 -18.173846 -5.921373 15.176909 -0.000000 0.000000 -0.000000 -28.140006 -0.021893 7.427350 58.442672 -10.983283 -5.560234 -2.588434 -0.147795 -8.495431 0.000000 0.000000 -0.000000 11.152039 -2.836041 -5.802419 7.405149 -3.270851 -5.405136 -6.794237 -0.088488 -3.173835 11.938825 10.872745 9.746524 -31.710368 -1.177186 -1.470468 7.910526 17.152992 2.468915 31.917505 67.331814 -23.740357 -6.137628 -17.814800 -68.819673 -8.820358 11.715644 -35.437675 15.593965 -9.984476 2.008465 -4.992251 -65.462613 -29.326530 -4.538873 18.411742 57.593309 -40.127976 -21.702568 20.467808
|
| 181 |
+
-3.870962 90.947158 -13.421250 -89.829750 0.521558 -5.334582 -21.064572 -1.333084 -7.571689 49.602226 7.533596 -12.323989 -29.474659 -9.794966 12.695780 -0.000000 0.000000 0.000000 -22.412430 -0.891533 8.175078 50.099039 -6.917597 3.470618 -19.044823 3.299859 -7.130557 0.000000 0.000000 0.000000 15.659463 -2.294256 -5.460310 2.583531 -2.641637 -6.995715 -3.803600 -1.119580 -4.176477 4.873995 10.669795 10.775464 -29.097734 -2.092002 1.232696 6.185379 16.578522 -0.074641 26.527130 64.786683 -21.457838 -6.507080 -16.775706 -57.715429 -14.479323 9.778296 -34.672679 12.301723 -12.394624 0.638144 -5.630473 -66.636622 -24.846950 -5.272184 16.764933 62.470663 -39.531346 -18.728271 23.979062
|
| 182 |
+
-3.781352 83.115073 -15.596949 -90.595122 -0.127693 -5.545616 -30.222505 -0.283776 -7.157530 67.294946 7.908790 -14.116599 -38.825603 -13.910183 10.752485 -0.000000 0.000000 -0.000000 -31.314812 -1.856029 8.358393 68.058622 -6.587749 2.822767 -28.122544 7.040602 -8.644645 0.000000 0.000000 -0.000000 21.766971 -2.107336 -5.270229 2.648490 -3.300393 -7.029045 -5.052952 -1.208671 -3.916483 -4.674318 8.580327 12.703010 -27.760346 -0.797201 0.472951 4.264212 17.299802 -4.428365 22.983305 58.609465 -20.551980 -9.025187 -15.701008 -53.411304 -17.482289 10.601717 -33.020268 8.393590 -17.878436 7.543568 8.415031 -67.246762 -8.768757 -10.638375 18.820530 67.091093 -39.777002 -10.865553 30.727292
|
| 183 |
+
-3.567410 78.622466 -18.033238 -90.745778 -0.094536 -4.822852 -36.031316 1.723759 -8.549803 74.873766 7.800180 -12.765275 -41.391371 -17.237445 11.431502 -0.000000 0.000000 0.000000 -38.602985 -2.965627 9.990987 78.374278 -7.583001 2.069766 -28.888714 8.805110 -10.190216 -0.000000 0.000000 -0.000000 29.289142 -3.649518 -4.805293 2.828989 -3.632069 -6.453041 -8.704623 -1.138461 -3.016311 -11.789266 7.405708 12.598809 -28.655593 0.119241 -0.685986 4.739690 17.826796 -9.756289 20.048998 51.939932 -19.597761 -12.676807 -15.525369 -56.858722 -22.446050 16.056080 -31.553550 6.796371 -18.471310 16.246633 23.214163 -66.496609 9.395308 -12.431925 23.538153 72.319650 -44.654877 -10.235176 31.311756
|
| 184 |
+
-3.141614 79.069747 -20.674208 -90.279467 0.568294 -3.442430 -39.482434 2.663139 -9.475141 74.958157 7.115461 -10.221466 -36.440167 -15.577950 11.697817 0.000000 0.000000 0.000000 -39.798349 -3.023827 9.932742 75.840859 -7.731786 1.500609 -27.793103 9.267618 -9.994614 -0.000000 0.000000 0.000000 35.413537 -6.688235 -3.901427 1.288943 -2.673090 -5.546018 -10.023459 -1.124386 -1.661627 -17.108426 6.457876 11.776696 -29.310310 1.519443 -2.258189 3.293885 15.476329 -12.205929 16.140361 48.241787 -18.134337 -20.049573 -9.872586 -70.660582 -30.367708 30.628707 -25.666200 7.026468 -15.001879 21.818059 21.381886 -61.350864 16.515985 -13.862901 19.680191 83.864857 -43.523079 -19.957852 26.633228
|
| 185 |
+
-2.925150 80.973258 -23.510266 -87.480780 -0.442352 -2.135379 -43.817005 3.989974 -10.597024 71.576323 7.562684 -7.817824 -30.616086 -12.027426 10.413269 0.000000 0.000000 0.000000 -42.629249 -0.935021 10.255481 70.853823 -7.960409 -0.040618 -25.516570 8.138959 -8.537812 -0.000000 0.000000 0.000000 38.280167 -7.364404 -2.463158 -2.395897 -1.771137 -4.726251 -10.581386 -1.513614 -0.879160 -19.297905 6.263034 9.742935 -30.711320 1.861580 -2.908394 1.580413 11.213867 -12.920628 12.243683 40.810229 -15.378258 -23.107526 -5.399571 -88.239449 -45.313898 42.773489 -20.664992 5.312809 -10.679220 23.967604 15.269455 -54.504131 18.350702 -15.087652 15.355874 100.164902 -45.856873 -26.853104 22.758402
|
| 186 |
+
-2.784354 82.642257 -25.348661 -85.725513 -1.473546 -1.516077 -42.723844 3.851911 -10.881394 64.593134 7.371740 -9.064485 -31.570220 -11.012993 7.620565 0.000000 0.000000 0.000000 -43.296155 1.372582 9.333736 65.558558 -7.777295 0.315628 -25.059255 7.584156 -7.323689 0.000000 0.000000 -0.000000 37.929111 -6.712485 -1.646219 -4.670689 -0.849488 -4.120098 -10.159613 -1.897990 -0.493429 -19.541291 4.557202 9.005927 -31.299669 2.102189 -2.804431 -1.105699 4.617312 -13.407716 5.323099 30.112693 -9.697834 -28.943723 1.982944 -102.656525 -59.428744 49.534248 -18.417193 1.016976 -4.330832 26.096990 7.702251 -46.851064 20.330271 -19.578085 10.262566 114.076357 -50.472590 -29.796760 21.914661
|
| 187 |
+
-3.088982 84.087508 -26.292743 -85.727729 -0.879122 -1.105167 -40.183737 1.939411 -9.185354 59.508519 5.430222 -11.254258 -32.573069 -9.930035 4.676243 0.000000 0.000000 -0.000000 -41.434196 1.969322 7.708316 60.541909 -8.055708 0.003836 -24.084226 7.385810 -6.491514 -0.000000 0.000000 0.000000 35.020101 -6.674028 -1.516709 -5.122608 -0.215914 -3.355614 -8.575037 -2.462817 -0.065648 -15.335692 2.856097 10.805765 -34.896756 3.578824 -3.625381 -5.498563 -5.319201 -15.174554 -3.056973 20.468719 -2.634750 -37.265661 6.879762 -106.040029 -69.420397 53.748908 -14.145355 -4.509610 3.496630 30.175539 -3.348039 -41.337374 18.844189 -28.724044 3.829715 123.905028 -53.189112 -31.180962 23.513371
|
| 188 |
+
-3.557491 89.615638 -25.948293 -86.125715 -0.824733 -0.778460 -32.131301 -0.491091 -6.648370 44.891912 5.367189 -10.937305 -24.987188 -6.603387 2.525829 -0.000000 0.000000 0.000000 -33.678474 3.870284 5.116030 46.364475 -8.507423 -0.362879 -16.129254 5.406667 -5.210441 -0.000000 0.000000 0.000000 27.479361 -4.908959 -1.518464 -3.415511 -0.943779 -3.319871 -5.659031 -2.969475 -0.503066 -8.915076 1.788901 12.136616 -36.367819 4.935250 -4.964349 -3.494541 -14.186718 -12.940831 -8.251079 16.754495 2.125483 -37.959057 3.609369 -105.780586 -63.520498 56.533883 -17.120872 -6.780620 9.692717 27.696119 -9.447392 -45.000217 17.042233 -32.908499 -0.427940 129.645838 -61.938812 -36.347085 21.355111
|
| 189 |
+
-3.937677 99.513450 -24.684549 -83.340631 -1.818611 -0.563429 -19.458155 -2.526006 -3.628932 14.872402 4.291601 -8.318082 -1.860487 3.764245 -2.159520 -0.000000 0.000000 -0.000000 -19.621580 7.058533 1.694386 14.686448 -8.607288 -5.500533 6.574334 -3.953643 -1.633322 0.000000 0.000000 -0.000000 15.370653 -2.031311 -1.432086 -3.364704 -2.284544 -4.505582 -2.733409 -2.914326 -1.606112 7.862413 5.179104 8.255000 -42.224767 1.201268 -5.291089 6.278993 -15.011117 -5.443193 -6.411371 18.799758 6.121112 -25.116146 -4.192927 -109.808797 -58.853545 54.792034 -18.373435 0.087385 11.968681 18.557915 -4.193946 -59.848474 16.558830 -23.084678 0.717912 132.092517 -69.003995 -42.231113 17.352470
|
| 190 |
+
-4.391048 109.271103 -24.464044 -80.617828 -2.515568 -2.544208 -17.557068 -2.793732 -4.808155 15.954711 5.028876 -4.122067 8.192047 8.433721 0.029691 0.000000 0.000000 -0.000000 -16.509029 5.801786 0.029550 13.208676 -9.186312 -15.369154 15.434577 -6.848914 -4.266304 0.000000 0.000000 0.000000 5.131188 0.168873 -0.901556 0.047178 -3.589061 -4.921963 -3.150991 -2.316271 -2.152103 22.170142 10.878524 4.227210 -43.868251 -2.548349 -5.963731 9.477487 -2.650007 -0.563139 0.416933 29.277843 8.338961 -12.039316 -12.631321 -102.286174 -45.729652 50.266481 -16.939647 8.357175 0.837220 11.318188 8.614698 -70.833411 14.348811 -8.953057 3.149825 122.651484 -65.299560 -42.105228 13.738453
|
| 191 |
+
-4.333271 116.287255 -25.867757 -83.296545 -2.267404 -5.915349 -23.094080 0.366703 -11.095370 53.880985 9.005553 -9.587583 3.431266 1.379694 8.618590 0.000000 0.000000 -0.000000 -22.841099 0.916254 4.433295 52.201413 -14.168652 -10.107858 8.584849 -3.003988 -6.068164 -0.000000 0.000000 0.000000 3.812147 0.792052 -0.685507 8.255272 -4.720444 -3.936876 -6.467350 -0.646662 -0.527589 22.597588 13.700688 2.123500 -38.570174 -5.343327 -5.695136 9.816271 14.759486 -2.494204 7.113046 38.101688 5.335636 -4.799879 -12.379628 -78.484640 -29.429035 35.300182 -19.185802 13.623170 -15.542483 13.065165 4.191413 -68.956471 -0.945392 -7.454330 2.978547 103.809628 -52.774417 -31.401899 17.358278
|
| 192 |
+
-4.391508 118.723031 -28.557529 -91.307906 -0.323292 -6.273345 -26.640987 3.488938 -14.196043 101.744020 11.526848 -12.872016 -5.783644 -10.897776 17.018801 -0.000000 0.000000 -0.000000 -24.393276 -3.308308 7.055979 97.876110 -20.214932 2.801726 -0.730117 2.214561 -3.294182 -0.000000 0.000000 -0.000000 14.596908 0.477440 -1.281852 12.433534 -4.095165 -2.889919 -8.235750 -0.413239 0.376681 19.772217 11.454930 1.089829 -36.261080 -6.209992 -4.665358 10.012580 23.257500 -10.724855 13.119461 45.511525 -7.969284 0.743912 -14.392411 -38.284905 -10.006422 23.793078 -23.801194 15.192289 -19.382961 20.394902 -0.235984 -64.413101 -8.722960 -11.861350 7.097199 81.664222 -46.628965 -24.536168 20.525153
|
| 193 |
+
-4.480038 118.044320 -32.261566 -92.090468 -0.241171 -4.496599 -37.055186 4.280873 -16.578248 145.753639 9.324229 -19.371242 -13.493022 -19.199020 20.092446 0.000000 0.000000 -0.000000 -33.450867 -0.434788 6.564482 142.491681 -19.084583 17.565426 -9.032624 7.433803 1.950402 0.000000 0.000000 0.000000 19.266164 0.955681 -1.906130 15.717564 -3.837741 -2.764523 -10.262389 -0.248819 -0.335135 17.548294 8.141616 0.097537 -37.368807 -5.779827 -3.131508 11.176885 24.509375 -16.750047 18.188831 52.354325 -16.907955 6.113206 -17.776138 -17.312323 -0.210320 28.372491 -18.952975 14.366043 -17.158543 23.898820 -7.091104 -64.904400 -17.307161 -12.491840 9.504026 69.926930 -45.643763 -25.995361 20.153291
|
| 194 |
+
-4.265675 117.078164 -36.003228 -91.901182 0.156652 -6.963245 -44.774938 1.150213 -14.480204 147.337675 9.962280 -22.386805 -20.740275 -19.600880 15.961784 -0.000000 0.000000 0.000000 -42.920400 0.817022 7.269100 148.973219 -16.926919 16.802355 -16.291158 10.910906 -0.056442 -0.000000 0.000000 -0.000000 25.963951 1.683684 -1.716677 16.312252 -2.726122 -0.922723 -11.971543 -0.149627 0.086521 11.219798 5.514351 2.523435 -36.813375 -1.674796 -4.540609 12.188430 23.330421 -11.160537 18.967913 55.839688 -12.966404 5.705522 -17.987223 -38.924486 -1.752556 18.068117 -23.462044 15.271643 -15.335764 21.869665 -6.051804 -65.876066 -15.022844 -11.845536 9.730088 68.569314 -51.128323 -18.193446 27.223475
|
| 195 |
+
-3.653990 115.480408 -38.370080 -89.303548 1.803316 -9.349443 -47.372147 -0.127419 -11.850433 117.953099 13.230449 -17.565670 -26.594935 -14.672597 10.873495 -0.000000 0.000000 -0.000000 -48.082064 -1.536993 9.964395 122.860333 -19.626733 4.437303 -17.379478 10.846237 -8.533317 -0.000000 0.000000 -0.000000 28.626572 -0.699931 -1.894081 15.004061 -1.014277 1.224632 -12.025386 0.155961 1.487301 7.034798 4.988390 4.240231 -36.292478 1.515962 -6.049716 11.204016 20.584333 -5.793772 26.320558 58.804630 -10.785369 8.428602 -25.100518 -56.475927 -7.409897 6.657466 -29.234325 15.014441 -12.524585 19.696809 4.845537 -68.308626 -6.009756 -11.642108 15.056584 67.045633 -56.342787 -7.435119 34.656702
|
| 196 |
+
-3.581230 111.445114 -39.165624 -85.082720 2.725847 -5.665662 -39.291996 0.876377 -9.313226 78.930127 10.377067 -7.522405 -18.010766 -11.611481 15.187871 0.000000 0.000000 0.000000 -41.568359 -1.043657 7.862409 87.182333 -17.503450 -4.269885 -5.840547 4.306519 -10.654291 -0.000000 0.000000 0.000000 22.316185 -2.378419 -2.343503 14.271043 -3.491834 0.220985 -10.230837 -0.892772 0.837720 9.123980 6.465343 4.477300 -36.721639 1.410773 -5.510469 11.472830 17.496004 -1.137353 23.263982 62.241434 -3.086550 9.814932 -26.446265 -63.330366 -10.431552 6.903924 -31.802202 16.469230 -11.139442 15.952295 5.195937 -66.693932 -7.582480 -7.652722 16.539857 68.768577 -53.845606 -7.871469 34.382334
|
| 197 |
+
-3.521078 105.090889 -39.138718 -82.781426 3.196643 -2.083233 -26.638164 0.200663 -7.517202 45.128050 5.802206 -2.209245 -3.057486 -4.065773 15.072664 0.000000 0.000000 0.000000 -29.189113 -0.006462 5.900410 54.139322 -13.048970 -11.287809 5.015522 -0.931051 -10.577269 0.000000 0.000000 0.000000 15.024894 -2.473081 -3.128858 14.222802 -5.595825 -1.418688 -8.714214 -1.712666 -0.325439 11.392871 7.462905 5.882640 -37.710936 1.522063 -5.844058 12.619080 14.432103 3.251724 19.125306 63.362425 2.775258 11.519117 -21.431824 -65.312159 -12.929757 8.026037 -33.800151 17.259497 -10.962002 11.422606 6.175672 -66.075817 -7.980975 -5.136405 15.589689 71.243098 -47.959176 -9.663655 33.764434
|
data/gradio_human/bvh/000926.bvh
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/gradio_human/conversion_summary.json
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"success_count": 4,
|
| 3 |
+
"failed_count": 0,
|
| 4 |
+
"total": 4,
|
| 5 |
+
"results": [
|
| 6 |
+
{
|
| 7 |
+
"filename": "000327",
|
| 8 |
+
"num_frames": 151,
|
| 9 |
+
"num_joints": 27,
|
| 10 |
+
"bvh_path": "/gpfsdata/home/cuiyuzhuo/019/release/data/gradio_human/bvh/000327.bvh",
|
| 11 |
+
"success": true
|
| 12 |
+
},
|
| 13 |
+
{
|
| 14 |
+
"filename": "000419",
|
| 15 |
+
"num_frames": 198,
|
| 16 |
+
"num_joints": 27,
|
| 17 |
+
"bvh_path": "/gpfsdata/home/cuiyuzhuo/019/release/data/gradio_human/bvh/000419.bvh",
|
| 18 |
+
"success": true
|
| 19 |
+
},
|
| 20 |
+
{
|
| 21 |
+
"filename": "000708",
|
| 22 |
+
"num_frames": 63,
|
| 23 |
+
"num_joints": 27,
|
| 24 |
+
"bvh_path": "/gpfsdata/home/cuiyuzhuo/019/release/data/gradio_human/bvh/000708.bvh",
|
| 25 |
+
"success": true
|
| 26 |
+
},
|
| 27 |
+
{
|
| 28 |
+
"filename": "000926",
|
| 29 |
+
"num_frames": 198,
|
| 30 |
+
"num_joints": 27,
|
| 31 |
+
"bvh_path": "/gpfsdata/home/cuiyuzhuo/019/release/data/gradio_human/bvh/000926.bvh",
|
| 32 |
+
"success": true
|
| 33 |
+
}
|
| 34 |
+
]
|
| 35 |
+
}
|
data/gradio_human/joint_text_features/000327.npz
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3cd4084f31f468eedfdfbc4d811a9e5961f0ad3afa03da1e0a8d7f833ffb03b2
|
| 3 |
+
size 71490
|
data/gradio_human/joint_text_features/000419.npz
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3cd4084f31f468eedfdfbc4d811a9e5961f0ad3afa03da1e0a8d7f833ffb03b2
|
| 3 |
+
size 71490
|
data/gradio_human/joint_text_features/000708.npz
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3cd4084f31f468eedfdfbc4d811a9e5961f0ad3afa03da1e0a8d7f833ffb03b2
|
| 3 |
+
size 71490
|
data/gradio_human/joint_text_features/000926.npz
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3cd4084f31f468eedfdfbc4d811a9e5961f0ad3afa03da1e0a8d7f833ffb03b2
|
| 3 |
+
size 71490
|
data/gradio_human/processed/000327.npz
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cba1d2d8fd8fba55ed7834b973b94fd39bdf3f7fda39ce74cb5c880328c796f5
|
| 3 |
+
size 299956
|
data/gradio_human/processed/000419.npz
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fc40ae087b1f23076ae269d490cadaf7e844e8ff0fb726803adf17428d44f5f8
|
| 3 |
+
size 389624
|
data/gradio_human/processed/000708.npz
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e42cb270b3903db47f0df6e241e83986af866267dcea5a4172c4caed8f54cf58
|
| 3 |
+
size 128213
|
data/gradio_human/processed/000926.npz
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9d7f63c6f303af95fbb269baeb497744483c819cb396a6c1b08d792f46b00611
|
| 3 |
+
size 392709
|
data/gradio_skel/animo/joint_text_features/dama_gazelle_male_runtostandturnl.npz
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1efcdd0f8c9990323a8d01c641178466c2f6e456378e6e8b3fe8784b962b3efb
|
| 3 |
+
size 131731
|
data/gradio_skel/animo/joint_text_features/malayan_tapir_male_standidle01.npz
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:feab8254e314979f988f2c2cc89e7f903b315cfc477fae775fac833d3b371e99
|
| 3 |
+
size 131672
|
data/gradio_skel/animo/joint_text_features/wisent_male_attackfence.npz
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:feab8254e314979f988f2c2cc89e7f903b315cfc477fae775fac833d3b371e99
|
| 3 |
+
size 131672
|
data/gradio_skel/animo/processed/dama_gazelle_male_runtostandturnl.npz
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b7cf85d286d0d95d002e38c4e191f99d56d6fb4caafeadd1a05531ca1a0915d3
|
| 3 |
+
size 159553
|
data/gradio_skel/animo/processed/malayan_tapir_male_standidle01.npz
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:690fab02e584793ec56547c943c65e1f33b45f4cbad6ba2be1d87c50794d10b4
|
| 3 |
+
size 761307
|
data/gradio_skel/animo/processed/wisent_male_attackfence.npz
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:da8b4160de88e4233a84af04ffdb7429694ca3bafec13d9ca9f440d0409dcde0
|
| 3 |
+
size 468984
|
data/gradio_skel/human/joint_text_features/amy.npz
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a5a3d3c7229878b105e25e3cc37e6a154d773edf23425e91152edc099fa14663
|
| 3 |
+
size 71491
|
data/gradio_skel/human/joint_text_features/guard.npz
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a5a3d3c7229878b105e25e3cc37e6a154d773edf23425e91152edc099fa14663
|
| 3 |
+
size 71491
|
data/gradio_skel/human/joint_text_features/mousey.npz
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a5a3d3c7229878b105e25e3cc37e6a154d773edf23425e91152edc099fa14663
|
| 3 |
+
size 71491
|
data/gradio_skel/human/processed/amy.npz
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:206c1566703b4e8f00a8314dcd428e4e84d73fe579f1941e6c23f11ec12df88a
|
| 3 |
+
size 3618
|
data/gradio_skel/human/processed/guard.npz
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5868346512fc6c2580366a6c9128b0818539e15b169d842991fa8f6a92572ff1
|
| 3 |
+
size 3585
|
data/gradio_skel/human/processed/mousey.npz
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:963e9fb4d78b37438443124f183730ddee3eae26385959fac966125e788be6a8
|
| 3 |
+
size 4961
|
data/gradio_target_bvh/animo/dama_gazelle_male_runtostandturnl.bvh
ADDED
|
@@ -0,0 +1,329 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
HIERARCHY
|
| 2 |
+
ROOT def_c_root_joint
|
| 3 |
+
{
|
| 4 |
+
OFFSET 0.000000 0.000000 0.000000
|
| 5 |
+
CHANNELS 6 Xposition Yposition Zposition Xrotation Yrotation Zrotation
|
| 6 |
+
JOINT def_c_hips_joint
|
| 7 |
+
{
|
| 8 |
+
OFFSET -0.000000 -0.985200 0.093600
|
| 9 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 10 |
+
JOINT def_c_spine1_joint
|
| 11 |
+
{
|
| 12 |
+
OFFSET 0.000000 -0.162200 0.000000
|
| 13 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 14 |
+
JOINT def_c_spine2_joint
|
| 15 |
+
{
|
| 16 |
+
OFFSET 0.000000 -9.916100 -1.368100
|
| 17 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 18 |
+
JOINT def_c_spine3_joint
|
| 19 |
+
{
|
| 20 |
+
OFFSET 0.000000 -9.966200 -0.935800
|
| 21 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 22 |
+
JOINT def_c_chest_joint
|
| 23 |
+
{
|
| 24 |
+
OFFSET 0.000000 -10.903400 0.601800
|
| 25 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 26 |
+
JOINT def_c_neck1_joint
|
| 27 |
+
{
|
| 28 |
+
OFFSET 0.000000 -18.528900 -1.530700
|
| 29 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 30 |
+
JOINT def_c_neck2_joint
|
| 31 |
+
{
|
| 32 |
+
OFFSET 0.000000 -7.703800 5.503200
|
| 33 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 34 |
+
JOINT def_c_neck3_joint
|
| 35 |
+
{
|
| 36 |
+
OFFSET 0.000000 -5.515400 7.732500
|
| 37 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 38 |
+
JOINT def_c_neck4_joint
|
| 39 |
+
{
|
| 40 |
+
OFFSET -0.000000 -3.947000 8.622800
|
| 41 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 42 |
+
JOINT def_c_head_joint
|
| 43 |
+
{
|
| 44 |
+
OFFSET -0.000000 -3.451100 9.252900
|
| 45 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 46 |
+
JOINT def_c_jaw_joint
|
| 47 |
+
{
|
| 48 |
+
OFFSET -0.000000 -2.586400 -1.581400
|
| 49 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 50 |
+
End Site
|
| 51 |
+
{
|
| 52 |
+
OFFSET 0.000000 -13.516133 -6.855483
|
| 53 |
+
}
|
| 54 |
+
}
|
| 55 |
+
JOINT def_eye_joint.L
|
| 56 |
+
{
|
| 57 |
+
OFFSET 4.078000 -5.090000 2.412200
|
| 58 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 59 |
+
End Site
|
| 60 |
+
{
|
| 61 |
+
OFFSET 0.832300 -0.350200 -0.108800
|
| 62 |
+
}
|
| 63 |
+
}
|
| 64 |
+
JOINT def_eye_joint.R
|
| 65 |
+
{
|
| 66 |
+
OFFSET -4.078000 -5.090000 2.412200
|
| 67 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 68 |
+
End Site
|
| 69 |
+
{
|
| 70 |
+
OFFSET -0.832300 -0.350200 -0.108800
|
| 71 |
+
}
|
| 72 |
+
}
|
| 73 |
+
}
|
| 74 |
+
}
|
| 75 |
+
}
|
| 76 |
+
}
|
| 77 |
+
}
|
| 78 |
+
JOINT def_clavicle_joint.L
|
| 79 |
+
{
|
| 80 |
+
OFFSET 5.511100 -7.185700 3.807100
|
| 81 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 82 |
+
JOINT def_frontLegUpr_joint.L
|
| 83 |
+
{
|
| 84 |
+
OFFSET 1.208500 -6.555000 -11.437100
|
| 85 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 86 |
+
JOINT def_frontLegLwr_joint.L
|
| 87 |
+
{
|
| 88 |
+
OFFSET -0.176700 8.465700 -12.365100
|
| 89 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 90 |
+
JOINT def_frontHorselink_joint.L
|
| 91 |
+
{
|
| 92 |
+
OFFSET -0.055200 -1.609700 -25.257800
|
| 93 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 94 |
+
JOINT def_frontFoot_joint.L
|
| 95 |
+
{
|
| 96 |
+
OFFSET -0.271500 0.987900 -23.173900
|
| 97 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 98 |
+
End Site
|
| 99 |
+
{
|
| 100 |
+
OFFSET 0.337300 -6.151100 -5.738400
|
| 101 |
+
}
|
| 102 |
+
}
|
| 103 |
+
}
|
| 104 |
+
JOINT def_frontLegLwrAllTwist_joint.L
|
| 105 |
+
{
|
| 106 |
+
OFFSET -0.027600 -0.804800 -12.628900
|
| 107 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 108 |
+
End Site
|
| 109 |
+
{
|
| 110 |
+
OFFSET -0.016600 -0.482900 -7.577300
|
| 111 |
+
}
|
| 112 |
+
}
|
| 113 |
+
}
|
| 114 |
+
}
|
| 115 |
+
}
|
| 116 |
+
JOINT def_clavicle_joint.R
|
| 117 |
+
{
|
| 118 |
+
OFFSET -5.511100 -7.185700 3.807200
|
| 119 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 120 |
+
JOINT def_frontLegUpr_joint.R
|
| 121 |
+
{
|
| 122 |
+
OFFSET -1.208500 -6.555000 -11.437100
|
| 123 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 124 |
+
JOINT def_frontLegLwr_joint.R
|
| 125 |
+
{
|
| 126 |
+
OFFSET 0.176700 8.465700 -12.365100
|
| 127 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 128 |
+
JOINT def_frontHorselink_joint.R
|
| 129 |
+
{
|
| 130 |
+
OFFSET 0.055200 -1.609600 -25.257800
|
| 131 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 132 |
+
JOINT def_frontFoot_joint.R
|
| 133 |
+
{
|
| 134 |
+
OFFSET 0.271500 0.987900 -23.173900
|
| 135 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 136 |
+
End Site
|
| 137 |
+
{
|
| 138 |
+
OFFSET -0.337300 -6.151100 -5.738400
|
| 139 |
+
}
|
| 140 |
+
}
|
| 141 |
+
}
|
| 142 |
+
JOINT def_frontLegLwrAllTwist_joint.R
|
| 143 |
+
{
|
| 144 |
+
OFFSET 0.027600 -0.804800 -12.628900
|
| 145 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 146 |
+
End Site
|
| 147 |
+
{
|
| 148 |
+
OFFSET 0.016600 -0.482900 -7.577300
|
| 149 |
+
}
|
| 150 |
+
}
|
| 151 |
+
}
|
| 152 |
+
}
|
| 153 |
+
}
|
| 154 |
+
}
|
| 155 |
+
}
|
| 156 |
+
}
|
| 157 |
+
}
|
| 158 |
+
JOINT def_c_tail1_joint
|
| 159 |
+
{
|
| 160 |
+
OFFSET -0.000000 23.386700 3.546700
|
| 161 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 162 |
+
JOINT def_c_tail2_joint
|
| 163 |
+
{
|
| 164 |
+
OFFSET -0.000000 5.616800 -3.426400
|
| 165 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 166 |
+
End Site
|
| 167 |
+
{
|
| 168 |
+
OFFSET 0.000000 5.681100 -3.294000
|
| 169 |
+
}
|
| 170 |
+
}
|
| 171 |
+
}
|
| 172 |
+
JOINT def_rearLegUpr_joint.L
|
| 173 |
+
{
|
| 174 |
+
OFFSET 7.658600 11.566600 -1.528100
|
| 175 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 176 |
+
JOINT def_rearLegLwr_joint.L
|
| 177 |
+
{
|
| 178 |
+
OFFSET 0.756400 -1.668000 -20.412300
|
| 179 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 180 |
+
JOINT def_rearHorselink_joint.L
|
| 181 |
+
{
|
| 182 |
+
OFFSET -1.304100 18.229900 -18.950600
|
| 183 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 184 |
+
JOINT def_rearFoot_joint.L
|
| 185 |
+
{
|
| 186 |
+
OFFSET 2.051000 -2.622300 -29.413800
|
| 187 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 188 |
+
End Site
|
| 189 |
+
{
|
| 190 |
+
OFFSET 1.538100 -6.421800 -5.397800
|
| 191 |
+
}
|
| 192 |
+
}
|
| 193 |
+
}
|
| 194 |
+
JOINT def_rearLegLwrAllTwist_joint.L
|
| 195 |
+
{
|
| 196 |
+
OFFSET -0.652100 9.115000 -9.475300
|
| 197 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 198 |
+
End Site
|
| 199 |
+
{
|
| 200 |
+
OFFSET -0.391200 5.469000 -5.685200
|
| 201 |
+
}
|
| 202 |
+
}
|
| 203 |
+
}
|
| 204 |
+
JOINT def_rearLegUprAllTwist_joint.L
|
| 205 |
+
{
|
| 206 |
+
OFFSET 0.378200 -0.834000 -10.206100
|
| 207 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 208 |
+
End Site
|
| 209 |
+
{
|
| 210 |
+
OFFSET 0.226900 -0.500400 -6.123700
|
| 211 |
+
}
|
| 212 |
+
}
|
| 213 |
+
}
|
| 214 |
+
JOINT def_rearLegUpr_joint.R
|
| 215 |
+
{
|
| 216 |
+
OFFSET -7.658600 11.566600 -1.528100
|
| 217 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 218 |
+
JOINT def_rearLegLwr_joint.R
|
| 219 |
+
{
|
| 220 |
+
OFFSET -0.757500 -1.679000 -20.411400
|
| 221 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 222 |
+
JOINT def_rearHorselink_joint.R
|
| 223 |
+
{
|
| 224 |
+
OFFSET 1.305200 18.240900 -18.951500
|
| 225 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 226 |
+
JOINT def_rearFoot_joint.R
|
| 227 |
+
{
|
| 228 |
+
OFFSET -2.051000 -2.622300 -29.413800
|
| 229 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 230 |
+
End Site
|
| 231 |
+
{
|
| 232 |
+
OFFSET -1.538000 -6.421800 -5.397800
|
| 233 |
+
}
|
| 234 |
+
}
|
| 235 |
+
}
|
| 236 |
+
JOINT def_rearLegLwrAllTwist_joint.R
|
| 237 |
+
{
|
| 238 |
+
OFFSET 0.648300 8.876400 -9.699400
|
| 239 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 240 |
+
End Site
|
| 241 |
+
{
|
| 242 |
+
OFFSET 0.389100 5.327500 -5.821500
|
| 243 |
+
}
|
| 244 |
+
}
|
| 245 |
+
}
|
| 246 |
+
JOINT def_rearLegUprAllTwist_joint.R
|
| 247 |
+
{
|
| 248 |
+
OFFSET -0.378700 -0.839500 -10.205700
|
| 249 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 250 |
+
End Site
|
| 251 |
+
{
|
| 252 |
+
OFFSET -0.227200 -0.503700 -6.123400
|
| 253 |
+
}
|
| 254 |
+
}
|
| 255 |
+
}
|
| 256 |
+
JOINT def_c_anus_joint
|
| 257 |
+
{
|
| 258 |
+
OFFSET -0.000000 24.823400 -3.415000
|
| 259 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 260 |
+
End Site
|
| 261 |
+
{
|
| 262 |
+
OFFSET 4.274500 0.000000 0.000000
|
| 263 |
+
}
|
| 264 |
+
}
|
| 265 |
+
}
|
| 266 |
+
}
|
| 267 |
+
MOTION
|
| 268 |
+
Frames: 60
|
| 269 |
+
Frame Time: 0.033333
|
| 270 |
+
0.000000 75.773700 0.000000 -90.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000
|
| 271 |
+
17.707800 72.987000 -14.961200 -96.602351 14.865078 -20.545873 -0.000001 -0.000001 0.005545 5.351191 -2.567038 21.873286 0.461389 -1.299545 -8.734312 -8.139806 -1.223508 -8.293211 2.678360 0.000332 43.274132 10.859830 -2.308382 5.412901 3.864915 -5.679073 6.795883 1.014260 -2.781651 5.583036 0.001834 0.000000 -0.000010 -6.022143 8.884988 10.494783 -6.381606 0.000008 -0.000017 -7.860797 -3.924106 -0.475232 -12.096570 -0.126995 -1.297169 -10.094109 -0.167753 -1.603711 -27.747806 -5.597778 -10.313179 -17.557633 10.531493 18.375941 42.844861 0.991183 -2.564377 32.148768 -20.438313 3.411363 0.000005 0.000003 0.000004 -0.719567 -0.764066 0.323313 -8.726473 8.661442 5.178575 -25.705943 2.894397 -20.238561 57.906323 -0.595139 3.194662 71.000472 -3.207003 8.737308 -0.000009 0.000000 -0.000001 12.322010 -1.377279 0.381697 -0.905479 1.470958 -21.802860 -32.853989 -5.573900 8.976280 41.602607 7.038312 -2.718434 -15.189733 -11.867611 1.635468 16.040197 -8.925064 -1.334952 0.000002 -0.000001 0.000003 -0.000013 -0.000005 -0.000003 -23.660899 2.153243 0.952261 16.142618 -2.513872 0.670393 -12.122357 -6.546363 10.840831 26.460445 -8.237948 1.732085 -0.648898 -4.818047 8.425573 -0.000001 0.000001 0.000005 -0.000000 0.000000 -0.005544
|
| 272 |
+
16.206300 71.302300 -0.311900 -97.831286 12.284915 -12.169449 -0.000001 0.000002 0.005542 4.848677 -1.038173 19.981918 0.405314 -2.204118 -8.097197 -9.707571 -1.219756 -7.621277 2.440750 -0.000231 42.224943 11.853041 -2.180414 5.871885 3.961743 -6.450248 7.437307 1.243587 -2.751948 4.945740 0.001832 0.000000 -0.000004 -5.053134 8.518317 9.138052 -6.381601 0.000008 -0.000018 -8.484982 -3.314971 -0.240642 -11.968571 -0.008757 -1.242216 -10.194261 -0.126806 -1.636531 -20.606529 -5.946483 -9.255501 -21.136195 9.976465 18.569558 48.127193 1.086882 -2.917438 25.103262 -21.597678 3.306469 0.000010 0.000004 0.000001 -2.171489 -0.712527 0.551607 -18.865903 10.766914 8.492685 -21.566635 4.144169 -23.378846 50.536341 -1.936876 2.678922 85.020678 -2.273828 7.485490 -0.000007 -0.000002 0.000002 10.819423 -0.171406 -1.858855 -1.582846 1.736896 -21.749182 -20.728852 -1.097550 6.175424 45.922244 7.390234 -4.174182 -19.793159 -9.622854 1.318615 5.255661 -10.594944 -3.084307 -0.000005 0.000000 0.000001 -0.000008 -0.000005 -0.000005 -29.920760 5.135640 0.086427 25.286373 -4.192011 1.395861 -12.847872 -7.712070 11.369942 22.765000 -5.300326 0.309144 -0.638455 -4.619353 8.085497 0.000006 -0.000001 0.000004 0.000000 0.000001 -0.005545
|
| 273 |
+
16.181900 70.295200 13.678300 -97.693230 9.481031 -5.272821 -0.000001 -0.000001 0.005541 4.081347 0.862336 18.907371 0.760608 -3.218405 -7.544926 -10.933716 -1.158029 -6.625884 1.776820 -0.001423 41.147734 13.505888 -1.586049 6.595921 3.839815 -7.768533 8.961105 1.174534 -2.403818 3.889207 0.001836 -0.000003 -0.000010 -4.538809 9.101855 7.548376 -6.381601 0.000008 -0.000016 -9.135686 -2.683130 0.024331 -12.214319 -0.233509 -1.350651 -10.219066 -0.031074 -1.629135 -6.842297 -7.907225 -7.638032 -25.168147 11.300638 14.389247 46.516286 -1.931878 -3.153824 9.506681 -16.385369 1.479421 0.000005 0.000003 -0.000002 -3.584294 -0.679166 0.752493 -18.505298 11.509955 13.678245 -25.251346 9.481244 -30.580840 63.304290 -4.105460 3.264964 53.913740 -0.455848 3.096707 -0.000005 0.000003 0.000001 4.746953 1.580742 -2.889647 -5.811172 3.403026 -21.474386 -3.368057 3.767031 3.875203 39.952160 6.698947 -3.774475 -24.874939 -7.960164 0.856976 7.387600 -12.775842 -2.798696 -0.000002 0.000001 0.000001 -0.000011 -0.000006 -0.000006 -31.246196 7.039199 0.220651 26.046993 -4.540932 1.381696 -12.398870 -2.569434 10.586586 11.839775 -8.438982 1.832581 -0.634471 -4.587377 8.019907 -0.000002 -0.000001 0.000004 0.000001 0.000000 -0.005542
|
| 274 |
+
17.488100 70.136500 26.954200 -96.246522 7.038616 0.284673 0.000001 0.000000 0.005543 3.100414 2.872425 18.722918 1.497294 -4.414706 -7.078611 -11.174767 -1.109659 -5.721191 0.422571 -0.003260 40.210338 15.950307 -0.483314 7.409824 3.078309 -9.102760 10.917720 0.561320 -2.122035 3.057110 0.001837 -0.000005 -0.000009 -4.483692 10.911346 5.901821 -6.381606 0.000008 -0.000014 -9.557363 -2.271758 0.198845 -12.615443 -0.600886 -1.527427 -7.590081 -0.047126 -1.207608 3.832049 -9.293120 -6.466597 -16.236516 14.613060 5.337132 20.012132 -4.248335 -1.682337 -0.213340 -10.722168 0.107814 0.000004 0.000001 -0.000000 -5.150611 -0.780189 0.991007 -4.702153 10.130695 17.853577 -27.910219 13.782950 -36.873702 62.595501 -4.450350 3.319790 7.863149 1.006658 6.402017 -0.000009 0.000002 -0.000002 -5.473930 3.488350 -2.368702 -13.226450 6.221747 -20.725584 3.222856 6.164399 7.985490 40.771295 7.001564 -3.855363 -26.758658 -5.709146 0.143711 29.750125 -15.310950 5.638707 -0.000000 0.000001 0.000000 -0.000010 -0.000005 -0.000003 -24.825129 9.715757 -0.508564 25.165321 -4.593628 1.342505 -15.620398 -3.619364 10.667125 3.863537 -6.926267 0.125323 -0.628679 -4.573406 7.994839 -0.000004 0.000000 0.000006 -0.000000 0.000000 -0.005543
|
| 275 |
+
20.027300 71.174100 39.534300 -94.106438 5.135888 4.828315 -0.000000 0.000000 0.005542 1.159831 4.556975 19.409917 2.065162 -4.745507 -6.650282 -10.371301 -0.723281 -5.334527 -0.301941 0.003019 39.398949 19.074246 1.091900 8.200943 0.949245 -7.933499 10.350582 -0.592099 -4.023108 4.846366 0.001841 0.000002 -0.000008 -4.980403 12.980941 4.640452 -6.402589 0.000007 -0.000015 -9.563779 -2.269089 0.199440 -13.358188 -1.285205 -1.871202 -2.019529 -0.046325 -0.316589 10.773397 -12.468386 -6.026099 -17.024380 15.346911 0.218662 11.465896 -3.915336 -1.139195 -4.854472 -8.486638 -0.005561 0.000010 0.000002 0.000001 -3.181331 -0.652539 0.653259 -3.324102 7.672586 21.818853 -19.530424 10.048445 -39.275107 39.951228 -4.188910 2.077012 -10.817718 -2.425567 8.760666 -0.000010 -0.000002 0.000000 -10.813173 4.782725 -0.979198 -15.750389 7.089766 -20.246827 3.508176 5.825564 12.214288 42.485843 7.426433 -3.822810 -24.912502 -3.172033 -0.460596 54.847123 -8.236666 11.782291 0.000003 -0.000002 -0.000003 -0.000011 -0.000008 -0.000003 -13.341981 13.326894 0.069324 23.708930 -4.845028 1.195551 -21.154628 -4.145025 10.881396 2.586837 -7.109676 -1.628693 -0.626298 -4.507538 7.912802 -0.000000 0.000001 0.000004 -0.000000 0.000000 -0.005542
|
| 276 |
+
23.689600 73.505800 51.436900 -91.922533 4.069670 8.271161 -0.000000 0.000000 0.005542 -1.307393 5.514153 21.217122 2.457346 -4.026062 -6.246940 -8.757508 -0.008199 -5.526076 -0.182856 0.000436 38.587570 21.783807 2.867222 8.850969 -1.457758 -3.944157 6.878031 -1.447592 -7.715436 8.685743 0.001839 -0.000002 -0.000010 -6.027025 14.219533 4.417897 -6.423555 0.000010 -0.000016 -9.773179 -2.068455 0.287473 -14.745760 -2.532084 -2.528316 3.750595 0.039396 0.593305 15.016362 -17.847887 -5.877082 -23.924474 15.581984 -0.265834 18.605632 -2.026400 -1.545607 -5.075923 -7.320362 -0.245212 0.000006 0.000003 0.000003 1.914412 -0.457716 -0.162237 -9.889514 4.085311 24.933372 -2.854027 -0.990790 -38.977069 2.679466 -3.642933 -0.014645 -9.067265 -4.303033 7.664064 -0.000007 0.000001 -0.000000 -12.759107 5.278505 1.103434 -15.115011 6.781137 -20.108768 2.648033 5.212014 15.467634 42.074901 7.220575 -3.537700 -18.750512 -2.639893 -0.279645 55.862294 -0.485546 7.023306 -0.000000 0.000003 0.000000 -0.000012 -0.000006 -0.000005 -7.678588 16.788282 4.061586 23.169153 -4.958718 1.023850 -22.344692 -6.023172 11.396173 19.222388 -8.653638 -1.872253 -0.617378 -4.540758 7.939503 -0.000001 -0.000001 0.000006 -0.000000 0.000001 -0.005543
|
| 277 |
+
28.108900 75.129400 62.759600 -90.768968 3.994701 12.492156 -0.000000 0.000000 0.005545 -2.671041 5.529448 22.524531 2.804504 -3.332952 -5.643692 -8.305170 0.354095 -6.278456 0.056396 0.000431 37.160658 22.083031 3.896655 9.318832 -1.666989 -0.070121 3.129506 -1.384293 -9.283248 10.690853 0.001836 -0.000003 -0.000008 -7.189227 12.257605 5.768479 -6.010875 0.000008 -0.000016 -10.002131 -1.860177 0.378098 -15.672419 -3.346738 -2.981947 4.317368 0.333227 0.601391 8.426302 -20.905544 -7.487642 -32.957008 13.988127 9.959090 48.569851 1.283116 -3.086295 6.762858 -9.621575 1.901603 0.000002 0.000005 -0.000002 1.459700 -1.087140 0.070894 4.783912 1.282075 24.166823 -4.187119 -0.992149 -39.395384 -5.091096 -3.156964 -0.347583 -19.493175 -4.171424 5.968338 -0.000009 0.000000 -0.000002 -10.614419 5.206899 1.873319 -11.717579 5.450067 -20.208185 -15.453609 -2.143732 20.322740 66.805459 9.343194 -7.208544 -34.987787 -5.455121 -3.821727 62.228856 3.105113 4.102586 -0.177761 0.906970 -1.603262 -0.000010 -0.000005 -0.000008 -10.654576 18.684833 7.622580 27.694477 -5.434695 1.443259 -19.694323 -6.628599 11.697920 57.448892 -12.357662 4.678301 -0.615134 -4.480486 7.842852 -0.000002 0.000000 0.000003 -0.000000 0.000000 -0.005542
|
| 278 |
+
33.223900 76.173200 73.221700 -91.351271 4.427676 17.133983 -0.000000 0.000000 0.005542 -3.266260 4.361304 23.450881 2.714649 -2.631733 -4.916154 -8.415270 0.436395 -7.059080 1.182622 0.002329 35.348855 20.615265 4.107072 9.500153 -0.857017 1.112147 1.862529 -1.634046 -6.134178 8.488408 0.001837 -0.000003 -0.000008 -8.205195 7.281570 8.440740 -5.640179 0.000008 -0.000016 -9.431536 -2.392430 0.149202 -15.540796 -3.232308 -2.919593 4.148658 0.338624 0.565686 -3.646834 -18.710637 -9.851012 -28.194280 11.637052 14.458956 66.158811 2.344772 -3.863438 40.943176 -6.649765 10.975315 0.000007 -0.000001 0.000004 -0.885811 -1.520495 0.363337 20.500324 -1.173329 21.794186 -6.051248 -0.619835 -38.722070 -8.794365 -3.954282 -0.567349 -22.380443 -3.332108 5.638690 -0.000008 0.000002 0.000002 -5.674565 4.542925 1.913478 -7.240912 3.725782 -20.249967 -23.467109 -5.911702 23.061956 75.188000 9.718359 -8.591139 -64.615789 -4.918911 -10.337162 83.436642 3.568290 3.668807 -0.431115 2.522966 -4.435499 -0.000009 -0.000004 -0.000003 -13.373084 17.935428 9.531901 32.288965 -5.803755 1.997317 -16.036325 -4.307381 11.441370 67.781704 -16.041463 12.333264 -0.613693 -4.406058 7.730672 -0.000000 -0.000002 0.000003 -0.000000 0.000000 -0.005542
|
| 279 |
+
38.839500 76.875200 82.823100 -93.785391 5.639842 21.903484 -0.000000 0.000000 0.005544 -3.642526 1.233839 24.058604 1.946591 -1.696737 -4.195918 -8.596002 0.123086 -7.390053 3.553526 0.007383 33.494636 17.188997 3.403079 9.302224 0.341069 -0.096910 2.838979 -1.363685 -1.984854 5.250316 0.001837 -0.000004 -0.000008 -7.909660 3.365505 10.575136 -5.766079 0.000010 -0.000016 -8.267085 -3.529392 -0.325294 -14.524530 -2.330802 -2.422154 2.377365 0.069469 0.370013 -7.400372 -12.830557 -8.112210 -33.089514 11.876090 12.813956 66.884996 1.310166 -3.786241 76.346427 3.464659 15.370444 0.000007 0.000001 0.000001 -5.357953 -2.087206 0.847830 35.541169 -2.104374 18.883784 -6.540299 -1.887314 -38.584384 -9.408917 -5.371820 -0.695707 -15.734580 -2.713986 5.541368 -0.000009 0.000000 -0.000002 -1.002799 2.410209 1.959725 -4.298781 2.586397 -20.065945 -26.646692 -9.702694 23.298609 57.595864 8.545806 -5.678107 -59.323997 -5.193041 -11.687401 88.498105 1.959573 1.313288 -0.622004 4.380918 -7.671077 -0.000010 -0.000006 -0.000005 -17.968476 15.955091 10.566209 41.898402 -6.997007 3.209727 -19.421587 -0.629246 11.233234 66.794612 -20.839928 18.439969 -0.608851 -4.204294 7.355514 -0.000004 -0.000001 0.000006 -0.000000 0.000000 -0.005546
|
| 280 |
+
44.839600 77.339100 91.527300 -97.471012 6.023474 26.910865 -0.000001 -0.000001 0.005539 -2.935877 -1.993714 24.148965 1.354238 -0.909670 -3.471937 -8.301778 -0.428975 -7.599353 4.914721 -0.001746 31.726806 12.595630 2.045317 8.746906 1.430878 -2.271045 4.685068 -0.567891 -0.618400 3.913967 0.001837 -0.000004 -0.000008 -6.464024 3.229944 10.699788 -5.961915 0.000009 -0.000016 -6.758325 -5.020412 -0.908563 -12.885425 -0.855966 -1.656862 -1.550012 -0.026289 -0.248981 -8.383378 -10.535143 -7.290797 -40.669948 10.716907 14.079360 72.614794 0.528832 -4.007039 72.257780 4.143766 16.754451 0.000001 0.000003 0.000003 -1.857092 -1.690677 0.264876 32.396093 -2.169881 15.617108 -6.548344 -1.743424 -33.275558 -9.543467 -6.618887 -0.796055 32.061048 1.951726 3.837108 -0.000010 0.000002 0.000004 3.813867 0.156348 1.973183 -2.355210 1.822863 -19.733899 -22.044558 -8.279626 23.860950 39.770573 6.397485 -3.357175 -42.827328 -11.257695 -8.601314 64.926959 -1.957729 -3.190338 -0.614883 4.293440 -7.508682 -0.000009 -0.000006 -0.000005 -21.213096 13.607005 9.429519 50.603089 -7.967708 4.462166 -27.507083 1.833146 11.331978 60.340002 -24.160968 18.639096 -0.589636 -3.983374 6.960353 -0.000001 -0.000004 0.000002 -0.000000 0.000001 -0.005541
|
| 281 |
+
51.090000 77.632000 99.334200 -101.530385 4.559986 32.243600 -0.000000 0.000000 0.005542 -0.964160 -4.101670 23.575677 1.149007 -0.429041 -2.706677 -7.599128 -0.976854 -7.734074 4.909960 -0.004403 29.987143 7.975843 0.277548 7.804673 2.287837 -4.848246 6.936556 0.358366 -1.620346 4.159133 0.001839 -0.000003 -0.000009 -4.260648 5.930940 8.933164 -6.178755 0.000009 -0.000017 -5.361373 -6.419745 -1.413604 -11.008727 0.887106 -0.820219 -6.088189 -0.069684 -0.959962 -7.297286 -9.097520 -7.042556 -34.182078 9.575645 16.639806 68.045008 0.369572 -3.747914 56.149619 -2.871929 18.411671 0.000004 0.000005 0.000002 6.244437 -1.231928 -0.790012 17.495273 2.812932 12.120996 -8.671994 -2.348730 -22.338269 -8.271985 -6.448199 -0.702311 83.514772 2.046618 1.651287 -0.000010 0.000000 0.000004 8.620453 -1.256755 1.552038 -1.312932 1.407762 -19.332255 -17.965749 -4.243262 19.734157 24.576590 4.265293 -1.509613 -21.914529 -14.546571 -1.638854 29.556418 -2.648403 -4.761131 -0.280720 1.495930 -2.640759 -0.000010 -0.000007 -0.000001 -22.892511 11.264751 5.710637 54.449831 -8.370091 5.084378 -35.487573 2.492379 11.577971 44.438508 -22.425128 10.786347 -0.576433 -3.853365 6.757094 -0.000002 -0.000001 0.000004 0.000001 -0.000001 -0.005544
|
| 282 |
+
57.499100 77.448900 106.420800 -105.075562 0.972323 37.515121 0.000003 -0.000002 0.005544 1.933741 -4.705317 22.515312 0.962856 -0.007680 -1.874688 -6.534483 -1.143284 -7.727193 4.475742 0.002130 28.247461 4.022562 -1.541691 6.708136 2.952305 -6.724068 8.272973 1.170134 -2.716928 4.376656 0.001834 -0.000003 -0.000008 -1.877815 7.827193 7.057276 -6.395593 0.000008 -0.000013 -4.621985 -7.174542 -1.669615 -9.481349 2.346027 -0.168388 -9.627983 -0.049593 -1.534177 -7.322229 -8.724429 -7.455776 -26.434772 9.799320 19.031111 49.879594 0.405561 -2.752153 47.685891 -12.843815 12.325359 0.000011 -0.000001 0.000003 7.928889 -1.149825 -1.025062 9.675876 6.487254 8.128920 -11.648979 -4.025326 -17.298369 5.796080 -5.438878 0.073146 85.450277 0.747301 3.599413 -0.000010 0.000000 -0.000003 13.387233 -1.476191 0.537281 -0.963943 1.256307 -18.885113 -14.426292 -3.008144 16.964458 20.368965 3.693589 -0.988777 -12.177309 -10.465528 1.026773 14.550769 -5.668488 -2.861886 -0.018440 0.067711 -0.130936 -0.000008 -0.000006 -0.000002 -24.268823 9.042496 0.082872 48.500043 -7.796299 4.312957 -35.951111 2.796832 11.084708 36.707615 -16.133933 6.351690 -0.588113 -3.996255 7.005544 0.000001 -0.000002 0.000003 -0.000001 0.000001 -0.005547
|
| 283 |
+
63.804400 76.765300 112.585700 -105.221452 -1.148336 42.474517 0.000002 -0.000001 0.005543 1.976023 -4.601537 21.155188 0.620864 0.809065 -1.192286 -5.333538 -0.971286 -7.239684 3.685659 -0.004049 26.353849 1.075428 -2.101715 5.758538 3.066369 -6.206715 7.492321 1.658342 -3.118112 4.634872 0.001842 -0.000004 -0.000009 -0.287299 7.378517 6.210509 -6.395589 0.000011 -0.000018 -3.512116 -8.311006 -2.035815 -9.516615 2.308585 -0.186703 -11.277015 -0.014813 -1.792546 -7.556237 -9.404927 -8.024937 -22.820144 10.241884 20.720292 37.244431 -0.685877 -2.095680 38.711029 -18.063057 3.525445 0.000008 0.000004 0.000002 6.657361 -1.008197 -0.875809 2.971953 7.116464 5.712645 -16.354818 -3.413635 -16.232552 28.774508 -3.334253 1.496575 73.890687 -0.868998 5.754121 -0.000010 0.000000 -0.000002 14.389962 -1.315451 -0.717820 -0.939098 1.193786 -18.385206 -8.398987 -2.602934 13.333081 24.704762 4.430468 -1.777352 -15.293277 -8.013525 1.040835 13.234027 -6.120046 -2.171417 -0.000330 0.001368 0.002446 -0.000009 -0.000007 -0.000006 -24.658441 6.600513 -2.327183 36.717167 -6.354940 2.822142 -25.984065 2.938445 10.205918 29.581846 -11.585346 4.826837 -0.610436 -4.273155 7.482265 -0.000006 0.000000 0.000003 -0.000000 0.000000 -0.005544
|
| 284 |
+
69.957100 75.507900 117.975400 -104.142057 -2.433394 47.069038 0.000001 -0.000001 0.005544 0.987361 -4.220122 19.864909 0.271664 1.720049 -0.649935 -4.335402 -0.638408 -6.444828 2.973678 -0.000945 24.397251 -0.878796 -1.587847 4.814283 3.019237 -5.230287 6.373589 1.896107 -2.925384 4.289714 0.001839 -0.000003 -0.000010 0.482658 6.522175 5.278195 -6.395589 0.000010 -0.000016 -1.870491 -10.013224 -2.545544 -10.324044 1.535873 -0.524576 -11.210285 -0.019271 -1.785711 -2.212335 -11.828464 -7.775732 -18.302081 11.220619 22.496948 23.657516 -1.563896 -1.437080 25.276437 -18.942360 -7.469674 0.000009 0.000002 0.000003 2.733952 -0.835915 -0.234115 -1.202491 6.930771 4.138041 -16.317430 -3.601504 -15.981490 37.962499 -1.308158 2.067799 70.745863 -2.704026 7.250168 -0.000006 0.000001 0.000003 13.896459 -0.944675 -1.873943 -1.137588 1.212103 -17.868482 -1.021446 -1.490830 9.259860 25.658849 4.701775 -2.108617 -18.892744 -6.377842 0.798881 13.307611 -5.973518 -1.645790 0.013146 0.001611 -0.003890 -0.000011 -0.000004 -0.000012 -24.987112 3.984064 -2.020955 24.729829 -4.486667 1.375468 -15.289088 0.797373 10.064829 23.807830 -7.652706 3.375126 -0.629234 -4.569119 7.979766 -0.000002 -0.000003 0.000006 -0.000000 0.000000 -0.005543
|
| 285 |
+
75.914500 73.939200 122.681500 -102.376167 -3.075198 51.078128 -0.000000 -0.000001 0.005540 0.312397 -3.296374 18.985399 0.269014 2.266707 -0.261290 -4.233935 -0.338824 -5.424202 1.984951 -0.002151 22.440631 -1.725429 -0.687710 4.409302 2.984664 -5.224792 6.260092 1.927070 -2.074534 2.848292 0.001839 -0.000005 -0.000006 0.743951 5.849810 3.739398 -6.395600 0.000010 -0.000018 -0.511623 -11.435026 -2.934428 -10.882387 1.006173 -0.760581 -10.764880 -0.052624 -1.712381 2.861007 -13.767937 -7.339300 -8.946084 14.418024 22.541622 -0.146990 -1.530810 -0.088965 23.100466 -17.182309 -15.542833 0.000005 0.000004 0.000003 0.280672 -0.780169 0.161402 -6.702744 6.782569 3.872888 -16.239263 -2.801996 -17.065610 48.412873 -0.855133 2.652266 62.882854 -3.520193 6.382100 -0.000003 0.000001 0.000000 11.503964 -0.236899 -2.634442 -2.472489 1.580373 -17.294700 7.534384 -0.128161 5.303468 22.333211 4.311926 -1.908745 -20.292583 -5.089515 0.525880 9.275116 -5.487922 -1.565418 -0.001290 -0.000169 -0.010232 -0.000010 -0.000005 -0.000009 -25.530398 2.970015 -0.842728 18.165534 -3.157030 0.716156 -9.626204 -2.744301 10.464056 18.219366 -4.093454 1.672449 -0.655130 -4.749028 8.308247 0.000001 -0.000001 0.000000 -0.000000 0.000000 -0.005542
|
| 286 |
+
81.603300 72.987000 126.618600 -99.840433 -2.404259 54.315842 -0.000000 0.000000 0.005546 0.641510 -1.656099 18.636521 1.276510 2.067828 -0.001699 -5.949227 -0.284263 -4.286524 -0.316805 -0.012474 20.483430 -1.651569 -0.052993 4.684775 2.795323 -5.777186 6.883057 1.694874 -1.494703 1.496310 0.001842 -0.000003 -0.000008 0.493047 6.007403 1.876946 -6.395594 0.000006 -0.000018 0.413410 -12.418327 -3.181918 -10.508399 1.362182 -0.604753 -9.969087 -0.118201 -1.571672 7.212385 -14.161111 -6.748203 -6.858388 14.946611 23.707691 -6.094197 -0.685889 0.238996 14.185890 -14.341304 -19.878326 0.000008 -0.000002 0.000002 -1.633946 -0.745316 0.473564 -9.064943 7.648646 5.064793 -21.941576 -0.603242 -19.584171 53.076888 -1.356021 2.952784 62.069385 -2.919151 4.064295 -0.000008 0.000000 0.000000 6.586815 0.610447 -2.795165 -5.002000 2.230358 -16.728043 13.722533 1.629695 3.591170 17.120482 3.543166 -1.451843 -18.233625 -3.784336 0.377999 6.574072 -5.915099 -1.108463 -0.001767 -0.000943 -0.016567 -0.000011 -0.000005 0.000001 -25.472525 4.266394 -0.987427 19.341474 -3.364403 0.822311 -9.718775 -3.507334 10.610932 9.254536 -2.304175 0.838547 -0.643665 -4.721032 8.258126 -0.000002 0.000000 0.000005 -0.000001 0.000001 -0.005539
|
| 287 |
+
86.980800 72.748900 129.865800 -96.856854 -0.436870 56.769883 -0.000000 -0.000001 0.005542 1.257421 0.327119 18.673163 2.936106 1.047689 0.138255 -7.940237 -0.500721 -3.209089 -4.122926 -0.011260 18.740951 -0.233964 0.570882 5.403700 2.228375 -6.737294 8.122783 0.996435 -1.570900 0.775585 0.001839 -0.000004 -0.000009 -0.526527 7.028754 -0.091706 -6.395589 0.000010 -0.000013 0.742656 -12.762192 -3.261735 -9.115213 2.696488 -0.014826 -9.279048 -0.128903 -1.470866 13.168309 -12.951063 -5.806808 -14.143917 11.689741 24.942727 6.861553 -0.206109 -0.663668 -3.694129 -10.384505 -22.161638 0.000007 0.000000 -0.000001 -2.783281 -0.695430 0.658244 -3.679099 10.101016 6.284335 -31.708159 0.475926 -22.015698 50.055366 -2.167795 2.804044 62.588520 -1.640950 1.522679 -0.000016 0.000000 0.000001 -0.164621 1.238752 -2.483612 -8.215274 2.866298 -16.326748 15.674220 3.507844 4.614084 13.267494 2.867460 -1.057203 -13.536968 -2.671266 0.318777 9.501018 -6.177993 0.401092 -0.002286 -0.001357 -0.003121 -0.000010 -0.000005 -0.000008 -22.355814 5.976190 -2.192239 19.886675 -3.628936 0.902187 -11.514805 -2.361490 10.385269 -0.014117 -2.072068 0.630772 -0.634175 -4.664742 8.176916 -0.000002 -0.000001 0.000005 -0.000000 0.000000 -0.005544
|
| 288 |
+
92.071500 73.041900 132.606500 -94.160947 1.919681 58.624228 -0.000000 0.000000 0.005542 0.455141 1.708603 18.941052 3.779176 -0.364970 0.161962 -8.591292 -0.639476 -2.365525 -6.156905 -0.000818 17.398372 3.165227 1.555734 6.402397 1.159354 -7.643640 9.627152 -0.127953 -1.767513 0.631025 0.001837 -0.000003 -0.000010 -2.101976 8.641907 -1.107944 -6.395591 0.000008 -0.000017 0.286494 -12.287886 -3.146494 -8.128328 3.661998 0.381061 -9.418962 0.025057 -1.509164 21.191196 -11.516023 -4.572405 -20.112207 9.988195 24.213885 13.640149 -0.360201 -1.240649 -16.900161 -6.332971 -23.146509 0.000010 0.000003 0.000001 -3.583651 -0.621986 0.766169 0.124324 13.088996 6.902772 -31.538385 -1.397931 -24.599736 43.977348 -3.388442 2.375366 39.003133 1.780626 1.604233 -0.000013 0.000000 0.000000 -7.146721 1.434079 -1.952306 -11.635042 3.324996 -16.123456 9.983581 3.112854 6.443843 15.899097 3.159696 -0.884675 -7.546371 -1.010429 0.066101 27.200844 -2.969371 4.144267 -0.002815 -0.001772 0.010320 -0.000012 -0.000005 -0.000007 -15.885862 6.331194 -3.521742 14.152330 -2.700041 0.543302 -12.281127 -1.900207 9.985144 -5.741636 -2.208335 0.276439 -0.643325 -4.725749 8.263304 -0.000000 0.000000 0.000002 -0.000000 0.000000 -0.005540
|
| 289 |
+
96.911800 73.951400 134.901600 -92.055435 4.035798 60.075968 -0.000000 0.000000 0.005547 -1.297198 2.447189 19.344738 3.810073 -1.720516 0.084408 -8.509587 -0.703958 -1.702680 -6.317420 -0.001013 16.231094 8.619579 2.925888 7.608094 -0.051576 -7.596611 10.408375 -1.313674 -1.527506 0.774486 0.001842 -0.000005 -0.000008 -4.133943 9.510786 -0.465294 -6.367615 0.000007 -0.000015 -0.943555 -10.990575 -2.815502 -8.217428 3.578259 0.344688 -8.928585 0.073631 -1.429801 26.263450 -10.308294 -3.828245 -19.819513 10.986395 22.377974 9.091426 -0.628539 -1.007935 -14.996847 -5.359410 -23.071645 0.000005 0.000002 -0.000000 -2.614252 -0.303752 0.535109 -1.573601 14.725690 7.672550 -21.850123 -5.940487 -24.560619 26.162314 -4.877547 1.167211 12.251373 3.204985 6.635794 -0.000008 0.000000 0.000000 -11.775230 1.152408 -1.501281 -13.421222 3.161946 -16.179453 -3.428077 0.322628 8.006349 25.532396 4.627189 -1.456371 -6.684499 -0.753146 -0.002957 44.564829 2.357037 3.215881 -0.003635 0.002301 -0.001052 -0.000012 -0.000006 -0.000003 -6.958873 5.342800 -5.032640 2.963631 -0.668241 0.086524 -10.097578 -1.851740 9.540638 -9.423000 -2.641346 -0.237727 -0.645924 -4.850165 8.481657 -0.000001 -0.000001 0.000007 -0.000000 0.000000 -0.005539
|
| 290 |
+
101.648500 75.068400 136.958600 -90.744381 5.645200 61.430000 -0.000000 0.000000 0.005543 -3.352291 2.501303 19.890926 3.250016 -2.604661 -0.097038 -7.844820 -0.704068 -1.373247 -5.113529 0.005318 14.951781 12.279367 3.996263 8.712267 -0.727138 -4.471029 7.633471 -1.656544 -1.187253 1.538153 0.001836 -0.000004 -0.000007 -5.100211 5.900060 2.387160 -6.129802 0.000011 -0.000017 -3.374911 -8.450962 -2.080251 -8.726123 3.080744 0.139476 -8.516074 0.094716 -1.357761 27.177883 -9.750583 -3.475101 -12.544768 13.645016 18.871007 -2.421102 -1.100519 -0.368000 -4.012272 -6.212479 -21.792977 0.000007 0.000001 0.000000 -0.865882 0.063755 0.148643 -3.026702 14.929171 7.903922 -12.311927 -9.969359 -21.421031 5.359173 -5.376947 0.056641 11.350598 2.922716 7.355004 -0.000007 0.000000 0.000001 -11.083251 0.551064 -1.429019 -10.900326 1.843406 -16.624832 -13.559449 1.722673 8.800485 28.854397 5.100837 -1.696711 -28.210025 -5.476145 -0.636163 60.756882 3.014847 1.693978 -0.004454 0.006371 -0.012417 -0.000008 -0.000005 -0.000003 -0.316370 4.113096 -6.357222 -6.731611 1.206669 -0.014216 -4.687671 -2.137776 9.543062 -10.753282 -2.476184 -0.805895 -0.652517 -4.928761 8.618488 -0.000002 -0.000001 0.000011 -0.000000 0.000000 -0.005542
|
| 291 |
+
106.183600 75.947400 138.808100 -90.093458 6.474083 62.937722 0.000001 0.000000 0.005544 -5.497576 2.031544 20.237502 2.149524 -2.918506 -0.285260 -5.973598 -0.580051 -1.347557 -3.063288 0.003552 13.546290 13.138580 4.387498 9.544295 -0.243407 -1.032801 4.136288 -1.321678 -1.157559 2.536558 0.001841 -0.000004 -0.000010 -5.345526 1.055544 5.511435 -5.843012 0.000007 -0.000012 -6.233123 -5.543236 -1.103537 -8.771291 3.031263 0.120473 -9.191439 0.203427 -1.473867 26.824077 -10.071128 -3.223924 -3.925887 16.050099 14.311921 -12.796779 -1.671384 0.153781 8.914082 -7.896038 -18.780918 0.000005 0.000002 0.000001 -1.852617 -0.138159 0.365048 6.253302 15.873836 6.297022 -13.074434 -11.404933 -20.469793 -3.642373 -5.414540 -0.379846 5.014877 2.394742 7.702779 -0.000006 0.000000 0.000000 -7.859462 -0.066068 -1.723223 -6.930325 0.211864 -17.090115 -17.730606 4.021670 8.885728 18.553270 3.395848 -0.607551 -33.452730 -8.453363 -0.804170 66.442571 0.614915 0.415542 -0.003909 -0.008926 -0.003656 -0.000011 -0.000005 -0.000005 1.102136 4.329610 -7.505980 -7.214638 1.328137 0.008810 -1.495864 -2.244499 9.828523 -5.270260 -2.107839 -1.431913 -0.655949 -4.891926 8.557211 -0.000003 -0.000002 0.000010 -0.000000 0.000000 -0.005542
|
| 292 |
+
110.425800 76.338000 140.450000 -89.796251 6.796567 64.731595 -0.000000 0.000000 0.005541 -7.663972 1.335695 20.076089 0.750691 -2.661201 -0.519807 -3.448569 -0.307744 -1.213001 -0.595122 0.006281 12.252588 12.813992 4.363880 10.129592 0.491972 -1.416392 4.652660 -0.895918 -1.427977 2.808048 0.001836 -0.000003 -0.000008 -5.074968 0.267775 6.023079 -5.864002 0.000012 -0.000016 -8.718672 -3.082586 -0.142531 -8.585245 3.216402 0.196003 -9.402960 0.214410 -1.492139 23.504474 -10.094455 -3.319283 -8.060854 15.193717 13.677791 -1.829662 -1.200132 -0.296789 25.528686 -11.972043 -9.683672 0.000007 0.000003 0.000003 -3.269569 -0.428288 0.666510 14.278559 15.819787 4.950771 -16.680939 -11.315217 -20.473941 -4.363413 -5.419144 -0.408642 -1.660503 2.172482 7.879363 -0.000009 0.000000 0.000001 -5.099920 -0.599590 -2.330621 -4.005315 -1.070941 -17.373150 -19.711673 4.183466 10.875614 14.539239 2.739666 -0.184182 -23.546034 -9.963541 0.192267 47.577824 -1.850185 -1.385381 -0.005112 0.000344 -0.000278 -0.000011 -0.000005 -0.000006 2.744845 4.773039 -8.837338 -5.744022 0.946907 0.004094 -2.641244 -2.648958 9.707714 8.258020 -2.098750 -2.076442 -0.646160 -4.771908 8.344426 -0.000003 -0.000001 0.000009 -0.000000 0.000000 -0.005542
|
| 293 |
+
114.375000 76.460100 141.884500 -89.745881 6.727936 66.756743 -0.000000 0.000000 0.005541 -9.077339 0.802745 19.444690 -0.088242 -1.936132 -0.767284 -0.992945 0.048840 -0.998518 0.863876 -0.000785 11.204075 11.874776 3.995680 10.447988 1.108329 -3.932594 7.453789 -0.492916 -1.953938 2.591081 0.001832 -0.000004 -0.000009 -4.220682 2.047787 4.610820 -6.171767 0.000009 -0.000016 -10.696195 -1.188777 0.679527 -8.524451 3.280209 0.223423 -8.257857 0.028677 -1.308645 15.367837 -9.193780 -3.907482 -20.336099 11.906743 14.575200 23.212400 -0.148834 -1.480339 41.960260 -10.505108 3.226380 0.000009 0.000001 0.000003 -4.359824 -0.630000 0.878587 20.343440 14.570602 4.060411 -19.360733 -11.091784 -20.315047 -4.985974 -5.066923 -0.430918 -4.613161 2.087840 7.873991 -0.000009 0.000000 0.000000 -3.302396 -1.081407 -3.116442 -2.416225 -1.887935 -17.465675 -19.770759 4.295335 13.123482 10.859738 2.098425 0.309603 -12.748859 -10.071677 0.473661 22.736841 -2.447720 -2.692363 -0.006329 0.009617 0.003095 -0.000012 -0.000003 -0.000006 3.295444 5.217176 -6.767472 -2.538146 0.203193 -0.009974 -10.414966 -3.874644 8.045865 29.355979 -2.436162 -2.747674 -0.579558 -3.918288 6.858814 -0.000004 -0.000001 0.000003 -0.000000 0.000000 -0.005540
|
| 294 |
+
118.006800 76.441800 143.141900 -89.921204 6.141757 68.912423 -0.000001 0.000000 0.005544 -9.646479 0.438204 18.498963 -0.402059 -0.955318 -0.992692 1.090111 0.395278 -0.754222 1.547734 -0.001827 10.302599 10.233218 3.462596 10.609853 1.504541 -5.096740 8.507946 0.016980 -3.855346 3.614195 0.001836 -0.000003 -0.000009 -2.681181 3.865464 2.814459 -6.367598 0.000008 -0.000018 -12.191425 0.213251 1.337116 -8.787759 3.016686 0.118825 -7.895850 -0.045569 -1.258180 7.582751 -8.953967 -4.800302 -22.842335 10.565681 13.241201 34.741064 0.277696 -2.043101 38.618081 -6.580039 6.901331 0.000010 0.000003 0.000003 -5.198973 -0.760017 1.023307 24.950012 12.645924 3.599410 -21.124404 -10.838662 -19.851289 -5.633211 -4.466343 -0.439830 -5.562920 1.993590 7.762348 -0.000009 0.000000 0.000000 -1.608546 -1.456488 -3.927481 -1.447093 -2.415199 -17.308041 -19.586433 3.947253 13.770344 9.788050 1.816449 0.557132 -6.173484 -8.694010 0.170382 7.853641 -2.763480 -2.544750 -0.006445 0.003824 -0.008098 -0.000010 -0.000005 -0.000005 2.876541 6.135576 -3.238898 2.549866 -0.784538 0.011223 -22.643228 -3.860262 7.442963 48.943028 -6.371171 -1.216519 -0.551383 -3.568154 6.250270 -0.000004 -0.000001 0.000003 0.000001 0.000000 -0.005543
|
| 295 |
+
121.296800 76.301400 144.197900 -90.345067 4.806557 71.116999 -0.000001 0.000000 0.005543 -8.987551 0.267239 17.345170 -0.419019 0.002542 -1.162878 2.464134 0.670849 -0.460755 1.895622 -0.000731 9.478070 7.312281 2.689118 10.561434 1.745496 -5.386143 8.492310 0.563909 -5.146297 4.326651 0.001837 -0.000003 -0.000006 -0.784751 4.425392 1.394292 -6.423559 0.000010 -0.000020 -12.662286 0.650298 1.549994 -9.011136 2.801018 0.017807 -8.057798 -0.063249 -1.289107 1.743214 -8.926436 -5.706731 -24.150529 9.680252 12.825147 40.161738 -0.063354 -2.348516 26.486138 -6.067658 6.035532 0.000004 0.000004 0.000003 -5.829206 -0.817558 1.107076 28.468915 10.654398 3.356269 -21.997700 -10.596018 -19.112623 -6.332085 -3.895697 -0.447819 -6.022635 1.900163 7.645762 -0.000010 0.000000 0.000000 0.052717 -1.661642 -4.584403 -1.235767 -2.577258 -16.827453 -13.976116 4.417546 11.626592 8.409486 1.515406 0.248802 -6.325600 -7.440671 0.363414 2.249118 -2.509121 -2.653374 -0.007291 0.008075 -0.009577 -0.000012 -0.000007 -0.000004 2.180597 6.912651 -2.117785 8.556866 -1.809452 0.193968 -34.541861 -1.669809 7.280528 60.823982 -11.433491 3.158381 -0.537564 -3.425001 6.011736 -0.000002 0.000000 0.000006 -0.000000 0.000000 -0.005542
|
| 296 |
+
124.245000 76.038900 145.113500 -90.880639 2.810786 73.253960 -0.000000 0.000000 0.005543 -6.834454 0.347817 16.081643 -0.328748 0.634305 -1.251425 2.786536 0.793245 -0.121458 1.981313 -0.003955 8.681520 3.833677 1.886016 10.340304 1.900524 -4.789378 7.617647 1.046924 -5.014910 4.168256 0.001837 -0.000004 -0.000008 1.081790 3.115552 1.079801 -6.402569 0.000009 -0.000015 -12.419010 0.425038 1.443563 -9.079313 2.734410 -0.003664 -8.421008 -0.053916 -1.338147 2.256744 -8.217484 -5.671845 -22.906405 9.620302 11.948858 36.205200 -1.359515 -2.250752 8.006430 -7.540988 1.483408 0.000007 0.000002 0.000001 -6.095539 -0.820187 1.129439 31.018095 9.030198 3.150644 -22.082627 -10.282713 -18.288335 -7.162386 -3.522654 -0.468568 -5.155047 1.942721 7.430362 -0.000009 0.000000 0.000000 1.137038 -1.705541 -5.046288 -2.196553 -2.361625 -16.082597 -7.448466 4.751676 9.324963 7.044582 1.302157 -0.097139 -8.023179 -6.430377 0.638446 -0.615501 -2.334721 -2.718652 -0.007439 0.002641 -0.000991 -0.000010 -0.000005 -0.000005 -1.331181 6.868037 -4.061939 15.391749 -2.962465 0.588184 -41.081785 0.618546 7.084830 63.561365 -12.441560 5.556706 -0.508029 -3.153485 5.540252 -0.000001 -0.000002 0.000007 -0.000000 0.000000 -0.005540
|
| 297 |
+
126.918500 75.868000 145.888700 -91.338685 0.606282 75.235706 -0.000000 0.000000 0.005546 -3.672270 0.620485 14.755353 -0.080797 0.775189 -1.240742 2.240964 0.750866 0.273483 1.655419 0.002261 7.933921 0.909508 1.381557 10.079623 1.846571 -3.779466 6.265625 1.748467 -4.688412 3.931539 0.001842 -0.000005 -0.000007 3.001264 1.533435 0.936127 -6.381595 0.000010 -0.000017 -12.314729 0.328924 1.395202 -9.246468 2.573237 -0.071302 -8.520353 -0.054767 -1.356612 3.118817 -5.871173 -5.371336 -17.372219 10.112723 9.324431 23.029924 -3.240736 -1.643619 -6.382334 -6.970676 -3.186369 0.000009 0.000002 0.000002 -5.981704 -0.791104 1.103064 32.799914 8.033832 2.842507 -21.656525 -9.852371 -17.565532 -8.085742 -3.456013 -0.505978 -2.521154 2.215122 7.106911 -0.000009 0.000000 0.000000 1.148954 -1.646446 -5.292688 -4.386259 -1.866108 -15.164261 -1.258749 4.746322 7.087038 5.870516 1.160793 -0.323565 -9.470947 -5.540591 0.748829 -2.572638 -2.245905 -2.594169 -0.007606 -0.002795 0.007598 -0.000011 -0.000005 -0.000005 -3.611078 6.881856 -6.223065 17.605760 -3.357841 0.795914 -39.806424 1.985135 6.473006 58.891168 -11.143712 5.835569 -0.475517 -2.924756 5.115189 -0.000002 -0.000001 0.000005 -0.000000 0.000000 -0.005540
|
| 298 |
+
129.280600 75.886300 146.541900 -91.572100 -1.143559 76.981810 -0.000000 0.000000 0.005544 -0.851861 0.862532 13.469605 0.160994 0.626069 -1.130773 1.486457 0.634484 0.701989 1.190963 -0.006015 7.270248 -1.369429 1.112863 9.786535 1.064199 -2.689208 4.757937 3.086395 -4.296761 3.682892 0.001837 -0.000004 -0.000010 4.829146 0.099211 0.795310 -6.381598 0.000011 -0.000015 -12.285889 0.299916 1.379911 -9.461876 2.369452 -0.158807 -8.335013 -0.066852 -1.342093 3.602389 -3.280347 -4.991469 -8.158021 10.751759 5.184278 3.190453 -5.106780 -0.323283 -6.717236 -5.152675 -5.970800 0.000007 0.000001 0.000002 -4.905981 -0.693086 0.957586 30.197045 7.394213 2.845184 -20.550409 -9.120205 -16.904682 -8.256789 -3.616585 -0.519337 7.764690 3.583813 6.143225 -0.000008 0.000000 0.000000 -0.439968 -1.422227 -5.288278 -7.680116 -1.148155 -14.083971 3.447180 4.383039 5.069190 4.598145 1.018516 -0.442304 -9.335295 -4.559918 0.724414 -4.156815 -2.286065 -2.237267 -0.008450 0.001455 0.006116 -0.000012 -0.000005 -0.000004 -4.888885 7.382064 -6.535777 16.529077 -3.251436 0.793746 -32.359100 1.858704 5.665942 48.090600 -9.615638 4.605641 -0.440002 -2.694143 4.739532 0.000001 -0.000002 0.000006 -0.000000 0.000000 -0.005543
|
| 299 |
+
131.356000 76.258700 147.072900 -91.573708 -2.158714 78.442007 -0.000000 0.000000 0.005543 0.547839 0.898570 12.327478 0.415122 0.363752 -0.932355 1.222881 0.492374 1.125500 0.726446 -0.009253 6.690459 -3.177208 0.916862 9.412672 -0.414911 -1.511065 3.160346 4.844260 -3.762354 3.507614 0.001842 -0.000004 -0.000009 6.339757 -1.114645 1.029704 -6.381593 0.000011 -0.000016 -11.929573 -0.023686 1.222610 -9.513686 2.317530 -0.178937 -8.742245 -0.060740 -1.377054 6.193610 -1.749123 -4.177437 -4.734899 10.168249 2.851423 -4.107943 -5.660452 0.083660 -7.365275 -4.723617 -7.006599 0.000007 0.000000 0.000003 -3.759409 -0.607780 0.810082 23.435895 7.029895 3.225956 -25.185800 -6.332574 -16.885717 5.307078 -3.850571 0.102570 22.527036 5.181420 2.798201 -0.000008 0.000000 0.000000 -4.349454 -1.061400 -4.939920 -12.522994 -0.198934 -12.817189 7.335569 4.055683 3.317486 1.982587 0.614111 -0.417196 -7.816609 -3.488466 0.609618 -4.817951 -2.390831 -1.774791 -0.009303 0.005706 0.004636 -0.000012 -0.000005 -0.000005 -7.780958 8.173030 -6.346754 15.450115 -3.160867 0.759372 -21.350662 0.327445 5.218452 31.421206 -7.722399 2.155441 -0.424467 -2.473573 4.353966 -0.000003 -0.000001 0.000004 -0.000000 0.000000 -0.005543
|
| 300 |
+
133.168800 76.930100 147.536800 -91.462571 -2.713535 79.641109 -0.000000 0.000000 0.005543 0.687049 0.752348 11.360737 0.705182 0.096085 -0.670230 1.449875 0.354149 1.446966 0.197796 -0.001195 6.173644 -4.503787 0.774120 8.975554 -2.206956 -0.390196 1.666087 6.435827 -3.150273 3.407545 0.001841 -0.000006 -0.000005 7.181558 -2.103222 1.491184 -6.381593 0.000011 -0.000014 -11.022946 -0.878668 0.818787 -9.079313 2.734415 -0.003665 -9.370212 -0.071739 -1.398293 8.978664 -1.320727 -3.522133 -4.056996 10.158198 1.907137 -4.830531 -5.652092 0.050518 -7.748870 -5.230658 -7.235422 0.000007 0.000003 0.000004 -3.898973 -0.623457 0.830690 18.191551 7.014468 3.468303 -31.991718 -3.626878 -15.170492 20.723275 -3.119580 0.964011 41.044266 2.339202 -2.467606 -0.000009 0.000000 0.000000 -9.186200 -0.614678 -4.327856 -17.831116 0.769517 -11.403441 10.874110 3.825937 1.797278 -1.836081 -0.044236 -0.333936 -5.443665 -2.376220 0.446128 -4.547433 -2.525891 -1.273736 -0.010135 0.009957 0.003156 -0.000012 -0.000006 -0.000006 -8.611189 8.150372 -6.255991 12.613918 -2.653306 0.590851 -11.368947 -0.992112 4.969198 12.638536 -6.159908 0.264516 -0.407521 -2.295667 4.014792 -0.000001 -0.000001 0.000005 -0.000000 0.000000 -0.005542
|
| 301 |
+
134.694700 77.278000 147.933600 -91.300188 -2.910974 80.710560 -0.000000 0.000000 0.005541 0.218677 0.565090 10.461353 0.683110 -0.021056 -0.393196 1.592259 0.263600 1.640545 -0.083647 0.002124 5.635895 -4.725185 0.811925 8.521954 -3.987167 0.442897 0.518058 6.879435 -2.704091 3.344458 0.001832 -0.000003 -0.000011 6.262363 -2.969306 1.846381 -6.192748 0.000011 -0.000019 -9.077449 -2.735183 0.003903 -7.512458 4.269658 0.618630 -9.534642 -0.091008 -1.347481 10.391903 -1.293381 -2.932375 -2.505060 10.161858 1.234363 -5.538847 -5.487740 0.026311 -4.886497 -5.059980 -6.956605 0.000006 0.000003 0.000003 -3.906568 -0.635151 0.837563 13.952628 6.884450 3.515705 -29.841076 -3.344985 -12.885569 18.421401 -2.254655 0.875351 50.969904 -0.605771 -2.982865 -0.000009 0.000000 0.000000 -11.799126 -0.174651 -3.692005 -20.594648 1.329775 -10.037992 12.251773 3.262736 0.570385 -3.085358 -0.253894 -0.282591 -3.766268 -1.452040 0.282964 -3.765385 -2.709597 -0.762547 -0.010982 0.014208 0.001675 -0.000009 -0.000005 -0.000005 -5.966431 7.479693 -7.032921 9.733306 -2.118423 0.461799 -7.287563 -0.835663 4.611145 2.651648 -5.856156 -0.387834 -0.387951 -2.124792 3.745249 -0.000002 0.000000 0.000002 -0.000000 0.000000 -0.005542
|
| 302 |
+
136.000900 77.387900 148.287700 -91.121839 -2.887961 81.711104 -0.000000 0.000000 0.005544 -0.220176 0.443150 9.546362 0.354003 -0.102125 -0.113259 1.300923 0.176915 1.751050 -0.195951 0.002868 5.126128 -4.896722 0.802555 8.039047 -4.794110 0.724167 -0.023803 6.307477 -2.389213 3.139153 0.001839 -0.000004 -0.000009 3.712834 -3.622602 2.053743 -5.710118 0.000010 -0.000014 -6.387710 -5.381987 -1.043071 -4.933902 6.854351 1.559981 -9.462943 -0.119609 -1.269200 11.748108 -1.347909 -2.376395 -1.110699 10.085464 0.657568 -6.252502 -5.260472 0.006750 -1.567879 -4.850581 -6.625055 0.000006 0.000001 0.000003 -3.858585 -0.645146 0.838674 10.512905 6.893256 3.375189 -18.883805 -4.219101 -13.619239 8.310404 -2.283873 0.352256 33.247599 1.118775 0.127405 -0.000009 0.000000 0.000000 -12.291171 0.272626 -3.096296 -21.048024 1.612855 -8.774914 12.025175 2.517214 -0.493810 -2.366517 -0.123481 -0.247670 -2.705312 -0.727470 0.128379 -2.652487 -2.889328 -0.260691 -0.011097 0.008416 -0.009519 -0.000011 -0.000005 -0.000006 -4.214990 6.943220 -7.676513 8.086199 -1.790034 0.390775 -5.112079 -0.673023 4.244636 -2.444853 -5.563528 -0.690099 -0.347598 -1.947085 3.425976 -0.000001 0.000000 0.000006 -0.000000 0.000000 -0.005543
|
| 303 |
+
137.106000 77.332900 148.598600 -90.939195 -2.703380 82.647074 -0.000000 0.000000 0.005543 -0.454161 0.392067 8.596064 -0.027393 -0.165523 0.185804 0.679369 0.107558 1.801846 -0.361438 -0.000101 4.654125 -5.354332 0.699758 7.479521 -4.571059 0.714544 -0.123413 5.091071 -2.100181 2.878630 0.001836 -0.000003 -0.000007 0.270611 -3.751139 2.364880 -5.019197 0.000011 -0.000016 -3.246510 -8.584746 -2.125154 -2.197885 9.669723 2.444361 -9.068165 -0.141628 -1.141550 13.743223 -1.407476 -2.005090 -1.075677 9.843432 0.313266 -6.824791 -4.991038 0.012239 0.333412 -4.717116 -6.425860 0.000007 0.000003 0.000002 -4.351034 -0.675992 0.896906 8.420698 6.855687 3.030627 -8.329553 -5.134264 -14.812681 -1.775154 -3.226652 -0.186557 12.845343 2.230327 3.251097 -0.000009 0.000000 0.000000 -11.062819 0.696242 -2.540230 -19.633377 1.704632 -7.575166 10.799148 1.720513 -1.473649 -0.520079 0.205835 -0.216405 -1.971368 -0.000419 -0.013995 -1.385864 -3.168857 0.226622 -0.000009 0.000000 0.000002 -0.000012 -0.000005 -0.000007 -2.954244 6.494353 -8.323611 7.059656 -1.606351 0.368639 -4.052442 -0.477842 3.911917 -4.918794 -5.357630 -0.846139 -0.324991 -1.788438 3.151589 -0.000003 -0.000001 0.000006 -0.000000 0.000000 -0.005542
|
| 304 |
+
138.064300 77.113200 148.879400 -90.765888 -2.379109 83.543078 -0.000000 0.000000 0.005543 -0.525844 0.399250 7.652784 -0.237263 -0.159685 0.410670 -0.005827 0.088058 1.844921 -0.614110 0.001322 4.227460 -5.642495 0.580683 6.884336 -3.822574 0.721511 0.061540 3.409433 -1.672139 2.730922 0.001836 -0.000003 -0.000006 -3.433918 -3.051967 3.320739 -4.165851 0.000008 -0.000013 0.207122 -12.193774 -3.123344 -0.275721 11.689033 2.997321 -8.114342 -0.146821 -0.980766 14.769575 -1.395855 -1.760138 -1.216033 9.405785 0.119588 -7.222789 -4.717886 -0.005150 0.520029 -4.538775 -6.379766 0.000007 0.000002 0.000002 -5.115084 -0.700620 0.975440 7.582070 6.420015 2.505872 -3.292648 -4.934823 -15.050928 -6.123430 -4.285618 -0.463441 5.939051 2.739798 3.882163 -0.000009 0.000000 0.000000 -9.247642 1.097605 -1.989051 -17.483604 1.756988 -6.408010 8.832257 0.936888 -2.406771 2.174826 0.683126 -0.225697 -1.538575 0.648482 -0.135739 -0.094453 -3.445394 0.685853 -0.000005 0.000001 -0.000000 -0.000011 -0.000005 -0.000004 -2.363826 6.200263 -8.950211 6.914720 -1.581946 0.378127 -3.616006 -0.219803 3.644419 -6.588593 -5.212719 -0.944001 -0.303867 -1.665149 2.933464 -0.000001 -0.000002 0.000006 -0.000000 0.000000 -0.005542
|
| 305 |
+
138.900500 76.771400 149.123500 -90.595288 -1.897757 84.381817 -0.000000 0.000000 0.005542 -0.646571 0.406270 6.675205 -0.279709 -0.102824 0.549426 -0.502979 0.096207 1.907420 -0.810952 0.008388 3.891738 -5.766503 0.496143 6.304043 -2.822097 0.690143 0.521656 1.601596 -1.052040 2.575348 0.001842 -0.000003 -0.000006 -6.611846 -1.903280 4.772115 -3.312509 0.000011 -0.000016 3.307391 -15.494866 -3.847113 0.605693 12.621447 3.228948 -6.764605 -0.161295 -0.773286 14.256513 -1.300271 -1.599512 -0.893989 8.830062 -0.007570 -7.434319 -4.478115 0.011588 -0.665692 -4.224176 -6.401206 0.000007 0.000004 0.000003 -5.478656 -0.669261 1.004058 7.444011 5.310948 1.813022 -0.899906 -3.916898 -14.108089 -6.802141 -4.460771 -0.500285 0.859748 1.950903 4.101866 -0.000008 0.000000 0.000001 -7.101160 1.482490 -1.443064 -14.868690 1.805176 -5.257098 6.458047 0.217874 -3.321203 5.343490 1.212220 -0.246709 -1.483985 1.214940 -0.239784 1.115329 -3.713360 1.104134 -0.000000 0.000001 0.000000 -0.000011 -0.000005 -0.000005 -2.507188 6.056897 -9.506951 7.830324 -1.713959 0.405486 -3.812343 0.112811 3.407580 -7.879110 -5.099917 -1.004026 -0.282270 -1.541944 2.715304 -0.000002 -0.000001 0.000000 -0.000000 0.000000 -0.005543
|
| 306 |
+
139.663500 76.557800 149.331100 -90.451179 -1.320932 85.169266 -0.000000 0.000000 0.005543 -0.672449 0.450374 5.672124 -0.147063 -0.076921 0.587069 -0.979274 0.107373 2.025837 -1.006834 0.002456 3.667931 -5.745417 0.430002 5.807776 -1.722187 0.570687 0.998288 0.053958 -0.741014 2.592302 0.001837 -0.000002 -0.000009 -8.444761 -0.850446 5.889978 -2.529117 0.000009 -0.000017 5.161378 -17.284917 -4.102886 0.884233 12.739044 3.344346 -5.467493 -0.167972 -0.597078 13.189941 -1.127208 -1.465496 -0.356390 8.192855 -0.124833 -7.520110 -4.227133 0.037785 -3.306619 -3.769167 -6.489725 0.000007 0.000002 0.000002 -5.481246 -0.552883 0.953572 7.053144 4.028957 1.163264 0.830318 -2.799574 -12.893391 -7.366467 -4.260682 -0.510957 -2.344654 0.869645 4.034346 -0.000010 0.000001 0.000000 -4.735698 1.801672 -0.940704 -11.931091 1.831788 -4.156097 4.871331 -0.306207 -4.220543 6.852096 1.464406 -0.270508 -0.939652 1.816744 -0.326652 2.178134 -3.892513 1.461417 -0.000007 0.000000 0.000001 -0.000012 -0.000005 -0.000005 -2.301111 5.732100 -10.083062 7.708121 -1.667646 0.398933 -3.658478 0.368973 3.183125 -8.770013 -5.041996 -1.054793 -0.260429 -1.446347 2.547795 -0.000002 -0.000002 0.000005 -0.000000 0.000000 -0.005543
|
| 307 |
+
140.353300 76.515000 149.477600 -90.337346 -0.761532 85.905781 -0.000000 0.000000 0.005543 -0.667187 0.469842 4.664984 0.076764 -0.075829 0.524039 -1.266938 0.126264 2.178914 -1.098023 0.003714 3.549028 -5.574591 0.408137 5.410126 -0.749722 0.256423 1.533721 -0.993765 -0.799158 2.735126 0.001837 -0.000002 -0.000011 -8.927393 0.048666 6.397820 -1.745707 0.010393 0.009355 6.337365 -16.790077 -3.462447 1.299006 11.558064 3.843429 -4.170344 -0.170659 -0.420764 11.451372 -0.896477 -1.393928 0.242289 7.535732 -0.180291 -7.385461 -4.003906 0.041383 -5.895796 -3.341176 -6.500274 0.000007 0.000000 0.000003 -5.367420 -0.385904 0.888036 6.259321 2.815874 0.622913 1.922218 -2.118946 -11.843936 -7.563749 -3.842935 -0.499984 -4.465464 1.853467 4.317372 -0.000009 0.000000 0.000000 -2.373396 2.083277 -0.464315 -9.034276 1.881872 -3.114640 3.545548 -0.664961 -4.817848 7.675390 1.585751 -0.275039 -0.460360 2.464058 -0.376445 3.434437 -4.165253 1.752541 -0.000000 0.000001 0.000002 -0.000012 -0.000005 -0.000005 -1.860848 5.311786 -10.636411 6.975796 -1.524193 0.351425 -3.358833 0.548982 2.968617 -8.776901 -5.034875 -1.069389 -0.252276 -1.349975 2.380293 -0.000002 -0.000001 0.000005 -0.000000 0.000000 -0.005543
|
| 308 |
+
140.988100 76.612700 149.563000 -90.252219 -0.318500 86.592046 -0.000000 0.000000 0.005542 -0.905756 0.471447 3.659843 0.174808 -0.090480 0.389251 -1.112745 0.121438 2.361319 -0.768612 0.003000 3.507041 -5.169816 0.436765 5.075470 -0.217808 -0.193785 2.042572 -1.573052 -1.123419 2.937548 0.001841 -0.000003 -0.000008 -8.933869 0.746044 6.356501 -1.123196 0.036432 0.032701 7.954531 -14.314430 -1.763638 2.849194 8.897578 5.289457 -2.870578 -0.139186 -0.261923 9.062867 -0.658956 -1.413787 0.680433 6.947696 -0.093934 -6.921484 -3.764927 0.063558 -6.664629 -3.104003 -6.367165 0.000007 0.000000 0.000003 -5.275967 -0.201499 0.814142 5.124878 1.741546 0.201532 2.742613 -1.444425 -10.986839 -7.528868 -3.426940 -0.470134 -5.530709 2.433612 4.497819 -0.000009 0.000000 0.000000 -0.272387 2.304795 -0.037706 -6.488836 1.950693 -2.147967 -1.072933 -1.025576 -3.663048 12.061469 2.371196 -0.458759 -1.165598 3.173695 -0.390697 5.335118 -4.761817 1.956442 -0.000003 0.000000 0.000001 -0.000010 -0.000005 -0.000005 -1.455210 4.975028 -11.125430 6.280312 -1.368269 0.319968 -3.089549 0.649820 2.762939 -7.702619 -5.047564 -1.037940 -0.243851 -1.253628 2.212794 -0.000004 -0.000002 0.000005 -0.000000 0.000000 -0.005543
|
| 309 |
+
141.567900 76.893500 149.624100 -90.193329 -0.006468 87.221735 -0.000000 0.000000 0.005543 -1.128714 0.449512 2.707102 0.167873 -0.102024 0.212526 -0.832151 0.108537 2.544265 -0.228898 0.001038 3.507021 -4.482002 0.520713 4.783223 -0.209551 -0.757258 2.482686 -1.696023 -1.586910 3.027990 0.001839 -0.000003 -0.000009 -8.765531 1.095610 5.640934 -0.927367 0.062390 0.056136 9.359967 -10.733818 0.441895 5.646134 5.768362 7.640208 -1.654276 -0.102633 -0.113603 6.514509 -0.445892 -1.478145 0.938458 6.432375 0.062477 -6.276281 -3.509254 0.093799 -5.466845 -3.053330 -6.097188 0.000007 0.000003 0.000003 -5.303537 -0.027640 0.741186 4.187424 0.840361 -0.101999 3.236016 -0.747858 -10.192509 -7.330081 -3.061426 -0.445424 -6.126902 2.056286 4.333665 -0.000008 0.000000 0.000001 1.309349 2.491706 0.325730 -4.617841 2.032115 -1.286974 -6.564340 -1.567019 -1.112342 17.349205 3.284014 -0.752975 -2.618356 2.865862 -0.323581 7.383309 -3.875462 1.823865 -0.000003 0.000001 0.000001 -0.000011 -0.000005 -0.000006 -0.897072 4.631079 -11.548389 5.293629 -1.169027 0.276896 -2.731383 0.648677 2.559539 -5.603362 -5.091229 -0.971351 -0.235129 -1.157304 2.045281 -0.000002 -0.000002 0.000008 -0.000000 0.000000 -0.005543
|
| 310 |
+
142.068400 77.296300 149.642400 -90.143821 0.166412 87.809203 -0.000000 0.000000 0.005542 -1.142170 0.435632 1.780389 0.195873 -0.112167 0.021937 -0.719263 0.089988 2.748529 0.241001 -0.005088 3.535016 -3.541220 0.688750 4.542178 -0.438431 -1.414800 2.781815 -1.567442 -2.174772 2.902506 0.001841 -0.000003 -0.000008 -8.487757 0.895828 4.041890 -1.522000 0.123454 0.113738 9.947290 -6.631860 2.832573 9.613690 3.171913 10.851594 -0.739318 -0.088504 0.016540 4.547317 -0.264092 -1.517073 1.071165 5.936550 0.142586 -5.675155 -3.236215 0.119718 -4.589761 -2.993694 -5.773563 0.000007 0.000002 0.000003 -5.201367 0.101236 0.681315 3.067447 0.163646 -0.268749 3.603463 -0.270243 -9.424141 -6.951914 -2.657061 -0.409288 -6.559467 1.678924 4.010825 -0.000010 0.000000 0.000000 2.057607 2.607224 0.602993 -3.721089 2.142489 -0.555923 -10.580169 -2.155636 1.483218 21.035625 3.862545 -1.013275 -5.446929 1.162308 -0.162220 10.228264 -1.347746 1.309698 -0.000000 0.000002 0.000002 -0.000011 -0.000005 -0.000005 -0.319735 4.347176 -11.919437 4.286261 -0.967009 0.237470 -2.390853 0.568954 2.364862 -2.513192 -5.119368 -0.857237 -0.205578 -1.071902 1.887887 0.000000 -0.000001 0.000003 -0.000000 0.000000 -0.005543
|
| 311 |
+
142.526200 77.668700 149.636300 -90.103289 0.123057 88.333702 -0.000000 0.000000 0.005543 -1.058414 0.444327 0.912186 0.314766 -0.122519 -0.168461 -0.606307 0.071842 2.952833 0.457849 0.001354 3.563003 -2.439385 0.775485 4.258098 -0.767319 -1.841557 2.961223 -1.379532 -2.433928 2.704749 0.001841 -0.000003 -0.000008 -8.250618 0.932534 2.891576 -2.452440 0.183071 0.172869 10.615990 -3.061031 5.060966 13.901117 0.447529 14.582857 -0.171810 -0.067478 0.106057 3.502966 -0.092085 -1.474093 1.084758 5.455920 0.087736 -5.270872 -2.966957 0.134294 -4.173982 -2.913352 -5.420141 0.000006 0.000002 0.000004 -5.005554 0.157879 0.620828 2.070436 -0.243920 -0.311830 3.893865 -0.067262 -8.639952 -6.544911 -2.241238 -0.373798 -6.776800 1.487891 3.588837 -0.000009 0.000000 0.000000 2.021454 2.701418 0.784631 -3.812700 2.238504 0.034370 -13.109176 -2.604631 2.935987 23.277333 4.212370 -1.187646 -9.585896 -0.812649 -0.076389 13.944468 0.901138 0.707792 -0.000007 0.000001 -0.000000 -0.000008 -0.000004 -0.000004 0.146557 4.218001 -12.222568 3.747738 -0.860267 0.207074 -2.238340 0.467877 2.186703 0.739623 -5.114260 -0.742673 -0.189735 -0.985579 1.730589 -0.000001 -0.000001 0.000010 -0.000000 0.000000 -0.005543
|
| 312 |
+
142.929100 77.937200 149.642400 -90.080913 -0.101398 88.802325 -0.000000 0.000000 0.005543 -0.974437 0.440341 0.127128 0.559395 -0.164901 -0.326285 -0.374412 0.057642 3.108144 0.360549 -0.011707 3.555999 -1.270719 0.811090 3.939122 -1.190520 -1.786370 2.804698 -1.164464 -2.227751 2.380079 0.001842 -0.000003 -0.000010 -8.065392 1.040355 2.350407 -2.935240 0.229085 0.246733 10.856848 -1.008705 6.390155 16.417111 -1.564469 16.935201 0.153163 -0.080605 0.156858 3.073705 0.049501 -1.369979 1.069966 4.992187 -0.042536 -5.056935 -2.694055 0.139956 -3.842231 -2.809721 -5.048186 0.000007 0.000002 0.000003 -4.758577 0.112329 0.613734 1.454743 -0.409180 -0.303895 4.047243 -0.052304 -7.787276 -6.260673 -1.855578 -0.348298 -6.759389 1.542936 3.035106 -0.000009 0.000000 0.000000 1.481509 2.748597 0.899586 -4.591121 2.315262 0.499451 -14.030775 -2.711158 4.141509 22.914941 4.142522 -1.179586 -12.459229 -2.208202 -0.042952 17.109619 1.615866 0.230993 -0.000007 0.000001 0.000001 -0.000012 -0.000005 -0.000005 0.990721 3.997744 -12.495047 3.028373 -0.735157 0.180300 -2.044901 0.410666 2.015714 2.448599 -5.108701 -0.711898 -0.173663 -0.899298 1.573273 -0.000001 -0.000002 0.000004 -0.000000 0.000000 -0.005542
|
| 313 |
+
143.277000 78.102000 149.685100 -90.059964 -0.472573 89.026263 -0.000000 0.000000 0.005543 -0.806544 0.450532 -0.359922 0.838873 -0.211388 -0.448987 -0.102016 0.072285 3.226947 0.100518 0.000277 3.507011 0.061803 0.803309 3.600169 -1.618175 -0.939403 1.993355 -0.882823 -1.276399 1.646736 0.001839 -0.000004 -0.000008 -7.551881 1.005831 2.145981 -2.963456 0.276728 0.318987 10.449248 -0.368689 6.771298 15.827664 -3.647852 16.600100 0.228003 -0.090289 0.178645 3.168602 0.157323 -1.202960 1.039934 4.527195 -0.199581 -5.024116 -2.438703 0.158919 -3.539874 -2.690147 -4.698422 0.000007 0.000002 0.000004 -4.409093 -0.048591 0.614495 0.970622 -0.444356 -0.272347 4.107312 -0.052766 -6.911992 -6.045956 -1.533388 -0.330145 -6.275754 1.632669 2.411444 -0.000009 0.000000 0.000000 0.514259 2.787891 1.157938 -5.936999 2.366957 0.882792 -13.305313 -2.410657 5.889293 19.649804 3.604922 -0.968903 -12.415454 -3.097706 0.118890 18.318383 1.432841 -0.208287 -0.000000 0.000000 0.000000 -0.000010 -0.000005 -0.000007 1.908770 3.823176 -12.538371 2.439593 -0.646720 0.178519 -1.851629 0.352873 1.844919 3.118512 -5.068960 -0.731988 -0.157207 -0.821696 1.446007 -0.000001 -0.000001 0.000004 -0.000000 0.000000 -0.005543
|
| 314 |
+
143.570000 78.211900 149.709500 -90.026003 -0.927888 88.956723 -0.000000 0.000000 0.005543 -0.498810 0.444671 -0.489915 1.013546 -0.234826 -0.513597 0.044832 0.077124 3.289997 -0.102798 0.002018 3.402097 1.334034 0.739253 3.225940 -1.944759 -0.014066 1.187818 -0.480107 -0.206287 0.933375 0.001836 -0.000003 -0.000008 -6.486066 1.173874 2.231229 -3.005665 0.317773 0.356966 9.855349 0.356337 7.202349 14.809734 -6.362057 15.891104 0.060945 -0.103750 0.160043 3.758328 0.323356 -0.982254 0.925145 4.084558 -0.379745 -5.099053 -2.235401 0.172411 -3.315821 -2.569807 -4.371754 0.000007 0.000004 0.000003 -3.987326 -0.237970 0.625687 0.567962 -0.370578 -0.231669 4.069469 -0.048369 -6.099639 -5.838627 -1.287662 -0.316580 -5.196737 1.704195 1.800097 -0.000009 0.000000 0.000000 -0.845143 2.804333 1.637545 -7.745195 2.400726 1.214374 -11.990271 -1.885690 7.919482 15.116161 2.829520 -0.672492 -10.493067 -3.143309 0.249435 18.104057 0.971027 -0.450018 0.000002 0.000001 0.000001 -0.000013 -0.000004 -0.000004 2.844593 3.744194 -12.293605 1.828634 -0.575153 0.198518 -1.525144 0.269885 1.666952 3.226341 -5.050199 -0.774016 -0.140564 -0.744127 1.318715 -0.000002 -0.000001 0.000006 -0.000000 0.000000 -0.005543
|
| 315 |
+
143.808000 78.285200 149.727800 -89.992884 -1.362316 88.705580 -0.000000 0.000000 0.005543 -0.065161 0.439009 -0.373555 0.985326 -0.261118 -0.530263 0.003291 0.068508 3.304403 -0.166454 0.012336 3.241230 2.432215 0.636780 2.827419 -2.188850 0.316332 0.972084 -0.060517 0.272485 0.770267 0.001839 -0.000004 -0.000008 -4.997669 1.602977 2.671436 -3.096803 0.349020 0.405582 8.639009 1.497450 7.886036 14.005842 -8.543730 15.293062 -0.252028 -0.115182 0.124379 4.668130 0.532940 -0.738968 0.752764 3.642362 -0.591808 -5.232887 -2.079677 0.182593 -3.148449 -2.449332 -4.046510 0.000007 0.000002 0.000003 -3.419676 -0.423418 0.622351 0.181304 -0.251616 -0.158756 3.765519 -0.039410 -5.496935 -5.667127 -1.122730 -0.308381 -2.061833 1.711003 1.281153 -0.000008 0.000000 0.000000 -2.643374 2.728568 2.178066 -9.958692 2.380523 1.430444 -10.792015 -1.484234 9.359979 11.869854 2.246592 -0.480551 -8.863965 -2.850406 0.281982 16.845436 1.240088 -0.609014 -0.000003 0.000001 0.000001 -0.000011 -0.000006 -0.000005 3.583521 3.750217 -11.855044 1.537704 -0.535734 0.213289 -1.394831 0.202615 1.501877 2.961574 -5.061272 -0.848884 -0.123771 -0.666594 1.191406 -0.000002 -0.000001 0.000005 -0.000000 0.000000 -0.005543
|
| 316 |
+
143.991200 78.321800 149.740000 -89.994440 -1.698124 88.376798 -0.000000 0.000000 0.005543 0.368428 0.420282 -0.153167 0.852169 -0.289063 -0.519590 -0.143687 0.065886 3.283238 -0.151715 -0.000861 3.080354 3.327795 0.500577 2.445581 -2.284842 0.210518 1.130295 0.344689 0.308088 0.958004 0.001837 -0.000004 -0.000009 -3.298198 2.103803 3.141719 -3.222945 0.379927 0.454470 6.890056 2.956879 8.808113 13.473772 -10.127915 14.883030 -0.636419 -0.149757 0.094175 5.695203 0.772497 -0.483591 0.566363 3.236295 -0.806525 -5.394760 -1.925950 0.178398 -2.960259 -2.362277 -3.735455 0.000006 0.000002 0.000003 -2.733143 -0.539082 0.569417 -0.165624 -0.186902 -0.095831 3.132782 -0.023328 -5.047955 -5.498951 -0.992559 -0.302204 3.244328 1.655257 0.827234 -0.000008 0.000000 0.000000 -4.881488 2.450989 2.565891 -12.518445 2.204881 1.407984 -9.873720 -1.095980 10.002241 10.523221 2.006246 -0.401757 -7.829939 -2.777107 0.286144 14.394388 0.522932 -0.600701 -0.000003 0.000001 0.000001 -0.000010 -0.000004 -0.000006 4.208360 3.767272 -11.340293 1.246753 -0.496393 0.228265 -1.242135 0.108786 1.351858 2.409474 -5.032642 -0.914018 -0.107907 -0.599357 1.054613 -0.000002 -0.000001 0.000006 -0.000000 0.000000 -0.005543
|
| 317 |
+
144.137600 78.340100 149.746100 -89.994160 -1.915068 88.076040 -0.000000 0.000000 0.005543 0.718164 0.417152 0.069827 0.663057 -0.316530 -0.509277 -0.311616 0.062121 3.262088 -0.109075 -0.012645 2.891507 3.962666 0.377578 2.072334 -2.054860 -0.068209 1.382961 0.606793 0.134811 1.198893 0.001842 -0.000004 -0.000008 -1.590499 2.425759 3.326663 -3.348930 0.390103 0.484520 4.841691 4.536899 9.888546 13.184814 -11.207764 14.651094 -1.034725 -0.183929 0.062104 6.686296 1.015573 -0.232327 0.378369 2.829634 -1.043421 -5.554035 -1.800044 0.173467 -2.701959 -2.292986 -3.423839 0.000007 0.000002 0.000003 -1.976699 -0.552236 0.475822 -0.649870 -0.241948 -0.023915 2.688599 -0.020786 -4.577835 -5.284411 -0.817631 -0.293287 6.210431 1.565127 0.507884 -0.000009 0.000000 0.000000 -7.515214 1.965576 2.662356 -15.369611 1.910802 1.122907 -9.549872 -0.823478 10.390597 10.252352 1.943934 -0.374640 -6.821368 -2.818180 0.268976 11.502790 -0.897194 -0.576574 -0.000000 0.000001 0.000003 -0.000012 -0.000006 -0.000005 4.697253 3.759199 -10.877576 0.908416 -0.433360 0.223854 -1.069380 0.042747 1.198094 1.695601 -5.021705 -0.979145 -0.105817 -0.530959 0.918054 -0.000002 0.000000 0.000004 -0.000000 0.000000 -0.005543
|
| 318 |
+
144.235300 78.327900 149.727800 -89.975375 -1.978712 87.922784 -0.000000 0.000000 0.005542 0.921014 0.415833 0.131669 0.452950 -0.347179 -0.464362 -0.450758 0.044929 3.220700 -0.046541 -0.002587 2.702662 4.288344 0.265171 1.736013 -1.379184 -0.475397 1.692830 0.663807 -0.209916 1.472574 0.001839 -0.000004 -0.000008 -0.137641 2.545693 3.264246 -3.391034 0.404792 0.489089 2.728223 6.069205 11.033807 13.168164 -11.745209 14.633486 -1.431585 -0.199610 0.019575 7.550549 1.258750 0.015996 0.246233 2.449583 -1.272004 -5.711848 -1.688652 0.182281 -2.408318 -2.241977 -3.112180 0.000007 0.000002 0.000002 -0.927092 -0.528223 0.308481 -1.659862 -0.346676 0.122732 2.531997 -0.010002 -4.165173 -4.914746 -0.636292 -0.280944 6.764415 1.506771 0.360523 -0.000009 0.000000 0.000000 -10.779765 1.340124 2.460096 -18.703179 1.514734 0.681766 -9.342634 -0.806324 10.564757 9.967554 1.880575 -0.347363 -6.024204 -2.783380 0.241069 9.233185 -0.750150 -0.637006 -0.000002 0.000000 -0.000001 -0.000012 -0.000006 -0.000005 5.066108 3.687281 -10.571133 0.500495 -0.363375 0.221299 -0.868090 0.034896 1.065325 0.904143 -5.029684 -1.030067 -0.102068 -0.456227 0.815870 -0.000003 0.000000 0.000004 -0.000000 0.000000 -0.005543
|
| 319 |
+
144.284200 78.303500 149.709500 -89.952340 -1.923563 87.874616 -0.000000 0.000000 0.005543 0.983972 0.413809 0.095612 0.243079 -0.350142 -0.416891 -0.534042 0.030962 3.179238 0.036985 0.008240 2.541784 4.375193 0.160870 1.423785 -0.509808 -0.946207 2.077793 0.592156 -0.640126 1.808441 0.001837 -0.000004 -0.000009 0.946519 2.615067 3.188049 -3.419133 0.419596 0.493568 0.854598 7.357210 12.060012 13.381647 -11.827812 14.802173 -1.757702 -0.223025 -0.026946 8.217599 1.521765 0.228714 0.140672 2.069367 -1.488555 -5.798066 -1.591694 0.191965 -2.115543 -2.189332 -2.821785 0.000006 0.000002 0.000003 0.240685 -0.505063 0.128218 -2.935819 -0.481631 0.319929 2.375088 -0.006875 -3.857199 -4.439370 -0.450816 -0.267349 6.517394 1.468447 0.296256 -0.000009 0.000000 0.000000 -14.354892 0.684431 2.080066 -22.249343 1.084091 0.181393 -9.390029 -0.852682 10.607497 9.801500 1.824973 -0.324133 -5.331965 -2.715290 0.197071 7.581558 -0.419566 -0.660682 0.000002 0.000001 0.000001 -0.000011 -0.000006 -0.000005 5.307347 3.568683 -10.393354 0.057802 -0.289917 0.220021 -0.646615 0.068598 0.927314 0.112671 -5.036961 -1.081098 -0.078474 -0.393637 0.703796 -0.000002 0.000000 0.000005 -0.000000 0.000000 -0.005542
|
| 320 |
+
144.351300 78.266800 149.691200 -89.947899 -1.804739 87.846790 -0.000000 0.000000 0.005543 0.955997 0.411622 0.060213 0.103157 -0.353760 -0.369003 -0.568450 0.019752 3.137734 0.093491 -0.003333 2.380907 4.293193 0.071925 1.115088 0.320155 -1.396705 2.446165 0.495062 -1.071714 2.143390 0.001844 -0.000004 -0.000007 1.640440 2.640543 3.114864 -3.447025 0.409470 0.494213 -0.554261 8.298810 12.874841 13.753387 -11.577294 15.105320 -2.021308 -0.247237 -0.066168 8.708952 1.780047 0.441722 0.064548 1.736653 -1.709857 -5.882363 -1.515622 0.200919 -1.821730 -2.163148 -2.531720 0.000006 0.000003 0.000003 1.295376 -0.463134 -0.054624 -3.910089 -0.626450 0.558600 1.289366 0.054896 -3.655797 -2.684499 -0.323836 -0.177686 5.619098 1.446684 0.216423 -0.000009 0.000000 0.000000 -17.429041 0.087876 1.687313 -25.212477 0.675530 -0.280064 -9.625472 -0.903865 10.637988 9.841307 1.837661 -0.303428 -4.853138 -2.658518 0.184679 6.605953 -0.320315 -0.659807 0.000002 0.000001 0.000000 -0.000012 -0.000005 -0.000006 5.519563 3.427771 -10.238134 -0.438902 -0.187208 0.194983 -0.425057 0.101770 0.789179 -0.707594 -5.078041 -1.121011 -0.069565 -0.343963 0.607453 -0.000001 -0.000001 0.000003 -0.000000 0.000000 -0.005543
|
| 321 |
+
144.412300 78.236300 149.654600 -89.941843 -1.643978 87.839973 -0.000000 0.000000 0.005543 0.858069 0.413248 -0.002398 0.019184 -0.359809 -0.299887 -0.560959 0.010850 3.096214 0.107470 -0.002773 2.206044 4.112762 -0.013055 0.837160 0.860550 -1.730389 2.721203 0.452097 -1.402370 2.377851 0.001837 -0.000003 -0.000008 1.921877 2.643018 3.060523 -3.495909 0.399167 0.495001 -1.309369 8.806724 13.333009 14.189388 -11.131538 15.467590 -2.217340 -0.262125 -0.079074 9.054092 2.016724 0.593707 0.022963 1.415937 -1.933441 -5.923089 -1.455944 0.195886 -1.528059 -2.135482 -2.241794 0.000005 0.000003 0.000003 1.948285 -0.397550 -0.181338 -4.136630 -0.827496 0.772673 -0.543959 0.159502 -3.530083 -0.335449 -0.221054 -0.061852 4.505421 1.446088 0.114949 -0.000009 0.000000 0.000000 -19.208128 -0.372383 1.403917 -26.848620 0.335089 -0.614094 -9.871240 -0.917033 10.636748 9.923685 1.843125 -0.293771 -4.627642 -2.629577 0.173145 6.230484 -0.346915 -0.654818 -0.000002 0.000001 -0.000002 -0.000009 -0.000006 -0.000006 5.760127 3.261705 -10.118643 -1.024716 -0.065045 0.182693 -0.188216 0.150343 0.669491 -1.450707 -5.120125 -1.154656 -0.060575 -0.294307 0.511104 -0.000001 -0.000001 0.000004 -0.000000 0.000000 -0.005543
|
| 322 |
+
144.467300 78.211900 149.624000 -89.935271 -1.469239 87.854144 -0.000000 0.000000 0.005543 0.683202 0.415025 -0.064450 -0.008824 -0.366219 -0.230426 -0.497601 0.004944 3.054689 0.079510 -0.003807 2.031178 3.910748 -0.080947 0.581561 1.036328 -1.887938 2.814612 0.493120 -1.544045 2.475409 0.001839 -0.000003 -0.000009 1.937622 2.631166 3.039411 -3.523892 0.399364 0.505076 -1.465380 8.942586 13.462899 14.522739 -10.796641 15.740401 -2.330004 -0.278428 -0.082073 9.251831 2.247411 0.748310 -0.017325 1.131975 -2.131574 -5.942910 -1.394318 0.191253 -1.262481 -2.107930 -1.952286 0.000007 0.000003 0.000003 2.067828 -0.288393 -0.231735 -3.965178 -1.024134 0.845038 -1.623080 0.212954 -3.360531 0.898583 -0.096842 -0.001113 3.894156 1.421463 0.049504 -0.000009 0.000000 0.000000 -19.439190 -0.676962 1.225816 -26.918517 0.066513 -0.816777 -10.049975 -0.910340 10.638577 9.964175 1.845784 -0.282802 -4.452192 -2.696768 0.185533 6.002974 -0.284160 -0.718841 -0.000003 0.000002 0.000000 -0.000012 -0.000006 -0.000004 6.000999 3.096145 -9.998471 -1.590622 0.040921 0.186455 -0.014089 0.198147 0.554141 -2.018360 -5.165352 -1.187129 -0.051500 -0.244664 0.414744 -0.000003 -0.000001 0.000005 -0.000000 0.000000 -0.005543
|
| 323 |
+
144.534400 78.181400 149.599600 -89.928744 -1.294497 87.868301 -0.000000 0.000000 0.005543 0.487353 0.417026 -0.126345 -0.008777 -0.351866 -0.158824 -0.407088 0.015202 3.026351 0.051548 -0.004767 1.898281 3.708467 -0.149969 0.370466 1.000293 -1.867725 2.734556 0.512170 -1.498176 2.427161 0.001842 -0.000004 -0.000009 1.911398 2.617093 3.006235 -3.551950 0.409000 0.504836 -1.276328 8.865999 13.403187 14.666419 -10.724804 15.854826 -2.350348 -0.271988 -0.087990 9.282915 2.443593 0.872080 -0.014750 0.873026 -2.332436 -5.911382 -1.355995 0.186267 -1.017075 -2.101259 -1.677131 0.000007 0.000003 0.000003 1.909490 -0.182551 -0.251605 -3.619327 -1.217540 0.847968 -2.234362 0.231338 -3.176761 1.493110 0.022972 0.034861 3.581547 1.369298 0.012562 -0.000009 0.000000 0.000000 -18.860913 -0.915741 1.044057 -26.177415 -0.171528 -1.027840 -10.179150 -0.870217 10.606223 9.900603 1.831347 -0.278283 -4.493633 -2.654499 0.162935 6.060884 -0.336752 -0.662391 -0.000000 0.000002 -0.000001 -0.000011 -0.000005 -0.000005 6.158815 2.950246 -9.919634 -2.052198 0.136395 0.188141 0.081299 0.263793 0.414579 -2.347328 -5.215315 -1.198479 -0.042344 -0.195040 0.318384 -0.000001 -0.000001 0.000008 -0.000000 0.000000 -0.005543
|
| 324 |
+
144.571000 78.163100 149.556900 -89.924097 -1.168680 87.903360 -0.000000 0.000000 0.005543 0.291514 0.422142 -0.209014 -0.008770 -0.349480 -0.109423 -0.295616 0.026517 2.997989 0.023584 -0.005661 1.765381 3.505881 -0.201777 0.181746 0.877115 -1.779888 2.599699 0.500521 -1.386536 2.331613 0.001834 -0.000003 -0.000008 1.843218 2.600848 2.974966 -3.559038 0.418820 0.504444 -0.900296 8.672967 13.234740 14.735395 -10.711440 15.915761 -2.308158 -0.266642 -0.086443 9.195872 2.620723 0.956946 -0.031933 0.643479 -2.534803 -5.837814 -1.314673 0.202872 -0.772093 -2.093385 -1.416005 0.000006 0.000002 0.000003 1.602281 -0.082908 -0.219523 -3.174855 -1.360211 0.813072 -2.398148 0.238029 -2.994633 1.371231 0.138098 0.027038 3.687703 1.298813 0.012084 -0.000008 0.000000 0.000000 -18.024967 -1.128302 0.854475 -25.226983 -0.397276 -1.229719 -10.302435 -0.850085 10.575803 9.885918 1.820202 -0.275300 -4.438671 -2.630379 0.174270 6.007148 -0.367039 -0.662540 0.000003 0.000001 0.000001 -0.000012 -0.000005 -0.000004 6.261807 2.841784 -9.837670 -2.363286 0.196123 0.166848 0.100091 0.329220 0.280615 -2.430541 -5.270364 -1.201663 -0.031201 -0.130075 0.236189 -0.000002 0.000000 0.000004 -0.000000 0.000000 -0.005542
|
| 325 |
+
144.577100 78.157000 149.526400 -89.921560 -1.098781 87.938382 -0.000000 0.000000 0.005543 0.165616 0.424345 -0.271399 -0.008767 -0.347093 -0.060022 -0.183048 0.016855 2.970781 0.016593 -0.005870 1.660463 3.289102 -0.236473 0.015406 0.712723 -1.705820 2.480845 0.489398 -1.283498 2.255224 0.001834 -0.000004 -0.000009 1.775030 2.584628 2.957663 -3.566020 0.418317 0.494613 -0.477841 8.442347 13.026314 14.818538 -10.659909 15.983467 -2.288319 -0.279153 -0.077095 9.109973 2.774688 1.026204 -0.046515 0.457076 -2.718985 -5.735266 -1.284064 0.205284 -0.525653 -2.105327 -1.154938 0.000007 0.000003 0.000003 1.212955 -0.037447 -0.171688 -2.784829 -1.412432 0.746299 -2.080228 0.191036 -2.846527 0.672882 0.242943 -0.013833 4.038303 1.219388 0.034119 -0.000010 0.000000 0.000000 -17.323158 -1.297924 0.701441 -24.451118 -0.579480 -1.397730 -10.378764 -0.816045 10.547521 9.857262 1.808114 -0.271888 -4.383716 -2.606252 0.185585 5.974394 -0.397568 -0.662578 -0.000002 0.000001 0.000000 -0.000012 -0.000005 -0.000002 6.367247 2.744796 -9.784708 -2.613398 0.226022 0.169592 0.093040 0.397152 0.176524 -2.408422 -5.327613 -1.195198 -0.021237 -0.075363 0.144535 -0.000001 -0.000001 0.000005 -0.000000 0.000000 -0.005542
|
| 326 |
+
144.552700 78.163100 149.489800 -89.920312 -1.063830 87.973383 -0.000000 0.000000 0.005543 0.060706 0.426574 -0.333936 0.005225 -0.344715 -0.010537 -0.092159 0.020006 2.942817 0.009601 -0.006068 1.569533 3.072239 -0.278233 -0.102206 0.550357 -1.676163 2.424818 0.460147 -1.251729 2.215696 0.001839 -0.000003 -0.000009 1.706835 2.568432 2.940341 -3.572889 0.403655 0.500265 -0.118672 8.221012 12.836228 14.936060 -10.509096 16.082123 -2.268468 -0.291655 -0.067742 9.004659 2.898634 1.076666 -0.079079 0.315491 -2.884814 -5.618783 -1.252152 0.207839 -0.301457 -2.117653 -0.943010 0.000007 0.000002 0.000003 0.769895 -0.017442 -0.103555 -2.645907 -1.400455 0.614650 -1.517087 0.161806 -2.700265 0.357399 0.312452 -0.024520 4.066669 1.149075 0.054359 -0.000010 0.000000 0.000000 -16.678402 -1.403302 0.589903 -23.779088 -0.703356 -1.492997 -10.429088 -0.796115 10.522010 9.807677 1.794611 -0.267840 -4.291886 -2.584272 0.173162 5.955634 -0.428259 -0.662534 -0.000002 0.000002 0.000000 -0.000012 -0.000006 -0.000004 6.452548 2.653554 -9.730026 -2.826805 0.267736 0.185548 0.086103 0.465101 0.072443 -2.343558 -5.357753 -1.184736 -0.012891 -0.044242 0.078632 -0.000002 -0.000001 0.000005 -0.000000 0.000000 -0.005542
|
| 327 |
+
144.552700 78.181400 149.459200 -89.919822 -1.049850 88.008370 -0.000000 0.000000 0.005542 -0.009249 0.425814 -0.375945 0.019214 -0.342326 0.038949 -0.022226 0.022040 2.914856 0.002609 -0.006255 1.506581 2.911300 -0.303228 -0.197072 0.389386 -1.678894 2.414412 0.453271 -1.254874 2.221922 0.001839 -0.000003 -0.000008 1.694582 2.555115 2.941487 -3.579831 0.398432 0.495594 0.139615 8.087313 12.717430 15.061793 -10.324297 16.185253 -2.275414 -0.291538 -0.068571 8.949905 2.994220 1.120952 -0.109585 0.203151 -3.031567 -5.502306 -1.220234 0.210330 -0.125520 -2.146926 -0.752514 0.000006 0.000003 0.000003 0.352682 -0.007866 -0.056622 -2.723965 -1.378914 0.448862 -0.932668 0.149121 -2.533800 0.647574 0.326001 0.001369 3.682140 1.082412 0.029245 -0.000010 0.000000 0.000000 -16.034385 -1.451362 0.533666 -23.126783 -0.774437 -1.537218 -10.445868 -0.766308 10.497976 9.737138 1.779685 -0.263166 -4.201077 -2.547134 0.173305 5.936875 -0.458951 -0.662498 -0.000000 0.000002 0.000002 -0.000013 -0.000006 -0.000002 6.581350 2.591193 -9.709658 -3.053465 0.320238 0.191825 0.102648 0.515141 0.003334 -2.279124 -5.408860 -1.174269 -0.005526 -0.027289 0.028195 -0.000001 -0.000001 0.000008 -0.000000 0.000000 -0.005542
|
| 328 |
+
144.564900 78.224100 149.434800 -89.919337 -1.035869 88.022361 -0.000000 0.000000 0.005543 -0.016252 0.424670 -0.418423 0.005230 -0.349954 0.045175 -0.001271 0.023107 2.914846 -0.004383 -0.006437 1.464613 2.799347 -0.311681 -0.269133 0.299496 -1.706287 2.420708 0.447216 -1.279384 2.241540 0.001839 -0.000003 -0.000009 1.745254 2.545021 2.925840 -3.586914 0.408695 0.505081 0.235815 8.024492 12.670478 15.136828 -10.206523 16.248153 -2.282370 -0.291418 -0.069402 8.925579 3.050996 1.136325 -0.136559 0.134824 -3.146144 -5.401707 -1.168737 0.213426 -0.013610 -2.180664 -0.611561 0.000007 0.000002 0.000003 0.032733 0.002890 -0.020774 -2.879005 -1.362835 0.293564 -0.425185 0.136102 -2.408908 1.044722 0.358191 0.028548 3.234917 1.021797 0.003134 -0.000011 0.000000 0.000000 -15.544669 -1.459964 0.514100 -22.627686 -0.817241 -1.540482 -10.382987 -0.734910 10.478965 9.583786 1.744522 -0.240939 -4.110276 -2.509992 0.173388 5.918114 -0.489642 -0.662474 -0.000005 0.000001 0.000001 -0.000012 -0.000005 -0.000007 6.749552 2.516015 -9.712981 -3.357949 0.370156 0.191454 0.183981 0.567231 -0.042949 -2.256827 -5.459104 -1.167738 0.003467 -0.004027 0.012112 -0.000002 -0.000001 0.000004 -0.000000 0.000000 -0.005543
|
| 329 |
+
144.589400 78.254600 149.416500 -89.919337 -1.035869 88.036349 -0.000000 0.000000 0.005543 0.018676 0.418439 -0.426565 -0.008753 -0.357583 0.051398 -0.029212 0.021684 2.914858 -0.011375 -0.006615 1.450622 2.771272 -0.329574 -0.282106 0.265531 -1.731322 2.428639 0.468919 -1.297052 2.249027 0.001839 -0.000003 -0.000008 1.795924 2.534914 2.910205 -3.579924 0.408757 0.505033 0.239642 8.027742 12.669862 15.161118 -10.165222 16.263331 -2.268468 -0.291654 -0.067739 8.903157 3.072876 1.153119 -0.159578 0.112692 -3.193619 -5.315043 -1.118536 0.216266 -0.008359 -2.222702 -0.548676 0.000007 0.000002 0.000003 -0.106570 0.016331 -0.005620 -2.963273 -1.351708 0.230427 -0.183298 0.142884 -2.354519 1.281615 0.404808 0.055255 2.976206 0.957443 0.006488 -0.000010 0.000000 0.000000 -15.334975 -1.456472 0.511239 -22.414248 -0.814153 -1.537345 -10.320095 -0.703532 10.459925 9.458384 1.711208 -0.219620 -3.998514 -2.472656 0.175766 5.864376 -0.519929 -0.662767 -0.000000 0.000001 0.000001 -0.000014 -0.000007 -0.000004 6.870556 2.453979 -9.712657 -3.585901 0.412418 0.188676 0.288203 0.607673 -0.061935 -2.269644 -5.508633 -1.150553 0.011769 0.009804 0.006336 -0.000003 -0.000001 0.000001 -0.000000 0.000000 -0.005543
|
data/gradio_target_bvh/animo/fennec_fox_male_drinktostand.bvh
ADDED
|
@@ -0,0 +1,308 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
HIERARCHY
|
| 2 |
+
ROOT def_c_root_joint
|
| 3 |
+
{
|
| 4 |
+
OFFSET 0.000000 0.000000 0.000000
|
| 5 |
+
CHANNELS 6 Xposition Yposition Zposition Xrotation Yrotation Zrotation
|
| 6 |
+
JOINT def_c_hips_joint
|
| 7 |
+
{
|
| 8 |
+
OFFSET 0.000000 0.240000 0.000000
|
| 9 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 10 |
+
JOINT def_c_spine1_joint
|
| 11 |
+
{
|
| 12 |
+
OFFSET 0.000000 -0.240000 0.000000
|
| 13 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 14 |
+
JOINT def_c_spine2_joint
|
| 15 |
+
{
|
| 16 |
+
OFFSET 0.000000 -4.208500 -0.528300
|
| 17 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 18 |
+
JOINT def_c_spine3_joint
|
| 19 |
+
{
|
| 20 |
+
OFFSET 0.000000 -3.974000 -0.455200
|
| 21 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 22 |
+
JOINT def_c_chest_joint
|
| 23 |
+
{
|
| 24 |
+
OFFSET 0.000000 -3.996600 -0.165500
|
| 25 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 26 |
+
JOINT def_c_neck1_joint
|
| 27 |
+
{
|
| 28 |
+
OFFSET 0.000000 -4.152900 0.213600
|
| 29 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 30 |
+
JOINT def_c_neck2_joint
|
| 31 |
+
{
|
| 32 |
+
OFFSET 0.000000 -3.335800 1.261100
|
| 33 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 34 |
+
JOINT def_c_head_joint
|
| 35 |
+
{
|
| 36 |
+
OFFSET 0.000000 -3.075700 1.840500
|
| 37 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 38 |
+
JOINT def_c_jaw_joint
|
| 39 |
+
{
|
| 40 |
+
OFFSET 0.000000 -0.227500 -0.877900
|
| 41 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 42 |
+
End Site
|
| 43 |
+
{
|
| 44 |
+
OFFSET 0.000000 -4.642250 -3.061500
|
| 45 |
+
}
|
| 46 |
+
}
|
| 47 |
+
JOINT def_eye_joint.L
|
| 48 |
+
{
|
| 49 |
+
OFFSET 1.776500 -4.377100 -0.441200
|
| 50 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 51 |
+
End Site
|
| 52 |
+
{
|
| 53 |
+
OFFSET 0.042500 -1.954800 -0.046400
|
| 54 |
+
}
|
| 55 |
+
}
|
| 56 |
+
JOINT def_eye_joint.R
|
| 57 |
+
{
|
| 58 |
+
OFFSET -1.776500 -4.377100 -0.441200
|
| 59 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 60 |
+
End Site
|
| 61 |
+
{
|
| 62 |
+
OFFSET -0.042500 -1.954800 -0.046400
|
| 63 |
+
}
|
| 64 |
+
}
|
| 65 |
+
}
|
| 66 |
+
}
|
| 67 |
+
}
|
| 68 |
+
JOINT def_clavicle_joint.L
|
| 69 |
+
{
|
| 70 |
+
OFFSET 1.928800 -2.305700 3.049400
|
| 71 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 72 |
+
JOINT def_frontLegUpr_joint.L
|
| 73 |
+
{
|
| 74 |
+
OFFSET 1.115100 -1.646200 -5.514800
|
| 75 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 76 |
+
JOINT def_frontLegLwr_joint.L
|
| 77 |
+
{
|
| 78 |
+
OFFSET -0.174700 2.191500 -5.152200
|
| 79 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 80 |
+
JOINT def_frontHorselink_joint.L
|
| 81 |
+
{
|
| 82 |
+
OFFSET -0.356300 0.440600 -8.066700
|
| 83 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 84 |
+
JOINT def_frontFoot_joint.L
|
| 85 |
+
{
|
| 86 |
+
OFFSET 0.133600 -0.741500 -1.963400
|
| 87 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 88 |
+
End Site
|
| 89 |
+
{
|
| 90 |
+
OFFSET 0.020200 -0.635000 -0.429540
|
| 91 |
+
}
|
| 92 |
+
}
|
| 93 |
+
}
|
| 94 |
+
JOINT def_frontLegLwrAllTwist_joint.L
|
| 95 |
+
{
|
| 96 |
+
OFFSET -0.178100 0.220300 -4.033400
|
| 97 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 98 |
+
End Site
|
| 99 |
+
{
|
| 100 |
+
OFFSET -0.106900 0.132200 -2.420000
|
| 101 |
+
}
|
| 102 |
+
}
|
| 103 |
+
}
|
| 104 |
+
}
|
| 105 |
+
}
|
| 106 |
+
JOINT def_clavicle_joint.R
|
| 107 |
+
{
|
| 108 |
+
OFFSET -1.928800 -2.305800 3.049400
|
| 109 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 110 |
+
JOINT def_frontLegUpr_joint.R
|
| 111 |
+
{
|
| 112 |
+
OFFSET -1.115100 -1.646200 -5.514700
|
| 113 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 114 |
+
JOINT def_frontLegLwr_joint.R
|
| 115 |
+
{
|
| 116 |
+
OFFSET 0.174700 2.191500 -5.152200
|
| 117 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 118 |
+
JOINT def_frontHorselink_joint.R
|
| 119 |
+
{
|
| 120 |
+
OFFSET 0.356300 0.440600 -8.066700
|
| 121 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 122 |
+
JOINT def_frontFoot_joint.R
|
| 123 |
+
{
|
| 124 |
+
OFFSET -0.133600 -0.741600 -1.963400
|
| 125 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 126 |
+
End Site
|
| 127 |
+
{
|
| 128 |
+
OFFSET -0.020200 -0.634940 -0.429540
|
| 129 |
+
}
|
| 130 |
+
}
|
| 131 |
+
}
|
| 132 |
+
JOINT def_frontLegLwrAllTwist_joint.R
|
| 133 |
+
{
|
| 134 |
+
OFFSET 0.178100 0.220300 -4.033400
|
| 135 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 136 |
+
End Site
|
| 137 |
+
{
|
| 138 |
+
OFFSET 0.106900 0.132200 -2.420000
|
| 139 |
+
}
|
| 140 |
+
}
|
| 141 |
+
}
|
| 142 |
+
}
|
| 143 |
+
}
|
| 144 |
+
}
|
| 145 |
+
}
|
| 146 |
+
}
|
| 147 |
+
}
|
| 148 |
+
JOINT def_c_tail1_joint
|
| 149 |
+
{
|
| 150 |
+
OFFSET -0.000000 7.392700 -0.015700
|
| 151 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 152 |
+
JOINT def_c_tail2_joint
|
| 153 |
+
{
|
| 154 |
+
OFFSET -0.000000 3.790200 -2.331700
|
| 155 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 156 |
+
End Site
|
| 157 |
+
{
|
| 158 |
+
OFFSET 0.000000 3.790200 -2.331700
|
| 159 |
+
}
|
| 160 |
+
}
|
| 161 |
+
}
|
| 162 |
+
JOINT def_rearLegUpr_joint.L
|
| 163 |
+
{
|
| 164 |
+
OFFSET 2.782800 2.468600 -0.676100
|
| 165 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 166 |
+
JOINT def_rearLegLwr_joint.L
|
| 167 |
+
{
|
| 168 |
+
OFFSET 0.580500 0.355400 -7.589500
|
| 169 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 170 |
+
JOINT def_rearHorselink_joint.L
|
| 171 |
+
{
|
| 172 |
+
OFFSET 0.154800 4.939300 -5.051700
|
| 173 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 174 |
+
JOINT def_rearFoot_joint.L
|
| 175 |
+
{
|
| 176 |
+
OFFSET 0.508000 -1.094400 -5.763100
|
| 177 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 178 |
+
End Site
|
| 179 |
+
{
|
| 180 |
+
OFFSET 0.091375 -0.447450 -0.503600
|
| 181 |
+
}
|
| 182 |
+
}
|
| 183 |
+
}
|
| 184 |
+
JOINT def_rearLegLwrAllTwist_joint.L
|
| 185 |
+
{
|
| 186 |
+
OFFSET 0.077400 2.469700 -2.525800
|
| 187 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 188 |
+
End Site
|
| 189 |
+
{
|
| 190 |
+
OFFSET 0.046400 1.481800 -1.515500
|
| 191 |
+
}
|
| 192 |
+
}
|
| 193 |
+
}
|
| 194 |
+
JOINT def_rearLegUprAllTwist_joint.L
|
| 195 |
+
{
|
| 196 |
+
OFFSET 0.290200 0.177700 -3.794700
|
| 197 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 198 |
+
End Site
|
| 199 |
+
{
|
| 200 |
+
OFFSET 0.174100 0.106600 -2.276800
|
| 201 |
+
}
|
| 202 |
+
}
|
| 203 |
+
}
|
| 204 |
+
JOINT def_rearLegUpr_joint.R
|
| 205 |
+
{
|
| 206 |
+
OFFSET -2.782800 2.468600 -0.676000
|
| 207 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 208 |
+
JOINT def_rearLegLwr_joint.R
|
| 209 |
+
{
|
| 210 |
+
OFFSET -0.580900 0.347100 -7.589900
|
| 211 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 212 |
+
JOINT def_rearHorselink_joint.R
|
| 213 |
+
{
|
| 214 |
+
OFFSET -0.154300 4.947600 -5.051400
|
| 215 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 216 |
+
JOINT def_rearFoot_joint.R
|
| 217 |
+
{
|
| 218 |
+
OFFSET -0.508000 -1.094400 -5.763100
|
| 219 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 220 |
+
End Site
|
| 221 |
+
{
|
| 222 |
+
OFFSET -0.091350 -0.447425 -0.503600
|
| 223 |
+
}
|
| 224 |
+
}
|
| 225 |
+
}
|
| 226 |
+
JOINT def_rearLegLwrAllTwist_joint.R
|
| 227 |
+
{
|
| 228 |
+
OFFSET -0.089700 2.369900 -2.619300
|
| 229 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 230 |
+
End Site
|
| 231 |
+
{
|
| 232 |
+
OFFSET -0.053800 1.423000 -1.572900
|
| 233 |
+
}
|
| 234 |
+
}
|
| 235 |
+
}
|
| 236 |
+
JOINT def_rearLegUprAllTwist_joint.R
|
| 237 |
+
{
|
| 238 |
+
OFFSET -0.290500 0.173500 -3.794900
|
| 239 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 240 |
+
End Site
|
| 241 |
+
{
|
| 242 |
+
OFFSET -0.174300 0.104100 -2.277000
|
| 243 |
+
}
|
| 244 |
+
}
|
| 245 |
+
}
|
| 246 |
+
JOINT def_c_anus_joint
|
| 247 |
+
{
|
| 248 |
+
OFFSET -0.000000 7.183100 -2.297300
|
| 249 |
+
CHANNELS 3 Xrotation Yrotation Zrotation
|
| 250 |
+
End Site
|
| 251 |
+
{
|
| 252 |
+
OFFSET 0.000000 0.936100 -0.713600
|
| 253 |
+
}
|
| 254 |
+
}
|
| 255 |
+
}
|
| 256 |
+
}
|
| 257 |
+
MOTION
|
| 258 |
+
Frames: 49
|
| 259 |
+
Frame Time: 0.033333
|
| 260 |
+
0.000000 19.584000 0.000000 -90.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000 -0.000000 0.000000 0.000000
|
| 261 |
+
-0.673000 19.485700 2.274500 -92.406940 0.448171 -3.363818 -0.000000 0.000000 0.005542 7.765209 -0.452192 3.486797 11.007369 -0.220730 1.618092 13.727566 0.037579 -1.942817 9.550322 0.176571 0.015356 17.159131 -0.661961 -2.838333 14.362366 -0.381897 4.997093 -25.258231 -0.337498 -1.505993 -8.526234 0.000334 -0.000093 0.502669 0.011220 0.000509 0.502664 -0.010764 -0.000327 -23.440986 -10.130402 -3.774999 17.928716 -2.577870 8.083460 -61.185934 0.032090 3.112739 11.894715 5.904480 1.964258 17.860368 7.675070 0.935351 0.126610 -0.149012 2.784076 -25.382568 5.180895 3.376156 34.900795 13.197070 -2.387959 -58.508746 -0.100654 -2.987351 6.228715 -6.167070 -12.091833 5.492487 -7.018877 5.897734 0.615595 0.612303 -12.388389 -8.301174 2.221818 4.656986 -10.918779 -4.717915 0.708569 2.112349 1.612325 1.421424 16.986518 1.022046 1.196494 -17.029647 -0.628256 -1.445143 16.661787 3.433394 0.448800 0.000015 0.000001 -0.000001 -0.000002 0.000001 0.000000 -20.944727 -4.004915 18.321065 24.971848 -1.614817 -1.643474 -17.098429 1.034555 0.642787 14.937801 -5.152162 -0.154150 -0.032602 0.523566 -0.532036 -0.000002 -0.000002 -0.000001 0.006099 0.000000 -0.000008
|
| 262 |
+
-0.673000 19.467300 2.274500 -92.462800 0.451455 -3.363402 -0.000000 0.000000 0.005542 7.751615 -0.459135 3.535270 10.951626 -0.228702 1.673466 13.698722 0.012627 -1.992882 9.613280 0.172593 -0.061675 16.970493 -0.652605 -2.840496 14.363929 -0.399755 5.008009 -24.964044 -0.326094 -1.495611 -9.008853 0.000352 -0.000095 0.502547 0.010719 0.021486 0.502659 -0.010764 -0.000326 -23.419351 -10.083876 -3.752051 18.062924 -2.540681 8.031604 -61.290743 0.029289 3.117581 11.873751 5.902090 1.966411 17.900835 7.596238 0.932107 0.127260 -0.149743 2.798033 -25.382574 5.180895 3.376157 34.836547 13.261357 -2.364459 -58.278248 -0.106282 -2.976409 6.162184 -6.168533 -12.093968 5.490852 -7.075345 5.878033 0.615597 0.612302 -12.388390 -8.902696 1.624588 5.249440 -9.834796 -5.326672 1.081538 2.042784 1.607168 1.417890 17.327403 1.046039 1.217232 -17.231831 -0.633076 -1.463281 16.607065 3.421359 0.450419 0.000008 0.000001 -0.000001 -0.000004 0.000001 0.000000 -20.917784 -3.997460 18.320750 25.173543 -1.630570 -1.653678 -17.425981 1.046913 0.674528 15.088791 -5.184470 -0.145089 -0.032598 0.523565 -0.532037 -0.000001 -0.000003 -0.000002 0.006098 0.000000 -0.000008
|
| 263 |
+
-0.673000 19.400200 2.256200 -92.624634 0.439943 -3.362113 -0.000000 0.000000 0.005543 7.541593 -0.462632 3.570023 10.818980 -0.239011 1.728518 13.823645 -0.017154 -2.056933 9.746160 0.166203 -0.180818 16.558341 -0.631499 -2.882778 14.093756 -0.441448 5.016934 -24.033002 -0.307739 -1.379327 -9.722289 0.000379 -0.000098 0.523014 0.009194 0.105529 0.530629 -0.011369 -0.000506 -23.301882 -9.826019 -3.671858 18.237466 -2.809908 8.101502 -61.374543 0.027040 3.121447 11.566012 5.870197 2.011511 18.283848 7.613047 0.965355 0.127915 -0.150474 2.811991 -25.299888 5.165900 3.380478 34.435341 13.344595 -2.134952 -57.600652 -0.122566 -2.944108 5.967015 -6.158133 -12.125264 5.534646 -7.028234 5.861262 0.616361 0.612914 -12.402359 -11.305575 1.031976 5.845476 -7.315410 -6.269025 1.656793 1.780093 1.606548 1.454612 18.398733 1.122242 1.281472 -17.841351 -0.656260 -1.566355 16.401868 3.376217 0.456396 0.000471 0.014667 -0.015000 -0.000004 0.000001 0.000000 -21.028742 -3.962885 18.323343 25.931587 -1.690109 -1.691530 -18.204163 1.045926 0.705702 15.370827 -5.244767 -0.106935 -0.032592 0.523563 -0.532039 -0.000002 -0.000004 -0.000002 0.006110 0.000000 -0.000008
|
| 264 |
+
-0.575300 19.241500 2.164600 -93.010349 0.315570 -3.394542 -0.000000 0.000000 0.005542 6.472011 -0.380536 2.931477 10.492561 -0.080882 1.556694 14.701204 0.069819 -1.625521 10.068007 0.213532 -0.065290 15.726529 -0.598636 -2.955488 12.978322 -0.533237 5.003812 -21.149223 -0.261996 -1.131082 -9.953116 0.000388 -0.000099 0.619395 0.005693 0.357887 0.628833 -0.014612 0.047816 -22.422534 -8.225439 -3.171344 16.528298 -5.288741 8.756694 -59.774940 0.068953 3.047043 10.092335 5.761074 2.116755 20.128663 8.453063 0.946228 0.125954 -0.148281 2.770122 -24.911182 5.134016 3.336138 32.327859 13.109138 -1.201015 -55.141572 -0.178430 -2.825324 5.246922 -6.085580 -12.261884 5.869077 -6.189138 5.969233 0.620190 0.615974 -12.472169 -19.099147 0.682514 4.958749 -2.406125 -6.939529 1.601550 0.837723 1.845539 1.683721 21.264906 1.331897 1.446241 -19.362490 -0.667966 -1.871416 16.069792 3.067050 0.420704 0.002354 0.073330 -0.075002 -0.000004 0.000002 0.000000 -21.696203 -3.638221 18.455699 28.004057 -1.855373 -1.790967 -19.802914 1.016609 0.776994 15.856776 -5.648411 0.082616 -0.031650 0.490719 -0.495749 -0.000003 -0.000002 -0.000001 0.006103 0.000000 -0.000008
|
| 265 |
+
-0.508200 19.162100 2.085300 -93.392891 -0.102868 -3.491781 -0.000000 0.000000 0.005542 5.935417 -0.279814 2.161506 10.148690 0.266566 1.098082 14.905785 0.419025 -1.219689 10.312315 0.411065 0.357486 15.459225 -0.620405 -3.012065 12.206142 -0.535810 5.063388 -18.637114 -0.234989 -0.888027 -8.812985 0.000345 -0.000095 0.674474 0.003813 0.505091 0.692071 -0.017059 0.096365 -21.752735 -7.066134 -2.833101 15.517199 -7.580012 9.599224 -58.308027 0.105546 2.977810 8.074795 5.584245 2.272028 25.594665 10.125659 0.234068 0.123997 -0.146086 2.728252 -24.615232 5.122079 3.311024 30.437013 12.401225 -0.006669 -52.682342 -0.229147 -2.704255 4.492456 -6.052623 -12.367745 6.208822 -5.024435 6.182311 0.622109 0.617501 -12.507080 -21.559014 0.689699 3.449715 -2.331321 -7.055946 1.121096 0.496468 2.409692 1.958445 22.509957 1.425493 1.514519 -19.974104 -0.670958 -2.042238 15.627866 2.733916 0.399396 0.003810 0.117328 -0.120005 -0.000004 0.000002 -0.000001 -21.945881 -3.052681 18.754813 29.109757 -1.944993 -1.841561 -20.840543 1.000007 0.822802 16.355368 -5.988477 0.213903 -0.031242 0.476640 -0.480200 -0.000002 -0.000001 -0.000004 0.006108 0.000000 -0.000007
|
| 266 |
+
-0.422700 19.119400 1.963200 -93.818914 -0.532019 -3.592065 -0.000000 0.000000 0.005543 5.539312 -0.130872 1.108657 9.702343 0.677398 0.473632 14.850131 0.877567 -0.605051 10.610328 0.649831 0.979974 14.561818 -0.635451 -3.087692 11.838070 -0.503183 5.126829 -15.285591 -0.208486 -0.642852 -7.672877 0.000302 -0.000088 0.729545 0.002075 0.652296 0.755467 -0.020106 0.172887 -19.772436 -5.799634 -2.084622 12.978172 -10.444987 10.480386 -57.092547 0.134515 2.919748 5.928357 5.365511 2.437652 34.931524 12.395837 -1.520610 0.123022 -0.144988 2.707318 -24.233769 5.110217 3.240203 28.001561 11.387573 1.387247 -49.635989 -0.284690 -2.551448 3.550271 -6.007091 -12.496372 6.774830 -3.526462 6.445141 0.624024 0.619028 -12.541984 -22.883463 1.107147 1.435916 -2.323892 -6.927845 -0.102097 0.160240 3.039191 2.324717 23.407152 1.493852 1.562455 -20.324961 -0.675585 -2.223961 15.102236 2.325339 0.375827 0.005296 0.161324 -0.165009 -0.000004 0.000002 0.000000 -22.112444 -2.357298 19.076261 29.735614 -1.996146 -1.869427 -21.601112 0.969359 0.820929 17.100910 -6.427739 0.395418 -0.030822 0.462562 -0.464648 0.000000 -0.000004 -0.000003 0.006096 0.000000 -0.000008
|
| 267 |
+
-0.221300 19.168300 1.627500 -94.443433 -0.982856 -3.698248 -0.000000 0.000000 0.005542 5.517538 0.088622 -0.696719 9.001608 1.191797 -0.209171 14.177740 1.464915 0.756234 11.044868 0.920150 1.675034 10.457281 -0.606399 -3.236219 11.864932 -0.331517 5.040822 -6.913118 -0.264323 -0.560702 -9.372595 0.000366 -0.000097 0.882158 0.002571 0.856081 0.917795 -0.028429 0.409636 -9.306642 -3.404495 0.920810 14.350060 -12.134388 10.960722 -68.910448 -0.197560 3.454944 7.681242 4.983908 2.504733 44.951152 14.039159 -3.668895 0.130853 -0.153761 2.874794 -23.307481 5.067880 3.104180 23.121157 10.151552 3.020786 -44.629966 -0.358087 -2.294615 1.989603 -5.864862 -12.772539 8.372980 -1.407455 6.720735 0.630932 0.624508 -12.667654 -23.882451 2.712101 -1.368889 -4.110678 -6.364815 -4.549601 -0.795747 3.877469 3.084227 24.193070 1.554343 1.603563 -20.332153 -0.637709 -2.582112 14.990399 1.571097 0.278051 0.009787 0.288415 -0.295026 -0.000004 0.000001 0.000001 -22.411755 -1.213891 19.443616 29.151483 -1.948392 -1.843433 -21.631639 0.926387 0.632167 19.373261 -7.465161 0.939864 -0.031511 0.486025 -0.490564 -0.000005 -0.000004 -0.000002 0.006104 0.000000 -0.000008
|
| 268 |
+
-0.105300 19.259800 1.407700 -94.824531 -1.448549 -3.804231 0.000001 0.000000 0.005542 5.941401 0.259740 -2.028801 8.508861 1.624253 -0.859142 13.167319 1.919281 1.645877 11.252496 1.186708 2.351269 7.575497 -0.595553 -3.428002 11.890423 -0.141777 4.984602 -2.609758 -0.239090 -0.415152 -10.121004 0.000394 -0.000100 0.944506 0.029980 -0.227411 0.994875 -0.033547 1.493554 -2.700206 -2.002507 2.376000 14.746665 -11.428081 9.504817 -71.213478 -0.274744 3.550674 6.655563 4.702379 2.707608 43.883501 13.036806 -2.630247 0.136088 -0.159599 2.986447 -22.711967 5.050017 3.006319 19.992433 8.943753 4.230898 -41.281096 -0.394547 -2.119660 0.918167 -5.780480 -12.944829 9.450362 0.213867 6.929775 0.634010 0.626942 -12.723503 -23.569410 2.987772 -3.249520 -5.150925 -5.079523 -5.697515 -1.031836 4.624563 3.628310 23.504547 1.501317 1.567594 -19.617763 -0.613748 -2.736736 14.556487 1.004942 0.221067 0.012698 0.366620 -0.375043 -0.000003 0.000001 0.000000 -22.294965 -0.295112 19.780974 27.990160 -1.854254 -1.790319 -21.315106 0.921592 0.457728 21.322064 -8.156091 1.332761 -0.032595 0.523564 -0.532035 -0.000001 -0.000003 -0.000003 0.006098 0.000000 -0.000008
|
| 269 |
+
0.004500 19.394100 1.206300 -95.094948 -1.921012 -3.931102 -0.000000 0.000000 0.005542 6.753420 0.409257 -3.180416 8.124495 2.015119 -1.366261 11.790258 2.240558 2.404286 11.262006 1.438600 2.877425 4.825527 -0.597369 -3.657361 12.019123 0.157435 4.850873 1.098767 -0.199528 -0.274337 -10.449756 0.000406 -0.000101 0.998033 0.036938 -1.990156 1.038785 -0.043382 2.822440 2.396915 -0.844493 3.261542 15.298399 -10.685962 7.199369 -70.660110 -0.255849 3.527954 4.702990 4.115216 3.419403 40.165197 12.241272 -1.424649 0.161774 -0.187912 3.530758 -22.159352 5.041802 2.917058 17.536359 7.949848 5.169938 -38.729666 -0.415432 -1.985112 0.110523 -5.699792 -13.085550 10.457122 1.529417 7.050263 0.637087 0.629371 -12.779360 -23.266927 2.988594 -4.695483 -6.159358 -4.026087 -6.407485 -1.035594 5.399309 4.132077 22.002194 1.387143 1.486919 -18.437182 -0.588445 -2.836321 14.029712 0.469418 0.158812 0.015714 0.444821 -0.455064 -0.000004 0.000001 0.000000 -22.015020 0.618265 20.087117 26.258485 -1.715931 -1.707610 -20.642671 0.921015 0.245616 23.457036 -8.801588 1.756917 -0.034430 0.589261 -0.604611 -0.000003 -0.000002 -0.000002 0.006104 0.000000 -0.000007
|
| 270 |
+
0.108300 19.540600 0.998800 -95.108039 -2.410907 -4.036516 -0.000000 0.000000 0.005542 7.567388 0.533311 -4.137907 7.740552 2.325971 -1.641138 10.344952 2.420911 3.047469 11.084819 1.610492 3.131971 2.032364 -0.604169 -3.939624 12.044056 0.620134 4.595978 4.524312 -0.164168 -0.171962 -10.491715 0.000408 -0.000102 1.051289 0.040796 -3.689968 1.082648 -0.051390 4.116368 5.845165 0.189942 3.651604 14.700370 -10.656056 3.487040 -63.719101 -0.038104 3.228327 1.165254 2.964668 5.123529 33.389953 12.758520 -0.697181 0.232944 -0.263616 5.010281 -21.583017 5.028294 2.800416 15.358572 7.296608 5.891223 -36.618481 -0.428164 -1.873167 -0.555052 -5.612341 -13.222779 11.522524 2.508806 7.101600 0.640167 0.631798 -12.835209 -22.450285 2.437224 -5.347829 -7.270742 -3.154069 -6.728046 -1.201017 6.168605 4.640711 20.165843 1.250527 1.384297 -17.054115 -0.551514 -2.921269 13.488702 -0.068439 0.091258 0.019632 0.542565 -0.555097 -0.000004 0.000002 0.000000 -21.913364 1.545512 20.386469 24.220703 -1.556460 -1.604990 -19.802180 0.937425 0.012217 25.886984 -9.479970 2.243880 -0.036419 0.664346 -0.687553 -0.000005 -0.000003 -0.000002 0.006108 0.000000 -0.000008
|
| 271 |
+
0.230400 19.729800 0.736300 -94.831128 -2.956578 -4.128488 -0.000000 0.000000 0.005542 8.396369 0.632789 -5.013855 7.180111 2.561965 -1.690647 8.728600 2.476999 3.696902 10.874941 1.731932 3.131264 -1.022283 -0.620651 -4.342821 11.701872 1.333478 4.145045 7.296893 -0.121414 -0.073562 -10.491716 0.000408 -0.000101 1.079242 0.048937 -4.683120 1.125722 -0.055683 5.291421 8.266382 1.046765 3.788043 10.402365 -10.674331 -0.790617 -55.137812 0.178500 2.825129 -2.563059 1.219178 7.670491 28.629470 13.397814 -0.554048 0.355709 -0.385519 7.474168 -20.852006 5.029006 2.658869 12.920901 6.983569 6.450543 -34.556188 -0.436614 -1.763431 -1.167597 -5.497375 -13.363726 12.845439 3.247502 7.089079 0.645565 0.636037 -12.932955 -21.285895 1.802062 -5.319058 -8.576867 -2.383009 -6.277722 -1.594389 7.009885 5.222121 17.598739 1.065225 1.233636 -15.171718 -0.506734 -3.015531 13.063399 -0.644978 -0.005939 0.024573 0.659850 -0.675149 -0.000004 0.000001 0.000000 -21.992948 2.558142 20.665303 21.396626 -1.341707 -1.453558 -18.490418 0.995483 -0.344507 29.445174 -10.314145 2.986710 -0.038602 0.820166 -0.838938 -0.000003 -0.000001 -0.000003 0.006104 -0.000001 -0.000008
|
| 272 |
+
0.444000 20.083800 0.229700 -94.554775 -3.502602 -4.182831 0.000001 0.000000 0.005542 9.961792 0.821943 -6.365419 6.351784 2.747916 -1.535091 6.169346 2.338526 4.885011 10.702418 1.813096 2.984877 -5.570748 -0.701042 -5.176036 10.121228 2.822142 3.066036 8.964012 -0.146429 -0.056910 -10.491716 0.000408 -0.000102 1.126729 0.041997 -4.508026 1.176843 -0.041795 5.753141 9.488635 1.597080 3.774693 8.608939 -12.229724 -5.635414 -54.035416 0.201874 2.771125 -3.138194 -2.023139 11.702668 23.745320 12.871575 0.549884 0.584401 -0.587096 11.817073 -19.390256 4.955961 2.390581 8.248525 6.884484 6.974254 -31.179878 -0.441909 -1.583342 -2.126469 -5.288692 -13.616965 15.264658 4.116034 7.021976 0.653671 0.642378 -13.079569 -18.963996 3.183885 6.167798 -10.695126 -3.034248 -1.178379 -2.189128 8.079803 6.151790 13.221343 0.765487 0.958175 -11.888133 -0.423796 -3.243247 13.244725 -1.385469 -0.123788 0.035885 0.909044 -0.930304 -0.000004 0.000002 0.000000 -21.984989 3.612400 21.178991 21.139266 -1.322512 -1.439234 -18.726803 1.363406 -0.852375 35.783709 -11.751258 4.636448 -0.044545 1.205984 -1.244321 -0.000003 -0.000001 -0.000001 0.006103 0.000000 -0.000007
|
| 273 |
+
0.547800 20.254700 -0.051100 -93.964068 -4.071881 -4.213785 -0.000000 0.000001 0.005542 10.476971 0.891392 -6.949126 5.723892 2.851512 -1.290158 4.712426 2.281892 5.492952 10.342685 1.860449 2.768924 -7.252825 -0.765847 -5.644072 8.599618 3.542183 2.447428 7.308127 -0.326392 -0.270357 -9.274657 0.000363 -0.000096 0.350463 0.082106 -4.372430 0.404518 -0.108373 5.939062 9.476854 1.591765 3.771405 10.894350 -13.018980 -8.590267 -56.216456 0.154628 2.877526 -2.063832 -4.341198 13.958733 19.735538 11.951753 1.346338 0.722874 -0.695171 14.319440 -18.552366 5.069684 2.302514 7.232088 7.045142 6.991350 -30.818186 -0.441847 -1.564038 -2.085836 -5.165890 -13.702645 16.711147 4.283873 6.957245 0.659084 0.646595 -13.177312 -16.914905 3.534290 12.875422 -10.853638 -3.098594 2.853951 -2.698138 8.906961 6.665287 10.177738 0.569927 0.753592 -9.717031 -0.377934 -3.346401 12.828027 -1.843871 -0.214652 0.043297 1.060489 -1.085432 -0.000003 0.000001 0.000000 -20.722855 3.734665 21.866922 27.645495 -1.826525 -1.774190 -23.046530 2.120232 -1.268533 39.411868 -12.392453 5.730207 -0.045953 1.767376 -1.802241 -0.000004 -0.000003 -0.000001 0.006108 0.000000 -0.000008
|
| 274 |
+
0.627100 20.370700 -0.289200 -93.322176 -4.617134 -4.235091 -0.000000 0.000000 0.005542 10.538854 0.935426 -7.246795 5.094463 2.902695 -0.923195 3.743263 2.264997 5.968759 10.082224 1.887971 2.453242 -8.500558 -0.829825 -6.023053 7.237983 4.117138 1.871125 5.286642 -0.598166 -0.671012 -7.001299 0.000277 -0.000085 -0.425892 0.120373 -4.236301 -0.368165 -0.175574 6.061148 9.430842 1.584700 3.761981 12.581508 -12.929732 -10.330422 -57.684820 0.120553 2.948117 -1.070351 -5.735144 14.833419 16.391211 10.542836 1.878642 0.778381 -0.735837 15.299706 -17.817208 5.176709 2.243243 7.656672 7.650905 6.645561 -32.315192 -0.441312 -1.643932 -1.385944 -5.040442 -13.730708 19.058033 4.060959 6.840167 0.665668 0.651702 -13.296006 -14.758075 3.726965 17.952271 -10.505817 -3.156276 6.543936 -3.280627 9.651610 7.104356 7.699034 0.418897 0.579531 -7.946520 -0.323885 -3.444091 12.322080 -2.219888 -0.313412 0.050344 1.197261 -1.225570 -0.000003 0.000002 -0.000001 -17.521438 3.829524 22.056964 32.724833 -2.244518 -1.994755 -26.576872 2.969744 -1.978269 42.099053 -12.583762 6.537692 -0.041343 2.436728 -2.479630 -0.000002 -0.000002 -0.000003 0.006104 0.000000 -0.000008
|
| 275 |
+
0.700400 20.450100 -0.521100 -92.792029 -5.154350 -4.259918 -0.000000 0.000000 0.005543 10.195242 0.950825 -7.406865 4.464488 2.935668 -0.437605 3.303168 2.297614 6.423623 10.053454 1.907213 2.032919 -9.949081 -0.916471 -6.386653 5.897388 4.627994 1.312564 3.009888 -0.919735 -1.217530 -3.902377 0.000162 -0.000063 -0.420001 0.116750 -4.096418 -0.360356 -0.177238 6.159023 9.384846 1.577659 3.752563 13.163550 -11.397540 -9.818598 -57.665218 0.121020 2.947181 -0.465751 -5.526441 13.432196 13.410425 8.879511 2.140408 0.696156 -0.675067 13.843112 -17.086321 5.323037 2.171330 8.391805 8.489962 6.043631 -34.615863 -0.436425 -1.766613 -0.452749 -4.902864 -13.746645 22.725349 3.595654 6.658367 0.672263 0.656796 -13.414696 -12.464714 4.287325 22.137106 -9.398997 -3.658622 10.635337 -3.940190 10.352041 7.535920 5.804826 0.308651 0.442225 -6.504587 -0.303619 -3.563899 11.830995 -2.570638 -0.386096 0.057733 1.334016 -1.365734 -0.000003 0.000002 -0.000001 -12.303423 4.065181 21.885203 34.187682 -2.368366 -2.051330 -27.837121 3.928423 -3.177282 44.407858 -12.567094 7.215661 -0.025012 3.298415 -3.370276 -0.000003 -0.000003 -0.000003 0.006104 0.000000 -0.000008
|
| 276 |
+
0.749200 20.523300 -0.801900 -92.541932 -5.670952 -4.285273 -0.000000 0.000000 0.005543 9.771182 0.944294 -7.308784 3.771079 2.916212 0.151559 2.977797 2.369643 6.686394 10.151493 1.906800 1.553576 -12.045274 -0.985399 -6.819760 5.419349 5.519921 0.545583 3.327872 -1.179934 -1.556640 -1.880829 0.000086 -0.000045 -0.414410 0.112162 -3.914578 -0.352719 -0.178407 6.235917 9.287863 1.551758 3.753478 12.148082 -8.736636 -7.841531 -55.130630 0.178657 2.824779 -0.255167 -4.461879 10.487039 10.790510 7.084584 2.121861 0.528824 -0.540894 10.787615 -16.188460 5.542426 2.071551 9.601137 9.457152 5.190720 -37.867105 -0.421129 -1.939430 1.005243 -4.764805 -13.696223 28.091163 2.797619 6.575395 0.677312 0.660680 -13.505458 -9.985328 4.254315 24.339521 -7.449042 -3.974076 13.257922 -4.694888 10.922230 8.028303 4.453509 0.232814 0.342093 -5.302504 -0.294421 -3.759308 11.504177 -2.815603 -0.468961 0.065455 1.470751 -1.505924 -0.000003 0.000002 -0.000001 -4.778350 4.261190 21.273681 31.422350 -2.135491 -1.941738 -26.304529 4.918938 -5.165071 46.165221 -12.169618 7.652127 0.020554 4.480451 -4.576447 -0.000004 -0.000002 -0.000003 0.006101 0.000000 -0.000008
|
| 277 |
+
0.791900 20.590500 -1.332900 -92.869762 -5.997153 -4.311603 -0.000000 0.000001 0.005543 9.200676 0.892131 -6.941393 2.959597 2.808256 0.828233 2.707429 2.390848 6.776813 10.313630 1.857021 1.053731 -15.898251 -1.031548 -7.561936 6.241196 7.295524 -0.889998 8.469780 -1.417746 -1.455624 -8.501252 0.000334 -0.000094 -0.395732 0.104199 -3.613802 -0.331030 -0.178658 6.326749 9.081268 1.506891 3.738413 7.103925 -4.363691 -2.246628 -46.243546 0.336876 2.378074 -1.122143 -2.503582 4.209969 9.329716 5.394645 1.670457 0.202957 -0.232194 4.391815 -14.516935 5.966645 1.886720 15.003622 10.019615 3.942185 -48.337788 -0.305877 -2.485473 5.262104 -4.466993 -13.474851 38.778198 1.572644 6.627972 0.682365 0.664560 -13.596220 -8.001723 3.984317 19.442880 -4.076184 -3.961292 13.567017 -6.375592 11.049661 8.888634 4.703509 0.246667 0.360753 -4.634251 -0.355263 -4.234867 11.767991 -2.940223 -0.540448 0.078553 1.690465 -1.731284 -0.000003 0.000003 0.000001 7.763264 4.219436 19.980923 18.895104 -1.157936 -1.310750 -18.351552 6.141243 -9.372359 46.578663 -11.083897 7.858604 0.197002 6.952864 -7.125255 -0.000004 -0.000002 -0.000005 0.006110 0.000000 -0.000007
|
| 278 |
+
0.700400 20.492800 -1.638100 -93.288139 -5.467965 -4.255467 -0.000000 0.000000 0.005543 8.395108 0.733763 -5.593111 2.414407 2.404434 1.455747 3.017271 2.203266 6.013179 10.408285 1.604863 0.615669 -17.108528 -1.029674 -7.900025 6.822678 8.305642 -1.763360 11.320348 -1.594589 -1.451041 -8.485497 0.000333 -0.000093 -0.375660 0.100564 -3.494830 -0.309950 -0.177278 6.347653 8.956915 1.479643 3.734260 3.677889 -2.402389 0.115093 -39.919246 0.406431 2.047949 -0.436094 -1.729943 1.378596 7.604523 4.378149 1.266358 0.066640 -0.080255 1.485091 -13.680198 6.176704 1.789612 23.241551 8.600694 3.428671 -57.807484 -0.117638 -2.953988 9.082494 -4.677856 -12.335535 41.495295 0.677674 6.981352 0.632858 0.626031 -12.702552 -5.752199 3.410544 13.219824 -0.820348 -3.481116 11.388490 -8.226461 9.841221 9.156132 7.870798 0.429119 0.591800 -6.019447 -0.466962 -4.608272 11.681748 -2.686357 -0.572693 0.080678 1.724637 -1.766346 -0.000003 0.000002 0.000000 12.705374 3.351891 19.526488 11.146394 -0.630964 -0.819818 -13.333990 6.492546 -11.418375 43.905368 -10.013311 7.412638 0.333207 8.236874 -8.462181 -0.000005 -0.000002 -0.000002 0.006103 -0.000001 -0.000007
|
| 279 |
+
0.560000 20.395100 -1.961600 -93.951901 -4.731898 -4.174564 0.000001 0.000000 0.005543 7.688454 0.508945 -3.950142 2.070450 1.970940 2.025919 3.331028 1.938600 4.974585 10.417528 1.305751 0.245615 -17.594562 -1.045707 -8.239699 7.229024 9.117829 -2.565345 13.336118 -1.841948 -1.532708 -8.392804 0.000331 -0.000093 -0.355374 0.097624 -3.403830 -0.288874 -0.175888 6.368553 8.835453 1.448670 3.716807 -0.128010 -1.111120 1.596830 -33.051897 0.440279 1.683224 0.376947 -1.665398 -0.428629 5.534647 3.832040 0.885928 -0.014935 0.018591 -0.339579 -12.842759 6.385314 1.689380 30.357561 5.316525 3.937663 -63.957782 0.044964 -3.239071 11.826170 -5.417041 -10.059046 42.190335 0.896563 7.274245 0.523318 0.536229 -10.684882 -3.557409 2.649046 5.431678 1.965301 -2.822674 6.719122 -10.024432 8.275050 9.262028 11.482347 0.652416 0.842550 -7.671598 -0.587642 -5.002513 11.758740 -2.285454 -0.591383 0.081289 1.734402 -1.776367 -0.000004 0.000002 -0.000001 15.931382 2.455316 18.929007 5.445229 -0.288227 -0.415750 -9.610141 6.333491 -12.492845 39.540105 -8.725912 6.823462 0.408940 8.845055 -9.094820 -0.000004 -0.000002 -0.000002 0.006101 0.000000 -0.000007
|
| 280 |
+
0.431800 20.315800 -2.584200 -95.034244 -3.945539 -4.095583 -0.000000 0.000000 0.005543 6.696015 0.291461 -2.235849 2.317053 1.573301 2.436347 3.949899 1.651596 3.891250 9.851400 1.009492 -0.035931 -17.007229 -1.256961 -9.024306 6.031924 9.150445 -3.145307 9.918779 -2.727223 -2.688946 -2.814233 0.000123 -0.000055 -0.334873 0.095367 -3.340793 -0.268030 -0.173851 6.361488 8.519164 1.378348 3.687089 -7.282010 -0.148581 2.595124 -21.249104 0.396056 1.055972 -0.807972 -3.014205 -1.256899 4.339742 4.571011 0.300207 -0.045440 0.057261 -1.040757 -11.210364 6.701180 1.494475 33.728137 -3.220866 6.977656 -62.655183 0.007986 -3.180173 12.609631 -6.815672 -5.774493 42.126267 4.526342 6.913897 0.318943 0.350107 -6.747289 -1.395073 0.897897 -8.743016 4.612570 -3.163803 -1.042907 -12.455350 6.527780 9.526968 15.170455 0.896339 1.083643 -9.006298 -0.773007 -5.559647 12.568431 -1.794192 -0.612082 0.084665 1.788099 -1.831471 -0.000002 0.000003 -0.000001 19.696135 2.169779 17.751035 -1.264335 0.061169 0.100288 -5.469762 5.517107 -12.991935 27.996952 -6.447792 6.028777 0.416169 8.901138 -9.154712 -0.000008 -0.000002 -0.000002 0.006106 0.000001 -0.000007
|
| 281 |
+
0.285300 20.193700 -2.901600 -95.946564 -3.137873 -3.991065 -0.000001 0.000000 0.005543 6.312884 0.080710 -0.647879 2.909481 1.176913 2.796104 4.130182 1.327082 2.836607 8.885239 0.718716 -0.279423 -16.505091 -1.374523 -9.354693 5.065702 9.131826 -3.503588 6.562275 -3.555834 -3.595424 -2.150390 0.000098 -0.000050 -0.299922 0.094084 -3.340624 -0.247190 -0.171817 6.354419 8.339979 1.341796 3.674518 -10.157365 0.535246 2.568055 -15.047001 0.321428 0.733627 -1.598671 -3.601169 -1.317563 3.600756 4.513135 0.008042 -0.044083 0.055518 -1.009328 -10.341656 6.803927 1.401451 30.854437 -5.646894 6.888736 -55.970152 -0.160179 -2.865616 11.366472 -6.745589 -5.394630 39.329950 5.966437 6.622778 0.294554 0.326104 -6.259928 0.012786 0.107318 -12.196916 6.989644 -3.468854 -4.737174 -14.269242 4.823856 9.352880 19.068565 1.170494 1.320912 -10.220458 -0.954266 -5.888063 12.304792 -1.326073 -0.671263 0.081591 1.739282 -1.781375 -0.000004 0.000002 0.000000 18.966185 0.952822 16.938702 1.194963 -0.059836 -0.093544 -6.454451 4.916777 -12.419033 20.124606 -4.845432 5.793107 0.337832 8.270025 -8.488796 -0.000004 -0.000003 -0.000002 0.006103 0.000000 -0.000007
|
| 282 |
+
0.120500 20.065500 -3.145800 -96.796739 -2.336154 -3.891762 -0.000000 0.000000 0.005542 5.998605 -0.116929 0.920535 3.519985 0.745485 3.070877 4.220737 0.985364 1.700378 7.890115 0.460235 -0.528685 -16.045851 -1.408196 -9.618161 4.247269 8.984796 -3.713005 3.606691 -4.192147 -4.328507 -2.053088 0.000093 -0.000047 -0.264978 0.092799 -3.340450 -0.226172 -0.170266 6.368330 8.188146 1.306622 3.666867 -12.366531 1.144402 2.627090 -9.687732 0.229197 0.462941 -2.117110 -3.924725 -1.268876 2.674035 4.273491 -0.196904 -0.039405 0.049531 -0.901151 -9.623871 6.889810 1.321833 28.266004 -5.907446 5.840163 -50.925187 -0.262177 -2.616473 10.505810 -6.619629 -5.186541 35.733306 5.465575 7.180777 0.279342 0.310932 -5.954034 0.205565 -0.224958 -13.192552 9.125563 -3.637095 -6.248841 -15.825255 3.188720 9.009961 22.659646 1.436845 1.522590 -11.223418 -1.130530 -6.144632 11.820917 -0.858861 -0.738731 0.077061 1.666054 -1.706240 -0.000004 0.000002 0.000000 18.547051 -0.116567 15.950659 2.950473 -0.151259 -0.228664 -7.033648 4.241393 -11.714236 12.801489 -3.346087 5.850637 0.260088 7.567979 -7.746090 -0.000001 -0.000002 -0.000003 0.006106 0.000000 -0.000008
|
| 283 |
+
-0.026000 20.004500 -3.353300 -97.537702 -1.564542 -3.763078 0.000001 0.000000 0.005543 6.150656 -0.294714 2.371599 4.200548 0.334914 3.090759 3.827624 0.675258 0.398389 6.726355 0.224602 -0.719081 -15.807621 -0.956312 -10.020925 4.023400 8.484867 -3.620681 2.807695 -4.444819 -4.386576 -4.690857 0.000190 -0.000070 -0.250997 0.092286 -3.340383 -0.205271 -0.168390 6.368252 8.039232 1.267735 3.645897 -13.115772 1.453932 2.954029 -6.460415 0.161587 0.304508 -1.841410 -4.013813 -1.162791 1.583105 4.102928 -0.269070 -0.034715 0.043552 -0.792979 -8.896818 6.850245 1.261925 27.171683 -5.675769 5.506528 -48.054779 -0.310295 -2.471029 10.434354 -6.391961 -5.073860 28.879170 5.377133 7.766504 0.272143 0.303693 -5.808668 0.005227 0.233168 -8.922638 10.049915 -3.738114 -5.697276 -16.914405 1.708525 8.561479 25.087399 1.623861 1.649330 -11.556892 -1.281287 -6.313647 11.210111 -0.394939 -0.807289 0.074390 1.622114 -1.661165 -0.000004 0.000002 0.000001 18.714257 -0.968645 14.850877 3.020735 -0.155007 -0.234013 -6.648609 3.547882 -11.069425 5.642546 -1.923488 6.168797 0.194605 6.920378 -7.087752 -0.000002 -0.000003 -0.000002 0.006104 0.000001 -0.000007
|
| 284 |
+
-0.178600 19.974000 -3.542500 -98.118286 -0.784109 -3.621093 -0.000000 0.000000 0.005542 6.384559 -0.478468 3.709160 4.879833 -0.059567 2.969491 3.253093 0.427909 -0.838555 5.408821 0.036150 -0.761547 -15.668244 -0.397360 -10.273787 4.116018 7.935114 -3.557405 3.091441 -4.613827 -4.371371 -8.000326 0.011790 0.007908 -0.237016 0.091772 -3.340312 -0.184370 -0.166514 6.368175 7.849232 1.226916 3.617225 -13.121295 1.548412 3.200956 -4.324515 0.111979 0.201846 -1.153880 -3.941356 -1.032564 0.525470 3.897042 -0.269193 -0.031532 0.039507 -0.719688 -8.049214 6.632905 1.219645 25.278288 -5.601185 5.214989 -43.974961 -0.366022 -2.260571 9.952122 -6.061659 -5.106976 20.188103 5.835386 8.321018 0.269443 0.300969 -5.754033 -0.407586 0.203126 -3.270228 10.503086 -4.393794 -4.453670 -17.891361 0.261369 8.093139 26.833349 1.761597 1.735532 -11.466556 -1.498629 -6.467590 10.867623 0.201027 -0.902952 0.070876 1.563525 -1.601067 -0.000004 0.000002 -0.000001 18.995130 -1.719976 13.600072 2.185741 -0.110926 -0.170147 -5.742667 2.753011 -10.399848 -0.929276 -0.635195 6.791351 0.135654 6.258030 -6.415351 -0.000005 -0.000003 -0.000004 0.006098 0.000000 -0.000008
|
| 285 |
+
-0.337300 20.041100 -3.792800 -98.840464 0.003425 -3.458156 -0.000000 0.000000 0.005542 6.650827 -0.657132 5.068607 5.875978 -0.510006 2.790453 2.673908 0.213985 -2.076916 3.692526 -0.144798 -0.780696 -15.759885 -0.294661 -9.853442 4.673767 6.604880 -3.093401 5.013574 -3.379863 -5.366434 -8.449386 0.010267 0.007022 -0.174111 0.089463 -3.339995 -0.128644 -0.161511 6.367964 7.497110 1.150652 3.588412 -14.054067 1.624656 3.421141 -0.490830 0.013471 0.022481 -1.259035 -3.561020 -0.799505 -0.176292 3.351625 -0.163617 -0.022560 0.028165 -0.513831 -6.463426 6.010321 1.229797 20.643338 -5.288201 4.619940 -36.909608 -0.426653 -1.888629 8.315258 -5.402868 -5.382931 9.347861 6.729767 9.089508 0.272952 0.304509 -5.825017 -2.814355 -2.969151 4.144957 10.727099 -5.230778 0.845301 -18.565571 -1.096306 7.889277 27.633402 1.825577 1.773625 -10.838541 -2.080693 -6.782195 11.658379 1.267054 -1.125813 0.061550 1.402386 -1.435824 -0.000003 0.000002 -0.000001 19.356292 -2.242657 11.889764 0.682121 -0.033916 -0.053555 -4.422698 1.674917 -9.679456 -5.922783 0.421876 7.905247 0.074927 5.435707 -5.567222 -0.000004 -0.000003 -0.000003 0.006106 0.000000 -0.000008
|
| 286 |
+
-0.502100 20.120500 -3.921000 -99.001373 0.839706 -3.289095 -0.000000 0.000000 0.005543 6.984989 -0.832430 6.506108 6.182335 -0.924036 2.534076 1.812144 0.059179 -3.427157 2.591766 -0.331577 -0.753894 -15.960235 -1.067738 -8.684154 5.185655 6.801220 -3.322473 6.644022 -2.565696 -5.956844 -8.422819 0.008790 0.006051 -0.137808 0.092389 -3.521625 -0.095443 -0.154089 6.179030 7.268441 1.107278 3.574675 -14.936403 1.428916 3.629008 3.041252 -0.087724 -0.136619 -1.511793 -3.199327 -0.608455 -0.881353 3.002542 -0.033585 -0.015079 0.018770 -0.342858 -5.445977 5.452967 1.292312 18.303789 -4.965018 4.390851 -33.243931 -0.439932 -1.693478 7.823011 -4.942448 -5.553513 6.441861 7.241173 9.264859 0.277503 0.309087 -5.916945 -4.673221 -1.076248 9.239115 10.586111 -5.340055 4.497658 -19.557287 -2.903432 7.278512 29.622657 1.986914 1.864441 -10.826856 -2.435886 -6.794098 12.910884 2.651830 -1.323518 0.050609 1.202147 -1.230576 -0.000002 0.000001 0.000000 19.164531 -3.313123 10.987701 -0.118177 0.005813 0.009309 -3.362532 1.069220 -9.417257 -6.773092 1.066318 8.691136 0.053219 5.074165 -5.182227 -0.000005 -0.000002 -0.000003 0.006101 0.000000 -0.000008
|
| 287 |
+
-0.673000 20.193700 -4.030800 -98.910220 1.591200 -3.123142 -0.000000 0.000000 0.005542 7.160848 -0.998185 7.768556 6.210760 -1.269747 2.241473 0.963652 -0.040923 -4.644779 1.729444 -0.484537 -0.674569 -16.131278 -2.214966 -7.257215 5.672765 7.794060 -3.899251 8.033096 -2.013796 -5.964887 -8.326296 0.007316 0.005073 -0.101494 0.095201 -3.703256 -0.062212 -0.146777 5.990090 7.079783 1.058108 3.540754 -15.296542 1.127437 3.799198 5.589030 -0.166715 -0.247366 -1.498010 -2.848162 -0.459529 -1.537816 2.771725 0.115286 -0.009718 0.012074 -0.220725 -4.537709 4.907041 1.370221 16.511229 -4.673732 4.288307 -30.407562 -0.441629 -1.542125 7.552593 -4.525212 -5.722439 5.395291 7.516027 9.261853 0.283100 0.314699 -6.029809 -6.663664 0.353213 11.958247 10.184288 -4.906202 6.942714 -20.182765 -4.922738 6.786634 31.298901 2.125246 1.936587 -10.690517 -2.736802 -6.724387 13.834328 4.239665 -1.597522 0.041109 1.016522 -1.040391 -0.000003 0.000003 0.000001 18.745912 -4.355540 10.303107 -0.821001 0.039974 0.064967 -2.287106 0.591408 -9.311314 -7.030878 1.585191 9.369774 0.040627 4.853164 -4.953682 -0.000003 -0.000002 -0.000003 0.006104 0.000000 -0.000008
|
| 288 |
+
-0.795100 20.260900 -4.122400 -98.662804 2.152303 -3.026315 0.000001 0.000000 0.005543 7.157321 -1.120176 8.726228 6.051078 -1.497262 1.958795 0.264997 -0.079084 -5.601775 1.105538 -0.605749 -0.582867 -16.121420 -2.765995 -6.061020 6.083954 9.033316 -4.516620 9.100319 -1.749228 -5.035809 -8.180813 0.005845 0.004083 -0.071187 0.079287 -3.080746 -0.041186 -0.145359 6.003989 6.886753 1.014644 3.526499 -14.921948 0.815494 3.905144 6.662982 -0.201473 -0.292979 -0.953063 -2.570179 -0.358897 -2.140600 2.617040 0.257403 -0.007108 0.008823 -0.161388 -3.643106 4.361901 1.460680 14.719812 -4.387930 4.214157 -27.711008 -0.436295 -1.398321 7.137643 -4.125287 -5.903900 4.565914 7.357305 9.278915 0.289403 0.320990 -6.156634 -8.799719 1.197658 11.401934 9.444557 -4.367573 7.682433 -19.964537 -6.683986 6.644440 31.132347 2.111407 1.929601 -9.667898 -3.000182 -6.559043 13.587744 5.610913 -1.879049 0.034957 0.889501 -0.910290 -0.000004 0.000001 0.000000 18.213881 -5.145772 9.787309 -1.440276 0.069504 0.114350 -1.327651 0.221764 -9.322971 -7.224388 1.986617 9.968880 0.033634 4.735291 -4.839715 -0.000005 -0.000002 -0.000003 0.006098 0.000000 -0.000008
|
| 289 |
+
-0.868300 20.279200 -4.214000 -98.218731 2.465170 -2.995237 -0.000000 0.000000 0.005542 6.870102 -1.185082 9.211485 5.583432 -1.540754 1.703759 -0.358184 -0.053501 -6.192144 0.678340 -0.658935 -0.472582 -15.949332 -2.845174 -4.788016 6.452575 10.110216 -5.011752 9.983507 -1.590991 -3.550406 -7.909454 0.004372 0.003092 -0.062329 0.037829 -1.339440 -0.019492 -0.145697 6.094807 6.693712 0.971230 3.512100 -14.483648 0.387733 4.058475 7.841659 -0.240599 -0.342279 -0.366837 -2.288117 -0.259167 -2.790333 2.496635 0.399179 -0.004494 0.005577 -0.102051 -2.688988 3.716515 1.612987 12.689238 -4.106491 4.150498 -24.609073 -0.421799 -1.233424 6.573251 -3.654380 -6.102341 4.259198 6.948053 9.235268 0.296418 0.327958 -6.297415 -11.125141 2.397620 10.528046 8.364373 -4.116803 7.848004 -19.734918 -8.280291 6.842995 30.965773 2.097588 1.922573 -8.731162 -3.296345 -6.392071 13.135544 6.974922 -2.166234 0.028002 0.738033 -0.755190 -0.000003 0.000001 -0.000001 17.039015 -5.572637 9.333232 -1.154089 0.055925 0.091488 -0.723091 -0.095274 -9.417438 -7.456744 2.177176 10.556455 0.028575 4.654918 -4.767401 -0.000003 -0.000002 -0.000003 0.006101 -0.000001 -0.000007
|
| 290 |
+
-0.856100 20.205900 -4.366500 -97.273428 2.443375 -3.042686 0.000001 0.000000 0.005542 5.706708 -1.178158 9.169379 4.464221 -1.308313 1.410322 -0.927546 0.079204 -6.504196 0.279990 -0.607683 -0.353405 -15.037713 -0.829801 -3.334134 6.163522 9.303641 -4.533276 8.826889 -2.138495 -1.271250 -7.197418 0.002899 0.002087 -0.038770 -0.067360 3.130183 0.053884 -0.185209 8.066613 6.390998 0.909402 3.480474 -13.441832 -0.355984 4.339681 9.425354 -0.294752 -0.407237 0.613706 -1.847068 -0.129655 -3.749548 2.318573 0.665414 -0.001877 0.002333 -0.042712 -1.359130 2.726999 1.962963 9.122353 -3.881206 3.957039 -18.417935 -0.366321 -0.907843 5.218662 -2.850002 -6.382621 4.047564 6.162974 9.145805 0.305542 0.336973 -6.480079 -14.197136 1.594972 3.464454 5.829838 -2.753798 3.944599 -18.988551 -9.777059 7.779785 29.171939 1.950083 1.844357 -6.834513 -3.700679 -6.074447 10.347781 8.262032 -2.277053 0.020246 0.557226 -0.570104 -0.000001 0.000003 0.000001 13.797965 -5.661924 8.978845 1.946059 -0.098444 -0.151696 -1.000551 -0.380358 -9.921247 -8.115159 2.084106 11.444284 0.035554 4.763800 -4.864093 -0.000004 -0.000002 -0.000003 0.006103 0.000000 -0.000007
|
| 291 |
+
-0.825600 20.089900 -4.427600 -96.844118 2.343379 -3.081626 0.000001 0.000000 0.005543 4.659696 -1.142476 8.905349 4.005930 -1.160823 1.249587 -0.736154 0.090875 -6.461099 0.063403 -0.559235 -0.252987 -14.364789 0.295882 -2.746299 5.531696 6.866466 -3.438130 6.866786 -2.415819 -1.815992 -6.044717 0.013188 0.008635 -0.021682 -0.065547 3.108765 0.074387 -0.181925 8.031573 6.264034 0.876789 3.453901 -12.749477 -0.792238 4.460138 9.835816 -0.309077 -0.423827 1.147617 -1.628005 -0.081255 -4.140159 2.266839 0.799146 -0.000490 0.000616 -0.011284 -0.743174 2.394434 2.097645 7.231433 -4.071700 3.892654 -15.220494 -0.323987 -0.742537 4.469879 -2.464612 -6.496538 4.018094 5.896015 9.113288 0.308747 0.340125 -6.544090 -15.242896 0.566521 -0.237614 4.249371 -2.255766 1.126566 -19.264147 -9.905702 8.137312 29.165300 1.949542 1.844057 -6.933001 -3.852061 -6.191366 8.784759 8.220681 -2.150097 0.018442 0.513243 -0.525088 -0.000002 0.000002 -0.000001 11.700303 -5.645806 8.944940 4.920068 -0.258718 -0.376864 -1.851201 -0.400024 -10.227689 -8.597764 1.914402 11.850180 0.041808 4.853907 -4.939991 -0.000004 -0.000003 -0.000002 0.006101 0.000000 -0.000008
|
| 292 |
+
-0.776800 19.967900 -4.470300 -96.565859 2.174227 -3.113571 -0.000000 0.000000 0.005543 3.759731 -1.088223 8.446321 3.715989 -1.015142 1.148811 -0.530404 0.105932 -6.186873 -0.195124 -0.484104 -0.175111 -13.697137 0.917265 -2.189803 4.908833 4.641982 -2.503984 4.693458 -2.663063 -2.532596 -4.738130 0.023634 0.014925 -0.004193 -0.061724 3.003442 0.094247 -0.177072 7.926614 6.171267 0.845765 3.433822 -11.974768 -1.098429 4.521233 9.918076 -0.311963 -0.427138 1.522746 -1.444870 -0.047589 -4.300834 2.191785 0.924344 -0.000027 0.000041 -0.000788 -0.273909 2.170728 2.214050 5.690517 -4.293070 3.804196 -12.449604 -0.279891 -0.601377 3.715460 -2.111145 -6.597512 4.086462 5.645998 9.084690 0.311957 0.343273 -6.608100 -15.838819 -0.412185 -2.842582 3.037111 -2.451375 -0.925752 -19.518498 -9.855257 8.692690 29.555052 1.981379 1.861445 -7.822673 -3.867573 -6.683833 7.517364 7.870850 -1.973184 0.023325 0.630530 -0.645135 0.000002 0.000003 -0.000000 9.915682 -5.479051 8.980140 7.766026 -0.422866 -0.584318 -2.763053 -0.400848 -10.529782 -9.046239 1.657946 12.181980 0.043900 4.923596 -5.034193 -0.000004 -0.000003 -0.000002 0.006108 0.000000 -0.000008
|
| 293 |
+
-0.703500 19.851900 -4.525200 -96.512233 1.989754 -3.155104 -0.000000 0.000000 0.005542 3.312500 -1.030390 7.994030 3.452461 -0.868796 1.060932 -0.877784 0.190485 -5.861994 -0.658899 -0.422565 -0.118901 -12.726100 0.977792 -1.205128 4.246391 1.510768 -1.253547 2.145751 -2.679547 -3.787698 -3.086863 0.012892 0.008834 0.031295 -0.059747 2.595383 0.111849 -0.172527 7.617330 6.072495 0.828463 3.436736 -10.606734 -1.300635 4.541121 9.704424 -0.304479 -0.418527 1.922248 -1.171057 -0.022112 -4.257500 1.928152 1.104707 0.000008 -0.000001 -0.000001 0.243681 1.892341 2.446160 3.561176 -4.466677 3.558975 -8.046692 -0.195931 -0.381918 2.256481 -1.543129 -6.802969 4.317818 5.128023 9.037018 0.320304 0.351435 -6.774366 -16.419281 -1.884456 -2.882083 2.175246 -3.225406 -2.107583 -19.332015 -10.731033 10.697849 30.009105 2.018616 1.881433 -9.361392 -3.440496 -8.894814 7.087280 7.618292 -1.838639 0.074694 1.627094 -1.666271 -0.000003 0.000002 -0.000001 8.338325 -5.222739 8.857021 10.525355 -0.591694 -0.777475 -3.583195 -0.364751 -10.929518 -9.478464 1.281341 12.756676 0.052338 5.064359 -5.174526 -0.000004 -0.000003 -0.000002 0.006103 0.000000 -0.000008
|
| 294 |
+
-0.642500 19.888500 -4.549700 -96.731526 1.826743 -3.175769 -0.000000 0.000000 0.005542 3.981769 -0.967972 7.501621 3.408084 -0.734936 0.991247 -1.754901 0.347164 -5.497977 -0.931598 -0.363022 -0.060777 -12.133571 0.851099 -0.757600 4.107755 0.364655 -0.716403 1.552050 -2.430174 -3.918983 -3.611449 0.012830 0.008945 0.033090 -0.051156 2.238770 0.109612 -0.166932 7.372591 6.024592 0.826312 3.427518 -9.752804 -1.512492 4.589971 9.327342 -0.291347 -0.403261 2.366354 -1.019902 -0.013080 -4.365636 1.850467 1.208153 0.000624 -0.000764 0.013952 0.698887 1.750123 2.515717 2.236976 -4.686099 3.539903 -5.902005 -0.148984 -0.277501 1.608286 -1.254033 -6.921535 4.483883 4.949757 9.006692 0.325222 0.356221 -6.872083 -16.885394 -2.681943 -1.676324 0.945971 -4.430773 -2.682040 -18.032719 -10.822413 12.086646 28.708709 1.912397 1.823410 -10.006575 -3.026661 -10.086808 6.751900 7.273555 -1.674717 0.118113 2.281078 -2.337766 -0.000003 0.000000 0.000000 8.055453 -4.838493 8.720900 10.901171 -0.615404 -0.803150 -3.017676 -0.375959 -11.136361 -9.890727 0.916787 13.062492 0.059945 5.204988 -5.330761 -0.000004 -0.000003 -0.000003 0.006104 0.000000 -0.000008
|
| 295 |
+
-0.581400 19.931200 -4.568000 -96.950862 1.663812 -3.197061 -0.000000 0.000000 0.005542 4.741746 -0.899817 7.009926 3.384859 -0.600671 0.921913 -2.655341 0.484907 -5.104160 -1.204355 -0.303756 -0.002371 -11.575601 0.691558 -0.443720 4.122905 -0.239305 -0.390031 1.532211 -2.203126 -3.756014 -4.429815 0.012729 0.009119 0.035647 -0.039381 1.749301 0.106957 -0.160205 7.078903 5.990198 0.811325 3.424745 -8.940489 -1.725810 4.642731 8.894388 -0.276395 -0.385626 2.812031 -0.888974 -0.000105 -4.477917 1.799867 1.296893 0.000624 -0.000763 0.013953 1.124867 1.656576 2.562941 1.054079 -4.911884 3.525727 -4.029870 -0.104832 -0.187842 1.012889 -1.022877 -7.024438 4.648407 4.827714 8.989453 0.330148 0.360997 -6.969799 -17.205562 -3.360772 -0.335969 -0.207721 -4.900130 -1.239383 -16.759177 -10.539621 12.975870 27.408298 1.807521 1.762997 -10.742268 -2.719526 -10.696132 7.211175 7.050491 -1.574102 0.142708 2.607865 -2.673817 -0.000006 0.000002 -0.000000 7.869433 -4.442930 8.565953 11.047323 -0.624670 -0.813093 -2.314871 -0.379844 -11.282098 -10.302599 0.550373 13.316744 0.069063 5.337045 -5.457091 -0.000004 -0.000003 -0.000003 0.006104 0.000000 -0.000008
|
| 296 |
+
-0.520400 19.980100 -4.580200 -97.171023 1.487000 -3.218990 -0.000000 0.000000 0.005542 5.466453 -0.833281 6.440459 3.361815 -0.471162 0.894329 -3.509606 0.593227 -4.604592 -1.449208 -0.243378 0.084394 -10.897921 0.540143 -0.191883 4.120917 -0.627962 -0.194532 1.478220 -2.060423 -3.556605 -4.919428 0.012668 0.009223 0.039621 -0.021931 1.022088 0.103649 -0.151699 6.708295 5.955786 0.796325 3.421950 -8.172207 -1.874000 4.575044 8.384610 -0.258962 -0.364718 3.285555 -0.755711 0.012242 -4.584686 1.714557 1.386255 0.000624 -0.000763 0.013953 1.370702 1.572785 2.646995 -0.102685 -5.123942 3.362532 -1.850430 -0.049773 -0.085346 0.116519 -0.797595 -7.141861 4.904764 4.679854 8.965971 0.335082 0.365765 -7.067511 -17.047754 -4.001610 0.980527 -1.291566 -5.229297 0.399883 -15.581950 -9.965657 13.428924 26.163448 1.708438 1.702953 -11.575867 -2.553160 -10.839409 8.301008 6.943104 -1.530204 0.146155 2.651750 -2.718973 -0.000007 0.000001 0.000002 7.682150 -4.032462 8.398867 11.172582 -0.632633 -0.821595 -1.609515 -0.381926 -11.407239 -10.711930 0.147184 13.568066 0.078486 5.469075 -5.583464 -0.000003 -0.000002 -0.000003 0.006103 0.000000 -0.000008
|
| 297 |
+
-0.459400 20.010600 -4.586300 -97.370274 1.309089 -3.242116 -0.000001 0.000000 0.005542 6.119513 -0.756322 5.893404 3.360158 -0.364552 0.885408 -4.261762 0.665227 -4.105674 -1.652171 -0.184319 0.150615 -9.974782 0.442505 -0.020520 4.071411 -0.980445 0.019258 1.224787 -1.841236 -3.219107 -5.409045 0.012608 0.009325 0.046257 0.005149 -0.110703 0.098525 -0.138172 6.120916 5.935258 0.795414 3.417994 -7.435602 -1.955752 4.507922 7.742150 -0.237257 -0.338148 3.773422 -0.626304 0.003303 -4.613414 1.584803 1.474440 0.000625 -0.000763 0.013953 1.582455 1.487246 2.739398 -1.298451 -5.289642 3.171866 0.328906 0.009143 0.014980 -0.805240 -0.523384 -7.265672 5.190213 4.483623 8.942299 0.342145 0.372562 -7.207104 -16.822903 -4.525100 2.152392 -2.196128 -5.651683 2.048582 -14.417151 -9.354037 13.834259 24.918586 1.610684 1.640772 -12.413590 -2.399742 -10.949177 9.390685 6.836565 -1.484272 0.147701 2.671253 -2.739044 -0.000001 0.000002 -0.000001 7.476542 -3.606857 8.177854 11.353529 -0.644165 -0.833848 -0.914895 -0.340336 -11.538991 -11.095832 -0.285466 13.871661 0.089372 5.619829 -5.730745 -0.000003 -0.000002 -0.000003 0.006103 0.000000 -0.000008
|
| 298 |
+
-0.380000 20.035000 -4.629000 -97.604510 1.133243 -3.265088 0.000001 0.000000 0.005543 6.621023 -0.709885 5.420049 3.344961 -0.290155 0.971313 -4.834346 0.699480 -3.651002 -1.771161 -0.150407 0.134499 -8.324004 0.340470 0.014903 4.330579 -1.117560 0.255166 2.187413 -1.341732 -2.261037 -6.248388 0.012499 0.009500 -1.468342 0.098751 -2.699370 -1.428382 -0.200579 4.672163 5.894200 0.793586 3.410069 -6.612059 -1.740454 4.372551 6.513048 -0.196570 -0.286648 4.421029 -0.388863 -0.000278 -4.388321 1.157317 1.620615 0.000008 -0.000002 -0.000001 1.795906 1.359501 2.964041 -2.633450 -5.185515 2.904428 2.368435 0.067702 0.106784 -1.677564 -0.016980 -7.483808 5.616852 3.940882 8.919682 0.353480 0.383402 -7.430453 -16.587323 -4.452111 2.846729 -2.073764 -6.260143 3.720055 -13.454253 -8.626590 14.013830 23.854495 1.528214 1.585955 -13.191906 -2.448849 -10.825741 10.421611 6.783924 -1.480026 0.134428 2.500579 -2.563446 -0.000004 0.000001 0.000001 7.137985 -3.132815 7.717616 11.757180 -0.670035 -0.861047 -0.366167 -0.191898 -11.672647 -11.393124 -0.872771 14.428766 0.100813 5.797856 -5.928922 -0.000004 -0.000002 -0.000003 0.006110 0.000000 -0.000007
|
| 299 |
+
-0.319000 20.053300 -4.647300 -97.741027 0.951900 -3.290599 -0.000000 0.000000 0.005542 6.888606 -0.640058 4.949527 3.329675 -0.217375 1.071135 -5.134867 0.712906 -3.199450 -1.813195 -0.117363 0.097678 -7.477625 0.274390 0.013372 4.560892 -1.003459 0.297122 3.037446 -1.054338 -1.722911 -6.682048 0.012443 0.009590 -3.578337 0.284504 -4.149155 -3.581706 -0.251566 3.825615 5.880323 0.779517 3.411239 -6.287509 -1.572528 4.294442 6.038164 -0.181147 -0.266520 4.601008 -0.270658 0.011389 -4.192668 0.914943 1.700735 0.000008 -0.000002 -0.000001 1.978614 1.302036 3.062484 -3.210873 -5.074561 2.801555 3.136690 0.090600 0.140818 -2.035681 0.247708 -7.585759 5.882936 3.653484 8.917514 0.359518 0.389141 -7.549111 -16.242448 -3.313289 2.689696 -2.321230 -5.433849 4.154586 -13.097015 -8.126625 14.162214 23.437191 1.496153 1.564042 -13.341759 -2.471268 -10.770940 10.734386 6.599506 -1.481338 0.130351 2.446925 -2.508270 -0.000004 0.000003 -0.000001 6.745368 -2.705003 7.463914 12.188616 -0.697897 -0.889919 0.175140 -0.099590 -11.725766 -11.763033 -1.338631 14.704397 0.108048 5.905587 -6.048917 -0.000003 -0.000001 -0.000002 0.006104 0.000000 -0.000008
|
| 300 |
+
-0.251800 20.065500 -4.665600 -97.848877 0.782970 -3.316942 0.000001 0.000000 0.005542 7.045355 -0.583348 4.491413 3.300683 -0.165737 1.168540 -5.317787 0.697461 -2.764196 -1.813242 -0.084233 0.060955 -6.785159 0.221290 0.008365 4.720877 -0.829876 0.301023 3.645674 -0.810222 -1.287595 -7.045755 0.012395 0.009665 -5.782529 0.537796 -5.289591 -5.825730 -0.267096 3.139183 5.866445 0.765447 3.412401 -6.157722 -1.433486 4.211111 5.800719 -0.173498 -0.256408 4.690745 -0.164710 0.001969 -4.002370 0.707339 1.780781 0.000009 -0.000001 -0.000001 2.118900 1.261058 3.135179 -3.513422 -4.961292 2.728117 3.437003 0.099677 0.154038 -2.214575 0.479411 -7.666942 6.091751 3.413719 8.918653 0.364500 0.393861 -7.646828 -15.912334 -2.187728 2.227742 -2.577995 -4.504376 4.027084 -12.877407 -7.668019 14.298654 23.179859 1.476462 1.550411 -13.433128 -2.492107 -10.732455 10.925973 6.414188 -1.485333 0.127423 2.407906 -2.468144 -0.000003 0.000003 -0.000001 6.309326 -2.280965 7.256871 12.675739 -0.729617 -0.922266 0.694803 -0.017791 -11.746729 -12.147320 -1.792672 14.921194 0.114195 5.994573 -6.148073 -0.000004 -0.000002 -0.000004 0.006103 0.000000 -0.000007
|
| 301 |
+
-0.178600 20.071600 -4.683900 -97.921866 0.612050 -3.330050 -0.000000 0.000000 0.005543 7.103857 -0.521329 4.033930 3.271629 -0.115744 1.279868 -5.409741 0.676589 -2.330093 -1.785288 -0.051083 0.024264 -6.078701 0.168135 0.003953 4.741039 -0.667932 0.284701 3.713356 -0.561886 -0.889152 -7.409476 0.012347 0.009739 -7.958999 0.862848 -6.299379 -8.069862 -0.237795 2.523456 5.852854 0.771563 3.407842 -6.132473 -1.299364 4.129759 5.681997 -0.169689 -0.251340 4.690669 -0.076248 0.009116 -3.791084 0.502839 1.840250 0.000624 -0.000763 0.013953 2.259246 1.220247 3.207972 -3.689897 -4.838293 2.671810 3.534774 0.102648 0.158331 -2.314028 0.680227 -7.744932 6.272511 3.173311 8.922198 0.369489 0.398570 -7.744538 -15.600943 -0.979216 1.433654 -2.380429 -3.856245 3.257074 -12.726235 -7.229530 14.419036 22.999033 1.462663 1.540782 -13.503744 -2.515881 -10.691461 11.075985 6.221226 -1.485358 0.124531 2.368888 -2.428028 -0.000003 0.000002 0.000002 5.848621 -1.878391 7.053409 13.183737 -0.762989 -0.955709 1.194250 0.069086 -11.766803 -12.529997 -2.248151 15.135004 0.122869 6.093707 -6.238180 -0.000003 -0.000002 -0.000003 0.006108 0.000000 -0.000008
|
| 302 |
+
-0.129800 20.071600 -4.702300 -97.966959 0.439517 -3.343616 -0.000000 0.000000 0.005543 7.093064 -0.464421 3.575791 3.214183 -0.052566 1.392775 -5.431631 0.652442 -1.896838 -1.743332 -0.016864 0.008522 -5.351276 0.107274 -0.019392 4.684126 -0.458545 0.238473 3.499562 -0.309712 -0.493145 -7.836143 0.012289 0.009827 -9.978316 1.204548 -7.137436 -10.159111 -0.185284 1.992826 5.839264 0.777686 3.403299 -6.156733 -1.161984 4.036654 5.577240 -0.166338 -0.246862 4.605285 0.025808 0.011207 -3.510592 0.310660 1.920741 0.001240 -0.001526 0.027909 2.344980 1.175700 3.293339 -3.786913 -4.735108 2.615086 3.520811 0.102222 0.157718 -2.362775 0.915259 -7.819680 6.425256 2.931878 8.913930 0.374488 0.403272 -7.842259 -15.295172 -0.155970 0.802594 -2.085240 -3.307295 2.487423 -12.665116 -6.819463 14.548023 22.880794 1.453656 1.534463 -13.548765 -2.557093 -10.644530 11.174455 6.040219 -1.508726 0.121666 2.329864 -2.387912 -0.000005 0.000002 0.000002 5.345514 -1.476089 6.827358 13.691687 -0.796654 -0.988855 1.683411 0.192443 -11.764028 -12.911101 -2.705045 15.345832 0.131692 6.192827 -6.328315 -0.000003 -0.000002 -0.000002 0.006106 0.000000 -0.000007
|
| 303 |
+
-0.068700 20.065500 -4.720600 -97.872462 0.258809 -3.372169 -0.000000 0.000000 0.005543 6.893382 -0.404598 3.117972 3.114659 0.009437 1.505729 -5.327944 0.608202 -1.409648 -1.701369 0.018068 0.006725 -4.428035 0.019982 -0.031972 4.543254 -0.165708 0.141143 2.941300 -0.040609 -0.066535 -8.668486 0.012175 0.009995 -11.293674 1.487889 -7.682605 -11.540164 -0.113883 1.643507 5.839072 0.764227 3.407106 -6.145227 -0.979380 3.839436 5.262976 -0.156332 -0.233390 4.464959 0.199943 0.030881 -3.004191 0.003007 2.075227 0.001857 -0.002287 0.041863 2.426311 1.132238 3.461196 -3.945175 -4.595102 2.454212 3.576682 0.103922 0.160170 -2.413296 1.302338 -7.966475 6.580991 2.558001 8.923819 0.383792 0.411979 -8.023737 -15.036730 -0.126185 0.606195 -1.448225 -3.281098 2.137737 -12.823442 -6.428016 14.678703 22.859935 1.452068 1.533347 -13.569872 -2.702446 -10.631382 11.245534 5.932474 -1.550092 0.114259 2.227415 -2.282617 -0.000006 0.000003 0.000001 4.679541 -1.031443 6.412687 14.234427 -0.832949 -1.023940 2.103649 0.408868 -11.747921 -13.200062 -3.278196 15.744127 0.142432 6.315338 -6.444603 -0.000003 -0.000003 -0.000002 0.006104 0.000000 -0.000007
|
| 304 |
+
-0.019900 20.053300 -4.714500 -97.587056 0.108790 -3.401045 0.000001 0.000000 0.005542 6.533798 -0.357529 2.707855 2.952583 0.051914 1.588623 -5.146903 0.567453 -1.028003 -1.659406 0.052999 0.004902 -4.148266 0.009307 -0.020494 4.487066 -0.045012 0.083920 2.717492 0.022577 0.031246 -9.214060 0.012099 0.010105 -10.862865 1.425708 -7.673882 -11.092301 -0.118269 1.669262 5.839072 0.764227 3.407107 -6.230847 -0.866340 3.746600 5.290910 -0.157219 -0.234590 4.310910 0.282796 0.036983 -2.772542 -0.147047 2.149842 0.002474 -0.003049 0.055818 2.486607 1.102426 3.532553 -3.900661 -4.491861 2.403599 3.437002 0.099677 0.154039 -2.403238 1.475915 -8.030472 6.669193 2.378404 8.932037 0.388094 0.415989 -8.107498 -14.872810 -0.418679 0.582645 -1.148188 -3.437310 1.937635 -13.151287 -6.231757 14.979199 22.839075 1.450481 1.532226 -13.480407 -2.672105 -10.807421 11.217921 5.778218 -1.584426 0.120947 2.320105 -2.377881 -0.000004 0.000001 0.000000 4.042062 -0.683727 6.257044 14.526655 -0.852628 -1.042690 2.405219 0.506064 -11.740019 -13.389388 -3.634928 15.884652 0.145833 6.371121 -6.517051 -0.000003 -0.000001 -0.000002 0.006099 0.000000 -0.000008
|
| 305 |
+
0.016700 20.035000 -4.720600 -97.215828 -0.011393 -3.408372 -0.000001 0.000000 0.005543 6.118835 -0.316172 2.452116 2.769822 0.081282 1.656153 -4.965554 0.532923 -0.772036 -1.645414 0.072875 -0.017148 -3.987390 -0.001280 -0.008956 4.431043 0.028979 0.030677 2.528631 0.039217 0.062025 -9.738644 0.012025 0.010210 -10.432769 1.361992 -7.580758 -10.642661 -0.161559 1.904152 5.839074 0.764226 3.407105 -6.265896 -0.778829 3.663523 5.255994 -0.156110 -0.233091 4.184734 0.367887 0.043160 -2.579916 -0.275178 2.224228 0.003092 -0.003810 0.069773 2.512794 1.070046 3.611667 -3.856078 -4.388662 2.352918 3.332244 0.096502 0.149433 -2.398938 1.622965 -8.087674 6.728764 2.226121 8.940844 0.392403 0.419990 -8.191253 -14.763942 -0.795150 0.610779 -0.850489 -3.533740 1.889733 -13.584336 -6.245761 15.375249 22.846016 1.451009 1.532599 -13.303773 -2.573147 -11.146425 11.131130 5.669997 -1.593184 0.136660 2.529840 -2.593544 -0.000004 0.000001 0.000000 3.412866 -0.446525 6.114023 14.714524 -0.865331 -1.054690 2.706776 0.603301 -11.732631 -13.549263 -3.898981 16.025393 0.148590 6.417538 -6.579056 -0.000004 -0.000003 -0.000002 0.006108 0.000000 -0.000008
|
| 306 |
+
0.004500 20.010600 -4.720600 -96.828423 0.140777 -3.387812 -0.000000 0.000000 0.005543 5.719730 -0.315340 2.529742 2.625058 0.005977 1.662203 -4.721708 0.460834 -0.804999 -1.645423 0.017712 -0.000302 -3.777560 -0.011838 0.002618 4.319122 0.103018 -0.022429 2.080991 0.035291 0.053057 -10.452087 0.011922 0.010351 -11.052698 0.947911 -5.445902 -11.094605 -0.670426 4.166332 5.839072 0.764226 3.407106 -5.997176 -0.666229 3.500516 4.571584 -0.134580 -0.203561 4.231215 0.487377 0.043292 -2.277475 -0.460044 2.371521 0.002783 -0.003430 0.062795 2.549665 1.014603 3.733032 -3.888955 -4.266933 2.272510 3.143674 0.090811 0.141127 -2.338178 1.860182 -8.207272 6.804506 1.982932 8.937714 0.399238 0.426316 -8.323877 -14.685894 -1.437146 0.835366 -0.277091 -3.488422 2.139306 -14.106256 -6.793600 15.739935 23.075545 1.468499 1.544861 -13.128392 -2.424297 -11.632164 10.973059 5.719565 -1.616505 0.159900 2.822391 -2.894633 -0.000003 0.000003 -0.000001 2.849344 -0.603076 5.804450 14.749303 -0.867688 -1.056908 3.048653 0.714155 -11.719272 -13.684495 -4.070958 16.250666 0.156161 6.493203 -6.643174 -0.000003 -0.000003 -0.000002 0.006104 0.000000 -0.000008
|
| 307 |
+
-0.007700 20.010600 -4.714500 -96.545804 0.299265 -3.367933 -0.000000 0.000000 0.005542 5.391432 -0.332706 2.605098 2.550134 -0.064911 1.647257 -4.477907 0.389703 -0.865613 -1.645415 -0.037452 0.016543 -3.721604 -0.002794 0.006643 4.249181 0.129303 -0.046439 1.836187 0.031609 0.043939 -10.494062 0.011916 0.010360 -5.386802 0.133180 -2.137094 -5.385059 -0.130422 2.117019 5.839067 0.764224 3.407107 -5.428496 -0.607389 3.421794 3.356361 -0.097226 -0.150506 4.650216 0.512739 0.034575 -2.183972 -0.506169 2.422670 0.002474 -0.003049 0.055817 2.567155 0.992062 3.773730 -3.921956 -4.190926 2.263896 2.913199 0.083891 0.130949 -2.272717 1.927191 -8.236259 6.875969 1.921479 8.930137 0.401399 0.428311 -8.365754 -14.632978 -1.699872 0.875725 -0.055440 -3.417926 2.319920 -14.506150 -7.037779 15.665558 23.235503 1.480715 1.553366 -13.114756 -2.437392 -11.649701 10.928785 5.768451 -1.626879 0.160307 2.827267 -2.899654 -0.000005 0.000001 0.000002 2.394568 -0.771542 5.625672 14.811931 -0.871933 -1.060896 3.370868 0.753711 -11.720258 -13.865545 -4.148094 16.340900 0.159127 6.530643 -6.684991 -0.000003 -0.000004 -0.000002 0.006098 0.000000 -0.000008
|
| 308 |
+
-0.019900 19.998400 -4.720600 -96.429165 0.376500 -3.347648 -0.000001 0.000000 0.005542 5.223660 -0.338686 2.646627 2.530132 -0.099447 1.636299 -4.338547 0.354054 -0.902907 -1.645410 -0.050703 0.031233 -3.700620 0.006248 0.010660 4.214220 0.137651 -0.059604 1.738271 0.022269 0.047461 -10.501050 0.011915 0.010361 0.491880 0.013509 -0.005204 0.499266 -0.016374 -0.000139 5.839076 0.764227 3.407105 -5.164410 -0.577889 3.398557 2.776684 -0.079806 -0.124921 4.860059 0.521175 0.027590 -2.160907 -0.515921 2.437171 0.002165 -0.002668 0.048840 2.555634 0.986336 3.785246 -4.232193 -4.176645 2.234427 3.248433 0.093970 0.145743 -2.415204 1.931866 -8.253603 6.918296 1.908295 8.922222 0.402120 0.428975 -8.379715 -14.610731 -1.781106 0.877305 0.013002 -3.377056 2.399130 -14.692075 -7.165353 15.615906 23.367652 1.490826 1.560364 -13.156319 -2.441915 -11.673979 10.918476 5.787962 -1.639950 0.159511 2.817516 -2.889614 -0.000004 0.000002 -0.000001 2.124900 -0.857122 5.534989 14.944131 -0.880908 -1.069301 3.571163 0.771104 -11.722274 -14.029581 -4.195829 16.368748 0.160988 6.554042 -6.711130 -0.000003 -0.000002 -0.000002 0.006110 0.000000 -0.000007
|
data/gradio_target_bvh/animo/malayan_tapir_male_standidle01.bvh
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|