Linzhan commited on
Commit
a84fca7
·
verified ·
1 Parent(s): 12e3f75

Initial release: prompts, metadata, T-pose renders, build pipeline (no commercial motion files)

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. .gitattributes +9 -59
  2. .gitignore +10 -0
  3. README.md +242 -0
  4. animation.csv +0 -0
  5. animation_bones.json +3861 -0
  6. animation_frames.json +1099 -0
  7. animation_prompts.json +0 -0
  8. clips.csv +0 -0
  9. excluded.csv +2 -0
  10. scripts/README.md +75 -0
  11. scripts/pipeline/build_animation.py +156 -0
  12. scripts/pipeline/build_dataset.py +79 -0
  13. scripts/pipeline/build_metadata.py +234 -0
  14. scripts/pipeline/build_prompts.py +192 -0
  15. scripts/pipeline/normalize.py +280 -0
  16. scripts/probes/bvh_probe.py +76 -0
  17. scripts/probes/fbx_align_material.py +117 -0
  18. scripts/probes/fbx_anomaly.py +102 -0
  19. scripts/probes/fbx_check.py +87 -0
  20. scripts/probes/fbx_curves.py +60 -0
  21. scripts/probes/fbx_embed_texture.py +170 -0
  22. scripts/probes/fbx_fingerprint.py +70 -0
  23. scripts/probes/fbx_graft_mesh.py +507 -0
  24. scripts/probes/fbx_motion.py +89 -0
  25. scripts/probes/fbx_probe.py +158 -0
  26. scripts/probes/fbx_rig.py +74 -0
  27. scripts/probes/fbx_stacks.py +86 -0
  28. scripts/probes/fbx_strip_variant.py +276 -0
  29. scripts/probes/fbx_takes.py +87 -0
  30. species.csv +75 -0
  31. species_tpose/Alligator.png +3 -0
  32. species_tpose/Anaconda.png +3 -0
  33. species_tpose/Ant.png +3 -0
  34. species_tpose/Bat.png +3 -0
  35. species_tpose/Bear.png +3 -0
  36. species_tpose/Bird.png +3 -0
  37. species_tpose/BrownBear.png +3 -0
  38. species_tpose/Buffalo.png +3 -0
  39. species_tpose/Buzzard.png +3 -0
  40. species_tpose/Camel.png +3 -0
  41. species_tpose/Cat.png +3 -0
  42. species_tpose/Centipede.png +3 -0
  43. species_tpose/Chicken.png +3 -0
  44. species_tpose/Comodoa.png +3 -0
  45. species_tpose/Coyote.png +3 -0
  46. species_tpose/Crab.png +3 -0
  47. species_tpose/Cricket.png +3 -0
  48. species_tpose/Crocodile.png +3 -0
  49. species_tpose/Crow.png +3 -0
  50. species_tpose/Deer.png +3 -0
.gitattributes CHANGED
@@ -1,60 +1,10 @@
1
- *.7z filter=lfs diff=lfs merge=lfs -text
2
- *.arrow filter=lfs diff=lfs merge=lfs -text
3
- *.avro filter=lfs diff=lfs merge=lfs -text
4
- *.bin filter=lfs diff=lfs merge=lfs -text
5
- *.bz2 filter=lfs diff=lfs merge=lfs -text
6
- *.ckpt filter=lfs diff=lfs merge=lfs -text
7
- *.ftz filter=lfs diff=lfs merge=lfs -text
8
- *.gz filter=lfs diff=lfs merge=lfs -text
9
- *.h5 filter=lfs diff=lfs merge=lfs -text
10
- *.joblib filter=lfs diff=lfs merge=lfs -text
11
- *.lfs.* filter=lfs diff=lfs merge=lfs -text
12
- *.lz4 filter=lfs diff=lfs merge=lfs -text
13
- *.mds filter=lfs diff=lfs merge=lfs -text
14
- *.mlmodel filter=lfs diff=lfs merge=lfs -text
15
- *.model filter=lfs diff=lfs merge=lfs -text
16
- *.msgpack filter=lfs diff=lfs merge=lfs -text
17
- *.npy filter=lfs diff=lfs merge=lfs -text
18
- *.npz filter=lfs diff=lfs merge=lfs -text
19
- *.onnx filter=lfs diff=lfs merge=lfs -text
20
- *.ot filter=lfs diff=lfs merge=lfs -text
21
- *.parquet filter=lfs diff=lfs merge=lfs -text
22
- *.pb filter=lfs diff=lfs merge=lfs -text
23
- *.pickle filter=lfs diff=lfs merge=lfs -text
24
- *.pkl filter=lfs diff=lfs merge=lfs -text
25
- *.pt filter=lfs diff=lfs merge=lfs -text
26
- *.pth filter=lfs diff=lfs merge=lfs -text
27
- *.rar filter=lfs diff=lfs merge=lfs -text
28
- *.safetensors filter=lfs diff=lfs merge=lfs -text
29
- saved_model/**/* filter=lfs diff=lfs merge=lfs -text
30
- *.tar.* filter=lfs diff=lfs merge=lfs -text
31
- *.tar filter=lfs diff=lfs merge=lfs -text
32
- *.tflite filter=lfs diff=lfs merge=lfs -text
33
- *.tgz filter=lfs diff=lfs merge=lfs -text
34
- *.wasm filter=lfs diff=lfs merge=lfs -text
35
- *.xz filter=lfs diff=lfs merge=lfs -text
36
- *.zip filter=lfs diff=lfs merge=lfs -text
37
- *.zst filter=lfs diff=lfs merge=lfs -text
38
- *tfevents* filter=lfs diff=lfs merge=lfs -text
39
- # Audio files - uncompressed
40
- *.pcm filter=lfs diff=lfs merge=lfs -text
41
- *.sam filter=lfs diff=lfs merge=lfs -text
42
- *.raw filter=lfs diff=lfs merge=lfs -text
43
- # Audio files - compressed
44
- *.aac filter=lfs diff=lfs merge=lfs -text
45
- *.flac filter=lfs diff=lfs merge=lfs -text
46
- *.mp3 filter=lfs diff=lfs merge=lfs -text
47
- *.ogg filter=lfs diff=lfs merge=lfs -text
48
- *.wav filter=lfs diff=lfs merge=lfs -text
49
- # Image files - uncompressed
50
- *.bmp filter=lfs diff=lfs merge=lfs -text
51
- *.gif filter=lfs diff=lfs merge=lfs -text
52
- *.png filter=lfs diff=lfs merge=lfs -text
53
- *.tiff filter=lfs diff=lfs merge=lfs -text
54
- # Image files - compressed
55
- *.jpg filter=lfs diff=lfs merge=lfs -text
56
  *.jpeg filter=lfs diff=lfs merge=lfs -text
57
- *.webp filter=lfs diff=lfs merge=lfs -text
58
- # Video files - compressed
59
- *.mp4 filter=lfs diff=lfs merge=lfs -text
60
- *.webm filter=lfs diff=lfs merge=lfs -text
 
1
+ *.fbx filter=lfs diff=lfs merge=lfs -text
2
+ *.FBX filter=lfs diff=lfs merge=lfs -text
3
+ *.bvh filter=lfs diff=lfs merge=lfs -text
4
+ *.BVH filter=lfs diff=lfs merge=lfs -text
5
+ *.jpg filter=lfs diff=lfs merge=lfs -text
6
+ *.JPG filter=lfs diff=lfs merge=lfs -text
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  *.jpeg filter=lfs diff=lfs merge=lfs -text
8
+ *.png filter=lfs diff=lfs merge=lfs -text
9
+ *.tga filter=lfs diff=lfs merge=lfs -text
10
+ *.TGA filter=lfs diff=lfs merge=lfs -text
 
.gitignore ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ .cache/
2
+ __pycache__/
3
+ *.pyc
4
+ .DS_Store
5
+
6
+ # Commercial Truebones ZOO assets — kept locally, never committed or uploaded.
7
+ # Purchase from https://truebones.com and rebuild animation/ with scripts/pipeline/.
8
+ Truebone_Z-OO/
9
+ animation/
10
+ animation_glb/
README.md ADDED
@@ -0,0 +1,242 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: other
3
+ pretty_name: Truebones ZOO Annotations
4
+ language:
5
+ - en
6
+ size_categories:
7
+ - 1K<n<10K
8
+ tags:
9
+ - 3d
10
+ - animation
11
+ - motion
12
+ - animal
13
+ - fbx
14
+ - bvh
15
+ - skeletal-animation
16
+ - mocap
17
+ configs:
18
+ - config_name: animation
19
+ default: true
20
+ data_files: animation.csv
21
+ - config_name: species
22
+ data_files: species.csv
23
+ - config_name: clips
24
+ data_files: clips.csv
25
+ ---
26
+
27
+ # Truebones ZOO Annotations
28
+
29
+ Text prompts, per-clip metadata, rest-pose renders and the exact build pipeline for
30
+ **Truebones ZOO** — **1,097 animal motion clips across 74 skeletons**: mammals, birds,
31
+ reptiles, insects, marine and prehistoric creatures. 1.02 hours, 111,158 frames, uniformly
32
+ 30 fps. Rigs range from 9 to 143 joints; clips from 0.3 to 18.5 seconds.
33
+
34
+ **The motion files themselves are not in this repository.** Truebones ZOO is a commercial
35
+ library by [Truebones Motions Animation Studios](https://truebones.com) and may not be
36
+ redistributed. What ships here is everything around the motions — one text prompt per clip,
37
+ per-clip and per-species metadata, one rest-pose render per skeleton, and the dependency-free
38
+ pipeline that rebuilds the exact per-clip dataset from your own purchased copy: buy the library
39
+ at <https://truebones.gumroad.com/l/skZMC>, unpack it here, run four scripts, and `animation/`
40
+ materialises byte-for-byte (sixteen clips excepted; see below).
41
+
42
+ ## Structure
43
+
44
+ ```
45
+ animation.csv one row per clip (1,097)
46
+ animation_prompts.json one text prompt per clip (1,097)
47
+ animation_frames.json clip -> frame count
48
+ animation_bones.json species -> its joint names
49
+ species.csv one row per species (74)
50
+ species_tpose/<Species>.png one rest-pose render grid per species (74)
51
+ clips.csv one row per source file (2,447), mapped onto animation/
52
+ excluded.csv source files no importer reads (1)
53
+ scripts/pipeline|probes the build pipeline and the format readers
54
+
55
+ animation/<Species>-<Action>.fbx not included — rebuilt from your purchased copy (see below)
56
+ animation_glb/ not included — the same clips as GLB, converted locally
57
+ Truebone_Z-OO/<Group>/… not included — the original commercial download
58
+ ```
59
+
60
+ ## Rebuilding `animation/`
61
+
62
+ Purchase Truebones ZOO from <https://truebones.gumroad.com/l/skZMC> and unpack it next to
63
+ these files as `Truebone_Z-OO/`, one folder per animal group, layout and names as shipped.
64
+ Then run the pipeline — pure Python 3, no dependencies:
65
+
66
+ ```bash
67
+ cd scripts
68
+ python3 pipeline/build_dataset.py # 1. index the download -> ../clips.csv
69
+ python3 pipeline/normalize.py # 2. name every clip -> ../clips.csv
70
+ python3 pipeline/build_animation.py # 3. one file per motion -> ../animation/
71
+ python3 pipeline/build_metadata.py # 4. measure animation/ -> ../animation.csv, ../species.csv, sidecars
72
+ ```
73
+
74
+ The result is one flat folder, one file per motion, named `<Species>-<Action>.fbx`:
75
+
76
+ ```
77
+ Cat-Walk.fbx Trex-Big_Roar_Step.fbx SabreToothTiger-Tired_Yawn.fbx
78
+ ```
79
+
80
+ The species is a single alphanumeric token and the action never contains a hyphen, so
81
+ `name.split("-", 1)` always recovers both parts. Actions are underscore-separated capitalised
82
+ words with a trailing `_2` / `_3` for variants, matching the Mixamo convention.
83
+
84
+ Guarantees, each checked rather than assumed: exactly one animation per file, no clip repeats
85
+ another, every source motion is covered (one exception, `Lynx/Idle4`, ships only inside a
86
+ combined file), and 30 fps throughout, measured from key times.
87
+
88
+ Selecting and renaming only — nothing is ever re-exported. Every clip is a hardlink straight
89
+ into `Truebone_Z-OO/`, byte for byte, so no clip carries a rig that a round trip through an
90
+ editor has altered. Steps 1 and 4 regenerate `clips.csv`, `animation.csv`, `species.csv` and
91
+ the two JSON sidecars; apart from the sixteen repaired clips below they should match the files
92
+ shipped here, which is also how to verify a rebuild. Step 5, `build_prompts.py`, re-downloads
93
+ the captions from their source; its result already ships here as `animation_prompts.json`.
94
+ `scripts/README.md` documents each step.
95
+
96
+ **Sixteen of the 1,097 clips received a one-off binary repair** that the pipeline does not
97
+ re-apply: the four `Cat` clips had their missing texture embedded
98
+ (`probes/fbx_embed_texture.py`), and the twelve `KingCobra` clips had a duplicated co-located
99
+ mesh variant removed (`probes/fbx_strip_variant.py`); one of them, `KingCobra-Walk`, whose
100
+ source shipped no mesh at all, additionally received a sibling's mesh
101
+ (`probes/fbx_graft_mesh.py`) and had its material settings aligned with its siblings'
102
+ (`probes/fbx_align_material.py`). These edits touch textures and meshes only, never the
103
+ motion. All four probes are included and documented in `scripts/README.md`, each gated on a
104
+ byte-identical no-edit round trip and writing through a temporary file so the source keeps its
105
+ own bytes.
106
+
107
+ The GLB mirror, `animation_glb/`, is a one-to-one conversion of `animation/` — mesh, armature,
108
+ and the clip's single animation take, named after the action — for toolchains that read glTF
109
+ rather than FBX. Regenerate it from your rebuilt clips with Blender's FBX importer and glTF
110
+ exporter.
111
+
112
+ ## animation.csv
113
+
114
+ | column | meaning |
115
+ |---|---|
116
+ | `file` | `animation/Cat-Walk.fbx` |
117
+ | `species`, `action` | the two halves of the filename |
118
+ | `take` | the animation stack's own name, as the source spelled it |
119
+ | `num_takes`, `num_actions` | animation stacks in the file, and how many carry curves; `num_actions` is 1 everywhere |
120
+ | `num_joints` | nodes in the FBX hierarchy (see *Data notes*) |
121
+ | `root_joint` | the topmost joint carrying animation |
122
+ | `frames`, `fps`, `duration_sec` | timeline, read off the key times |
123
+ | `fbx_version`, `bytes` | file version and size |
124
+ | `num_source_files` | how many files in `Truebone_Z-OO/` this clip accounts for |
125
+
126
+ ## species.csv
127
+
128
+ Per species: `num_clips`, `num_joints`, `rig_variants`, `root_joint`, `total_frames`,
129
+ `total_duration_sec`, `mean_duration_sec`, `num_textures`, `source_fbx`, `source_bvh`,
130
+ `has_combined_all`, `has_tpose`.
131
+
132
+ `rig_variants` is how many distinct joint-name sets the species' clips use — 1 for 72 of them,
133
+ 2 for `KingCobra` and 4 for `Monkey`.
134
+ Counts run from 70 clips (`Trex`) to 3 (`Chicken`, `Parrot2`), median 12.
135
+
136
+ ## species_tpose/
137
+
138
+ One 1024×1024 PNG per species: a 2×2 grid of its rest pose — front and back on the top row,
139
+ left and right below — rendered (EEVEE) from the species' first clip in `animation/`. A visual
140
+ index of the 74 rigs.
141
+
142
+ ## clips.csv
143
+
144
+ One row per file in `Truebone_Z-OO/`, mapping every source path onto the dataset:
145
+ `status` says what the file is (`linked` into `animation/`, a BVH `mirror` of a linked clip, a
146
+ `duplicate`, a group's `combined` ALL file, a `static` pose, or an orphan), and
147
+ `animation_file` points at the clip that carries its motion. Use it to trace any clip back to
148
+ the exact source files it came from.
149
+
150
+ ## animation_frames.json and animation_bones.json
151
+
152
+ Two flat sidecars, sorted by key:
153
+
154
+ ```json
155
+ // animation_frames.json — 1,097 keys
156
+ "Alligator-Big_Mouth.fbx": 136
157
+
158
+ // animation_bones.json — 74 keys, one per species
159
+ "Pigeon": ["Hips", "LeftArm", "LeftForeArm", "LeftLeg",
160
+ "RightArm", "RightForeArm", "RightLeg", "Spine", "Tail01"]
161
+ ```
162
+
163
+ The skeleton is per species, so the bone list is keyed by species: the joint set its clips most
164
+ often carry, taken from actual files. For 72 of the 74 every clip matches it exactly; the
165
+ exceptions are `KingCobra` and `Monkey`, whose variants `species.csv` records as `rig_variants`.
166
+
167
+ ## animation_prompts.json
168
+
169
+ One text prompt per clip — a flat map from filename to a small record, absent fields left out:
170
+
171
+ ```json
172
+ "Trex-Death.fbx": {
173
+ "object_name": "Tyrannosaurus Rex",
174
+ "prompt": "A running tyrannosaurus rex loses balance and falls to the right.",
175
+ "prompt_source": "t2m4lvo"
176
+ }
177
+ ```
178
+
179
+ | field | meaning |
180
+ |---|---|
181
+ | `prompt` | what the clip shows, in one sentence. Median 12 words |
182
+ | `object_name` | the species as the annotator named it — `Tyrannosaurus Rex`, `Great White Shark` |
183
+ | `prompt_source` | `t2m4lvo` on 1,088 clips, `inferred` on 9 quiet clips captioned here instead |
184
+ | `alt_prompt` | on 20 clips only: the source shipped that motion twice, so it was described twice |
185
+
186
+ The captions come from [T2M4LVO](https://huggingface.co/datasets/1Konny/t2m4lvo-truebones-zoo),
187
+ the annotation set released with *How to Move Your Dragon* (ICML 2025). **T2M4LVO is
188
+ CC-BY-NC-4.0 — non-commercial use only, narrower than the rest of this repository.** Three
189
+ captions are shared by two clips each; retrieval metrics should group ground truth by caption
190
+ text so those pairs are not scored as misses.
191
+
192
+ ## Usage
193
+
194
+ ```python
195
+ import csv, collections
196
+
197
+ clips = list(csv.DictReader(open("animation.csv")))
198
+ species = list(csv.DictReader(open("species.csv")))
199
+
200
+ # clips of at least a second, grouped by species
201
+ by_species = collections.defaultdict(list)
202
+ for c in clips:
203
+ if float(c["duration_sec"]) >= 1.0:
204
+ by_species[c["species"]].append(c)
205
+
206
+ # every walk cycle in the library
207
+ walks = [c for c in clips if c["action"].startswith("Walk")]
208
+ ```
209
+
210
+ `scripts/probes/` bundles dependency-free FBX and BVH readers
211
+ (`fbx_probe.probe(path)`, `bvh_probe.probe(path)`) that return joints, keyframes, fps,
212
+ duration, root and joint names.
213
+
214
+ ## Data notes
215
+
216
+ - **`num_joints` counts every node in the FBX hierarchy**, not only bones — the exporter types
217
+ mesh and null containers as `LimbNode` too, so an FBX typically reports two to four more
218
+ "joints" than the matching BVH, and for a handful of rigs `root_joint` is a container
219
+ (`Null`, `EAL1_2`, `N_ALL`) rather than `Hips`.
220
+ - **Five species do not share one skeleton across their clips** — `Elephant`, `Fox`, `Monkey`,
221
+ `KingCobra` and `PolarBearB` vary in rest offsets along authoring-batch lines, inherited from
222
+ the source. Joint *names* agree everywhere; `KingCobra` additionally ships 19- and 20-joint
223
+ variants. A clip's rest pose is its own first frame, so these are also the five species whose
224
+ clips carry more than one rest pose.
225
+ - **Source spelling is preserved verbatim**, typos included (`Angery_Swat`, `Sqwak`, `Begg`),
226
+ so the mapping back to `Truebone_Z-OO/` stays exact. Joint naming is not standardised across
227
+ species.
228
+ - **Materials are 2014 Phong with no `ReflectionFactor` set**; Blender's importer defaults that
229
+ to `Metallic` 1.0, so clips import fully metallic — set `Metallic` to 0 after import for a
230
+ dielectric look.
231
+ - `excluded.csv` lists the one source file no importer reads
232
+ (`Truebone_Z-OO/Crocodile/CrocodileALL.fbx`, not a binary FBX).
233
+
234
+ ## Source
235
+
236
+ Truebones Z-OO by Truebones Motions Animation Studios, obtained from
237
+ <https://truebones.gumroad.com/l/skZMC>. `Terms of Use.txt` ships with the original download and
238
+ governs what may be done with these assets: they may not be resold or redistributed — which is
239
+ why no FBX, GLB or BVH is included here, and why `animation/` is rebuilt from your own
240
+ purchased copy. The metadata, sidecars and scripts describe and rebuild the library without
241
+ containing it; the rest-pose renders are included as a visual index of the rigs. The captions
242
+ carry their own license (CC-BY-NC-4.0; see `animation_prompts.json` above).
animation.csv ADDED
The diff for this file is too large to render. See raw diff
 
animation_bones.json ADDED
@@ -0,0 +1,3861 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Alligator": [
3
+ "EAL1",
4
+ "EAL1_2",
5
+ "L_ashi",
6
+ "L_hiji",
7
+ "L_hiza",
8
+ "L_kata",
9
+ "L_momo",
10
+ "L_te",
11
+ "N_ALL",
12
+ "R_ashi",
13
+ "R_hiji",
14
+ "R_hiza",
15
+ "R_kata",
16
+ "R_momo",
17
+ "R_te",
18
+ "Skin",
19
+ "ago",
20
+ "atama",
21
+ "hara",
22
+ "koshi",
23
+ "kubi",
24
+ "locator2",
25
+ "mune",
26
+ "sippo01",
27
+ "sippo02",
28
+ "sippo03",
29
+ "sippo04",
30
+ "sippo05",
31
+ "sippo06"
32
+ ],
33
+ "Anaconda": [
34
+ "AN_NPC_MOB_Anaconda_A01_SK_IRS",
35
+ "BN_Head",
36
+ "BN_Jaw",
37
+ "BN_Neck",
38
+ "BN_Spline_01",
39
+ "BN_Spline_02",
40
+ "BN_Spline_03",
41
+ "BN_Spline_04",
42
+ "BN_Spline_05",
43
+ "BN_Spline_06",
44
+ "BN_Tail_01",
45
+ "BN_Tail_02",
46
+ "BN_Tail_03",
47
+ "BN_Tail_04",
48
+ "BN_Tail_05",
49
+ "BN_Tail_06",
50
+ "BN_Tail_07",
51
+ "BN_Tail_08",
52
+ "BN_Tail_09",
53
+ "BN_Tail_10",
54
+ "BN_Tail_11",
55
+ "BN_Tail_12",
56
+ "BN_Tail_13",
57
+ "BN_Tone_01",
58
+ "BN_Tone_02",
59
+ "BN_Tone_03",
60
+ "BN_Tone_04",
61
+ "Hips",
62
+ "Null",
63
+ "Skin",
64
+ "U3DMesh 1"
65
+ ],
66
+ "Ant": [
67
+ "BN_Clip_L_01",
68
+ "BN_Clip_L_02",
69
+ "BN_Clip_R_01",
70
+ "BN_Clip_R_02",
71
+ "BN_Mouth_L_01",
72
+ "BN_Mouth_R_01",
73
+ "BN_Tai01",
74
+ "BN_Tai02",
75
+ "BN_Tai03",
76
+ "Bip01_Head",
77
+ "Bip01_HeadNub",
78
+ "Bip01_L_Calf",
79
+ "Bip01_L_Clavicle",
80
+ "Bip01_L_Finger0",
81
+ "Bip01_L_Finger01",
82
+ "Bip01_L_Finger0Nub",
83
+ "Bip01_L_Foot",
84
+ "Bip01_L_Forearm",
85
+ "Bip01_L_Hand",
86
+ "Bip01_L_Thigh",
87
+ "Bip01_L_Toe0",
88
+ "Bip01_L_Toe01",
89
+ "Bip01_L_Toe0Nub",
90
+ "Bip01_L_UpperArm",
91
+ "Bip01_Neck",
92
+ "Bip01_Pelvis",
93
+ "Bip01_R_Calf",
94
+ "Bip01_R_Clavicle",
95
+ "Bip01_R_Finger0",
96
+ "Bip01_R_Finger01",
97
+ "Bip01_R_Finger0Nub",
98
+ "Bip01_R_Foot",
99
+ "Bip01_R_Forearm",
100
+ "Bip01_R_Hand",
101
+ "Bip01_R_Thigh",
102
+ "Bip01_R_Toe0",
103
+ "Bip01_R_Toe01",
104
+ "Bip01_R_Toe0Nub",
105
+ "Bip01_R_UpperArm",
106
+ "Bip01_Spine",
107
+ "Hips"
108
+ ],
109
+ "Bat": [
110
+ "BN_L_Clavicle_01",
111
+ "BN_L_Ear_01",
112
+ "BN_L_Finger_01",
113
+ "BN_L_Finger_03",
114
+ "BN_L_Finger_05",
115
+ "BN_L_Finger_07",
116
+ "BN_L_Hand_01",
117
+ "BN_L_UpperArm_01",
118
+ "BN_L__Forearm_01",
119
+ "BN_Mouth_01",
120
+ "BN_R_Clavicle_01",
121
+ "BN_R_Ear_01",
122
+ "BN_R_Finger_01",
123
+ "BN_R_Finger_03",
124
+ "BN_R_Finger_05",
125
+ "BN_R_Finger_07",
126
+ "BN_R_Hand_01",
127
+ "BN_R_UpperArm_01",
128
+ "BN_R__Forearm_01",
129
+ "BN_Tail_01",
130
+ "BN_Tail_02",
131
+ "BN_Tail_03",
132
+ "BN_Tail_04",
133
+ "Bip01_Head",
134
+ "Bip01_HeadNub",
135
+ "Bip01_L_Calf",
136
+ "Bip01_L_Foot",
137
+ "Bip01_L_Thigh",
138
+ "Bip01_L_Toe0",
139
+ "Bip01_L_Toe01",
140
+ "Bip01_L_Toe0Nub",
141
+ "Bip01_L_Toe1",
142
+ "Bip01_L_Toe11",
143
+ "Bip01_L_Toe1Nub",
144
+ "Bip01_Neck",
145
+ "Bip01_Pelvis",
146
+ "Bip01_R_Calf",
147
+ "Bip01_R_Foot",
148
+ "Bip01_R_Thigh",
149
+ "Bip01_R_Toe0",
150
+ "Bip01_R_Toe01",
151
+ "Bip01_R_Toe0Nub",
152
+ "Bip01_R_Toe1",
153
+ "Bip01_R_Toe11",
154
+ "Bip01_R_Toe1Nub",
155
+ "Bip01_Spine",
156
+ "Bip01_Spine1",
157
+ "Hips"
158
+ ],
159
+ "Bear": [
160
+ "Hips",
161
+ "NPC_Head",
162
+ "NPC_Jaw",
163
+ "NPC_LArm1",
164
+ "NPC_LArm1_UpperArmTwist1",
165
+ "NPC_LArm1_UpperArmTwist2",
166
+ "NPC_LArm2",
167
+ "NPC_LArm2_ForearmTwist1",
168
+ "NPC_LArm2_ForearmTwist2",
169
+ "NPC_LArmBall1",
170
+ "NPC_LArmCollarbone",
171
+ "NPC_LArmJiggle",
172
+ "NPC_LArmPalm",
173
+ "NPC_LIndex01",
174
+ "NPC_LIndex02",
175
+ "NPC_LLeg1",
176
+ "NPC_LLeg2",
177
+ "NPC_LLegAnkle",
178
+ "NPC_LLegBall1",
179
+ "NPC_LMiddle01",
180
+ "NPC_LMiddle02",
181
+ "NPC_LPinky01",
182
+ "NPC_LPinky02",
183
+ "NPC_LRing01",
184
+ "NPC_LRing02",
185
+ "NPC_LThighJiggle",
186
+ "NPC_LThumb01",
187
+ "NPC_LThumb02",
188
+ "NPC_L_Eyebrow",
189
+ "NPC_L_Toe",
190
+ "NPC_LowerFrontLip",
191
+ "NPC_LowerLeftLip",
192
+ "NPC_LowerRightLip",
193
+ "NPC_Neck1",
194
+ "NPC_Neck2",
195
+ "NPC_NeckJiggle",
196
+ "NPC_Nose",
197
+ "NPC_Pelvis",
198
+ "NPC_RArm1",
199
+ "NPC_RArm1_UpperArmTwist1",
200
+ "NPC_RArm1_UpperArmTwist2",
201
+ "NPC_RArm2",
202
+ "NPC_RArm2_ForearmTwist1",
203
+ "NPC_RArm2_ForearmTwist2",
204
+ "NPC_RArmBall1",
205
+ "NPC_RArmCollarbone",
206
+ "NPC_RArmJiggle",
207
+ "NPC_RArmPalm",
208
+ "NPC_RIndex01",
209
+ "NPC_RIndex02",
210
+ "NPC_RLeg1",
211
+ "NPC_RLeg2",
212
+ "NPC_RLegAnkle",
213
+ "NPC_RLegBall1",
214
+ "NPC_RMiddle01",
215
+ "NPC_RMiddle02",
216
+ "NPC_RPinky01",
217
+ "NPC_RPinky02",
218
+ "NPC_RRing01",
219
+ "NPC_RRing02",
220
+ "NPC_RThighJiggle",
221
+ "NPC_RThumb01",
222
+ "NPC_RThumb02",
223
+ "NPC_R_Eyebrow",
224
+ "NPC_R_Toe",
225
+ "NPC_Ribcage",
226
+ "NPC_Spine1",
227
+ "NPC_Spine1BackJiggle",
228
+ "NPC_Spine1Jiggle",
229
+ "NPC_Spine2",
230
+ "NPC_Spine3",
231
+ "NPC_Spine4",
232
+ "NPC_Spine4Jiggle",
233
+ "NPC_UpperLeftLip",
234
+ "NPC_UpperLip",
235
+ "NPC_UpperRightLip"
236
+ ],
237
+ "Bird": [
238
+ "BN_Finger_L_01",
239
+ "BN_Finger_L_02",
240
+ "BN_Finger_R_01",
241
+ "BN_Finger_R_02",
242
+ "BN_Forearm_L_01",
243
+ "BN_Forearm_R_01",
244
+ "BN_Mouth_01",
245
+ "BN_Tail_01",
246
+ "BN_Tail_02",
247
+ "BN_Tail_03",
248
+ "BN_UpperArm_L_01",
249
+ "BN_UpperArm_R_01",
250
+ "BN_hand_L_01",
251
+ "BN_hand_R_01",
252
+ "Bip01_Head",
253
+ "Bip01_HeadNub",
254
+ "Bip01_L_Calf",
255
+ "Bip01_L_Foot",
256
+ "Bip01_L_HorseLink",
257
+ "Bip01_L_Thigh",
258
+ "Bip01_L_Toe0",
259
+ "Bip01_L_Toe01",
260
+ "Bip01_L_Toe02",
261
+ "Bip01_L_Toe0Nub",
262
+ "Bip01_L_Toe1",
263
+ "Bip01_L_Toe11",
264
+ "Bip01_L_Toe12",
265
+ "Bip01_L_Toe1Nub",
266
+ "Bip01_L_Toe2",
267
+ "Bip01_L_Toe21",
268
+ "Bip01_L_Toe22",
269
+ "Bip01_L_Toe2Nub",
270
+ "Bip01_L_Toe3",
271
+ "Bip01_L_Toe31",
272
+ "Bip01_L_Toe32",
273
+ "Bip01_L_Toe3Nub",
274
+ "Bip01_Neck",
275
+ "Bip01_Neck1",
276
+ "Bip01_Pelvis",
277
+ "Bip01_R_Calf",
278
+ "Bip01_R_Foot",
279
+ "Bip01_R_HorseLink",
280
+ "Bip01_R_Thigh",
281
+ "Bip01_R_Toe0",
282
+ "Bip01_R_Toe01",
283
+ "Bip01_R_Toe02",
284
+ "Bip01_R_Toe0Nub",
285
+ "Bip01_R_Toe1",
286
+ "Bip01_R_Toe11",
287
+ "Bip01_R_Toe12",
288
+ "Bip01_R_Toe1Nub",
289
+ "Bip01_R_Toe2",
290
+ "Bip01_R_Toe21",
291
+ "Bip01_R_Toe22",
292
+ "Bip01_R_Toe2Nub",
293
+ "Bip01_R_Toe3",
294
+ "Bip01_R_Toe31",
295
+ "Bip01_R_Toe32",
296
+ "Bip01_R_Toe3Nub",
297
+ "Bip01_Spine",
298
+ "Bip01_Spine1",
299
+ "Hips"
300
+ ],
301
+ "BrownBear": [
302
+ "BN_Ear_L_01",
303
+ "BN_Ear_R_01",
304
+ "BN_Mouth_01",
305
+ "BN_Tongue_01",
306
+ "BN_Tongue_02",
307
+ "Bip01_Head",
308
+ "Bip01_HeadNub",
309
+ "Bip01_L_Calf",
310
+ "Bip01_L_Clavicle",
311
+ "Bip01_L_Finger0",
312
+ "Bip01_L_Finger0Nub",
313
+ "Bip01_L_Finger1",
314
+ "Bip01_L_Finger1Nub",
315
+ "Bip01_L_Foot",
316
+ "Bip01_L_Forearm",
317
+ "Bip01_L_Hand",
318
+ "Bip01_L_Thigh",
319
+ "Bip01_L_Toe0",
320
+ "Bip01_L_Toe0Nub",
321
+ "Bip01_L_UpperArm",
322
+ "Bip01_Neck",
323
+ "Bip01_Neck1",
324
+ "Bip01_Pelvis",
325
+ "Bip01_R_Calf",
326
+ "Bip01_R_Clavicle",
327
+ "Bip01_R_Finger0",
328
+ "Bip01_R_Finger0Nub",
329
+ "Bip01_R_Finger1",
330
+ "Bip01_R_Finger1Nub",
331
+ "Bip01_R_Foot",
332
+ "Bip01_R_Forearm",
333
+ "Bip01_R_Hand",
334
+ "Bip01_R_Thigh",
335
+ "Bip01_R_Toe0",
336
+ "Bip01_R_Toe0Nub",
337
+ "Bip01_R_UpperArm",
338
+ "Bip01_Spine",
339
+ "Bip01_Spine1",
340
+ "Hips"
341
+ ],
342
+ "Buffalo": [
343
+ "BN_Beard_01",
344
+ "BN_Beard_02",
345
+ "BN_Ear_L_01",
346
+ "BN_Ear_R_01",
347
+ "BN_Mouth_01",
348
+ "BN_Tail_01",
349
+ "BN_Tail_02",
350
+ "BN_Tail_03",
351
+ "BN_Tail_04",
352
+ "BN_Tongue_01",
353
+ "BN_Tongue_02",
354
+ "Bip01_Head",
355
+ "Bip01_HeadNub",
356
+ "Bip01_L_Calf",
357
+ "Bip01_L_Clavicle",
358
+ "Bip01_L_Finger0",
359
+ "Bip01_L_Finger0Nub",
360
+ "Bip01_L_Foot",
361
+ "Bip01_L_Forearm",
362
+ "Bip01_L_Hand",
363
+ "Bip01_L_HorseLink",
364
+ "Bip01_L_Thigh",
365
+ "Bip01_L_Toe0",
366
+ "Bip01_L_Toe0Nub",
367
+ "Bip01_L_UpperArm",
368
+ "Bip01_Neck",
369
+ "Bip01_Neck1",
370
+ "Bip01_Pelvis",
371
+ "Bip01_R_Calf",
372
+ "Bip01_R_Clavicle",
373
+ "Bip01_R_Finger0",
374
+ "Bip01_R_Finger0Nub",
375
+ "Bip01_R_Foot",
376
+ "Bip01_R_Forearm",
377
+ "Bip01_R_Hand",
378
+ "Bip01_R_HorseLink",
379
+ "Bip01_R_Thigh",
380
+ "Bip01_R_Toe0",
381
+ "Bip01_R_Toe0Nub",
382
+ "Bip01_R_UpperArm",
383
+ "Bip01_Spine",
384
+ "Bip01_Spine1",
385
+ "Hips"
386
+ ],
387
+ "Buzzard": [
388
+ "BN_Eye_L",
389
+ "BN_Eye_R",
390
+ "BN_Jaw",
391
+ "BN_Tai_01",
392
+ "BN_Tai_L_01",
393
+ "BN_Tai_L_02",
394
+ "BN_Tai_R_01",
395
+ "BN_Tai_R_02",
396
+ "BN_Wing_L_01",
397
+ "BN_Wing_L_02",
398
+ "BN_Wing_L_03",
399
+ "BN_Wing_L_04",
400
+ "BN_Wing_L_06",
401
+ "BN_Wing_L_07",
402
+ "BN_Wing_R_01",
403
+ "BN_Wing_R_02",
404
+ "BN_Wing_R_03",
405
+ "BN_Wing_R_04",
406
+ "BN_Wing_R_06",
407
+ "BN_Wing_R_07",
408
+ "Bip01_Head",
409
+ "Bip01_HeadNub",
410
+ "Bip01_L_Calf",
411
+ "Bip01_L_Foot",
412
+ "Bip01_L_HorseLink",
413
+ "Bip01_L_Thigh",
414
+ "Bip01_L_Toe0",
415
+ "Bip01_L_Toe01",
416
+ "Bip01_L_Toe0Nub",
417
+ "Bip01_L_Toe1",
418
+ "Bip01_L_Toe11",
419
+ "Bip01_L_Toe1Nub",
420
+ "Bip01_L_Toe2",
421
+ "Bip01_L_Toe21",
422
+ "Bip01_L_Toe2Nub",
423
+ "Bip01_L_Toe3",
424
+ "Bip01_L_Toe31",
425
+ "Bip01_L_Toe3Nub",
426
+ "Bip01_Neck",
427
+ "Bip01_Neck1",
428
+ "Bip01_Neck2",
429
+ "Bip01_Pelvis",
430
+ "Bip01_R_Calf",
431
+ "Bip01_R_Foot",
432
+ "Bip01_R_HorseLink",
433
+ "Bip01_R_Thigh",
434
+ "Bip01_R_Toe0",
435
+ "Bip01_R_Toe01",
436
+ "Bip01_R_Toe0Nub",
437
+ "Bip01_R_Toe1",
438
+ "Bip01_R_Toe11",
439
+ "Bip01_R_Toe1Nub",
440
+ "Bip01_R_Toe2",
441
+ "Bip01_R_Toe21",
442
+ "Bip01_R_Toe2Nub",
443
+ "Bip01_R_Toe3",
444
+ "Bip01_R_Toe31",
445
+ "Bip01_R_Toe3Nub",
446
+ "Bip01_Spine",
447
+ "Bip01_Spine1",
448
+ "Bip01_Spine2",
449
+ "Hips"
450
+ ],
451
+ "Camel": [
452
+ "BN_Ear_L_01",
453
+ "BN_Ear_R_01",
454
+ "BN_Eyebrow_L",
455
+ "BN_Eyebrow_R",
456
+ "BN_Fur_01",
457
+ "BN_Fur_02",
458
+ "BN_Hair_01",
459
+ "BN_Mouth_01",
460
+ "BN_Mouth_02",
461
+ "BN_Tail_01",
462
+ "BN_Tail_02",
463
+ "BN_Tail_03",
464
+ "BN_Tail_04",
465
+ "Bip01",
466
+ "Bip01_Head",
467
+ "Bip01_HeadNub",
468
+ "Bip01_L_Calf",
469
+ "Bip01_L_Clavicle",
470
+ "Bip01_L_Finger0",
471
+ "Bip01_L_Finger0Nub",
472
+ "Bip01_L_Foot",
473
+ "Bip01_L_Forearm",
474
+ "Bip01_L_Hand",
475
+ "Bip01_L_HorseLink",
476
+ "Bip01_L_Thigh",
477
+ "Bip01_L_Toe0",
478
+ "Bip01_L_Toe0Nub",
479
+ "Bip01_L_UpperArm",
480
+ "Bip01_Neck",
481
+ "Bip01_Neck1",
482
+ "Bip01_Neck2",
483
+ "Bip01_Pelvis",
484
+ "Bip01_R_Calf",
485
+ "Bip01_R_Clavicle",
486
+ "Bip01_R_Finger0",
487
+ "Bip01_R_Finger0Nub",
488
+ "Bip01_R_Foot",
489
+ "Bip01_R_Forearm",
490
+ "Bip01_R_Hand",
491
+ "Bip01_R_HorseLink",
492
+ "Bip01_R_Thigh",
493
+ "Bip01_R_Toe0",
494
+ "Bip01_R_Toe0Nub",
495
+ "Bip01_R_UpperArm",
496
+ "Bip01_Spine",
497
+ "Bip01_Spine1",
498
+ "Bip01_Spine2",
499
+ "C_ctrl",
500
+ "Handle",
501
+ "Hips",
502
+ "Saddle"
503
+ ],
504
+ "Cat": [
505
+ "BN_Beard_L",
506
+ "BN_Beard_R",
507
+ "BN_Ear_L",
508
+ "BN_Ear_R",
509
+ "BN_Mouth",
510
+ "BN_Tail_01",
511
+ "BN_Tail_02",
512
+ "BN_Tail_03",
513
+ "BN_Tail_04",
514
+ "BN_Thouge_01",
515
+ "BN_Thouge_02",
516
+ "Bip01_Head",
517
+ "Bip01_HeadNub",
518
+ "Bip01_L_Calf",
519
+ "Bip01_L_Clavicle",
520
+ "Bip01_L_Finger0",
521
+ "Bip01_L_Finger0Nub",
522
+ "Bip01_L_Foot",
523
+ "Bip01_L_Forearm",
524
+ "Bip01_L_Hand",
525
+ "Bip01_L_HorseLink",
526
+ "Bip01_L_Thigh",
527
+ "Bip01_L_Toe0",
528
+ "Bip01_L_Toe0Nub",
529
+ "Bip01_L_UpperArm",
530
+ "Bip01_Neck",
531
+ "Bip01_Neck1",
532
+ "Bip01_Pelvis",
533
+ "Bip01_R_Calf",
534
+ "Bip01_R_Clavicle",
535
+ "Bip01_R_Finger0",
536
+ "Bip01_R_Finger0Nub",
537
+ "Bip01_R_Foot",
538
+ "Bip01_R_Forearm",
539
+ "Bip01_R_Hand",
540
+ "Bip01_R_HorseLink",
541
+ "Bip01_R_Thigh",
542
+ "Bip01_R_Toe0",
543
+ "Bip01_R_Toe0Nub",
544
+ "Bip01_R_UpperArm",
545
+ "Bip01_Spine",
546
+ "Bip01_Spine1",
547
+ "Bip01_Spine2",
548
+ "Hips"
549
+ ],
550
+ "Centipede": [
551
+ "BN_Calf_L_01",
552
+ "BN_Calf_L_02",
553
+ "BN_Calf_L_03",
554
+ "BN_Calf_R_01",
555
+ "BN_Calf_R_02",
556
+ "BN_Calf_R_03",
557
+ "BN_Foot_L01",
558
+ "BN_Foot_L_02",
559
+ "BN_Foot_L_03",
560
+ "BN_Foot_R_01",
561
+ "BN_Foot_R_02",
562
+ "BN_Foot_R_03",
563
+ "BN_Piers_L_01",
564
+ "BN_Piers_L_03",
565
+ "BN_Piers_L_04",
566
+ "BN_Piers_L_05",
567
+ "BN_Piers_L_06",
568
+ "BN_Piers_R_03",
569
+ "BN_Piers_R_04",
570
+ "BN_Piers_R_05",
571
+ "BN_Piers_R_06",
572
+ "BN_Pliers_L_02",
573
+ "BN_Pliers_R_01",
574
+ "BN_Pliers_R_02",
575
+ "BN_Shall_L_01",
576
+ "BN_Shall_L_02",
577
+ "BN_Shall_L_03",
578
+ "BN_Shall_R_01",
579
+ "BN_Shall_R_02",
580
+ "BN_Shall_R_03",
581
+ "BN_Tail_01",
582
+ "BN_Tail_02",
583
+ "BN_Tail_03",
584
+ "BN_Tail_04",
585
+ "BN_Tail_L_01",
586
+ "BN_Tail_L_02",
587
+ "BN_Tail_R_01",
588
+ "BN_Tail_R_02",
589
+ "BN_Thigh_L_01",
590
+ "BN_Thigh_L_02",
591
+ "BN_Thigh_L_03",
592
+ "BN_Thigh_R_01",
593
+ "BN_Thigh_R_02",
594
+ "BN_Thigh_R_03",
595
+ "BN_Toe01_L_01",
596
+ "BN_Toe01_R_01",
597
+ "BN_Toe0_L_01",
598
+ "BN_Toe0_R_01",
599
+ "BN_UpperArm_L_01",
600
+ "BN_UpperArm_R_01",
601
+ "BN__Forearm_L_01",
602
+ "BN__Forearm_R_01",
603
+ "Bip01_Head",
604
+ "Bip01_HeadNub",
605
+ "Bip01_L_Calf",
606
+ "Bip01_L_Clavicle",
607
+ "Bip01_L_Finger0",
608
+ "Bip01_L_Finger0Nub",
609
+ "Bip01_L_Foot",
610
+ "Bip01_L_Forearm",
611
+ "Bip01_L_Hand",
612
+ "Bip01_L_Thigh",
613
+ "Bip01_L_Toe0",
614
+ "Bip01_L_Toe01",
615
+ "Bip01_L_Toe0Nub",
616
+ "Bip01_L_UpperArm",
617
+ "Bip01_Neck1",
618
+ "Bip01_Neck2",
619
+ "Bip01_Pelvis",
620
+ "Bip01_R_Calf",
621
+ "Bip01_R_Clavicle",
622
+ "Bip01_R_Finger0",
623
+ "Bip01_R_Finger0Nub",
624
+ "Bip01_R_Foot",
625
+ "Bip01_R_Forearm",
626
+ "Bip01_R_Hand",
627
+ "Bip01_R_Thigh",
628
+ "Bip01_R_Toe0",
629
+ "Bip01_R_Toe01",
630
+ "Bip01_R_Toe0Nub",
631
+ "Bip01_R_UpperArm",
632
+ "Bip01_Spine",
633
+ "Bip01_Spine1",
634
+ "Hips"
635
+ ],
636
+ "Chicken": [
637
+ "BN_Finger_L_01",
638
+ "BN_Finger_L_02",
639
+ "BN_Finger_R_01",
640
+ "BN_Finger_R_02",
641
+ "BN_Mouth_01",
642
+ "BN_Tail_01",
643
+ "BN_Tail_02",
644
+ "BN_Tail_03",
645
+ "Bip01_Head",
646
+ "Bip01_HeadNub",
647
+ "Bip01_L_Calf",
648
+ "Bip01_L_Foot",
649
+ "Bip01_L_HorseLink",
650
+ "Bip01_L_Thigh",
651
+ "Bip01_L_Toe0",
652
+ "Bip01_L_Toe0Nub",
653
+ "Bip01_L_Toe1",
654
+ "Bip01_L_Toe1Nub",
655
+ "Bip01_L_Toe2",
656
+ "Bip01_L_Toe2Nub",
657
+ "Bip01_L_Toe3",
658
+ "Bip01_L_Toe3Nub",
659
+ "Bip01_Neck",
660
+ "Bip01_Neck1",
661
+ "Bip01_Neck2",
662
+ "Bip01_Pelvis",
663
+ "Bip01_R_Calf",
664
+ "Bip01_R_Foot",
665
+ "Bip01_R_HorseLink",
666
+ "Bip01_R_Thigh",
667
+ "Bip01_R_Toe0",
668
+ "Bip01_R_Toe0Nub",
669
+ "Bip01_R_Toe1",
670
+ "Bip01_R_Toe1Nub",
671
+ "Bip01_R_Toe2",
672
+ "Bip01_R_Toe2Nub",
673
+ "Bip01_R_Toe3",
674
+ "Bip01_R_Toe3Nub",
675
+ "Bip01_Spine",
676
+ "Bip01_Spine1",
677
+ "Hips"
678
+ ],
679
+ "Comodoa": [
680
+ "BN_Eyebrow_L",
681
+ "BN_Eyebrow_R",
682
+ "BN_Jaw",
683
+ "BN_Jaw01",
684
+ "BN_Tail01",
685
+ "BN_Tail02",
686
+ "BN_Tail03",
687
+ "BN_Tail04",
688
+ "BN_dorsal01",
689
+ "BN_dorsal02",
690
+ "BN_dorsal03",
691
+ "BN_ponitail",
692
+ "Bip01_Head",
693
+ "Bip01_HeadNub",
694
+ "Bip01_L_Calf",
695
+ "Bip01_L_Clavicle",
696
+ "Bip01_L_Finger0",
697
+ "Bip01_L_Finger0Nub",
698
+ "Bip01_L_Finger1",
699
+ "Bip01_L_Finger1Nub",
700
+ "Bip01_L_Finger2",
701
+ "Bip01_L_Finger2Nub",
702
+ "Bip01_L_Foot",
703
+ "Bip01_L_Forearm",
704
+ "Bip01_L_Hand",
705
+ "Bip01_L_HorseLink",
706
+ "Bip01_L_Thigh",
707
+ "Bip01_L_Toe0",
708
+ "Bip01_L_Toe0Nub",
709
+ "Bip01_L_Toe1",
710
+ "Bip01_L_Toe1Nub",
711
+ "Bip01_L_Toe2",
712
+ "Bip01_L_Toe2Nub",
713
+ "Bip01_L_UpperArm",
714
+ "Bip01_Neck",
715
+ "Bip01_Neck1",
716
+ "Bip01_Pelvis",
717
+ "Bip01_Ponytail1",
718
+ "Bip01_Ponytail1Nub",
719
+ "Bip01_Ponytail2",
720
+ "Bip01_Ponytail2Nub",
721
+ "Bip01_R_Calf",
722
+ "Bip01_R_Clavicle",
723
+ "Bip01_R_Finger0",
724
+ "Bip01_R_Finger0Nub",
725
+ "Bip01_R_Finger1",
726
+ "Bip01_R_Finger1Nub",
727
+ "Bip01_R_Finger2",
728
+ "Bip01_R_Finger2Nub",
729
+ "Bip01_R_Foot",
730
+ "Bip01_R_Forearm",
731
+ "Bip01_R_Hand",
732
+ "Bip01_R_HorseLink",
733
+ "Bip01_R_Thigh",
734
+ "Bip01_R_Toe0",
735
+ "Bip01_R_Toe0Nub",
736
+ "Bip01_R_Toe1",
737
+ "Bip01_R_Toe1Nub",
738
+ "Bip01_R_Toe2",
739
+ "Bip01_R_Toe2Nub",
740
+ "Bip01_R_UpperArm",
741
+ "Bip01_Spine",
742
+ "Bip01_Spine1",
743
+ "Bip01_Spine2",
744
+ "Hips"
745
+ ],
746
+ "Coyote": [
747
+ "BN_Ear_L_01",
748
+ "BN_Ear_R_01",
749
+ "BN_Mouth_01",
750
+ "BN_Tail_01",
751
+ "BN_Tail_02",
752
+ "BN_Tail_03",
753
+ "Bip01_Head",
754
+ "Bip01_HeadNub",
755
+ "Bip01_L_Calf",
756
+ "Bip01_L_Clavicle",
757
+ "Bip01_L_Finger0",
758
+ "Bip01_L_Finger01",
759
+ "Bip01_L_Finger0Nub",
760
+ "Bip01_L_Foot",
761
+ "Bip01_L_Forearm",
762
+ "Bip01_L_Hand",
763
+ "Bip01_L_HorseLink",
764
+ "Bip01_L_Thigh",
765
+ "Bip01_L_Toe0",
766
+ "Bip01_L_Toe0Nub",
767
+ "Bip01_L_UpperArm",
768
+ "Bip01_Neck",
769
+ "Bip01_Neck1",
770
+ "Bip01_Pelvis",
771
+ "Bip01_R_Calf",
772
+ "Bip01_R_Clavicle",
773
+ "Bip01_R_Finger0",
774
+ "Bip01_R_Finger01",
775
+ "Bip01_R_Finger0Nub",
776
+ "Bip01_R_Foot",
777
+ "Bip01_R_Forearm",
778
+ "Bip01_R_Hand",
779
+ "Bip01_R_HorseLink",
780
+ "Bip01_R_Thigh",
781
+ "Bip01_R_Toe0",
782
+ "Bip01_R_Toe0Nub",
783
+ "Bip01_R_UpperArm",
784
+ "Bip01_Spine",
785
+ "Bip01_Spine1",
786
+ "Bip01_Spine2",
787
+ "Hips"
788
+ ],
789
+ "Crab": [
790
+ "BN_Arm_L_01",
791
+ "BN_Arm_L_02",
792
+ "BN_Arm_L_03",
793
+ "BN_Arm_L_04",
794
+ "BN_Arm_R_01",
795
+ "BN_Arm_R_02",
796
+ "BN_Arm_R_03",
797
+ "BN_Arm_R_04",
798
+ "BN_Bip01_Pelvis",
799
+ "BN_Eye_L_01",
800
+ "BN_Eye_L_02",
801
+ "BN_Eye_L_03",
802
+ "BN_Eye_L_04",
803
+ "BN_Eye_R_01",
804
+ "BN_Eye_R_02",
805
+ "BN_Eye_R_03",
806
+ "BN_Eye_R_04",
807
+ "BN_Leg_L_05Nub",
808
+ "BN_Leg_L_07",
809
+ "BN_Leg_L_08",
810
+ "BN_Leg_L_09",
811
+ "BN_Leg_L_10",
812
+ "BN_Leg_L_10Nub",
813
+ "BN_Leg_L_11",
814
+ "BN_Leg_L_12",
815
+ "BN_Leg_L_13",
816
+ "BN_Leg_L_14",
817
+ "BN_Leg_L_15",
818
+ "BN_Leg_L_15Nub",
819
+ "BN_Leg_R_05Nub",
820
+ "BN_Leg_R_07",
821
+ "BN_Leg_R_08",
822
+ "BN_Leg_R_09",
823
+ "BN_Leg_R_10",
824
+ "BN_Leg_R_10Nub",
825
+ "BN_Leg_R_11",
826
+ "BN_Leg_R_12",
827
+ "BN_Leg_R_13",
828
+ "BN_Leg_R_14",
829
+ "BN_Leg_R_15",
830
+ "BN_Leg_R_15Nub",
831
+ "BN_leg_L_01",
832
+ "BN_leg_L_02",
833
+ "BN_leg_L_03",
834
+ "BN_leg_L_04",
835
+ "BN_leg_L_05",
836
+ "BN_leg_L_06",
837
+ "BN_leg_R_01",
838
+ "BN_leg_R_02",
839
+ "BN_leg_R_03",
840
+ "BN_leg_R_04",
841
+ "BN_leg_R_05",
842
+ "BN_leg_R_06",
843
+ "Hips"
844
+ ],
845
+ "Cricket": [
846
+ "BN_Feeler_L_01",
847
+ "BN_Feeler_L_02",
848
+ "BN_Feeler_L_03",
849
+ "BN_Feeler_L_04",
850
+ "BN_Feeler_L_05",
851
+ "BN_Feeler_L_06",
852
+ "BN_Feeler_L_07",
853
+ "BN_Feeler_L_08",
854
+ "BN_Feeler_R_01",
855
+ "BN_Feeler_R_02",
856
+ "BN_Feeler_R_03",
857
+ "BN_Feeler_R_04",
858
+ "BN_Feeler_R_05",
859
+ "BN_Feeler_R_06",
860
+ "BN_Feeler_R_07",
861
+ "BN_Feeler_R_08",
862
+ "BN_Mouth_01",
863
+ "BN_Tail_01",
864
+ "BN_Tail_02",
865
+ "BN_Wings_01",
866
+ "BN_Wings_02",
867
+ "BN_leg_L_01",
868
+ "BN_leg_L_02",
869
+ "BN_leg_L_03",
870
+ "BN_leg_L_04",
871
+ "BN_leg_R_01",
872
+ "BN_leg_R_02",
873
+ "BN_leg_R_03",
874
+ "BN_leg_R_04",
875
+ "Bip01_Head",
876
+ "Bip01_HeadNub",
877
+ "Bip01_L_Calf",
878
+ "Bip01_L_Clavicle",
879
+ "Bip01_L_Foot",
880
+ "Bip01_L_Forearm",
881
+ "Bip01_L_Hand",
882
+ "Bip01_L_Thigh",
883
+ "Bip01_L_Toe0",
884
+ "Bip01_L_Toe0Nub",
885
+ "Bip01_L_UpperArm",
886
+ "Bip01_Neck",
887
+ "Bip01_Pelvis",
888
+ "Bip01_R_Calf",
889
+ "Bip01_R_Clavicle",
890
+ "Bip01_R_Foot",
891
+ "Bip01_R_Forearm",
892
+ "Bip01_R_Hand",
893
+ "Bip01_R_Thigh",
894
+ "Bip01_R_Toe0",
895
+ "Bip01_R_Toe0Nub",
896
+ "Bip01_R_UpperArm",
897
+ "Bip01_Spine",
898
+ "Bip01_Spine1",
899
+ "Hips"
900
+ ],
901
+ "Crocodile": [
902
+ "BN_Jaw",
903
+ "BN_Tail_01",
904
+ "BN_Tail_02",
905
+ "BN_Tail_03",
906
+ "BN_Tail_04",
907
+ "BN_Tail_05",
908
+ "BN_lip_L",
909
+ "BN_lip_R",
910
+ "Bip01_Head",
911
+ "Bip01_HeadNub",
912
+ "Bip01_L_Calf",
913
+ "Bip01_L_Clavicle",
914
+ "Bip01_L_Finger0",
915
+ "Bip01_L_Finger0Nub",
916
+ "Bip01_L_Foot",
917
+ "Bip01_L_Forearm",
918
+ "Bip01_L_Hand",
919
+ "Bip01_L_Thigh",
920
+ "Bip01_L_Toe0",
921
+ "Bip01_L_Toe0Nub",
922
+ "Bip01_L_UpperArm",
923
+ "Bip01_Neck",
924
+ "Bip01_Neck1",
925
+ "Bip01_Pelvis",
926
+ "Bip01_R_Calf",
927
+ "Bip01_R_Clavicle",
928
+ "Bip01_R_Finger0",
929
+ "Bip01_R_Finger0Nub",
930
+ "Bip01_R_Foot",
931
+ "Bip01_R_Forearm",
932
+ "Bip01_R_Hand",
933
+ "Bip01_R_Thigh",
934
+ "Bip01_R_Toe0",
935
+ "Bip01_R_Toe0Nub",
936
+ "Bip01_R_UpperArm",
937
+ "Bip01_Spine",
938
+ "Bip01_Spine1",
939
+ "Bip01_Spine2",
940
+ "Hips"
941
+ ],
942
+ "Crow": [
943
+ "ECR1",
944
+ "Hips",
945
+ "N_ALL",
946
+ "Null",
947
+ "Skin",
948
+ "_00",
949
+ "_01",
950
+ "_02",
951
+ "_03",
952
+ "_04",
953
+ "_05",
954
+ "_06",
955
+ "_07",
956
+ "_08",
957
+ "_09",
958
+ "_10",
959
+ "_11",
960
+ "_12",
961
+ "_13",
962
+ "_14",
963
+ "_15",
964
+ "_16",
965
+ "_17",
966
+ "_18",
967
+ "_19",
968
+ "_20",
969
+ "_21",
970
+ "_22",
971
+ "_23"
972
+ ],
973
+ "Deer": [
974
+ "ElkJaw",
975
+ "ElkLEar",
976
+ "ElkLFemur",
977
+ "ElkLFrontHoof",
978
+ "ElkLHumerus",
979
+ "ElkLLargeCannon",
980
+ "ElkLMetacarpus",
981
+ "ElkLPhalangesManus",
982
+ "ElkLPhalanxPrima",
983
+ "ElkLRadius",
984
+ "ElkLRearHoof",
985
+ "ElkLScapula",
986
+ "ElkLTibia",
987
+ "ElkL_UpperLip",
988
+ "ElkMaleLEye01",
989
+ "ElkMaleREye",
990
+ "ElkNeck1",
991
+ "ElkNeck2",
992
+ "ElkNeck3",
993
+ "ElkNeck4",
994
+ "ElkPelvis",
995
+ "ElkREar",
996
+ "ElkRFemur",
997
+ "ElkRFrontHoof",
998
+ "ElkRHumerus",
999
+ "ElkRLargeCannon",
1000
+ "ElkRMetacarpus",
1001
+ "ElkRPhalangesManus",
1002
+ "ElkRPhalanxPrima",
1003
+ "ElkRRadius",
1004
+ "ElkRRearHoof",
1005
+ "ElkRScapula",
1006
+ "ElkRTibia",
1007
+ "ElkR_UpperLip",
1008
+ "ElkRibcage",
1009
+ "ElkScull",
1010
+ "ElkScullBase",
1011
+ "ElkSpine1",
1012
+ "ElkSpine2",
1013
+ "ElkSpine3",
1014
+ "ElkTail1",
1015
+ "ElkTail2",
1016
+ "Hips",
1017
+ "NPC_Root__Root_",
1018
+ "Skin",
1019
+ "Skin_10",
1020
+ "Skin_12",
1021
+ "Skin_13",
1022
+ "Skin_15",
1023
+ "Skin_16",
1024
+ "Skin_18",
1025
+ "Skin_19",
1026
+ "Skin_21",
1027
+ "Skin_212",
1028
+ "Skin_22",
1029
+ "Skin_24",
1030
+ "Skin_25",
1031
+ "Skin_60",
1032
+ "Skin_73",
1033
+ "Skin_9"
1034
+ ],
1035
+ "Dog": [
1036
+ "Bip01_Head",
1037
+ "Bip01_Head1_Jaw",
1038
+ "Bip01_Head2_Eyeleds",
1039
+ "Bip01_Head_JawNub",
1040
+ "Bip01_Head_Muzzle",
1041
+ "Bip01_L_Calf",
1042
+ "Bip01_L_Clavicle",
1043
+ "Bip01_L_Finger0",
1044
+ "Bip01_L_Finger01",
1045
+ "Bip01_L_Foot",
1046
+ "Bip01_L_Forearm",
1047
+ "Bip01_L_Hand",
1048
+ "Bip01_L_Thigh",
1049
+ "Bip01_L_Toe0",
1050
+ "Bip01_L_Toe01",
1051
+ "Bip01_L_Toe02",
1052
+ "Bip01_L_UpperArm",
1053
+ "Bip01_Neck",
1054
+ "Bip01_Neck1",
1055
+ "Bip01_Neck2",
1056
+ "Bip01_Pelvis",
1057
+ "Bip01_Ponytail1",
1058
+ "Bip01_Ponytail11",
1059
+ "Bip01_Ponytail2",
1060
+ "Bip01_Ponytail21",
1061
+ "Bip01_Ponytail31",
1062
+ "Bip01_Ponytail32",
1063
+ "Bip01_Ponytail3Nub",
1064
+ "Bip01_R_Calf",
1065
+ "Bip01_R_Clavicle",
1066
+ "Bip01_R_Finger0",
1067
+ "Bip01_R_Finger01",
1068
+ "Bip01_R_Foot",
1069
+ "Bip01_R_Forearm",
1070
+ "Bip01_R_Hand",
1071
+ "Bip01_R_Thigh",
1072
+ "Bip01_R_Toe0",
1073
+ "Bip01_R_Toe01",
1074
+ "Bip01_R_Toe02",
1075
+ "Bip01_R_UpperArm",
1076
+ "Bip01_Spine",
1077
+ "Bip01_Spine0",
1078
+ "Bip01_Spine0_Tail",
1079
+ "Bip01_Spine0_Tail1",
1080
+ "Bip01_Spine0_Tail2",
1081
+ "Bip01_Spine0_Tail3",
1082
+ "Bip01_Spine0_Tail4",
1083
+ "Bip01_Spine1",
1084
+ "Bip01_Spine2",
1085
+ "Bip01_Spine3",
1086
+ "Dog",
1087
+ "EyesBlue",
1088
+ "EyesBlue_2",
1089
+ "Hips",
1090
+ "Mouth",
1091
+ "Skin",
1092
+ "Skin_2",
1093
+ "Skin_3",
1094
+ "Tunge",
1095
+ "_Bip01_Head11_TungeControler",
1096
+ "_Bip01_Ponytail3_tunge"
1097
+ ],
1098
+ "Dog2": [
1099
+ "Bip01_Head",
1100
+ "Bip01_Head1_Jaw",
1101
+ "Bip01_Head2_Eyeleds",
1102
+ "Bip01_Head_JawNub",
1103
+ "Bip01_Head_Muzzle",
1104
+ "Bip01_L_Calf",
1105
+ "Bip01_L_Clavicle",
1106
+ "Bip01_L_Finger0",
1107
+ "Bip01_L_Finger01",
1108
+ "Bip01_L_Foot",
1109
+ "Bip01_L_Forearm",
1110
+ "Bip01_L_Hand",
1111
+ "Bip01_L_Thigh",
1112
+ "Bip01_L_Toe0",
1113
+ "Bip01_L_Toe01",
1114
+ "Bip01_L_Toe02",
1115
+ "Bip01_L_UpperArm",
1116
+ "Bip01_Neck",
1117
+ "Bip01_Neck1",
1118
+ "Bip01_Neck2",
1119
+ "Bip01_Pelvis",
1120
+ "Bip01_Ponytail1",
1121
+ "Bip01_Ponytail11",
1122
+ "Bip01_Ponytail2",
1123
+ "Bip01_Ponytail21",
1124
+ "Bip01_Ponytail31",
1125
+ "Bip01_Ponytail32",
1126
+ "Bip01_Ponytail3Nub",
1127
+ "Bip01_R_Calf",
1128
+ "Bip01_R_Clavicle",
1129
+ "Bip01_R_Finger0",
1130
+ "Bip01_R_Finger01",
1131
+ "Bip01_R_Foot",
1132
+ "Bip01_R_Forearm",
1133
+ "Bip01_R_Hand",
1134
+ "Bip01_R_Thigh",
1135
+ "Bip01_R_Toe0",
1136
+ "Bip01_R_Toe01",
1137
+ "Bip01_R_Toe02",
1138
+ "Bip01_R_UpperArm",
1139
+ "Bip01_Spine",
1140
+ "Bip01_Spine0",
1141
+ "Bip01_Spine0_Tail",
1142
+ "Bip01_Spine0_Tail1",
1143
+ "Bip01_Spine0_Tail2",
1144
+ "Bip01_Spine0_Tail3",
1145
+ "Bip01_Spine0_Tail4",
1146
+ "Bip01_Spine1",
1147
+ "Bip01_Spine2",
1148
+ "Bip01_Spine3",
1149
+ "Dog",
1150
+ "EyesBlue",
1151
+ "EyesBlue_2",
1152
+ "Hips",
1153
+ "Skin",
1154
+ "Skin_1",
1155
+ "Skin_10",
1156
+ "Skin_105",
1157
+ "Skin_11",
1158
+ "Skin_12",
1159
+ "Skin_126",
1160
+ "Skin_13",
1161
+ "Skin_14",
1162
+ "Skin_147",
1163
+ "Skin_15",
1164
+ "Skin_16",
1165
+ "Skin_168",
1166
+ "Skin_17",
1167
+ "Skin_18",
1168
+ "Skin_189",
1169
+ "Skin_19",
1170
+ "Skin_2",
1171
+ "Skin_20",
1172
+ "Skin_2010",
1173
+ "Skin_21",
1174
+ "Skin_22",
1175
+ "Skin_2211",
1176
+ "Skin_23",
1177
+ "Skin_24",
1178
+ "Skin_2412",
1179
+ "Skin_25",
1180
+ "Skin_26",
1181
+ "Skin_2613",
1182
+ "Skin_27",
1183
+ "Skin_28",
1184
+ "Skin_2814",
1185
+ "Skin_29",
1186
+ "Skin_3",
1187
+ "Skin_30",
1188
+ "Skin_3015",
1189
+ "Skin_31",
1190
+ "Skin_32",
1191
+ "Skin_3216",
1192
+ "Skin_33",
1193
+ "Skin_336",
1194
+ "Skin_34",
1195
+ "Skin_3417",
1196
+ "Skin_35",
1197
+ "Skin_36",
1198
+ "Skin_3618",
1199
+ "Skin_38",
1200
+ "Skin_4",
1201
+ "Skin_40",
1202
+ "Skin_401",
1203
+ "Skin_42",
1204
+ "Skin_44",
1205
+ "Skin_46",
1206
+ "Skin_48",
1207
+ "Skin_5",
1208
+ "Skin_50",
1209
+ "Skin_52",
1210
+ "Skin_54",
1211
+ "Skin_56",
1212
+ "Skin_58",
1213
+ "Skin_6",
1214
+ "Skin_60",
1215
+ "Skin_62",
1216
+ "Skin_623",
1217
+ "Skin_64",
1218
+ "Skin_66",
1219
+ "Skin_68",
1220
+ "Skin_7",
1221
+ "Skin_70",
1222
+ "Skin_72",
1223
+ "Skin_74",
1224
+ "Skin_8",
1225
+ "Skin_84",
1226
+ "Skin_9",
1227
+ "Tunge",
1228
+ "_Bip01_Head11_TungeControler",
1229
+ "_Bip01_Ponytail3_tunge"
1230
+ ],
1231
+ "Dragon": [
1232
+ "BN_FBeard01",
1233
+ "BN_FBeard02",
1234
+ "BN_Feelers01",
1235
+ "BN_Feelers02",
1236
+ "BN_Feelers03",
1237
+ "BN_Feelers04",
1238
+ "BN_Feelers05",
1239
+ "BN_Feelers06",
1240
+ "BN_Feelers07",
1241
+ "BN_Feelers08",
1242
+ "BN_LBeard01",
1243
+ "BN_LBeard02",
1244
+ "BN_LBeard03",
1245
+ "BN_LEyeball",
1246
+ "BN_LWing01",
1247
+ "BN_LWing02",
1248
+ "BN_LWing03",
1249
+ "BN_LWing04",
1250
+ "BN_LWing11",
1251
+ "BN_LWing12",
1252
+ "BN_LWing13",
1253
+ "BN_LWing14",
1254
+ "BN_LWing21",
1255
+ "BN_LWing22",
1256
+ "BN_LWing31",
1257
+ "BN_LWing32",
1258
+ "BN_LWing33",
1259
+ "BN_LWing41",
1260
+ "BN_LWing42",
1261
+ "BN_RBeard01",
1262
+ "BN_RBeard02",
1263
+ "BN_RBeard03",
1264
+ "BN_REyeball",
1265
+ "BN_RWing01",
1266
+ "BN_RWing02",
1267
+ "BN_RWing03",
1268
+ "BN_RWing04",
1269
+ "BN_RWing11",
1270
+ "BN_RWing12",
1271
+ "BN_RWing13",
1272
+ "BN_RWing14",
1273
+ "BN_RWing21",
1274
+ "BN_RWing22",
1275
+ "BN_RWing31",
1276
+ "BN_RWing32",
1277
+ "BN_RWing33",
1278
+ "BN_RWing41",
1279
+ "BN_Tail01",
1280
+ "BN_Tail02",
1281
+ "BN_Tail03",
1282
+ "BN_Tail04",
1283
+ "BN_Tail05",
1284
+ "BN_Tail06",
1285
+ "BN_Tongue01",
1286
+ "BN_Tongue02",
1287
+ "BN_Tongue03",
1288
+ "BN__RWing42",
1289
+ "Bip01_Head",
1290
+ "Bip01_HeadNub",
1291
+ "Bip01_Jaw",
1292
+ "Bip01_L_Calf",
1293
+ "Bip01_L_Clavicle",
1294
+ "Bip01_L_Finger0",
1295
+ "Bip01_L_Finger01",
1296
+ "Bip01_L_Finger02",
1297
+ "Bip01_L_Finger0Nub",
1298
+ "Bip01_L_Finger1",
1299
+ "Bip01_L_Finger11",
1300
+ "Bip01_L_Finger12",
1301
+ "Bip01_L_Finger1Nub",
1302
+ "Bip01_L_Finger2",
1303
+ "Bip01_L_Finger21",
1304
+ "Bip01_L_Finger22",
1305
+ "Bip01_L_Finger2Nub",
1306
+ "Bip01_L_Foot",
1307
+ "Bip01_L_Forearm",
1308
+ "Bip01_L_Hand",
1309
+ "Bip01_L_HorseLink",
1310
+ "Bip01_L_Thigh",
1311
+ "Bip01_L_Toe0",
1312
+ "Bip01_L_Toe01",
1313
+ "Bip01_L_Toe0Nub",
1314
+ "Bip01_L_Toe1",
1315
+ "Bip01_L_Toe11",
1316
+ "Bip01_L_Toe1Nub",
1317
+ "Bip01_L_Toe2",
1318
+ "Bip01_L_Toe21",
1319
+ "Bip01_L_Toe2Nub",
1320
+ "Bip01_L_UpperArm",
1321
+ "Bip01_Neck",
1322
+ "Bip01_Neck1",
1323
+ "Bip01_Neck2",
1324
+ "Bip01_Neck3",
1325
+ "Bip01_Pelvis",
1326
+ "Bip01_Ponytail1Nub",
1327
+ "Bip01_R_Calf",
1328
+ "Bip01_R_Clavicle",
1329
+ "Bip01_R_Finger0",
1330
+ "Bip01_R_Finger01",
1331
+ "Bip01_R_Finger02",
1332
+ "Bip01_R_Finger0Nub",
1333
+ "Bip01_R_Finger1",
1334
+ "Bip01_R_Finger11",
1335
+ "Bip01_R_Finger12",
1336
+ "Bip01_R_Finger1Nub",
1337
+ "Bip01_R_Finger2",
1338
+ "Bip01_R_Finger21",
1339
+ "Bip01_R_Finger22",
1340
+ "Bip01_R_Finger2Nub",
1341
+ "Bip01_R_Foot",
1342
+ "Bip01_R_Forearm",
1343
+ "Bip01_R_Hand",
1344
+ "Bip01_R_HorseLink",
1345
+ "Bip01_R_Thigh",
1346
+ "Bip01_R_Toe0",
1347
+ "Bip01_R_Toe01",
1348
+ "Bip01_R_Toe0Nub",
1349
+ "Bip01_R_Toe1",
1350
+ "Bip01_R_Toe11",
1351
+ "Bip01_R_Toe1Nub",
1352
+ "Bip01_R_Toe2",
1353
+ "Bip01_R_Toe21",
1354
+ "Bip01_R_Toe2Nub",
1355
+ "Bip01_R_UpperArm",
1356
+ "Bip01_Spine",
1357
+ "Bip01_Spine1",
1358
+ "Bip01_Xtra01Nub",
1359
+ "Bip01_Xtra02Nub",
1360
+ "Bip01_Xtra03Nub",
1361
+ "Bip01_Xtra04Nub",
1362
+ "Bip01_Xtra04OppNub",
1363
+ "Bip01_Xtra05Nub",
1364
+ "Bip01_Xtra05OppNub",
1365
+ "Bip01_Xtra06Nub",
1366
+ "Bip01_Xtra06OppNub",
1367
+ "Bip01_Xtra07Nub",
1368
+ "Bip01_Xtra07OppNub",
1369
+ "Bip01_Xtra08Nub",
1370
+ "Bip01_Xtra08OppNub",
1371
+ "Bip01_Xtra_Neck01",
1372
+ "Bip01_Xtra_Neck02",
1373
+ "Bip01_Xtra_Spine",
1374
+ "Hips"
1375
+ ],
1376
+ "Eagle": [
1377
+ "BN_Jaw",
1378
+ "BN_Tai_01",
1379
+ "BN_Tai_L_01",
1380
+ "BN_Tai_L_02",
1381
+ "BN_Tai_R_01",
1382
+ "BN_Tai_R_02",
1383
+ "BN_Toe_L_00",
1384
+ "BN_Toe_L_01",
1385
+ "BN_Toe_L_10",
1386
+ "BN_Toe_L_11",
1387
+ "BN_Toe_L_20",
1388
+ "BN_Toe_L_21",
1389
+ "BN_Toe_L_30",
1390
+ "BN_Toe_L_31",
1391
+ "BN_Toe_R_00",
1392
+ "BN_Toe_R_01",
1393
+ "BN_Toe_R_10",
1394
+ "BN_Toe_R_11",
1395
+ "BN_Toe_R_20",
1396
+ "BN_Toe_R_21",
1397
+ "BN_Toe_R_30",
1398
+ "BN_Toe_R_31",
1399
+ "BN_Wing_L_01",
1400
+ "BN_Wing_L_02",
1401
+ "BN_Wing_L_03",
1402
+ "BN_Wing_L_04",
1403
+ "BN_Wing_L_05",
1404
+ "BN_Wing_L_06",
1405
+ "BN_Wing_R_01",
1406
+ "BN_Wing_R_02",
1407
+ "BN_Wing_R_03",
1408
+ "BN_Wing_R_04",
1409
+ "BN_Wing_R_05",
1410
+ "BN_Wing_R_06",
1411
+ "Bip01_Head",
1412
+ "Bip01_L_Calf",
1413
+ "Bip01_L_Foot",
1414
+ "Bip01_L_HorseLink",
1415
+ "Bip01_L_Thigh",
1416
+ "Bip01_L_Toe0",
1417
+ "Bip01_Neck",
1418
+ "Bip01_Neck1",
1419
+ "Bip01_Neck2",
1420
+ "Bip01_Pelvis",
1421
+ "Bip01_R_Calf",
1422
+ "Bip01_R_Foot",
1423
+ "Bip01_R_HorseLink",
1424
+ "Bip01_R_Thigh",
1425
+ "Bip01_R_Toe0",
1426
+ "Bip01_Spine",
1427
+ "Bip01_Spine1",
1428
+ "Hips"
1429
+ ],
1430
+ "Elephant": [
1431
+ "AN_NPC_MOB_Elephant_A01_SK_GRN",
1432
+ "BN_Ear_L_01",
1433
+ "BN_Ear_L_02",
1434
+ "BN_Ear_R_01",
1435
+ "BN_Ear_R_02",
1436
+ "BN_Eyebrow_L",
1437
+ "BN_Eyebrow_R",
1438
+ "BN_Mouth_01",
1439
+ "BN_Nose_01",
1440
+ "BN_Nose_02",
1441
+ "BN_Nose_03",
1442
+ "BN_Nose_04",
1443
+ "BN_Nose_05",
1444
+ "BN_Nose_06",
1445
+ "BN_Tail_01",
1446
+ "BN_Tail_02",
1447
+ "BN_Tail_03",
1448
+ "BN_Tail_04",
1449
+ "Bip01_Head",
1450
+ "Bip01_L_Calf",
1451
+ "Bip01_L_Clavicle",
1452
+ "Bip01_L_Foot",
1453
+ "Bip01_L_Forearm",
1454
+ "Bip01_L_Hand",
1455
+ "Bip01_L_Thigh",
1456
+ "Bip01_L_Toe0",
1457
+ "Bip01_L_UpperArm",
1458
+ "Bip01_Neck",
1459
+ "Bip01_Pelvis",
1460
+ "Bip01_R_Calf",
1461
+ "Bip01_R_Clavicle",
1462
+ "Bip01_R_Foot",
1463
+ "Bip01_R_Forearm",
1464
+ "Bip01_R_Hand",
1465
+ "Bip01_R_Thigh",
1466
+ "Bip01_R_Toe0",
1467
+ "Bip01_R_UpperArm",
1468
+ "Bip01_Spine",
1469
+ "Bip01_Spine1",
1470
+ "Bip01_Spine2",
1471
+ "Hips",
1472
+ "Skin"
1473
+ ],
1474
+ "FireAnt": [
1475
+ "Bip01_Head",
1476
+ "Bip01_Head_Brain",
1477
+ "Bip01_L_Arm_Nub",
1478
+ "Bip01_L_Calf_Mid",
1479
+ "Bip01_L_Calf_Rear",
1480
+ "Bip01_L_Foot_Mid",
1481
+ "Bip01_L_Foot_Rear",
1482
+ "Bip01_L_ForeArm",
1483
+ "Bip01_L_Hand",
1484
+ "Bip01_L_Leg_Mid_Nub",
1485
+ "Bip01_L_Leg_Rear_Nub",
1486
+ "Bip01_L_Thigh_Mid",
1487
+ "Bip01_L_Thigh_Rear",
1488
+ "Bip01_L_UpperArm",
1489
+ "Bip01_Neck1",
1490
+ "Bip01_Pelvis",
1491
+ "Bip01_Ponytail11L_Antenna",
1492
+ "Bip01_Ponytail12L_Antenna3",
1493
+ "Bip01_Ponytail1_L_Antenna",
1494
+ "Bip01_Ponytail21_R_Antenna2",
1495
+ "Bip01_Ponytail22R_Antenna3",
1496
+ "Bip01_Ponytail2_R_Antenna1",
1497
+ "Bip01_Ponytail3L_Mandible_",
1498
+ "Bip01_Ponytail4R_Mandible",
1499
+ "Bip01_R_Arm_Nub",
1500
+ "Bip01_R_Calf_Mid",
1501
+ "Bip01_R_Calf_Rear",
1502
+ "Bip01_R_Foot_Mid",
1503
+ "Bip01_R_Foot_Rear",
1504
+ "Bip01_R_ForeArm",
1505
+ "Bip01_R_Hand",
1506
+ "Bip01_R_Leg_Mid_Nub",
1507
+ "Bip01_R_Leg_Rear_Nub",
1508
+ "Bip01_R_Thigh_Mid",
1509
+ "Bip01_R_Thigh_Rear",
1510
+ "Bip01_R_UpperArm",
1511
+ "Bip01_Spine",
1512
+ "Bip01_Tail",
1513
+ "Bip01_Tail01",
1514
+ "Bip01_Tail02",
1515
+ "Bip01_Tail03",
1516
+ "Bip01_Tail_Nub",
1517
+ "Dummy01_HeadFire_",
1518
+ "Hips",
1519
+ "ProjectileNode_Fire"
1520
+ ],
1521
+ "Flamingo": [
1522
+ "BN_Forearm_L_01",
1523
+ "BN_Forearm_L_02",
1524
+ "BN_Forearm_L_03",
1525
+ "BN_Forearm_L_04",
1526
+ "BN_Forearm_R_01",
1527
+ "BN_Forearm_R_02",
1528
+ "BN_Forearm_R_03",
1529
+ "BN_Forearm_R_04",
1530
+ "BN_Mouth_01",
1531
+ "BN_Tail_01",
1532
+ "BN_Tail_L_01",
1533
+ "BN_Tail_R_01",
1534
+ "Bip01_Head",
1535
+ "Bip01_L_Calf",
1536
+ "Bip01_L_Foot",
1537
+ "Bip01_L_HorseLink",
1538
+ "Bip01_L_Thigh",
1539
+ "Bip01_L_Toe0",
1540
+ "Bip01_L_Toe01",
1541
+ "Bip01_L_Toe1",
1542
+ "Bip01_L_Toe11",
1543
+ "Bip01_L_Toe2",
1544
+ "Bip01_L_Toe21",
1545
+ "Bip01_Neck",
1546
+ "Bip01_Neck1",
1547
+ "Bip01_Neck2",
1548
+ "Bip01_Neck3",
1549
+ "Bip01_Neck4",
1550
+ "Bip01_Pelvis",
1551
+ "Bip01_R_Calf",
1552
+ "Bip01_R_Foot",
1553
+ "Bip01_R_HorseLink",
1554
+ "Bip01_R_Thigh",
1555
+ "Bip01_R_Toe0",
1556
+ "Bip01_R_Toe1",
1557
+ "Bip01_R_Toe2",
1558
+ "Bip01_Spine",
1559
+ "Bip01_Spine1",
1560
+ "Bone02",
1561
+ "Bone03",
1562
+ "Hips"
1563
+ ],
1564
+ "Fox": [
1565
+ "AN_NPC_MOB_FoxA_A01_SK_LTS",
1566
+ "BN_Ear_L_01",
1567
+ "BN_Ear_R_01",
1568
+ "BN_Mouth_01",
1569
+ "BN_Tail_01",
1570
+ "BN_Tail_02",
1571
+ "BN_Tail_03",
1572
+ "Bip01_Head",
1573
+ "Bip01_HeadNub",
1574
+ "Bip01_L_Calf",
1575
+ "Bip01_L_Clavicle",
1576
+ "Bip01_L_Finger0",
1577
+ "Bip01_L_Finger01",
1578
+ "Bip01_L_Finger0Nub",
1579
+ "Bip01_L_Foot",
1580
+ "Bip01_L_Forearm",
1581
+ "Bip01_L_Hand",
1582
+ "Bip01_L_HorseLink",
1583
+ "Bip01_L_Thigh",
1584
+ "Bip01_L_Toe0",
1585
+ "Bip01_L_Toe0Nub",
1586
+ "Bip01_L_UpperArm",
1587
+ "Bip01_Neck",
1588
+ "Bip01_Neck1",
1589
+ "Bip01_Pelvis",
1590
+ "Bip01_R_Calf",
1591
+ "Bip01_R_Clavicle",
1592
+ "Bip01_R_Finger0",
1593
+ "Bip01_R_Finger01",
1594
+ "Bip01_R_Finger0Nub",
1595
+ "Bip01_R_Foot",
1596
+ "Bip01_R_Forearm",
1597
+ "Bip01_R_Hand",
1598
+ "Bip01_R_HorseLink",
1599
+ "Bip01_R_Thigh",
1600
+ "Bip01_R_Toe0",
1601
+ "Bip01_R_Toe0Nub",
1602
+ "Bip01_R_UpperArm",
1603
+ "Bip01_Spine",
1604
+ "Bip01_Spine1",
1605
+ "Hips",
1606
+ "Skin"
1607
+ ],
1608
+ "Gazelle": [
1609
+ "BN_Ear_L_01",
1610
+ "BN_Ear_L_02",
1611
+ "BN_Ear_R_01",
1612
+ "BN_Ear_R_02",
1613
+ "BN_Eye_L_01",
1614
+ "BN_Eye_R_01",
1615
+ "BN_Mouth_01",
1616
+ "BN_Tail_01",
1617
+ "BN_Tail_02",
1618
+ "Bip01_Head",
1619
+ "Bip01_HeadNub",
1620
+ "Bip01_L_Calf",
1621
+ "Bip01_L_Clavicle",
1622
+ "Bip01_L_Finger0",
1623
+ "Bip01_L_Finger0Nub",
1624
+ "Bip01_L_Foot",
1625
+ "Bip01_L_Forearm",
1626
+ "Bip01_L_Hand",
1627
+ "Bip01_L_HorseLink",
1628
+ "Bip01_L_Thigh",
1629
+ "Bip01_L_Toe0",
1630
+ "Bip01_L_Toe0Nub",
1631
+ "Bip01_L_UpperArm",
1632
+ "Bip01_Neck",
1633
+ "Bip01_Neck1",
1634
+ "Bip01_Pelvis",
1635
+ "Bip01_R_Calf",
1636
+ "Bip01_R_Clavicle",
1637
+ "Bip01_R_Finger0",
1638
+ "Bip01_R_Finger0Nub",
1639
+ "Bip01_R_Foot",
1640
+ "Bip01_R_Forearm",
1641
+ "Bip01_R_Hand",
1642
+ "Bip01_R_HorseLink",
1643
+ "Bip01_R_Thigh",
1644
+ "Bip01_R_Toe0",
1645
+ "Bip01_R_Toe0Nub",
1646
+ "Bip01_R_UpperArm",
1647
+ "Bip01_Spine",
1648
+ "Bip01_Spine1",
1649
+ "Bip01_Spine2",
1650
+ "Hips"
1651
+ ],
1652
+ "Giantbee": [
1653
+ "BN_Calf_L_01",
1654
+ "BN_Calf_L_02",
1655
+ "BN_Calf_R_01",
1656
+ "BN_Calf_R_02",
1657
+ "BN_Clip_L_01",
1658
+ "BN_Clip_R_01",
1659
+ "BN_Foot_L_01",
1660
+ "BN_Foot_L_02",
1661
+ "BN_Foot_R_01",
1662
+ "BN_Foot_R_02",
1663
+ "BN_Shall_L_01",
1664
+ "BN_Shall_L_02",
1665
+ "BN_Shall_L_03",
1666
+ "BN_Shall_L_04",
1667
+ "BN_Shall_L_05",
1668
+ "BN_Shall_L_06",
1669
+ "BN_Shall_R_01",
1670
+ "BN_Shall_R_02",
1671
+ "BN_Shall_R_03",
1672
+ "BN_Shall_R_04",
1673
+ "BN_Shall_R_05",
1674
+ "BN_Shall_R_06",
1675
+ "BN_Thigh_L_01",
1676
+ "BN_Thigh_L_02",
1677
+ "BN_Thigh_R_01",
1678
+ "BN_Thigh_R_02",
1679
+ "BN_Wing_L_01",
1680
+ "BN_Wing_L_02",
1681
+ "BN_Wing_R_01",
1682
+ "BN_Wing_R_02",
1683
+ "Bip01_Head",
1684
+ "Bip01_HeadNub",
1685
+ "Bip01_L_Calf",
1686
+ "Bip01_L_Foot",
1687
+ "Bip01_L_Thigh",
1688
+ "Bip01_L_Toe0",
1689
+ "Bip01_L_Toe0Nub",
1690
+ "Bip01_Neck",
1691
+ "Bip01_Pelvis",
1692
+ "Bip01_R_Calf",
1693
+ "Bip01_R_Foot",
1694
+ "Bip01_R_Thigh",
1695
+ "Bip01_R_Toe0",
1696
+ "Bip01_R_Toe0Nub",
1697
+ "Bip01_Spine",
1698
+ "Bip01_Tail",
1699
+ "Bip01_Tail1",
1700
+ "Bip01_Tail2",
1701
+ "Bip01_Tail3",
1702
+ "Bip01_Tail4",
1703
+ "Bip01_TailNub",
1704
+ "Hips"
1705
+ ],
1706
+ "Goat": [
1707
+ "BN_Mouth_01",
1708
+ "BN_Tail_01",
1709
+ "BN_Tail_02",
1710
+ "BN__UpperArm_L_01",
1711
+ "BN__UpperArm_R_01",
1712
+ "Bip01_Head",
1713
+ "Bip01_L_Calf",
1714
+ "Bip01_L_Clavicle",
1715
+ "Bip01_L_Finger0",
1716
+ "Bip01_L_Foot",
1717
+ "Bip01_L_Forearm",
1718
+ "Bip01_L_Hand",
1719
+ "Bip01_L_HorseLink",
1720
+ "Bip01_L_Thigh",
1721
+ "Bip01_L_Toe0",
1722
+ "Bip01_L_UpperArm",
1723
+ "Bip01_Neck",
1724
+ "Bip01_Neck1",
1725
+ "Bip01_Pelvis",
1726
+ "Bip01_R_Calf",
1727
+ "Bip01_R_Clavicle",
1728
+ "Bip01_R_Finger0",
1729
+ "Bip01_R_Foot",
1730
+ "Bip01_R_Forearm",
1731
+ "Bip01_R_Hand",
1732
+ "Bip01_R_HorseLink",
1733
+ "Bip01_R_Thigh",
1734
+ "Bip01_R_Toe0",
1735
+ "Bip01_R_UpperArm",
1736
+ "Bip01_Spine",
1737
+ "Bip01_Spine1",
1738
+ "Hips",
1739
+ "Null"
1740
+ ],
1741
+ "Hamster": [
1742
+ "BN_Beard_L",
1743
+ "BN_Beard_R",
1744
+ "BN_Ear_L",
1745
+ "BN_Ear_R",
1746
+ "BN_Hair_L",
1747
+ "BN_Hair_R",
1748
+ "BN_Mascara_L",
1749
+ "BN_Mascara_R",
1750
+ "BN_Mouth",
1751
+ "BN_Tail",
1752
+ "Bip01_Head",
1753
+ "Bip01_HeadNub",
1754
+ "Bip01_L_Calf",
1755
+ "Bip01_L_Clavicle",
1756
+ "Bip01_L_Finger0",
1757
+ "Bip01_L_Finger0Nub",
1758
+ "Bip01_L_Foot",
1759
+ "Bip01_L_Forearm",
1760
+ "Bip01_L_Hand",
1761
+ "Bip01_L_HorseLink",
1762
+ "Bip01_L_Thigh",
1763
+ "Bip01_L_Toe0",
1764
+ "Bip01_L_Toe0Nub",
1765
+ "Bip01_L_UpperArm",
1766
+ "Bip01_Neck",
1767
+ "Bip01_Pelvis",
1768
+ "Bip01_R_Calf",
1769
+ "Bip01_R_Clavicle",
1770
+ "Bip01_R_Finger0",
1771
+ "Bip01_R_Finger0Nub",
1772
+ "Bip01_R_Foot",
1773
+ "Bip01_R_Forearm",
1774
+ "Bip01_R_Hand",
1775
+ "Bip01_R_HorseLink",
1776
+ "Bip01_R_Thigh",
1777
+ "Bip01_R_Toe0",
1778
+ "Bip01_R_Toe0Nub",
1779
+ "Bip01_R_UpperArm",
1780
+ "Bip01_Spine",
1781
+ "Bip01_Spine1",
1782
+ "Bip01_Spine2",
1783
+ "Hips"
1784
+ ],
1785
+ "HermitCrab": [
1786
+ "BN_Body_01",
1787
+ "BN_Body_02",
1788
+ "BN_Crab_pincers_L_01",
1789
+ "BN_Crab_pincers_L_02",
1790
+ "BN_Crab_pincers_L_03",
1791
+ "BN_Crab_pincers_L_04",
1792
+ "BN_Crab_pincers_R_01",
1793
+ "BN_Crab_pincers_R_02",
1794
+ "BN_Crab_pincers_R_03",
1795
+ "BN_Crab_pincers_R_04",
1796
+ "BN_Eye_L_01",
1797
+ "BN_Eye_R_01",
1798
+ "BN_Head",
1799
+ "BN_Leg_L_07",
1800
+ "BN_Leg_L_08",
1801
+ "BN_Leg_L_09",
1802
+ "BN_Leg_L_10",
1803
+ "BN_Leg_L_11",
1804
+ "BN_Leg_L_12",
1805
+ "BN_Leg_L_13",
1806
+ "BN_Leg_L_14",
1807
+ "BN_Leg_L_15",
1808
+ "BN_Leg_R_07",
1809
+ "BN_Leg_R_08",
1810
+ "BN_Leg_R_09",
1811
+ "BN_Leg_R_10",
1812
+ "BN_Leg_R_11",
1813
+ "BN_Leg_R_12",
1814
+ "BN_Leg_R_13",
1815
+ "BN_Leg_R_14",
1816
+ "BN_Leg_R_15",
1817
+ "BN_Piers_L_01",
1818
+ "BN_Piers_L_02",
1819
+ "BN_Piers_L_03",
1820
+ "BN_Piers_R_01",
1821
+ "BN_Piers_R_02",
1822
+ "BN_Piers_R_03",
1823
+ "BN_Shell",
1824
+ "BN_Tentacles_L_01",
1825
+ "BN_Tentacles_L_02",
1826
+ "BN_Tentacles_L_03",
1827
+ "BN_Tentacles_L_04",
1828
+ "BN_Tentacles_L_05",
1829
+ "BN_Tentacles_L_06",
1830
+ "BN_Tentacles_L_07",
1831
+ "BN_Tentacles_L_08",
1832
+ "BN_Tentacles_R_01",
1833
+ "BN_Tentacles_R_02",
1834
+ "BN_Tentacles_R_03",
1835
+ "BN_Tentacles_R_04",
1836
+ "BN_Tentacles_R_05",
1837
+ "BN_Tentacles_R_06",
1838
+ "BN_Tentacles_R_07",
1839
+ "BN_Tentacles_R_08",
1840
+ "BN_leg_L_01",
1841
+ "BN_leg_L_02",
1842
+ "BN_leg_L_03",
1843
+ "BN_leg_L_04",
1844
+ "BN_leg_L_05",
1845
+ "BN_leg_L_06",
1846
+ "BN_leg_R_01",
1847
+ "BN_leg_R_02",
1848
+ "BN_leg_R_03",
1849
+ "BN_leg_R_04",
1850
+ "BN_leg_R_05",
1851
+ "BN_leg_R_06",
1852
+ "Hips"
1853
+ ],
1854
+ "Hippopotamus": [
1855
+ "BN_Downbody",
1856
+ "BN_Ear_L",
1857
+ "BN_Ear_R",
1858
+ "BN_Eye_L",
1859
+ "BN_Eye_R",
1860
+ "BN_Jaw",
1861
+ "BN_Tail_01",
1862
+ "BN_Tail_02",
1863
+ "BN_Tail_03",
1864
+ "Bip01_Head",
1865
+ "Bip01_HeadNub",
1866
+ "Bip01_L_Calf",
1867
+ "Bip01_L_Clavicle",
1868
+ "Bip01_L_Finger0",
1869
+ "Bip01_L_Finger0Nub",
1870
+ "Bip01_L_Foot",
1871
+ "Bip01_L_Forearm",
1872
+ "Bip01_L_Hand",
1873
+ "Bip01_L_HorseLink",
1874
+ "Bip01_L_Thigh",
1875
+ "Bip01_L_Toe0",
1876
+ "Bip01_L_Toe0Nub",
1877
+ "Bip01_L_UpperArm",
1878
+ "Bip01_Neck",
1879
+ "Bip01_Pelvis",
1880
+ "Bip01_R_Calf",
1881
+ "Bip01_R_Clavicle",
1882
+ "Bip01_R_Finger0",
1883
+ "Bip01_R_Finger0Nub",
1884
+ "Bip01_R_Foot",
1885
+ "Bip01_R_Forearm",
1886
+ "Bip01_R_Hand",
1887
+ "Bip01_R_HorseLink",
1888
+ "Bip01_R_Thigh",
1889
+ "Bip01_R_Toe0",
1890
+ "Bip01_R_Toe0Nub",
1891
+ "Bip01_R_UpperArm",
1892
+ "Bip01_Spine",
1893
+ "Bip01_Spine1",
1894
+ "Bip01_Spine2",
1895
+ "Hips"
1896
+ ],
1897
+ "Horse": [
1898
+ "BN_Eyebrow_L",
1899
+ "BN_Eyebrow_R",
1900
+ "BN_Halter_L_01",
1901
+ "BN_Halter_L_02",
1902
+ "BN_Halter_R_01",
1903
+ "BN_Halter_R_02",
1904
+ "BN_Reins_01",
1905
+ "BN_Reins_02",
1906
+ "BN_Reins_03",
1907
+ "BN_Reins_04",
1908
+ "BN_Reins_05",
1909
+ "BN_Reins_06",
1910
+ "BN_Tail_01",
1911
+ "BN_Tail_02",
1912
+ "BN_Tail_03",
1913
+ "BN_Tail_04",
1914
+ "BN_Tail_05",
1915
+ "BN_center",
1916
+ "BN_hair01_01",
1917
+ "BN_hair01_02",
1918
+ "BN_hair02_01",
1919
+ "BN_hair02_02",
1920
+ "BN_hair02_03",
1921
+ "BN_hair03_01",
1922
+ "BN_hair03_02",
1923
+ "BN_hair03_03",
1924
+ "BN_hair04_01",
1925
+ "BN_hair04_02",
1926
+ "BN_hair04_03",
1927
+ "Bip01",
1928
+ "Bip01_Head",
1929
+ "Bip01_HeadNub",
1930
+ "Bip01_Jaw",
1931
+ "Bip01_L_Calf",
1932
+ "Bip01_L_Clavicle",
1933
+ "Bip01_L_Finger0",
1934
+ "Bip01_L_Finger0Nub",
1935
+ "Bip01_L_Foot",
1936
+ "Bip01_L_Forearm",
1937
+ "Bip01_L_Hand",
1938
+ "Bip01_L_HorseLink",
1939
+ "Bip01_L_Thigh",
1940
+ "Bip01_L_Toe0",
1941
+ "Bip01_L_Toe0Nub",
1942
+ "Bip01_L_UpperArm",
1943
+ "Bip01_Neck",
1944
+ "Bip01_Neck1",
1945
+ "Bip01_Pelvis",
1946
+ "Bip01_Ponytail1Nub",
1947
+ "Bip01_R_Calf",
1948
+ "Bip01_R_Clavicle",
1949
+ "Bip01_R_Ear_01",
1950
+ "Bip01_R_Finger0",
1951
+ "Bip01_R_Finger0Nub",
1952
+ "Bip01_R_Foot",
1953
+ "Bip01_R_Forearm",
1954
+ "Bip01_R_Hand",
1955
+ "Bip01_R_HorseLink",
1956
+ "Bip01_R_Thigh",
1957
+ "Bip01_R_Toe0",
1958
+ "Bip01_R_Toe0Nub",
1959
+ "Bip01_R_UpperArm",
1960
+ "Bip01_Spine",
1961
+ "Bip01_Spine1",
1962
+ "Bip01_Spine2",
1963
+ "Bip01_Xtra01",
1964
+ "Bip01_Xtra01Nub",
1965
+ "Bip01_Xtra02",
1966
+ "Bip01_Xtra02Nub",
1967
+ "Bip01_Xtra03Nub",
1968
+ "Bip01_Xtra04Nub",
1969
+ "Bip01_Xtra05Nub",
1970
+ "Bip01_Xtra06Nub",
1971
+ "Bip01__L_Ear_01",
1972
+ "C_ctrl",
1973
+ "Handle",
1974
+ "Hips",
1975
+ "IK_Chain01",
1976
+ "Saddle"
1977
+ ],
1978
+ "Hound": [
1979
+ "BN_Chin_01",
1980
+ "BN_Ear_L_01",
1981
+ "BN_Ear_R_01",
1982
+ "BN_Eyelid_L_01",
1983
+ "BN_Eyelid_R_01",
1984
+ "BN_Mouth_L_01",
1985
+ "BN_Mouth_R_01",
1986
+ "BN_Nose_01",
1987
+ "BN_Tail_01",
1988
+ "BN_Tongue_01",
1989
+ "BN_Tongue_02",
1990
+ "BN_Tongue_03",
1991
+ "Bip01_Head",
1992
+ "Bip01_HeadNub",
1993
+ "Bip01_L_Calf",
1994
+ "Bip01_L_Clavicle",
1995
+ "Bip01_L_Finger0",
1996
+ "Bip01_L_Finger0Nub",
1997
+ "Bip01_L_Foot",
1998
+ "Bip01_L_Forearm",
1999
+ "Bip01_L_Hand",
2000
+ "Bip01_L_HorseLink",
2001
+ "Bip01_L_Thigh",
2002
+ "Bip01_L_Toe0",
2003
+ "Bip01_L_Toe0Nub",
2004
+ "Bip01_L_UpperArm",
2005
+ "Bip01_Neck",
2006
+ "Bip01_Neck1",
2007
+ "Bip01_Pelvis",
2008
+ "Bip01_R_Calf",
2009
+ "Bip01_R_Clavicle",
2010
+ "Bip01_R_Finger0",
2011
+ "Bip01_R_Finger0Nub",
2012
+ "Bip01_R_Foot",
2013
+ "Bip01_R_Forearm",
2014
+ "Bip01_R_Hand",
2015
+ "Bip01_R_HorseLink",
2016
+ "Bip01_R_Thigh",
2017
+ "Bip01_R_Toe0",
2018
+ "Bip01_R_Toe0Nub",
2019
+ "Bip01_R_UpperArm",
2020
+ "Bip01_Spine",
2021
+ "Bip01_Spine1",
2022
+ "Bip01_Spine2",
2023
+ "Hips"
2024
+ ],
2025
+ "Isopetra": [
2026
+ "BN_Feeler_L_01",
2027
+ "BN_Feeler_L_02",
2028
+ "BN_Feeler_L_03",
2029
+ "BN_Feeler_L_04",
2030
+ "BN_Feeler_L_05",
2031
+ "BN_Feeler_R_01",
2032
+ "BN_Feeler_R_02",
2033
+ "BN_Feeler_R_03",
2034
+ "BN_Feeler_R_04",
2035
+ "BN_Feeler_R_05",
2036
+ "BN_Mouth_L_01",
2037
+ "BN_Mouth_R_01",
2038
+ "BN_Tail_01",
2039
+ "BN_Tail_02",
2040
+ "BN_Tail_03",
2041
+ "BN_leg_L_01",
2042
+ "BN_leg_L_02",
2043
+ "BN_leg_L_03",
2044
+ "BN_leg_L_04",
2045
+ "BN_leg_L_05",
2046
+ "BN_leg_L_06",
2047
+ "BN_leg_R_01",
2048
+ "BN_leg_R_02",
2049
+ "BN_leg_R_03",
2050
+ "BN_leg_R_04",
2051
+ "BN_leg_R_05",
2052
+ "BN_leg_R_06",
2053
+ "Bip01_Head",
2054
+ "Bip01_HeadNub",
2055
+ "Bip01_L_Calf",
2056
+ "Bip01_L_Clavicle",
2057
+ "Bip01_L_Finger0",
2058
+ "Bip01_L_Finger01",
2059
+ "Bip01_L_Finger02",
2060
+ "Bip01_L_Finger0Nub",
2061
+ "Bip01_L_Foot",
2062
+ "Bip01_L_Forearm",
2063
+ "Bip01_L_Hand",
2064
+ "Bip01_L_HorseLink",
2065
+ "Bip01_L_Thigh",
2066
+ "Bip01_L_Toe0",
2067
+ "Bip01_L_Toe01",
2068
+ "Bip01_L_Toe0Nub",
2069
+ "Bip01_L_UpperArm",
2070
+ "Bip01_Neck",
2071
+ "Bip01_Pelvis",
2072
+ "Bip01_R_Calf",
2073
+ "Bip01_R_Clavicle",
2074
+ "Bip01_R_Finger0",
2075
+ "Bip01_R_Finger01",
2076
+ "Bip01_R_Finger02",
2077
+ "Bip01_R_Finger0Nub",
2078
+ "Bip01_R_Foot",
2079
+ "Bip01_R_Forearm",
2080
+ "Bip01_R_Hand",
2081
+ "Bip01_R_HorseLink",
2082
+ "Bip01_R_Thigh",
2083
+ "Bip01_R_Toe0",
2084
+ "Bip01_R_Toe01",
2085
+ "Bip01_R_Toe0Nub",
2086
+ "Bip01_R_UpperArm",
2087
+ "Bip01_Spine",
2088
+ "Hips"
2089
+ ],
2090
+ "Jaguar": [
2091
+ "BN_Beard_L_01",
2092
+ "BN_Beard_R_01",
2093
+ "BN_Ear_L_01",
2094
+ "BN_Ear_R_01",
2095
+ "BN_Eye_L_01",
2096
+ "BN_Eye_R_01",
2097
+ "BN_Mouth_0",
2098
+ "BN_Tail_01",
2099
+ "BN_Tail_02",
2100
+ "BN_Tail_03",
2101
+ "BN_Tail_04",
2102
+ "BN_Tongue_01",
2103
+ "BN_Tongue_02",
2104
+ "Bip01_Head",
2105
+ "Bip01_HeadNub",
2106
+ "Bip01_L_Calf",
2107
+ "Bip01_L_Clavicle",
2108
+ "Bip01_L_Finger0",
2109
+ "Bip01_L_Finger0Nub",
2110
+ "Bip01_L_Foot",
2111
+ "Bip01_L_Forearm",
2112
+ "Bip01_L_Hand",
2113
+ "Bip01_L_HorseLink",
2114
+ "Bip01_L_Thigh",
2115
+ "Bip01_L_Toe0",
2116
+ "Bip01_L_Toe0Nub",
2117
+ "Bip01_L_UpperArm",
2118
+ "Bip01_Neck",
2119
+ "Bip01_Neck1",
2120
+ "Bip01_Pelvis",
2121
+ "Bip01_R_Calf",
2122
+ "Bip01_R_Clavicle",
2123
+ "Bip01_R_Finger0",
2124
+ "Bip01_R_Finger0Nub",
2125
+ "Bip01_R_Foot",
2126
+ "Bip01_R_Forearm",
2127
+ "Bip01_R_Hand",
2128
+ "Bip01_R_HorseLink",
2129
+ "Bip01_R_Thigh",
2130
+ "Bip01_R_Toe0",
2131
+ "Bip01_R_Toe0Nub",
2132
+ "Bip01_R_UpperArm",
2133
+ "Bip01_Spine",
2134
+ "Bip01_Spine1",
2135
+ "Bip01_Spine2",
2136
+ "Hips"
2137
+ ],
2138
+ "Jaws": [
2139
+ "Hips",
2140
+ "N_ALL",
2141
+ "_00",
2142
+ "_01",
2143
+ "_02",
2144
+ "_03",
2145
+ "_04",
2146
+ "_05",
2147
+ "_06",
2148
+ "_07",
2149
+ "_08",
2150
+ "_09",
2151
+ "_10",
2152
+ "_11",
2153
+ "_12",
2154
+ "_13",
2155
+ "_14",
2156
+ "_15"
2157
+ ],
2158
+ "KingCobra": [
2159
+ "BN_Head_01",
2160
+ "BN_Mouth_01",
2161
+ "BN_Spine_01",
2162
+ "BN_Spine_02",
2163
+ "BN_Spine_03",
2164
+ "BN_Tail_01",
2165
+ "BN_Tail_02",
2166
+ "BN_Tail_03",
2167
+ "BN_Tail_04",
2168
+ "BN_Tail_05",
2169
+ "BN_Tail_06",
2170
+ "BN_Tail_07",
2171
+ "BN_Tongue_01",
2172
+ "BN_Tongue_02",
2173
+ "BN__Neck_01",
2174
+ "BN__Neck_02",
2175
+ "BN__Neck_L_01",
2176
+ "BN__Neck_R_01",
2177
+ "Hips"
2178
+ ],
2179
+ "Leapord": [
2180
+ "BN_Beard_L_01",
2181
+ "BN_Beard_R_01",
2182
+ "BN_Ear_L_01",
2183
+ "BN_Ear_R_01",
2184
+ "BN_Eye_L_01",
2185
+ "BN_Eye_R_01",
2186
+ "BN_Mane_01",
2187
+ "BN_Mane_02",
2188
+ "BN_Mane_R_01",
2189
+ "BN_Mane_R_02",
2190
+ "BN_Mouth_0",
2191
+ "BN_Tail_01",
2192
+ "BN_Tail_02",
2193
+ "BN_Tail_03",
2194
+ "BN_Tail_04",
2195
+ "Bip01_Head",
2196
+ "Bip01_HeadNub",
2197
+ "Bip01_L_Calf",
2198
+ "Bip01_L_Clavicle",
2199
+ "Bip01_L_Finger0",
2200
+ "Bip01_L_Finger0Nub",
2201
+ "Bip01_L_Foot",
2202
+ "Bip01_L_Forearm",
2203
+ "Bip01_L_Hand",
2204
+ "Bip01_L_HorseLink",
2205
+ "Bip01_L_Thigh",
2206
+ "Bip01_L_Toe0",
2207
+ "Bip01_L_Toe0Nub",
2208
+ "Bip01_L_UpperArm",
2209
+ "Bip01_Neck",
2210
+ "Bip01_Neck1",
2211
+ "Bip01_Pelvis",
2212
+ "Bip01_R_Calf",
2213
+ "Bip01_R_Clavicle",
2214
+ "Bip01_R_Finger0",
2215
+ "Bip01_R_Finger0Nub",
2216
+ "Bip01_R_Foot",
2217
+ "Bip01_R_Forearm",
2218
+ "Bip01_R_Hand",
2219
+ "Bip01_R_HorseLink",
2220
+ "Bip01_R_Thigh",
2221
+ "Bip01_R_Toe0",
2222
+ "Bip01_R_Toe0Nub",
2223
+ "Bip01_R_UpperArm",
2224
+ "Bip01_Spine",
2225
+ "Bip01_Spine1",
2226
+ "Bip01_Spine2",
2227
+ "Hips"
2228
+ ],
2229
+ "Lion": [
2230
+ "BN_Mouth_01",
2231
+ "BN_Tail_01",
2232
+ "BN_Tail_02",
2233
+ "BN_Tail_03",
2234
+ "BN_Tail_04",
2235
+ "Bip01_Head",
2236
+ "Bip01_L_Calf",
2237
+ "Bip01_L_Clavicle",
2238
+ "Bip01_L_Finger0",
2239
+ "Bip01_L_Foot",
2240
+ "Bip01_L_Forearm",
2241
+ "Bip01_L_Hand",
2242
+ "Bip01_L_HorseLink",
2243
+ "Bip01_L_Thigh",
2244
+ "Bip01_L_Toe0",
2245
+ "Bip01_L_UpperArm",
2246
+ "Bip01_Neck",
2247
+ "Bip01_Neck1",
2248
+ "Bip01_Pelvis",
2249
+ "Bip01_R_Calf",
2250
+ "Bip01_R_Clavicle",
2251
+ "Bip01_R_Finger0",
2252
+ "Bip01_R_Foot",
2253
+ "Bip01_R_Forearm",
2254
+ "Bip01_R_Hand",
2255
+ "Bip01_R_HorseLink",
2256
+ "Bip01_R_Thigh",
2257
+ "Bip01_R_Toe0",
2258
+ "Bip01_R_UpperArm",
2259
+ "Bip01_Spine",
2260
+ "Bip01_Spine1",
2261
+ "Hips"
2262
+ ],
2263
+ "Lynx": [
2264
+ "BN_Beard_L_01",
2265
+ "BN_Beard_R_01",
2266
+ "BN_Ear_L_01",
2267
+ "BN_Ear_L_02",
2268
+ "BN_Ear_R_01",
2269
+ "BN_Ear_R_02",
2270
+ "BN_Mouth_01",
2271
+ "Bip01_Head",
2272
+ "Bip01_HeadNub",
2273
+ "Bip01_L_Calf",
2274
+ "Bip01_L_Clavicle",
2275
+ "Bip01_L_Finger0",
2276
+ "Bip01_L_Finger0Nub",
2277
+ "Bip01_L_Foot",
2278
+ "Bip01_L_Forearm",
2279
+ "Bip01_L_Hand",
2280
+ "Bip01_L_HorseLink",
2281
+ "Bip01_L_Thigh",
2282
+ "Bip01_L_Toe0",
2283
+ "Bip01_L_Toe0Nub",
2284
+ "Bip01_L_UpperArm",
2285
+ "Bip01_Neck",
2286
+ "Bip01_Pelvis",
2287
+ "Bip01_R_Calf",
2288
+ "Bip01_R_Clavicle",
2289
+ "Bip01_R_Finger0",
2290
+ "Bip01_R_Finger0Nub",
2291
+ "Bip01_R_Foot",
2292
+ "Bip01_R_Forearm",
2293
+ "Bip01_R_Hand",
2294
+ "Bip01_R_HorseLink",
2295
+ "Bip01_R_Thigh",
2296
+ "Bip01_R_Toe0",
2297
+ "Bip01_R_Toe0Nub",
2298
+ "Bip01_R_UpperArm",
2299
+ "Bip01_Spine",
2300
+ "Bip01_Spine1",
2301
+ "Bip01_Spine2",
2302
+ "Hips"
2303
+ ],
2304
+ "Mammoth": [
2305
+ "BN_Ear_L_01",
2306
+ "BN_Ear_R_01",
2307
+ "BN_Eyebrow_L",
2308
+ "BN_Eyebrow_R",
2309
+ "BN_Fur_01",
2310
+ "BN_Fur_02",
2311
+ "BN_Fur_03",
2312
+ "BN_Mouth_01",
2313
+ "BN_Nose_01",
2314
+ "BN_Nose_02",
2315
+ "BN_Nose_03",
2316
+ "BN_Nose_04",
2317
+ "BN_Nose_05",
2318
+ "BN_Nose_06",
2319
+ "BN_Nose_07",
2320
+ "BN_Tail_01",
2321
+ "BN_Tail_02",
2322
+ "BN_Tail_03",
2323
+ "BN_Tail_04",
2324
+ "Bip01_Head",
2325
+ "Bip01_L_Calf",
2326
+ "Bip01_L_Clavicle",
2327
+ "Bip01_L_Foot",
2328
+ "Bip01_L_Forearm",
2329
+ "Bip01_L_Hand",
2330
+ "Bip01_L_Thigh",
2331
+ "Bip01_L_Toe0",
2332
+ "Bip01_L_UpperArm",
2333
+ "Bip01_Neck",
2334
+ "Bip01_Pelvis",
2335
+ "Bip01_R_Calf",
2336
+ "Bip01_R_Clavicle",
2337
+ "Bip01_R_Foot",
2338
+ "Bip01_R_Forearm",
2339
+ "Bip01_R_Hand",
2340
+ "Bip01_R_Thigh",
2341
+ "Bip01_R_Toe0",
2342
+ "Bip01_R_UpperArm",
2343
+ "Bip01_Spine",
2344
+ "Bip01_Spine1",
2345
+ "Bip01_Spine2",
2346
+ "Hips"
2347
+ ],
2348
+ "Monkey": [
2349
+ "BN_Beard_L",
2350
+ "BN_Beard_R",
2351
+ "BN_Lip_01",
2352
+ "BN_Lip_02",
2353
+ "BN_Mouth",
2354
+ "BN_Tail_01",
2355
+ "BN_Tail_02",
2356
+ "BN_Tail_03",
2357
+ "BN_Tail_04",
2358
+ "BN_Tail_05",
2359
+ "BN_Tail_06",
2360
+ "BN_Tail_07",
2361
+ "BN_eyelid_L",
2362
+ "BN_eyelid_R",
2363
+ "Bip01_Head",
2364
+ "Bip01_HeadNub",
2365
+ "Bip01_L_Calf",
2366
+ "Bip01_L_Clavicle",
2367
+ "Bip01_L_Finger0",
2368
+ "Bip01_L_Finger01",
2369
+ "Bip01_L_Finger02",
2370
+ "Bip01_L_Finger0Nub",
2371
+ "Bip01_L_Finger1",
2372
+ "Bip01_L_Finger11",
2373
+ "Bip01_L_Finger12",
2374
+ "Bip01_L_Finger1Nub",
2375
+ "Bip01_L_Finger2",
2376
+ "Bip01_L_Finger21",
2377
+ "Bip01_L_Finger22",
2378
+ "Bip01_L_Finger2Nub",
2379
+ "Bip01_L_Finger3",
2380
+ "Bip01_L_Finger31",
2381
+ "Bip01_L_Finger32",
2382
+ "Bip01_L_Finger3Nub",
2383
+ "Bip01_L_Foot",
2384
+ "Bip01_L_Forearm",
2385
+ "Bip01_L_Hand",
2386
+ "Bip01_L_Thigh",
2387
+ "Bip01_L_Toe0",
2388
+ "Bip01_L_Toe01",
2389
+ "Bip01_L_Toe0Nub",
2390
+ "Bip01_L_Toe1",
2391
+ "Bip01_L_Toe11",
2392
+ "Bip01_L_Toe1Nub",
2393
+ "Bip01_L_Toe2",
2394
+ "Bip01_L_Toe21",
2395
+ "Bip01_L_Toe2Nub",
2396
+ "Bip01_L_UpperArm",
2397
+ "Bip01_Neck",
2398
+ "Bip01_Pelvis",
2399
+ "Bip01_R_Calf",
2400
+ "Bip01_R_Clavicle",
2401
+ "Bip01_R_Finger0",
2402
+ "Bip01_R_Finger01",
2403
+ "Bip01_R_Finger02",
2404
+ "Bip01_R_Finger0Nub",
2405
+ "Bip01_R_Finger1",
2406
+ "Bip01_R_Finger11",
2407
+ "Bip01_R_Finger12",
2408
+ "Bip01_R_Finger1Nub",
2409
+ "Bip01_R_Finger2",
2410
+ "Bip01_R_Finger21",
2411
+ "Bip01_R_Finger22",
2412
+ "Bip01_R_Finger2Nub",
2413
+ "Bip01_R_Finger3",
2414
+ "Bip01_R_Finger31",
2415
+ "Bip01_R_Finger32",
2416
+ "Bip01_R_Finger3Nub",
2417
+ "Bip01_R_Foot",
2418
+ "Bip01_R_Forearm",
2419
+ "Bip01_R_Hand",
2420
+ "Bip01_R_Thigh",
2421
+ "Bip01_R_Toe0",
2422
+ "Bip01_R_Toe01",
2423
+ "Bip01_R_Toe0Nub",
2424
+ "Bip01_R_Toe1",
2425
+ "Bip01_R_Toe11",
2426
+ "Bip01_R_Toe1Nub",
2427
+ "Bip01_R_Toe2",
2428
+ "Bip01_R_Toe21",
2429
+ "Bip01_R_Toe2Nub",
2430
+ "Bip01_R_UpperArm",
2431
+ "Bip01_Spine",
2432
+ "Bip01_Spine1",
2433
+ "Bip01_Spine2",
2434
+ "Hips",
2435
+ "Monkey_A01",
2436
+ "Skin"
2437
+ ],
2438
+ "Ostrich": [
2439
+ "BN_Eye_L_01",
2440
+ "BN_Eye_R_01",
2441
+ "BN_Forearm_L_01",
2442
+ "BN_Forearm_L_02",
2443
+ "BN_Forearm_L_03",
2444
+ "BN_Forearm_L_04",
2445
+ "BN_Forearm_L_05",
2446
+ "BN_Forearm_L_06",
2447
+ "BN_Forearm_L_07",
2448
+ "BN_Forearm_L_08",
2449
+ "BN_Forearm_R_01",
2450
+ "BN_Forearm_R_02",
2451
+ "BN_Forearm_R_03",
2452
+ "BN_Forearm_R_04",
2453
+ "BN_Forearm_R_05",
2454
+ "BN_Forearm_R_06",
2455
+ "BN_Forearm_R_07",
2456
+ "BN_Forearm_R_08",
2457
+ "BN_Mouth_01",
2458
+ "BN_Tail_01",
2459
+ "BN_Tail_02",
2460
+ "BN_Tail_03",
2461
+ "BN_Tail_04",
2462
+ "Bip01_Head",
2463
+ "Bip01_HeadNub",
2464
+ "Bip01_L_Calf",
2465
+ "Bip01_L_Foot",
2466
+ "Bip01_L_HorseLink",
2467
+ "Bip01_L_Thigh",
2468
+ "Bip01_L_Toe0",
2469
+ "Bip01_L_Toe01",
2470
+ "Bip01_L_Toe0Nub",
2471
+ "Bip01_L_Toe1",
2472
+ "Bip01_L_Toe11",
2473
+ "Bip01_L_Toe1Nub",
2474
+ "Bip01_Neck",
2475
+ "Bip01_Neck1",
2476
+ "Bip01_Neck2",
2477
+ "Bip01_Neck3",
2478
+ "Bip01_Neck4",
2479
+ "Bip01_Pelvis",
2480
+ "Bip01_R_Calf",
2481
+ "Bip01_R_Foot",
2482
+ "Bip01_R_HorseLink",
2483
+ "Bip01_R_Thigh",
2484
+ "Bip01_R_Toe0",
2485
+ "Bip01_R_Toe01",
2486
+ "Bip01_R_Toe0Nub",
2487
+ "Bip01_R_Toe1",
2488
+ "Bip01_R_Toe11",
2489
+ "Bip01_R_Toe1Nub",
2490
+ "Bip01_Spine",
2491
+ "Bip01_Spine1",
2492
+ "Hips"
2493
+ ],
2494
+ "Parrot": [
2495
+ "BN_Eye_L_01",
2496
+ "BN_Eye_L_02",
2497
+ "BN_Eye_R_01",
2498
+ "BN_Eye_R_02",
2499
+ "BN_Fur_01",
2500
+ "BN_Fur_02",
2501
+ "BN_Fur_03",
2502
+ "BN_Fur_04",
2503
+ "BN_Fur_05",
2504
+ "BN_Jaw",
2505
+ "BN_Tail_01",
2506
+ "BN_Tail_02",
2507
+ "BN_Tail_03",
2508
+ "BN_Tail_04",
2509
+ "BN_Tail_05",
2510
+ "BN_Tail_06",
2511
+ "BN_Tail_07",
2512
+ "BN_Wing_L_01",
2513
+ "BN_Wing_L_02",
2514
+ "BN_Wing_L_03",
2515
+ "BN_Wing_L_04",
2516
+ "BN_Wing_L_05",
2517
+ "BN_Wing_L_06",
2518
+ "BN_Wing_L_07",
2519
+ "BN_Wing_R_01",
2520
+ "BN_Wing_R_02",
2521
+ "BN_Wing_R_03",
2522
+ "BN_Wing_R_04",
2523
+ "BN_Wing_R_05",
2524
+ "BN_Wing_R_06",
2525
+ "BN_Wing_R_07",
2526
+ "Bip01_Head",
2527
+ "Bip01_HeadNub",
2528
+ "Bip01_L_Calf",
2529
+ "Bip01_L_Foot",
2530
+ "Bip01_L_HorseLink",
2531
+ "Bip01_L_Thigh",
2532
+ "Bip01_L_Toe0",
2533
+ "Bip01_L_Toe01",
2534
+ "Bip01_L_Toe0Nub",
2535
+ "Bip01_L_Toe1",
2536
+ "Bip01_L_Toe11",
2537
+ "Bip01_L_Toe1Nub",
2538
+ "Bip01_L_Toe2",
2539
+ "Bip01_L_Toe21",
2540
+ "Bip01_L_Toe2Nub",
2541
+ "Bip01_L_Toe3",
2542
+ "Bip01_L_Toe31",
2543
+ "Bip01_L_Toe3Nub",
2544
+ "Bip01_Neck",
2545
+ "Bip01_Neck1",
2546
+ "Bip01_Pelvis",
2547
+ "Bip01_R_Calf",
2548
+ "Bip01_R_Foot",
2549
+ "Bip01_R_HorseLink",
2550
+ "Bip01_R_Thigh",
2551
+ "Bip01_R_Toe0",
2552
+ "Bip01_R_Toe01",
2553
+ "Bip01_R_Toe0Nub",
2554
+ "Bip01_R_Toe1",
2555
+ "Bip01_R_Toe11",
2556
+ "Bip01_R_Toe1Nub",
2557
+ "Bip01_R_Toe2",
2558
+ "Bip01_R_Toe21",
2559
+ "Bip01_R_Toe2Nub",
2560
+ "Bip01_R_Toe3",
2561
+ "Bip01_R_Toe31",
2562
+ "Bip01_R_Toe3Nub",
2563
+ "Bip01_Spine",
2564
+ "Bip01_Spine1",
2565
+ "Hips"
2566
+ ],
2567
+ "Parrot2": [
2568
+ "BN_Eye_L_01",
2569
+ "BN_Eye_L_02",
2570
+ "BN_Eye_R_02",
2571
+ "BN_Jaw",
2572
+ "BN_Tail_01",
2573
+ "BN_Tail_02",
2574
+ "BN_Tail_03",
2575
+ "BN_Tail_04",
2576
+ "BN_Tail_05",
2577
+ "BN_Wing_L_01",
2578
+ "BN_Wing_L_02",
2579
+ "BN_Wing_L_03",
2580
+ "BN_Wing_L_04",
2581
+ "BN_Wing_L_05",
2582
+ "BN_Wing_L_06",
2583
+ "BN_Wing_L_07",
2584
+ "BN_Wing_R_01",
2585
+ "BN_Wing_R_02",
2586
+ "BN_Wing_R_03",
2587
+ "BN_Wing_R_04",
2588
+ "BN_Wing_R_05",
2589
+ "BN_Wing_R_06",
2590
+ "BN_Wing_R_07",
2591
+ "Bip01_Head",
2592
+ "Bip01_HeadNub",
2593
+ "Bip01_L_Calf",
2594
+ "Bip01_L_Foot",
2595
+ "Bip01_L_HorseLink",
2596
+ "Bip01_L_Thigh",
2597
+ "Bip01_L_Toe0",
2598
+ "Bip01_L_Toe01",
2599
+ "Bip01_L_Toe0Nub",
2600
+ "Bip01_L_Toe1",
2601
+ "Bip01_L_Toe11",
2602
+ "Bip01_L_Toe1Nub",
2603
+ "Bip01_L_Toe2",
2604
+ "Bip01_L_Toe21",
2605
+ "Bip01_L_Toe2Nub",
2606
+ "Bip01_L_Toe3",
2607
+ "Bip01_L_Toe31",
2608
+ "Bip01_L_Toe3Nub",
2609
+ "Bip01_Neck",
2610
+ "Bip01_Neck1",
2611
+ "Bip01_Pelvis",
2612
+ "Bip01_R_Calf",
2613
+ "Bip01_R_Foot",
2614
+ "Bip01_R_HorseLink",
2615
+ "Bip01_R_Thigh",
2616
+ "Bip01_R_Toe0",
2617
+ "Bip01_R_Toe01",
2618
+ "Bip01_R_Toe0Nub",
2619
+ "Bip01_R_Toe1",
2620
+ "Bip01_R_Toe11",
2621
+ "Bip01_R_Toe1Nub",
2622
+ "Bip01_R_Toe2",
2623
+ "Bip01_R_Toe21",
2624
+ "Bip01_R_Toe2Nub",
2625
+ "Bip01_R_Toe3",
2626
+ "Bip01_R_Toe31",
2627
+ "Bip01_R_Toe3Nub",
2628
+ "Bip01_Spine",
2629
+ "Bip01_Spine1",
2630
+ "Hips"
2631
+ ],
2632
+ "Pigeon": [
2633
+ "Hips",
2634
+ "LeftArm",
2635
+ "LeftForeArm",
2636
+ "LeftLeg",
2637
+ "RightArm",
2638
+ "RightForeArm",
2639
+ "RightLeg",
2640
+ "Spine",
2641
+ "Tail01"
2642
+ ],
2643
+ "Pirrana": [
2644
+ "Hips",
2645
+ "N_ALL",
2646
+ "ago",
2647
+ "atama",
2648
+ "eraL",
2649
+ "eraR",
2650
+ "harabireL",
2651
+ "harabireR",
2652
+ "kosi",
2653
+ "locator",
2654
+ "munabireL",
2655
+ "munabireR",
2656
+ "mune",
2657
+ "obire",
2658
+ "obireA",
2659
+ "obireB",
2660
+ "sebire",
2661
+ "shippoA",
2662
+ "shippoB",
2663
+ "shiribire",
2664
+ "shiribireA",
2665
+ "shirihireB"
2666
+ ],
2667
+ "PolarBear": [
2668
+ "BN_Ear_L",
2669
+ "BN_Ear_R",
2670
+ "BN_Eye_L",
2671
+ "BN_Eye_R",
2672
+ "BN_Mouth",
2673
+ "BN_Tail_01",
2674
+ "BN_Toe_L",
2675
+ "BN_Toe_R",
2676
+ "BN_Tongue_01",
2677
+ "BN_Tongue_02",
2678
+ "Bip01_Head",
2679
+ "Bip01_HeadNub",
2680
+ "Bip01_L_Calf",
2681
+ "Bip01_L_Clavicle",
2682
+ "Bip01_L_Finger0",
2683
+ "Bip01_L_Finger0Nub",
2684
+ "Bip01_L_Foot",
2685
+ "Bip01_L_Forearm",
2686
+ "Bip01_L_Hand",
2687
+ "Bip01_L_Thigh",
2688
+ "Bip01_L_Toe0",
2689
+ "Bip01_L_Toe0Nub",
2690
+ "Bip01_L_UpperArm",
2691
+ "Bip01_Neck",
2692
+ "Bip01_Neck1",
2693
+ "Bip01_Pelvis",
2694
+ "Bip01_R_Calf",
2695
+ "Bip01_R_Clavicle",
2696
+ "Bip01_R_Finger0",
2697
+ "Bip01_R_Finger0Nub",
2698
+ "Bip01_R_Foot",
2699
+ "Bip01_R_Forearm",
2700
+ "Bip01_R_Hand",
2701
+ "Bip01_R_Thigh",
2702
+ "Bip01_R_Toe0",
2703
+ "Bip01_R_Toe0Nub",
2704
+ "Bip01_R_UpperArm",
2705
+ "Bip01_Spine",
2706
+ "Bip01_Spine1",
2707
+ "Bip01_Spine2",
2708
+ "Hips"
2709
+ ],
2710
+ "PolarBearB": [
2711
+ "BN_Ear_L",
2712
+ "BN_Ear_R",
2713
+ "BN_Eye_L",
2714
+ "BN_Eye_R",
2715
+ "BN_Mouth",
2716
+ "BN_P",
2717
+ "BN_Tail",
2718
+ "BN_Tongue_01",
2719
+ "BN_Tongue_02",
2720
+ "Bip01_Head",
2721
+ "Bip01_HeadNub",
2722
+ "Bip01_L_Calf",
2723
+ "Bip01_L_Clavicle",
2724
+ "Bip01_L_Finger0",
2725
+ "Bip01_L_Finger0Nub",
2726
+ "Bip01_L_Foot",
2727
+ "Bip01_L_Forearm",
2728
+ "Bip01_L_Hand",
2729
+ "Bip01_L_Thigh",
2730
+ "Bip01_L_Toe0",
2731
+ "Bip01_L_Toe0Nub",
2732
+ "Bip01_L_UpperArm",
2733
+ "Bip01_Neck",
2734
+ "Bip01_Pelvis",
2735
+ "Bip01_R_Calf",
2736
+ "Bip01_R_Clavicle",
2737
+ "Bip01_R_Finger0",
2738
+ "Bip01_R_Finger0Nub",
2739
+ "Bip01_R_Foot",
2740
+ "Bip01_R_Forearm",
2741
+ "Bip01_R_Hand",
2742
+ "Bip01_R_Thigh",
2743
+ "Bip01_R_Toe0",
2744
+ "Bip01_R_Toe0Nub",
2745
+ "Bip01_R_UpperArm",
2746
+ "Bip01_Spine",
2747
+ "Bip01_Spine1",
2748
+ "Bip01_Spine2",
2749
+ "Hips"
2750
+ ],
2751
+ "Pteranodon": [
2752
+ "Hips",
2753
+ "jt_ClawBack2_L",
2754
+ "jt_ClawBack2_R",
2755
+ "jt_ClawBack_L",
2756
+ "jt_ClawBack_R",
2757
+ "jt_ClawInner2_L",
2758
+ "jt_ClawInner2_R",
2759
+ "jt_ClawInner_L",
2760
+ "jt_ClawInner_R",
2761
+ "jt_ClawMiddle2_L",
2762
+ "jt_ClawMiddle2_R",
2763
+ "jt_ClawMiddle_L",
2764
+ "jt_ClawMiddle_R",
2765
+ "jt_ClawOutter2_L",
2766
+ "jt_ClawOutter2_R",
2767
+ "jt_ClawOutter_L",
2768
+ "jt_ClawOutter_R",
2769
+ "jt_Cog_C",
2770
+ "jt_ElbowBack_L",
2771
+ "jt_ElbowBack_R",
2772
+ "jt_Elbow_L",
2773
+ "jt_Elbow_R",
2774
+ "jt_Eye_L",
2775
+ "jt_Eye_R",
2776
+ "jt_Foot_L",
2777
+ "jt_Foot_R",
2778
+ "jt_Head_C",
2779
+ "jt_Hips_C",
2780
+ "jt_Jaw_C",
2781
+ "jt_Knee_L",
2782
+ "jt_Knee_R",
2783
+ "jt_Neck1_C",
2784
+ "jt_Neck2_C",
2785
+ "jt_Neck3_C",
2786
+ "jt_Shoulder_L",
2787
+ "jt_Shoulder_R",
2788
+ "jt_Spine1_C",
2789
+ "jt_Spine2_C",
2790
+ "jt_Thigh_L",
2791
+ "jt_Thigh_R",
2792
+ "jt_WristBack_L",
2793
+ "jt_WristBack_R",
2794
+ "jt_Wrist_L",
2795
+ "jt_Wrist_R"
2796
+ ],
2797
+ "Puppy": [
2798
+ "BN_Ear_L_01",
2799
+ "BN_Ear_R_01",
2800
+ "BN_Mouth_01",
2801
+ "BN_Tail_01",
2802
+ "BN_Tail_02",
2803
+ "BN_Tail_03",
2804
+ "BN_Tongue_01",
2805
+ "BN_Tongue_02",
2806
+ "Bip01_Head",
2807
+ "Bip01_HeadNub",
2808
+ "Bip01_L_Calf",
2809
+ "Bip01_L_Clavicle",
2810
+ "Bip01_L_Finger0",
2811
+ "Bip01_L_Finger0Nub",
2812
+ "Bip01_L_Foot",
2813
+ "Bip01_L_Forearm",
2814
+ "Bip01_L_Hand",
2815
+ "Bip01_L_HorseLink",
2816
+ "Bip01_L_Thigh",
2817
+ "Bip01_L_Toe0",
2818
+ "Bip01_L_Toe0Nub",
2819
+ "Bip01_L_UpperArm",
2820
+ "Bip01_Neck",
2821
+ "Bip01_Neck1",
2822
+ "Bip01_Pelvis",
2823
+ "Bip01_R_Calf",
2824
+ "Bip01_R_Clavicle",
2825
+ "Bip01_R_Finger0",
2826
+ "Bip01_R_Finger0Nub",
2827
+ "Bip01_R_Foot",
2828
+ "Bip01_R_Forearm",
2829
+ "Bip01_R_Hand",
2830
+ "Bip01_R_HorseLink",
2831
+ "Bip01_R_Thigh",
2832
+ "Bip01_R_Toe0",
2833
+ "Bip01_R_Toe0Nub",
2834
+ "Bip01_R_UpperArm",
2835
+ "Bip01_Spine",
2836
+ "Bip01_Spine1",
2837
+ "Hips"
2838
+ ],
2839
+ "Raindeer": [
2840
+ "BN_Ear_L_01",
2841
+ "BN_Ear_R_01",
2842
+ "BN_Mouth_01",
2843
+ "BN_Tail_01",
2844
+ "Bip01_Head",
2845
+ "Bip01_HeadNub",
2846
+ "Bip01_L_Calf",
2847
+ "Bip01_L_Clavicle",
2848
+ "Bip01_L_Finger0",
2849
+ "Bip01_L_Finger0Nub",
2850
+ "Bip01_L_Foot",
2851
+ "Bip01_L_Forearm",
2852
+ "Bip01_L_Hand",
2853
+ "Bip01_L_HorseLink",
2854
+ "Bip01_L_Thigh",
2855
+ "Bip01_L_Toe0",
2856
+ "Bip01_L_Toe0Nub",
2857
+ "Bip01_L_UpperArm",
2858
+ "Bip01_Neck",
2859
+ "Bip01_Neck1",
2860
+ "Bip01_Pelvis",
2861
+ "Bip01_R_Calf",
2862
+ "Bip01_R_Clavicle",
2863
+ "Bip01_R_Finger0",
2864
+ "Bip01_R_Finger0Nub",
2865
+ "Bip01_R_Foot",
2866
+ "Bip01_R_Forearm",
2867
+ "Bip01_R_Hand",
2868
+ "Bip01_R_HorseLink",
2869
+ "Bip01_R_Thigh",
2870
+ "Bip01_R_Toe0",
2871
+ "Bip01_R_Toe0Nub",
2872
+ "Bip01_R_UpperArm",
2873
+ "Bip01_Spine",
2874
+ "Bip01_Spine1",
2875
+ "Hips"
2876
+ ],
2877
+ "Raptor": [
2878
+ "BN_Jaw",
2879
+ "BN_Nose",
2880
+ "Bip01_Head",
2881
+ "Bip01_HeadNub",
2882
+ "Bip01_L_Calf",
2883
+ "Bip01_L_Foot",
2884
+ "Bip01_L_HorseLink",
2885
+ "Bip01_L_Thigh",
2886
+ "Bip01_L_Toe0",
2887
+ "Bip01_L_Toe0Nub",
2888
+ "Bip01_Neck",
2889
+ "Bip01_Neck1",
2890
+ "Bip01_Neck2",
2891
+ "Bip01_Neck3",
2892
+ "Bip01_Pelvis",
2893
+ "Bip01_R_Calf",
2894
+ "Bip01_R_Foot",
2895
+ "Bip01_R_HorseLink",
2896
+ "Bip01_R_Thigh",
2897
+ "Bip01_R_Toe0",
2898
+ "Bip01_R_Toe0Nub",
2899
+ "Bip01_Spine",
2900
+ "Bip01_Spine1",
2901
+ "Bip01_Spine2",
2902
+ "Bip01_Tail",
2903
+ "Bip01_Tail1",
2904
+ "Bip01_Tail2",
2905
+ "Bip01_Tail3",
2906
+ "Bip01_TailNub",
2907
+ "Bn_Feather_01",
2908
+ "Bn_Feather_02",
2909
+ "Bn_Feather_03",
2910
+ "Bn_Feather_04",
2911
+ "Bn_Feather_05",
2912
+ "Bn_Feather_06",
2913
+ "Hips"
2914
+ ],
2915
+ "Raptor2": [
2916
+ "Hips",
2917
+ "jt_Ankle_L",
2918
+ "jt_Ankle_R",
2919
+ "jt_Clavicle_L",
2920
+ "jt_Clavicle_R",
2921
+ "jt_ClawInner_L",
2922
+ "jt_ClawInner_R",
2923
+ "jt_ClawMiddle_L",
2924
+ "jt_ClawMiddle_R",
2925
+ "jt_ClawOutter_L",
2926
+ "jt_ClawOutter_R",
2927
+ "jt_Elbow_L",
2928
+ "jt_Elbow_R",
2929
+ "jt_Eye_L",
2930
+ "jt_Eye_R",
2931
+ "jt_FingerInner_L",
2932
+ "jt_FingerInner_R",
2933
+ "jt_FingerMiddle_L",
2934
+ "jt_FingerMiddle_R",
2935
+ "jt_FingerOutter_L",
2936
+ "jt_FingerOutter_R",
2937
+ "jt_Foot_L",
2938
+ "jt_Foot_R",
2939
+ "jt_HandClawInner_L",
2940
+ "jt_HandClawInner_R",
2941
+ "jt_HandClawMiddle_L",
2942
+ "jt_HandClawMiddle_R",
2943
+ "jt_HandClawOutter_L",
2944
+ "jt_HandClawOutter_R",
2945
+ "jt_Head_C",
2946
+ "jt_Hip_L",
2947
+ "jt_Hip_R",
2948
+ "jt_Hips_C",
2949
+ "jt_Jaw_C",
2950
+ "jt_Knee_L",
2951
+ "jt_Knee_R",
2952
+ "jt_Neck1_C",
2953
+ "jt_Neck2_C",
2954
+ "jt_Neck3_C",
2955
+ "jt_Shoulder_L",
2956
+ "jt_Shoulder_R",
2957
+ "jt_Spine1_C",
2958
+ "jt_Spine2_C",
2959
+ "jt_Tail1_C",
2960
+ "jt_Tail2_C",
2961
+ "jt_Tail3_C",
2962
+ "jt_Tail4_C",
2963
+ "jt_Tail5_C",
2964
+ "jt_Tail6_C",
2965
+ "jt_ThighMuscle_L",
2966
+ "jt_ThighMuscle_R",
2967
+ "jt_Thigh_L",
2968
+ "jt_Thigh_R",
2969
+ "jt_ToeInner_L",
2970
+ "jt_ToeInner_R",
2971
+ "jt_ToeMiddle_L",
2972
+ "jt_ToeMiddle_R",
2973
+ "jt_ToeOutter_L",
2974
+ "jt_ToeOutter_R",
2975
+ "jt_Tongue1_C",
2976
+ "jt_Tongue2_C",
2977
+ "jt_Wrist_L",
2978
+ "jt_Wrist_R"
2979
+ ],
2980
+ "Raptor3": [
2981
+ "Hips",
2982
+ "jt_Ankle_L",
2983
+ "jt_Ankle_R",
2984
+ "jt_Clavicle_L",
2985
+ "jt_Clavicle_R",
2986
+ "jt_ClawInner_L",
2987
+ "jt_ClawInner_R",
2988
+ "jt_ClawMiddle_L",
2989
+ "jt_ClawMiddle_R",
2990
+ "jt_ClawOutter_L",
2991
+ "jt_ClawOutter_R",
2992
+ "jt_Cog_C",
2993
+ "jt_Elbow_L",
2994
+ "jt_Elbow_R",
2995
+ "jt_EyeBall_L",
2996
+ "jt_EyeBall_R",
2997
+ "jt_FingerInner_L",
2998
+ "jt_FingerInner_R",
2999
+ "jt_FingerMiddle_L",
3000
+ "jt_FingerMiddle_R",
3001
+ "jt_FingerOutter_L",
3002
+ "jt_FingerOutter_R",
3003
+ "jt_Foot_L",
3004
+ "jt_Foot_R",
3005
+ "jt_HandClawInner_L",
3006
+ "jt_HandClawInner_R",
3007
+ "jt_HandClawMiddle_L",
3008
+ "jt_HandClawMiddle_R",
3009
+ "jt_HandClawOutter_L",
3010
+ "jt_HandClawOutter_R",
3011
+ "jt_Head_C",
3012
+ "jt_Hip_L",
3013
+ "jt_Hip_R",
3014
+ "jt_Hips_C",
3015
+ "jt_Jaw_C",
3016
+ "jt_Knee_L",
3017
+ "jt_Knee_R",
3018
+ "jt_Neck1_C",
3019
+ "jt_Neck2_C",
3020
+ "jt_Neck3_C",
3021
+ "jt_Shoulder_L",
3022
+ "jt_Shoulder_R",
3023
+ "jt_Spine1_C",
3024
+ "jt_Spine2_C",
3025
+ "jt_Tail1_C",
3026
+ "jt_Tail2_C",
3027
+ "jt_Tail3_C",
3028
+ "jt_Tail4_C",
3029
+ "jt_Tail5_C",
3030
+ "jt_Tail6_C",
3031
+ "jt_ThighMuscle_L",
3032
+ "jt_ThighMuscle_R",
3033
+ "jt_Thigh_L",
3034
+ "jt_Thigh_R",
3035
+ "jt_ToeInner_L",
3036
+ "jt_ToeInner_R",
3037
+ "jt_ToeMiddle_L",
3038
+ "jt_ToeMiddle_R",
3039
+ "jt_ToeOutter_L",
3040
+ "jt_ToeOutter_R",
3041
+ "jt_Tongue1_C",
3042
+ "jt_Tongue2_C",
3043
+ "jt_Wrist_L",
3044
+ "jt_Wrist_R"
3045
+ ],
3046
+ "Rat": [
3047
+ "Head",
3048
+ "Hips",
3049
+ "LeftArm",
3050
+ "LeftFoot",
3051
+ "LeftForeArm",
3052
+ "LeftHand",
3053
+ "LeftLeg",
3054
+ "LeftUpLeg",
3055
+ "RightArm",
3056
+ "RightFoot",
3057
+ "RightForeArm",
3058
+ "RightHand",
3059
+ "RightLeg",
3060
+ "RightUpLeg",
3061
+ "Spine",
3062
+ "Tail01",
3063
+ "Tail02",
3064
+ "Trajectory"
3065
+ ],
3066
+ "Rhino": [
3067
+ "BN_Down",
3068
+ "BN_Downbody",
3069
+ "BN_Ear_L",
3070
+ "BN_Ear_R",
3071
+ "BN_Jaw",
3072
+ "BN_Tail_01",
3073
+ "BN_Tail_02",
3074
+ "BN_Tail_03",
3075
+ "BN_Tongue_01",
3076
+ "BN_Tongue_02",
3077
+ "BN_eyelid_L",
3078
+ "BN_eyelid_R",
3079
+ "Bip01_Head",
3080
+ "Bip01_HeadNub",
3081
+ "Bip01_L_Calf",
3082
+ "Bip01_L_Clavicle",
3083
+ "Bip01_L_Finger0",
3084
+ "Bip01_L_Finger0Nub",
3085
+ "Bip01_L_Foot",
3086
+ "Bip01_L_Forearm",
3087
+ "Bip01_L_Hand",
3088
+ "Bip01_L_HorseLink",
3089
+ "Bip01_L_Thigh",
3090
+ "Bip01_L_Toe0",
3091
+ "Bip01_L_Toe0Nub",
3092
+ "Bip01_L_UpperArm",
3093
+ "Bip01_Neck",
3094
+ "Bip01_Pelvis",
3095
+ "Bip01_R_Calf",
3096
+ "Bip01_R_Clavicle",
3097
+ "Bip01_R_Finger0",
3098
+ "Bip01_R_Finger0Nub",
3099
+ "Bip01_R_Foot",
3100
+ "Bip01_R_Forearm",
3101
+ "Bip01_R_Hand",
3102
+ "Bip01_R_HorseLink",
3103
+ "Bip01_R_Thigh",
3104
+ "Bip01_R_Toe0",
3105
+ "Bip01_R_Toe0Nub",
3106
+ "Bip01_R_UpperArm",
3107
+ "Bip01_Spine",
3108
+ "Bip01_Spine1",
3109
+ "Bip01_Spine2",
3110
+ "Hips"
3111
+ ],
3112
+ "Roach": [
3113
+ "Bip01_Head",
3114
+ "Bip01_L_Calf01",
3115
+ "Bip01_L_Calf11",
3116
+ "Bip01_L_Clavicle",
3117
+ "Bip01_L_Foot01",
3118
+ "Bip01_L_Foot11",
3119
+ "Bip01_L_Forearm",
3120
+ "Bip01_L_Thigh01",
3121
+ "Bip01_L_Thigh11",
3122
+ "Bip01_L_UpperArm",
3123
+ "Bip01_Neck",
3124
+ "Bip01_Pelvis",
3125
+ "Bip01_Ponytail_L01",
3126
+ "Bip01_Ponytail_L02",
3127
+ "Bip01_Ponytail_L03",
3128
+ "Bip01_Ponytail_L11",
3129
+ "Bip01_Ponytail_R01",
3130
+ "Bip01_Ponytail_R02",
3131
+ "Bip01_Ponytail_R03",
3132
+ "Bip01_Ponytail_R11",
3133
+ "Bip01_R_Calf01",
3134
+ "Bip01_R_Calf11",
3135
+ "Bip01_R_Clavicle",
3136
+ "Bip01_R_Foot01",
3137
+ "Bip01_R_Foot11",
3138
+ "Bip01_R_Forearm",
3139
+ "Bip01_R_Thigh01",
3140
+ "Bip01_R_Thigh11",
3141
+ "Bip01_R_UpperArm",
3142
+ "Bip01_Spine",
3143
+ "Bip01_Spine1",
3144
+ "Bip01_Spine1_LWing",
3145
+ "Bip01_Spine1_RWing",
3146
+ "Bip01_Tail",
3147
+ "Bip01_Tail1",
3148
+ "Bone02",
3149
+ "Bone03",
3150
+ "Bone04",
3151
+ "Bone08",
3152
+ "Bone16",
3153
+ "Bone17",
3154
+ "Bone18",
3155
+ "Bone22",
3156
+ "Bone26",
3157
+ "Bone30",
3158
+ "Hips"
3159
+ ],
3160
+ "SabreToothTiger": [
3161
+ "Hips",
3162
+ "MagicEffectsNode",
3163
+ "Null",
3164
+ "SabreCat",
3165
+ "SabreCat_LeftEye",
3166
+ "SabreCat_RightEye",
3167
+ "SabrecatMane",
3168
+ "Sabrecat_Finger4_LF04_",
3169
+ "Sabrecat_Finger4_RF04_",
3170
+ "Sabrecat_HeadEyeLid__HELB_",
3171
+ "Sabrecat_HeadLeftEar_LEar_",
3172
+ "Sabrecat_HeadRightEar_REar_",
3173
+ "Sabrecat_Head_EyeLid_HELT_",
3174
+ "Sabrecat_Head_Head__LChk_",
3175
+ "Sabrecat_Head_LM01_",
3176
+ "Sabrecat_Head_RM01_",
3177
+ "Sabrecat_Head__Head_",
3178
+ "Sabrecat_Head__LEye_",
3179
+ "Sabrecat_Head__RChk_",
3180
+ "Sabrecat_Head__REye_",
3181
+ "Sabrecat_Head_jaw_",
3182
+ "Sabrecat_LeftCalf_LClf_",
3183
+ "Sabrecat_LeftClavicle_LClv_",
3184
+ "Sabrecat_LeftFinger0_LF00_",
3185
+ "Sabrecat_LeftFinger0_LF01_",
3186
+ "Sabrecat_LeftFinger1_LF10_",
3187
+ "Sabrecat_LeftFinger1_LF11_",
3188
+ "Sabrecat_LeftFinger2_LF20_",
3189
+ "Sabrecat_LeftFinger2_LF21_",
3190
+ "Sabrecat_LeftFinger3_RF30_",
3191
+ "Sabrecat_LeftFinger3_RF31_",
3192
+ "Sabrecat_LeftFoot_LFot_",
3193
+ "Sabrecat_LeftForearm_LFar_",
3194
+ "Sabrecat_LeftHand_LHnd_",
3195
+ "Sabrecat_LeftThigh_LThi_",
3196
+ "Sabrecat_LeftToe0_LT00_",
3197
+ "Sabrecat_LeftToe0_LT01_",
3198
+ "Sabrecat_LeftTwistBone_LFTB_",
3199
+ "Sabrecat_LeftUpperArm_LUar_",
3200
+ "Sabrecat_Neck_Nek0_",
3201
+ "Sabrecat_Neck_Nek1_",
3202
+ "Sabrecat_Neck_Nek2_",
3203
+ "Sabrecat_Ribcage_Spn1_",
3204
+ "Sabrecat_Ribcage_Spn4_",
3205
+ "Sabrecat_RightCalf_RClf_",
3206
+ "Sabrecat_RightClavicle_RClv_",
3207
+ "Sabrecat_RightFinger0_RF00_",
3208
+ "Sabrecat_RightFinger0_RF01_",
3209
+ "Sabrecat_RightFinger1_RF10_",
3210
+ "Sabrecat_RightFinger1_RF11_",
3211
+ "Sabrecat_RightFinger2_RF20_",
3212
+ "Sabrecat_RightFinger2_RF21_",
3213
+ "Sabrecat_RightFinger3_RF30_",
3214
+ "Sabrecat_RightFinger3_RF31_",
3215
+ "Sabrecat_RightFoot_RFot_",
3216
+ "Sabrecat_RightForearm_RFar_",
3217
+ "Sabrecat_RightHand_RHnd_",
3218
+ "Sabrecat_RightThigh_RThi_",
3219
+ "Sabrecat_RightToe0_RT00_",
3220
+ "Sabrecat_RightToe0_RT01_",
3221
+ "Sabrecat_RightTwistBone_RFTB_",
3222
+ "Sabrecat_RightUpperArm_RUar_",
3223
+ "Sabrecat_Spine_Spn0_",
3224
+ "Sabrecat_Spine_Spn1_",
3225
+ "Sabrecat_Spine_Spn2_",
3226
+ "Sabrecat_Spine_Spn3_",
3227
+ "Sabrecat_Tail0_Tal0_",
3228
+ "Sabrecat_Tail1_Tal1_",
3229
+ "Sabrecat_Tail2_Tal2_",
3230
+ "Sabrecat__pelv_",
3231
+ "Skin",
3232
+ "Skin_2",
3233
+ "Skin_3",
3234
+ "Skin_4"
3235
+ ],
3236
+ "SandMouse": [
3237
+ "BN_Beard_L",
3238
+ "BN_Beard_R",
3239
+ "BN_Ear_L",
3240
+ "BN_Ear_R",
3241
+ "BN_Mouth_01",
3242
+ "BN_Tail_01",
3243
+ "BN_Tail_02",
3244
+ "BN_Tail_03",
3245
+ "BN_Tail_04",
3246
+ "BN_Tail_05",
3247
+ "Bip01_Head",
3248
+ "Bip01_HeadNub",
3249
+ "Bip01_L_Calf",
3250
+ "Bip01_L_Clavicle",
3251
+ "Bip01_L_Foot",
3252
+ "Bip01_L_Forearm",
3253
+ "Bip01_L_Hand",
3254
+ "Bip01_L_HorseLink",
3255
+ "Bip01_L_Thigh",
3256
+ "Bip01_L_Toe0",
3257
+ "Bip01_L_Toe0Nub",
3258
+ "Bip01_L_UpperArm",
3259
+ "Bip01_Neck",
3260
+ "Bip01_Pelvis",
3261
+ "Bip01_R_Calf",
3262
+ "Bip01_R_Clavicle",
3263
+ "Bip01_R_Foot",
3264
+ "Bip01_R_Forearm",
3265
+ "Bip01_R_Hand",
3266
+ "Bip01_R_HorseLink",
3267
+ "Bip01_R_Thigh",
3268
+ "Bip01_R_Toe0",
3269
+ "Bip01_R_Toe0Nub",
3270
+ "Bip01_R_UpperArm",
3271
+ "Bip01_Spine",
3272
+ "Bip01_Spine1",
3273
+ "Bip01_Spine2",
3274
+ "Hips"
3275
+ ],
3276
+ "Scorpion": [
3277
+ "Bip01_L_Calf",
3278
+ "Bip01_L_Calf_1",
3279
+ "Bip01_L_Calf_2",
3280
+ "Bip01_L_Calf_3",
3281
+ "Bip01_L_Clavicle",
3282
+ "Bip01_L_Finger0",
3283
+ "Bip01_L_FootNub_1",
3284
+ "Bip01_L_FootNub_2",
3285
+ "Bip01_L_FootNub_3",
3286
+ "Bip01_L_FootNub_4",
3287
+ "Bip01_L_Foot_1",
3288
+ "Bip01_L_Foot_2",
3289
+ "Bip01_L_Foot_3",
3290
+ "Bip01_L_Foot_4",
3291
+ "Bip01_L_Forearm",
3292
+ "Bip01_L_Hand",
3293
+ "Bip01_L_Thigh1_1",
3294
+ "Bip01_L_Thigh1_2",
3295
+ "Bip01_L_Thigh1_3",
3296
+ "Bip01_L_Thigh1_4",
3297
+ "Bip01_L_Thigh_1",
3298
+ "Bip01_L_Thigh_2",
3299
+ "Bip01_L_Thigh_3",
3300
+ "Bip01_L_Thigh_4",
3301
+ "Bip01_L_UpperArm",
3302
+ "Bip01_Neck1",
3303
+ "Bip01_Pelvis",
3304
+ "Bip01_R_Calf_1",
3305
+ "Bip01_R_Calf_2",
3306
+ "Bip01_R_Calf_3",
3307
+ "Bip01_R_Calf_4",
3308
+ "Bip01_R_Clavicle",
3309
+ "Bip01_R_Finger0",
3310
+ "Bip01_R_FootNub_1",
3311
+ "Bip01_R_FootNub_2",
3312
+ "Bip01_R_FootNub_3",
3313
+ "Bip01_R_FootNub_4",
3314
+ "Bip01_R_Foot_1",
3315
+ "Bip01_R_Foot_2",
3316
+ "Bip01_R_Foot_3",
3317
+ "Bip01_R_Foot_4",
3318
+ "Bip01_R_Forearm",
3319
+ "Bip01_R_Hand",
3320
+ "Bip01_R_Thigh1_1",
3321
+ "Bip01_R_Thigh1_2",
3322
+ "Bip01_R_Thigh1_3",
3323
+ "Bip01_R_Thigh1_4",
3324
+ "Bip01_R_Thigh_1",
3325
+ "Bip01_R_Thigh_2",
3326
+ "Bip01_R_Thigh_3",
3327
+ "Bip01_R_Thigh_4",
3328
+ "Bip01_R_UpperArm",
3329
+ "Bip01_Spine",
3330
+ "Bip01_SpineL",
3331
+ "Bip01_SpineR",
3332
+ "Bip01_Tail",
3333
+ "Bip01_Tail1",
3334
+ "Bip01_Tail2",
3335
+ "Bip01_Tail3",
3336
+ "Bip01_Tail4",
3337
+ "Bip01_Tail5",
3338
+ "Bip01_Tail6",
3339
+ "Bip01_TailNub",
3340
+ "Hips"
3341
+ ],
3342
+ "Scorpion2": [
3343
+ "Hips",
3344
+ "jt_BigMandibleMid_L",
3345
+ "jt_BigMandibleMid_R",
3346
+ "jt_BigMandible_L",
3347
+ "jt_BigMandible_R",
3348
+ "jt_Cog_C",
3349
+ "jt_FangsMid_L",
3350
+ "jt_FangsMid_R",
3351
+ "jt_Fangs_L",
3352
+ "jt_Fangs_R",
3353
+ "jt_FrontLeg1_L",
3354
+ "jt_FrontLeg1_R",
3355
+ "jt_FrontLeg2_L",
3356
+ "jt_FrontLeg2_R",
3357
+ "jt_FrontLeg3_L",
3358
+ "jt_FrontLeg3_R",
3359
+ "jt_FrontLeg4End_L",
3360
+ "jt_FrontLeg4End_R",
3361
+ "jt_Head_C",
3362
+ "jt_HindLeg1_L",
3363
+ "jt_HindLeg1_R",
3364
+ "jt_HindLeg2_L",
3365
+ "jt_HindLeg2_R",
3366
+ "jt_HindLeg3_L",
3367
+ "jt_HindLeg3_R",
3368
+ "jt_HindLeg4End_L",
3369
+ "jt_HindLeg4End_R",
3370
+ "jt_Hips_C",
3371
+ "jt_LowerMandibleMid_L",
3372
+ "jt_LowerMandibleMid_R",
3373
+ "jt_LowerMandible_L",
3374
+ "jt_LowerMandible_R",
3375
+ "jt_MiddleLeg1_L",
3376
+ "jt_MiddleLeg1_R",
3377
+ "jt_MiddleLeg2_L",
3378
+ "jt_MiddleLeg2_R",
3379
+ "jt_MiddleLeg3_L",
3380
+ "jt_MiddleLeg3_R",
3381
+ "jt_MiddleLeg4End_L",
3382
+ "jt_MiddleLeg4End_R",
3383
+ "jt_Tail01_C",
3384
+ "jt_Tail01x_C",
3385
+ "jt_Tail02_C",
3386
+ "jt_Tail02x_C",
3387
+ "jt_Tail03_C",
3388
+ "jt_Tail03x_C",
3389
+ "jt_Tail04_C",
3390
+ "jt_Tail04x_C",
3391
+ "jt_Tail05_C",
3392
+ "jt_Tail05x_C",
3393
+ "jt_Tail06_C",
3394
+ "jt_Tail06x_C",
3395
+ "jt_Tail07_C",
3396
+ "jt_Tail07x_C",
3397
+ "jt_Tail08_C",
3398
+ "jt_Tail08x_C",
3399
+ "jt_Tail09_C",
3400
+ "jt_Tail09x_C",
3401
+ "jt_Tail10_C"
3402
+ ],
3403
+ "Skunk": [
3404
+ "BN_Fur_L_01",
3405
+ "BN_Fur_L_02",
3406
+ "BN_Fur_L_03",
3407
+ "BN_Fur_R_01",
3408
+ "BN_Fur_R_02",
3409
+ "BN_Fur_R_03",
3410
+ "BN_Mouth_01",
3411
+ "BN_Tail_01",
3412
+ "BN_Tail_02",
3413
+ "BN_Tail_03",
3414
+ "BN_Tail_04",
3415
+ "Bip01_Head",
3416
+ "Bip01_HeadNub",
3417
+ "Bip01_L_Calf",
3418
+ "Bip01_L_Clavicle",
3419
+ "Bip01_L_Foot",
3420
+ "Bip01_L_Forearm",
3421
+ "Bip01_L_Hand",
3422
+ "Bip01_L_Thigh",
3423
+ "Bip01_L_Toe0",
3424
+ "Bip01_L_Toe0Nub",
3425
+ "Bip01_L_UpperArm",
3426
+ "Bip01_Neck",
3427
+ "Bip01_Pelvis",
3428
+ "Bip01_R_Calf",
3429
+ "Bip01_R_Clavicle",
3430
+ "Bip01_R_Foot",
3431
+ "Bip01_R_Forearm",
3432
+ "Bip01_R_Hand",
3433
+ "Bip01_R_Thigh",
3434
+ "Bip01_R_Toe0",
3435
+ "Bip01_R_Toe0Nub",
3436
+ "Bip01_R_UpperArm",
3437
+ "Bip01_Spine",
3438
+ "Bip01_Spine1",
3439
+ "Hips"
3440
+ ],
3441
+ "Spider": [
3442
+ "ArmLClaw",
3443
+ "ArmLCollarbone",
3444
+ "ArmL_01_",
3445
+ "ArmL_02_",
3446
+ "ArmRClaw",
3447
+ "ArmRCollarbone",
3448
+ "ArmR_01_",
3449
+ "ArmR_02_",
3450
+ "FangL_00_",
3451
+ "FangL_01_",
3452
+ "FangL_02_",
3453
+ "FangR_00_",
3454
+ "FangR_01_",
3455
+ "FangR_02_",
3456
+ "Hips",
3457
+ "L_Jaw_",
3458
+ "Leg_L_00_",
3459
+ "Leg_L_01_",
3460
+ "Leg_L_02_",
3461
+ "Leg_L_03_",
3462
+ "Leg_L_04_",
3463
+ "Leg_L_10_",
3464
+ "Leg_L_11_",
3465
+ "Leg_L_12_",
3466
+ "Leg_L_13_",
3467
+ "Leg_L_14_",
3468
+ "Leg_L_20_",
3469
+ "Leg_L_21_",
3470
+ "Leg_L_22_",
3471
+ "Leg_L_23_",
3472
+ "Leg_L_24_",
3473
+ "Leg_L_30_",
3474
+ "Leg_L_31_",
3475
+ "Leg_L_32_",
3476
+ "Leg_L_33_",
3477
+ "Leg_L_34_",
3478
+ "Leg_R_00_",
3479
+ "Leg_R_01_",
3480
+ "Leg_R_02_",
3481
+ "Leg_R_03_",
3482
+ "Leg_R_04_",
3483
+ "Leg_R_10_",
3484
+ "Leg_R_11_",
3485
+ "Leg_R_12_",
3486
+ "Leg_R_13_",
3487
+ "Leg_R_14_",
3488
+ "Leg_R_20_",
3489
+ "Leg_R_21_",
3490
+ "Leg_R_22_",
3491
+ "Leg_R_23_",
3492
+ "Leg_R_24_",
3493
+ "Leg_R_30_",
3494
+ "Leg_R_31_",
3495
+ "Leg_R_32_",
3496
+ "Leg_R_33_",
3497
+ "Leg_R_34_",
3498
+ "NPC_Head__Head_",
3499
+ "NPC_L_MagicNode__LMag_",
3500
+ "R_Jaw_",
3501
+ "Tail1",
3502
+ "Tail2",
3503
+ "Tail3",
3504
+ "_LToe0_",
3505
+ "_LToe1_",
3506
+ "_LToe2_",
3507
+ "_LToe3_",
3508
+ "_RToe0_",
3509
+ "_RToe1_",
3510
+ "_RToe2_",
3511
+ "_RToe3_",
3512
+ "_body_"
3513
+ ],
3514
+ "SpiderG": [
3515
+ "BN_Mouth_L_01",
3516
+ "BN_Mouth_L_02",
3517
+ "BN_Mouth_L_03",
3518
+ "BN_Mouth_L_04",
3519
+ "BN_Mouth_L_05",
3520
+ "BN_Mouth_R_01",
3521
+ "BN_Mouth_R_02",
3522
+ "BN_Mouth_R_03",
3523
+ "BN_Mouth_R_04",
3524
+ "BN_Mouth_R_05",
3525
+ "BN_Tail_01",
3526
+ "BN_Tail_02",
3527
+ "BN_hand_L_01",
3528
+ "BN_hand_L_02",
3529
+ "BN_hand_L_03",
3530
+ "BN_hand_L_04",
3531
+ "BN_hand_L_05",
3532
+ "BN_hand_R_01",
3533
+ "BN_hand_R_02",
3534
+ "BN_hand_R_03",
3535
+ "BN_hand_R_04",
3536
+ "BN_hand_R_05",
3537
+ "BN_leg_L_01",
3538
+ "BN_leg_L_02",
3539
+ "BN_leg_L_03",
3540
+ "BN_leg_L_04",
3541
+ "BN_leg_L_05",
3542
+ "BN_leg_R_01",
3543
+ "BN_leg_R_02",
3544
+ "BN_leg_R_03",
3545
+ "BN_leg_R_04",
3546
+ "BN_leg_R_05",
3547
+ "Bip01_Head",
3548
+ "Bip01_HeadNub",
3549
+ "Bip01_L_Calf",
3550
+ "Bip01_L_Clavicle",
3551
+ "Bip01_L_Finger0",
3552
+ "Bip01_L_Finger0Nub",
3553
+ "Bip01_L_Foot",
3554
+ "Bip01_L_Forearm",
3555
+ "Bip01_L_Hand",
3556
+ "Bip01_L_Thigh",
3557
+ "Bip01_L_Toe0",
3558
+ "Bip01_L_Toe01",
3559
+ "Bip01_L_Toe0Nub",
3560
+ "Bip01_L_UpperArm",
3561
+ "Bip01_Neck",
3562
+ "Bip01_Pelvis",
3563
+ "Bip01_R_Calf",
3564
+ "Bip01_R_Clavicle",
3565
+ "Bip01_R_Finger0",
3566
+ "Bip01_R_Finger0Nub",
3567
+ "Bip01_R_Foot",
3568
+ "Bip01_R_Forearm",
3569
+ "Bip01_R_Hand",
3570
+ "Bip01_R_Thigh",
3571
+ "Bip01_R_Toe0",
3572
+ "Bip01_R_Toe01",
3573
+ "Bip01_R_Toe0Nub",
3574
+ "Bip01_R_UpperArm",
3575
+ "Bip01_Spine",
3576
+ "Hips"
3577
+ ],
3578
+ "Stego": [
3579
+ "BN_Jaw",
3580
+ "BN_L_Lip",
3581
+ "BN_R_Lip",
3582
+ "BN_Tail_01",
3583
+ "BN_Tail_02",
3584
+ "BN_Tail_03",
3585
+ "BN_Tail_04",
3586
+ "BN_Tail_05",
3587
+ "BN_Tone",
3588
+ "Bip01_Head",
3589
+ "Bip01_HeadNub",
3590
+ "Bip01_L_Calf",
3591
+ "Bip01_L_Clavicle",
3592
+ "Bip01_L_Finger0",
3593
+ "Bip01_L_Finger0Nub",
3594
+ "Bip01_L_Foot",
3595
+ "Bip01_L_Forearm",
3596
+ "Bip01_L_Hand",
3597
+ "Bip01_L_Thigh",
3598
+ "Bip01_L_Toe0",
3599
+ "Bip01_L_Toe0Nub",
3600
+ "Bip01_L_UpperArm",
3601
+ "Bip01_Neck",
3602
+ "Bip01_Neck1",
3603
+ "Bip01_Neck2",
3604
+ "Bip01_Pelvis",
3605
+ "Bip01_R_Calf",
3606
+ "Bip01_R_Clavicle",
3607
+ "Bip01_R_Finger0",
3608
+ "Bip01_R_Finger0Nub",
3609
+ "Bip01_R_Foot",
3610
+ "Bip01_R_Forearm",
3611
+ "Bip01_R_Hand",
3612
+ "Bip01_R_Thigh",
3613
+ "Bip01_R_Toe0",
3614
+ "Bip01_R_Toe0Nub",
3615
+ "Bip01_R_UpperArm",
3616
+ "Bip01_Spine",
3617
+ "Bip01_Spine1",
3618
+ "Bip01_Spine2",
3619
+ "Hips"
3620
+ ],
3621
+ "Trex": [
3622
+ "Hips",
3623
+ "jt_Ankle_L",
3624
+ "jt_Ankle_R",
3625
+ "jt_Clavicle_L",
3626
+ "jt_Clavicle_R",
3627
+ "jt_ClawInner_L",
3628
+ "jt_ClawInner_R",
3629
+ "jt_ClawMiddle_L",
3630
+ "jt_ClawMiddle_R",
3631
+ "jt_ClawOutter_L",
3632
+ "jt_ClawOutter_R",
3633
+ "jt_Cog_C",
3634
+ "jt_Elbow_L",
3635
+ "jt_Elbow_R",
3636
+ "jt_Eye_L",
3637
+ "jt_Eye_R",
3638
+ "jt_FingerInner_L",
3639
+ "jt_FingerInner_R",
3640
+ "jt_FingerOutter_L",
3641
+ "jt_FingerOutter_R",
3642
+ "jt_Foot_L",
3643
+ "jt_Foot_R",
3644
+ "jt_HandClawInner_L",
3645
+ "jt_HandClawInner_R",
3646
+ "jt_HandClawOutter_L",
3647
+ "jt_HandClawOutter_R",
3648
+ "jt_Head_C",
3649
+ "jt_Hip_L",
3650
+ "jt_Hip_R",
3651
+ "jt_Hips_C",
3652
+ "jt_Jaw_C",
3653
+ "jt_Knee_L",
3654
+ "jt_Knee_R",
3655
+ "jt_Neck1_C",
3656
+ "jt_Neck2_C",
3657
+ "jt_Neck3_C",
3658
+ "jt_NeckMuscle_C",
3659
+ "jt_Shoulder_L",
3660
+ "jt_Shoulder_R",
3661
+ "jt_Spine1_C",
3662
+ "jt_Spine2_C",
3663
+ "jt_Tail1_C",
3664
+ "jt_Tail2_C",
3665
+ "jt_Tail3_C",
3666
+ "jt_Tail4_C",
3667
+ "jt_Tail5_C",
3668
+ "jt_Tail6_C",
3669
+ "jt_ThighMuscle_L",
3670
+ "jt_ThighMuscle_R",
3671
+ "jt_Thigh_L",
3672
+ "jt_Thigh_R",
3673
+ "jt_ToeInner_L",
3674
+ "jt_ToeInner_R",
3675
+ "jt_ToeMiddle_L",
3676
+ "jt_ToeMiddle_R",
3677
+ "jt_ToeOutter_L",
3678
+ "jt_ToeOutter_R",
3679
+ "jt_Tongue1_C",
3680
+ "jt_Tongue2_C",
3681
+ "jt_Wrist_L",
3682
+ "jt_Wrist_R"
3683
+ ],
3684
+ "Tricera": [
3685
+ "BN_Eye_L",
3686
+ "BN_Eye_R",
3687
+ "BN_Mouth",
3688
+ "BN_Tail_01",
3689
+ "BN_Tail_02",
3690
+ "BN_Tail_03",
3691
+ "BN_Tail_04",
3692
+ "Bip01_Head",
3693
+ "Bip01_L_Calf",
3694
+ "Bip01_L_Clavicle",
3695
+ "Bip01_L_Foot",
3696
+ "Bip01_L_Forearm",
3697
+ "Bip01_L_Hand",
3698
+ "Bip01_L_HorseLink",
3699
+ "Bip01_L_Thigh",
3700
+ "Bip01_L_Toe0",
3701
+ "Bip01_L_UpperArm",
3702
+ "Bip01_Neck",
3703
+ "Bip01_Pelvis",
3704
+ "Bip01_R_Calf",
3705
+ "Bip01_R_Clavicle",
3706
+ "Bip01_R_Foot",
3707
+ "Bip01_R_Forearm",
3708
+ "Bip01_R_Hand",
3709
+ "Bip01_R_HorseLink",
3710
+ "Bip01_R_Thigh",
3711
+ "Bip01_R_Toe0",
3712
+ "Bip01_R_UpperArm",
3713
+ "Bip01_Spine",
3714
+ "Bip01_Spine1",
3715
+ "Bip01_Spine2",
3716
+ "Hips"
3717
+ ],
3718
+ "Tukan": [
3719
+ "ESI1_Body",
3720
+ "Hips",
3721
+ "L_hiji",
3722
+ "L_kata",
3723
+ "L_momo",
3724
+ "MESH",
3725
+ "N_ALL",
3726
+ "R_hiji",
3727
+ "R_kata",
3728
+ "R_momo",
3729
+ "ago",
3730
+ "body01",
3731
+ "hara",
3732
+ "kao",
3733
+ "kosi",
3734
+ "locator",
3735
+ "mune",
3736
+ "o"
3737
+ ],
3738
+ "Turtle": [
3739
+ "BN_Chin_01",
3740
+ "BN_Head_01",
3741
+ "BN_Neck_01",
3742
+ "BN_Neck_02",
3743
+ "BN_Tail_01",
3744
+ "BN_Tail_02",
3745
+ "Bip01_Head",
3746
+ "Bip01_HeadNub",
3747
+ "Bip01_L_Calf",
3748
+ "Bip01_L_Clavicle",
3749
+ "Bip01_L_Finger0",
3750
+ "Bip01_L_Finger01",
3751
+ "Bip01_L_Finger0Nub",
3752
+ "Bip01_L_Finger1",
3753
+ "Bip01_L_Finger11",
3754
+ "Bip01_L_Finger1Nub",
3755
+ "Bip01_L_Foot",
3756
+ "Bip01_L_Forearm",
3757
+ "Bip01_L_Hand",
3758
+ "Bip01_L_Thigh",
3759
+ "Bip01_L_Toe0",
3760
+ "Bip01_L_Toe01",
3761
+ "Bip01_L_Toe0Nub",
3762
+ "Bip01_L_Toe1",
3763
+ "Bip01_L_Toe11",
3764
+ "Bip01_L_Toe1Nub",
3765
+ "Bip01_L_UpperArm",
3766
+ "Bip01_Neck",
3767
+ "Bip01_Pelvis",
3768
+ "Bip01_R_Calf",
3769
+ "Bip01_R_Clavicle",
3770
+ "Bip01_R_Finger0",
3771
+ "Bip01_R_Finger01",
3772
+ "Bip01_R_Finger0Nub",
3773
+ "Bip01_R_Finger1",
3774
+ "Bip01_R_Finger11",
3775
+ "Bip01_R_Finger1Nub",
3776
+ "Bip01_R_Foot",
3777
+ "Bip01_R_Forearm",
3778
+ "Bip01_R_Hand",
3779
+ "Bip01_R_Thigh",
3780
+ "Bip01_R_Toe0",
3781
+ "Bip01_R_Toe01",
3782
+ "Bip01_R_Toe0Nub",
3783
+ "Bip01_R_Toe1",
3784
+ "Bip01_R_Toe11",
3785
+ "Bip01_R_Toe1Nub",
3786
+ "Bip01_R_UpperArm",
3787
+ "Bip01_Spine",
3788
+ "Hips"
3789
+ ],
3790
+ "Tyranno": [
3791
+ "Bip01_Head",
3792
+ "Bip01_HeadNub",
3793
+ "Bip01_L_Calf",
3794
+ "Bip01_L_Clavicle",
3795
+ "Bip01_L_Finger0",
3796
+ "Bip01_L_Finger01",
3797
+ "Bip01_L_Finger0Nub",
3798
+ "Bip01_L_Foot",
3799
+ "Bip01_L_Forearm",
3800
+ "Bip01_L_Hand",
3801
+ "Bip01_L_HorseLink",
3802
+ "Bip01_L_Thigh",
3803
+ "Bip01_L_Toe0",
3804
+ "Bip01_L_Toe01",
3805
+ "Bip01_L_Toe0Nub",
3806
+ "Bip01_L_Toe1",
3807
+ "Bip01_L_Toe11",
3808
+ "Bip01_L_Toe1Nub",
3809
+ "Bip01_L_Toe2",
3810
+ "Bip01_L_Toe21",
3811
+ "Bip01_L_Toe2Nub",
3812
+ "Bip01_L_UpperArm",
3813
+ "Bip01_Neck",
3814
+ "Bip01_Neck1",
3815
+ "Bip01_Pelvis",
3816
+ "Bip01_Ponytail1",
3817
+ "Bip01_Ponytail11",
3818
+ "Bip01_Ponytail1Nub",
3819
+ "Bip01_R_Calf",
3820
+ "Bip01_R_Clavicle",
3821
+ "Bip01_R_Finger0",
3822
+ "Bip01_R_Finger01",
3823
+ "Bip01_R_Finger0Nub",
3824
+ "Bip01_R_Foot",
3825
+ "Bip01_R_Forearm",
3826
+ "Bip01_R_Hand",
3827
+ "Bip01_R_HorseLink",
3828
+ "Bip01_R_Thigh",
3829
+ "Bip01_R_Toe0",
3830
+ "Bip01_R_Toe01",
3831
+ "Bip01_R_Toe0Nub",
3832
+ "Bip01_R_Toe1",
3833
+ "Bip01_R_Toe11",
3834
+ "Bip01_R_Toe1Nub",
3835
+ "Bip01_R_Toe2",
3836
+ "Bip01_R_Toe21",
3837
+ "Bip01_R_Toe2Nub",
3838
+ "Bip01_R_UpperArm",
3839
+ "Bip01_Spine",
3840
+ "Bip01_Spine1",
3841
+ "Bip01_Tail",
3842
+ "Bip01_Tail1",
3843
+ "Bip01_Tail2",
3844
+ "Bip01_Tail3",
3845
+ "Bip01_Tail4",
3846
+ "Bip01_TailNub",
3847
+ "Bip01_Xtra01",
3848
+ "Bip01_Xtra0102",
3849
+ "Bip01_Xtra0103",
3850
+ "Bip01_Xtra01Nub",
3851
+ "Bip01_Xtra02",
3852
+ "Bip01_Xtra02Nub",
3853
+ "Bip01_Xtra02Opp",
3854
+ "Bip01_Xtra02OppNub",
3855
+ "Bip01_Xtra03",
3856
+ "Bip01_Xtra03Nub",
3857
+ "Bip01_Xtra03Opp",
3858
+ "Bip01_Xtra03OppNub",
3859
+ "Hips"
3860
+ ]
3861
+ }
animation_frames.json ADDED
@@ -0,0 +1,1099 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Alligator-Big_Mouth.fbx": 136,
3
+ "Alligator-Bite_1.fbx": 136,
4
+ "Alligator-Bite_2.fbx": 154,
5
+ "Alligator-Bite_3.fbx": 97,
6
+ "Alligator-Bite_4.fbx": 115,
7
+ "Alligator-Bite_5.fbx": 115,
8
+ "Alligator-Bite_6.fbx": 201,
9
+ "Alligator-Bite_7.fbx": 190,
10
+ "Alligator-Catch.fbx": 121,
11
+ "Alligator-Dash.fbx": 138,
12
+ "Alligator-Dash_2.fbx": 201,
13
+ "Alligator-Dead_Up.fbx": 58,
14
+ "Alligator-Die.fbx": 238,
15
+ "Alligator-Die_Loop.fbx": 60,
16
+ "Alligator-Shake.fbx": 115,
17
+ "Alligator-Stand_Idle.fbx": 90,
18
+ "Alligator-Throw.fbx": 130,
19
+ "Alligator-Throw_2.fbx": 70,
20
+ "Alligator-Walk_1.fbx": 231,
21
+ "Alligator-Walk_2.fbx": 331,
22
+ "Alligator-Walk_3.fbx": 217,
23
+ "Anaconda-Attack.fbx": 121,
24
+ "Anaconda-Bite.fbx": 80,
25
+ "Anaconda-Bite_2.fbx": 84,
26
+ "Anaconda-Die.fbx": 151,
27
+ "Anaconda-Hiss.fbx": 109,
28
+ "Anaconda-Idle.fbx": 201,
29
+ "Anaconda-Idle_2.fbx": 301,
30
+ "Anaconda-Rise.fbx": 135,
31
+ "Anaconda-Rise_2.fbx": 91,
32
+ "Anaconda-Run.fbx": 69,
33
+ "Anaconda-Sneaky.fbx": 300,
34
+ "Anaconda-Spin.fbx": 160,
35
+ "Anaconda-Strike.fbx": 140,
36
+ "Anaconda-Strike_2.fbx": 90,
37
+ "Anaconda-Struck_Die.fbx": 151,
38
+ "Anaconda-Tired.fbx": 152,
39
+ "Anaconda-Twist_Rattle.fbx": 220,
40
+ "Anaconda-Walk_Slow.fbx": 151,
41
+ "Ant-Attack.fbx": 72,
42
+ "Ant-Cleaning.fbx": 151,
43
+ "Ant-Die.fbx": 202,
44
+ "Ant-Die_2.fbx": 31,
45
+ "Ant-Die_Loop.fbx": 60,
46
+ "Ant-Die_Up.fbx": 61,
47
+ "Ant-Idle.fbx": 150,
48
+ "Ant-Idle_2.fbx": 79,
49
+ "Ant-Idle_3.fbx": 120,
50
+ "Ant-Jump_Forward.fbx": 90,
51
+ "Ant-Knocked_Back.fbx": 69,
52
+ "Ant-March.fbx": 31,
53
+ "Ant-Shake.fbx": 91,
54
+ "Ant-Sting.fbx": 90,
55
+ "Ant-Sting_2.fbx": 79,
56
+ "Ant-Throw.fbx": 121,
57
+ "Ant-Walk.fbx": 70,
58
+ "Bat-Attack_Bite.fbx": 60,
59
+ "Bat-Float.fbx": 40,
60
+ "Bat-Fly.fbx": 54,
61
+ "Bat-Fly_Glide.fbx": 60,
62
+ "Bat-Fly_Loop.fbx": 60,
63
+ "Bat-Kick.fbx": 72,
64
+ "Bat-Knocked_Back.fbx": 94,
65
+ "Bat-Looking.fbx": 180,
66
+ "Bat-Slow_Fly.fbx": 130,
67
+ "Bat-Walk.fbx": 40,
68
+ "Bear-Angery_Swat.fbx": 24,
69
+ "Bear-Back_Up.fbx": 59,
70
+ "Bear-Bear_Run.fbx": 19,
71
+ "Bear-Bite.fbx": 19,
72
+ "Bear-Catch_Fish.fbx": 24,
73
+ "Bear-Feast.fbx": 46,
74
+ "Bear-Fish_Bite.fbx": 24,
75
+ "Bear-Get_Up.fbx": 101,
76
+ "Bear-Ground_Paw.fbx": 101,
77
+ "Bear-Growl.fbx": 61,
78
+ "Bear-Idle.fbx": 91,
79
+ "Bear-Idle_Pant.fbx": 61,
80
+ "Bear-Jump_Bite.fbx": 37,
81
+ "Bear-Lay_Down.fbx": 72,
82
+ "Bear-Rise_Roar.fbx": 115,
83
+ "Bear-Running_Bear.fbx": 19,
84
+ "Bear-Slow_Walk.fbx": 51,
85
+ "Bear-Stalking.fbx": 51,
86
+ "Bear-Stand.fbx": 89,
87
+ "Bear-Swat_Left.fbx": 29,
88
+ "Bear-Swat_Right.fbx": 29,
89
+ "Bear-Tip_Left.fbx": 40,
90
+ "Bear-Trot.fbx": 22,
91
+ "Bear-Trotting.fbx": 22,
92
+ "Bear-Turn_180.fbx": 65,
93
+ "Bear-Turn_Left.fbx": 65,
94
+ "Bear-Wake_Up.fbx": 51,
95
+ "Bear-Walk_Forward.fbx": 51,
96
+ "Bear-Wet_Shake.fbx": 50,
97
+ "Bird-Attack.fbx": 61,
98
+ "Bird-Attack_2.fbx": 61,
99
+ "Bird-Attack_3.fbx": 87,
100
+ "Bird-Attack_4.fbx": 91,
101
+ "Bird-Circle_Land.fbx": 241,
102
+ "Bird-Fallen.fbx": 126,
103
+ "Bird-Falling.fbx": 106,
104
+ "Bird-Floater.fbx": 121,
105
+ "Bird-Fly_Fast.fbx": 24,
106
+ "Bird-Fly_Loop.fbx": 49,
107
+ "Bird-Fly_Slow.fbx": 40,
108
+ "Bird-Flying.fbx": 45,
109
+ "Bird-Ground_Flap.fbx": 91,
110
+ "Bird-Idle_Loop.fbx": 130,
111
+ "Bird-Lander.fbx": 93,
112
+ "Bird-Look_Right.fbx": 151,
113
+ "Bird-Slow_Look.fbx": 79,
114
+ "Bird-Take_Off.fbx": 61,
115
+ "BrownBear-Attack.fbx": 103,
116
+ "BrownBear-Attack_2.fbx": 90,
117
+ "BrownBear-Attack_3.fbx": 81,
118
+ "BrownBear-Charge.fbx": 100,
119
+ "BrownBear-Death_Loop.fbx": 60,
120
+ "BrownBear-Eat_Fish.fbx": 241,
121
+ "BrownBear-Falling.fbx": 151,
122
+ "BrownBear-Idle.fbx": 139,
123
+ "BrownBear-Limp.fbx": 150,
124
+ "BrownBear-Limping.fbx": 43,
125
+ "BrownBear-Ready.fbx": 79,
126
+ "BrownBear-Rise.fbx": 61,
127
+ "BrownBear-Rise_Attack.fbx": 91,
128
+ "BrownBear-Rise_Swat.fbx": 160,
129
+ "BrownBear-Run_Loop.fbx": 46,
130
+ "BrownBear-Scratch_Ear.fbx": 220,
131
+ "BrownBear-Sit_Clean.fbx": 220,
132
+ "BrownBear-Sleepy.fbx": 130,
133
+ "BrownBear-Slow_Walk.fbx": 109,
134
+ "BrownBear-Twitching.fbx": 51,
135
+ "BrownBear-Walk_Loop.fbx": 100,
136
+ "Buffalo-Alert_Idle.fbx": 201,
137
+ "Buffalo-Angry_Antlers.fbx": 121,
138
+ "Buffalo-Attack.fbx": 90,
139
+ "Buffalo-Attack_1.fbx": 90,
140
+ "Buffalo-Charged_Up.fbx": 70,
141
+ "Buffalo-Cud.fbx": 301,
142
+ "Buffalo-Die.fbx": 171,
143
+ "Buffalo-Fall.fbx": 121,
144
+ "Buffalo-Get_Up.fbx": 52,
145
+ "Buffalo-Ground_Loop.fbx": 60,
146
+ "Buffalo-Hoof_Scrape.fbx": 121,
147
+ "Buffalo-Idle.fbx": 130,
148
+ "Buffalo-Jump.fbx": 120,
149
+ "Buffalo-Lowered_Head.fbx": 100,
150
+ "Buffalo-Run_Loop.fbx": 40,
151
+ "Buffalo-Shot.fbx": 61,
152
+ "Buffalo-Sleep_Up.fbx": 301,
153
+ "Buffalo-Walk_Loop.fbx": 100,
154
+ "Buzzard-Attack_1.fbx": 70,
155
+ "Buzzard-Attack_2.fbx": 79,
156
+ "Buzzard-Attack_3.fbx": 70,
157
+ "Buzzard-Die_1.fbx": 100,
158
+ "Buzzard-Dying.fbx": 100,
159
+ "Buzzard-Fly_Loop.fbx": 139,
160
+ "Buzzard-Slow_Fly.fbx": 60,
161
+ "Buzzard-Slow_Loop.fbx": 49,
162
+ "Buzzard-Slowto_Land.fbx": 70,
163
+ "Buzzard-Soaring.fbx": 34,
164
+ "Camel-Bite.fbx": 100,
165
+ "Camel-Buck.fbx": 60,
166
+ "Camel-Down_Loop.fbx": 60,
167
+ "Camel-Fall.fbx": 40,
168
+ "Camel-Idle_Loop.fbx": 201,
169
+ "Camel-Lay_Down.fbx": 145,
170
+ "Camel-Mope.fbx": 120,
171
+ "Camel-Restless.fbx": 139,
172
+ "Camel-Run.fbx": 61,
173
+ "Camel-Run_Fast.fbx": 40,
174
+ "Camel-Scrape_Hoof.fbx": 231,
175
+ "Camel-Slow_Walk.fbx": 120,
176
+ "Camel-Specail.fbx": 166,
177
+ "Camel-Stand_Up.fbx": 60,
178
+ "Camel-Stop_Walk.fbx": 60,
179
+ "Camel-Trot.fbx": 60,
180
+ "Camel-Wild_1.fbx": 100,
181
+ "Camel-Yell.fbx": 90,
182
+ "Cat-Idle_Purr.fbx": 501,
183
+ "Cat-Lick_Clean_Idle.fbx": 501,
184
+ "Cat-Stretch_Yawn_Idle.fbx": 501,
185
+ "Cat-Walk.fbx": 90,
186
+ "Centipede-Attack.fbx": 90,
187
+ "Centipede-Attack_1.fbx": 90,
188
+ "Centipede-Attack_2.fbx": 121,
189
+ "Centipede-Die.fbx": 141,
190
+ "Centipede-Idle.fbx": 115,
191
+ "Centipede-Idle_2.fbx": 150,
192
+ "Centipede-Idle_3.fbx": 115,
193
+ "Centipede-Rearing.fbx": 201,
194
+ "Centipede-Run.fbx": 46,
195
+ "Centipede-Walk.fbx": 90,
196
+ "Chicken-Egg_Laying.fbx": 201,
197
+ "Chicken-Idle_Pecking.fbx": 201,
198
+ "Chicken-Walk.fbx": 90,
199
+ "Comodoa-Attack_1.fbx": 60,
200
+ "Comodoa-Attack_2.fbx": 60,
201
+ "Comodoa-Attack_3.fbx": 165,
202
+ "Comodoa-Die.fbx": 106,
203
+ "Comodoa-Idle.fbx": 241,
204
+ "Comodoa-Idle_2.fbx": 115,
205
+ "Comodoa-Run.fbx": 37,
206
+ "Comodoa-Walk.fbx": 199,
207
+ "Comodoa-Yawn.fbx": 351,
208
+ "Coyote-Attack_1.fbx": 72,
209
+ "Coyote-Attack_2.fbx": 72,
210
+ "Coyote-Attack_3.fbx": 91,
211
+ "Coyote-Die.fbx": 96,
212
+ "Coyote-Howling.fbx": 220,
213
+ "Coyote-Idle.fbx": 201,
214
+ "Coyote-Restless.fbx": 181,
215
+ "Coyote-Running.fbx": 37,
216
+ "Coyote-Sniffing.fbx": 64,
217
+ "Coyote-Walking.fbx": 75,
218
+ "Crab-Attack_1.fbx": 72,
219
+ "Crab-Attack_3.fbx": 90,
220
+ "Crab-Attack_4.fbx": 72,
221
+ "Crab-Defeated.fbx": 166,
222
+ "Crab-Die.fbx": 100,
223
+ "Crab-Eat.fbx": 121,
224
+ "Crab-Hit_Back.fbx": 106,
225
+ "Crab-Strafe.fbx": 100,
226
+ "Crab-Walk.fbx": 30,
227
+ "Cricket-Attack_1.fbx": 160,
228
+ "Cricket-Attack_2.fbx": 100,
229
+ "Cricket-Attack_3.fbx": 90,
230
+ "Cricket-Attack_4.fbx": 151,
231
+ "Cricket-Burrough.fbx": 70,
232
+ "Cricket-Die.fbx": 121,
233
+ "Cricket-Idle.fbx": 100,
234
+ "Cricket-Idle_Pissed.fbx": 91,
235
+ "Cricket-Look_Around.fbx": 245,
236
+ "Cricket-Out_Of_Ground.fbx": 66,
237
+ "Cricket-Running.fbx": 30,
238
+ "Cricket-Walking.fbx": 76,
239
+ "Crocodile-Attack.fbx": 75,
240
+ "Crocodile-Bite.fbx": 75,
241
+ "Crocodile-Bounce.fbx": 31,
242
+ "Crocodile-Die.fbx": 139,
243
+ "Crocodile-Get_Up.fbx": 61,
244
+ "Crocodile-Heavy_Breathe.fbx": 90,
245
+ "Crocodile-Idle.fbx": 220,
246
+ "Crocodile-Normal_Breath.fbx": 120,
247
+ "Crocodile-Running.fbx": 34,
248
+ "Crocodile-Sleep_Loop.fbx": 60,
249
+ "Crocodile-Tail_Whip.fbx": 105,
250
+ "Crocodile-Yawning.fbx": 220,
251
+ "Crow-Ascend.fbx": 49,
252
+ "Crow-Attack.fbx": 85,
253
+ "Crow-Attack_2.fbx": 42,
254
+ "Crow-Fly_Start.fbx": 10,
255
+ "Crow-Glide.fbx": 58,
256
+ "Crow-Idle.fbx": 245,
257
+ "Crow-Idle_Flap.fbx": 100,
258
+ "Crow-Land_Flap.fbx": 111,
259
+ "Crow-Peck_Eat.fbx": 250,
260
+ "Crow-Take_Off.fbx": 25,
261
+ "Deer-Backing.fbx": 37,
262
+ "Deer-Bleat.fbx": 80,
263
+ "Deer-Buck_Shy.fbx": 28,
264
+ "Deer-Charge.fbx": 35,
265
+ "Deer-Come_Down.fbx": 31,
266
+ "Deer-Gallop.fbx": 19,
267
+ "Deer-Get_Up.fbx": 80,
268
+ "Deer-Get_Up_Again.fbx": 80,
269
+ "Deer-Grazing.fbx": 301,
270
+ "Deer-Idle.fbx": 201,
271
+ "Deer-Idle_Ear_Flik.fbx": 250,
272
+ "Deer-Rear_Up.fbx": 52,
273
+ "Deer-Rutting.fbx": 59,
274
+ "Deer-Squirly.fbx": 37,
275
+ "Deer-Take_Off.fbx": 37,
276
+ "Deer-Trot.fbx": 21,
277
+ "Deer-Turn_Left.fbx": 31,
278
+ "Deer-Walk_Back.fbx": 31,
279
+ "Deer-Walk_Call.fbx": 40,
280
+ "Deer-Walk_Forward.fbx": 31,
281
+ "Dog-Attack.fbx": 56,
282
+ "Dog-Back_Away.fbx": 61,
283
+ "Dog-Bark_Jump.fbx": 37,
284
+ "Dog-Barking.fbx": 100,
285
+ "Dog-Bite_Arm.fbx": 45,
286
+ "Dog-Floor_Rise_Left.fbx": 101,
287
+ "Dog-Floor_Rise_Right.fbx": 101,
288
+ "Dog-Frightened.fbx": 40,
289
+ "Dog-Galloping.fbx": 46,
290
+ "Dog-Grab.fbx": 45,
291
+ "Dog-Hit_Left.fbx": 26,
292
+ "Dog-Hit_Right.fbx": 26,
293
+ "Dog-Investigate_Loop.fbx": 182,
294
+ "Dog-Leash_Attack.fbx": 31,
295
+ "Dog-Leash_Hot.fbx": 32,
296
+ "Dog-Limp_Loop.fbx": 81,
297
+ "Dog-Look_Left.fbx": 70,
298
+ "Dog-Look_Right.fbx": 81,
299
+ "Dog-PAnting.fbx": 40,
300
+ "Dog-Paddle.fbx": 61,
301
+ "Dog-Retreat.fbx": 21,
302
+ "Dog-Rise.fbx": 21,
303
+ "Dog-Run_Frisbee.fbx": 42,
304
+ "Dog-Running.fbx": 46,
305
+ "Dog-SNiffed.fbx": 25,
306
+ "Dog-Scratch_Right.fbx": 81,
307
+ "Dog-Single_Bark.fbx": 43,
308
+ "Dog-Sit.fbx": 126,
309
+ "Dog-Snarling.fbx": 61,
310
+ "Dog-Stare.fbx": 64,
311
+ "Dog-Swim.fbx": 61,
312
+ "Dog-Swim_Fast.fbx": 61,
313
+ "Dog-Swim_Left.fbx": 61,
314
+ "Dog-Swim_Right.fbx": 61,
315
+ "Dog-Turn_Left.fbx": 28,
316
+ "Dog-Turn_Right.fbx": 28,
317
+ "Dog-Wag.fbx": 16,
318
+ "Dog-Walk.fbx": 81,
319
+ "Dog-Walk_Backwards_Loop.fbx": 81,
320
+ "Dog-Walk_Loop.fbx": 81,
321
+ "Dog-Wine.fbx": 81,
322
+ "Dog-Woof.fbx": 100,
323
+ "Dog2-Arm_Bite.fbx": 45,
324
+ "Dog2-Attack.fbx": 56,
325
+ "Dog2-Back_Off.fbx": 61,
326
+ "Dog2-Bark.fbx": 100,
327
+ "Dog2-Bark_2.fbx": 43,
328
+ "Dog2-Bite_Arm_Shake.fbx": 45,
329
+ "Dog2-Bite_Jump.fbx": 32,
330
+ "Dog2-Get_Up.fbx": 101,
331
+ "Dog2-Growl.fbx": 40,
332
+ "Dog2-Idle_Breathe.fbx": 40,
333
+ "Dog2-Leash_Jump.fbx": 31,
334
+ "Dog2-Look_Left.fbx": 70,
335
+ "Dog2-Look_Right.fbx": 81,
336
+ "Dog2-Paddle.fbx": 61,
337
+ "Dog2-Ready.fbx": 61,
338
+ "Dog2-Run_Fast.fbx": 46,
339
+ "Dog2-Run_Jump.fbx": 42,
340
+ "Dog2-Scratch.fbx": 81,
341
+ "Dog2-Sense.fbx": 81,
342
+ "Dog2-Shake.fbx": 25,
343
+ "Dog2-Sit.fbx": 126,
344
+ "Dog2-Slow_Tail.fbx": 64,
345
+ "Dog2-Sniffing.fbx": 182,
346
+ "Dog2-Swim.fbx": 61,
347
+ "Dog2-Swim_Idle.fbx": 61,
348
+ "Dog2-Swim_Turn.fbx": 61,
349
+ "Dog2-Swim_Turn_2.fbx": 61,
350
+ "Dog2-Turn_Left.fbx": 28,
351
+ "Dog2-Turn_Right.fbx": 28,
352
+ "Dog2-Wag.fbx": 16,
353
+ "Dog2-Walk_Backward.fbx": 81,
354
+ "Dog2-Walk_Limp.fbx": 81,
355
+ "Dog2-Walk_Loop.fbx": 81,
356
+ "Dog2-Walk_Normal.fbx": 81,
357
+ "Dog2-Woof.fbx": 100,
358
+ "Dragon-Attack.fbx": 121,
359
+ "Dragon-Attack_2.fbx": 121,
360
+ "Dragon-Attack_3.fbx": 182,
361
+ "Dragon-Die.fbx": 181,
362
+ "Dragon-Fly.fbx": 331,
363
+ "Dragon-Idle.fbx": 301,
364
+ "Dragon-Idle_2.fbx": 141,
365
+ "Dragon-Idle_3.fbx": 331,
366
+ "Dragon-Slow_Fly.fbx": 301,
367
+ "Eagle-Egg_Steal.fbx": 90,
368
+ "Eagle-Float_Down.fbx": 40,
369
+ "Eagle-Floatt_Up.fbx": 60,
370
+ "Eagle-Fly_Loop.fbx": 36,
371
+ "Eagle-Glide_Loop.fbx": 54,
372
+ "Eagle-Idle_Nest.fbx": 201,
373
+ "Eagle-Landing.fbx": 91,
374
+ "Eagle-Ride_Wind.fbx": 75,
375
+ "Eagle-Shot.fbx": 91,
376
+ "Eagle-Strike_1.fbx": 72,
377
+ "Eagle-Strike_2.fbx": 72,
378
+ "Eagle-Take_Off.fbx": 66,
379
+ "Elephant-Attack_1.fbx": 75,
380
+ "Elephant-Attack_2.fbx": 75,
381
+ "Elephant-Die.fbx": 178,
382
+ "Elephant-Down_In.fbx": 61,
383
+ "Elephant-Down_Loop.fbx": 60,
384
+ "Elephant-Down_Out.fbx": 121,
385
+ "Elephant-Firing.fbx": 91,
386
+ "Elephant-Idle_1.fbx": 201,
387
+ "Elephant-Idle_2.fbx": 201,
388
+ "Elephant-Idle_3.fbx": 100,
389
+ "Elephant-Passout.fbx": 121,
390
+ "Elephant-Run.fbx": 60,
391
+ "Elephant-Walk.fbx": 120,
392
+ "FireAnt-Angry.fbx": 34,
393
+ "FireAnt-Annoyed.fbx": 31,
394
+ "FireAnt-Back_Up.fbx": 40,
395
+ "FireAnt-Bite.fbx": 34,
396
+ "FireAnt-Creep.fbx": 34,
397
+ "FireAnt-Feel.fbx": 40,
398
+ "FireAnt-Fight_Off.fbx": 40,
399
+ "FireAnt-Forward_March.fbx": 61,
400
+ "FireAnt-Gesture.fbx": 31,
401
+ "FireAnt-Hit.fbx": 76,
402
+ "FireAnt-Hungry.fbx": 40,
403
+ "FireAnt-Idle.fbx": 201,
404
+ "FireAnt-Jump.fbx": 34,
405
+ "FireAnt-Left.fbx": 25,
406
+ "FireAnt-Right.fbx": 24,
407
+ "FireAnt-Rip.fbx": 40,
408
+ "FireAnt-Rip_Flesh.fbx": 42,
409
+ "FireAnt-Rip_Flesh_2.fbx": 40,
410
+ "FireAnt-Roar.fbx": 160,
411
+ "FireAnt-Snap.fbx": 40,
412
+ "FireAnt-Turn_Left.fbx": 60,
413
+ "FireAnt-Turn_Right.fbx": 61,
414
+ "FireAnt-Up_From_Down.fbx": 40,
415
+ "FireAnt-Up_From_Down_2.fbx": 40,
416
+ "Flamingo-Bend_Idle.fbx": 201,
417
+ "Flamingo-One_Leg_Bent.fbx": 201,
418
+ "Flamingo-Sleep.fbx": 201,
419
+ "Flamingo-Walk.fbx": 79,
420
+ "Fox-Attack_1.fbx": 60,
421
+ "Fox-Attack_2.fbx": 60,
422
+ "Fox-Attack_3.fbx": 90,
423
+ "Fox-Attack_4.fbx": 72,
424
+ "Fox-Die.fbx": 81,
425
+ "Fox-Die_2.fbx": 85,
426
+ "Fox-Idle_1.fbx": 70,
427
+ "Fox-Idle_2.fbx": 120,
428
+ "Fox-Idle_3.fbx": 300,
429
+ "Fox-Idle_4.fbx": 250,
430
+ "Fox-Idle_5.fbx": 351,
431
+ "Fox-Run.fbx": 34,
432
+ "Fox-Walk.fbx": 70,
433
+ "Gazelle-Alert.fbx": 301,
434
+ "Gazelle-Attack.fbx": 60,
435
+ "Gazelle-Attack_1.fbx": 120,
436
+ "Gazelle-Fall.fbx": 91,
437
+ "Gazelle-Head_Poke.fbx": 60,
438
+ "Gazelle-Idle.fbx": 201,
439
+ "Gazelle-Idle_Ready.fbx": 79,
440
+ "Gazelle-Run.fbx": 30,
441
+ "Gazelle-Walk.fbx": 79,
442
+ "Giantbee-Attack.fbx": 72,
443
+ "Giantbee-Attack_2.fbx": 72,
444
+ "Giantbee-Attack_3.fbx": 105,
445
+ "Giantbee-Attack_4.fbx": 90,
446
+ "Giantbee-Die.fbx": 111,
447
+ "Giantbee-Die_2.fbx": 111,
448
+ "Giantbee-Fly.fbx": 79,
449
+ "Giantbee-Idle.fbx": 103,
450
+ "Giantbee-Idle_2.fbx": 40,
451
+ "Goat-Attack.fbx": 72,
452
+ "Goat-Bleat.fbx": 69,
453
+ "Goat-Die.fbx": 81,
454
+ "Goat-Head_Butt.fbx": 79,
455
+ "Goat-Head_Butt_2.fbx": 79,
456
+ "Goat-Hoof_Scrape.fbx": 151,
457
+ "Goat-Idle.fbx": 120,
458
+ "Goat-Jump_Knock.fbx": 111,
459
+ "Goat-Run.fbx": 36,
460
+ "Goat-Walk.fbx": 72,
461
+ "Hamster-Idle.fbx": 130,
462
+ "Hamster-Roll_Attack.fbx": 109,
463
+ "Hamster-Run.fbx": 22,
464
+ "Hamster-Sniff.fbx": 301,
465
+ "Hamster-Walk.fbx": 49,
466
+ "HermitCrab-Die.fbx": 85,
467
+ "HermitCrab-Eat.fbx": 201,
468
+ "HermitCrab-Expire.fbx": 81,
469
+ "HermitCrab-Fighting.fbx": 120,
470
+ "HermitCrab-Knocked_Back.fbx": 85,
471
+ "HermitCrab-Knocked_Out.fbx": 76,
472
+ "HermitCrab-Out_Of_Ground.fbx": 100,
473
+ "HermitCrab-Pinchers.fbx": 49,
474
+ "HermitCrab-Sand_Burrough.fbx": 81,
475
+ "HermitCrab-Sleep.fbx": 220,
476
+ "HermitCrab-Slow_Walk.fbx": 100,
477
+ "HermitCrab-Walk.fbx": 31,
478
+ "Hippopotamus-Attack.fbx": 100,
479
+ "Hippopotamus-Attack_2.fbx": 100,
480
+ "Hippopotamus-Attack_3.fbx": 151,
481
+ "Hippopotamus-Attack_4.fbx": 121,
482
+ "Hippopotamus-Die.fbx": 151,
483
+ "Hippopotamus-Idle.fbx": 121,
484
+ "Hippopotamus-Idle_2.fbx": 90,
485
+ "Hippopotamus-Run.fbx": 40,
486
+ "Hippopotamus-Walk.fbx": 81,
487
+ "Hippopotamus-Yawn.fbx": 181,
488
+ "Horse-Attack.fbx": 145,
489
+ "Horse-Back_Up.fbx": 40,
490
+ "Horse-Bucking.fbx": 139,
491
+ "Horse-Dying.fbx": 168,
492
+ "Horse-Feet_Up.fbx": 139,
493
+ "Horse-Get_Up.fbx": 55,
494
+ "Horse-Hoof_Scrape.fbx": 245,
495
+ "Horse-Hoof_Scrape_2.fbx": 121,
496
+ "Horse-Idle.fbx": 261,
497
+ "Horse-Idle_3.fbx": 121,
498
+ "Horse-Idle_Ears.fbx": 400,
499
+ "Horse-In_Air.fbx": 81,
500
+ "Horse-Jump_Land.fbx": 68,
501
+ "Horse-Jumping.fbx": 100,
502
+ "Horse-Knocked_Back.fbx": 31,
503
+ "Horse-Land_Run.fbx": 61,
504
+ "Horse-Lone_Ranger.fbx": 156,
505
+ "Horse-Lying.fbx": 40,
506
+ "Horse-Rearing.fbx": 94,
507
+ "Horse-Rearing_2.fbx": 121,
508
+ "Horse-Restless.fbx": 105,
509
+ "Horse-Restless_2.fbx": 210,
510
+ "Horse-Restless_3.fbx": 201,
511
+ "Horse-Run_Jump.fbx": 121,
512
+ "Horse-Run_Loop.fbx": 31,
513
+ "Horse-Run_To_Stop.fbx": 61,
514
+ "Horse-Slow_Idle.fbx": 100,
515
+ "Horse-Slow_Walk.fbx": 85,
516
+ "Hound-Attack.fbx": 75,
517
+ "Hound-Bark_1.fbx": 75,
518
+ "Hound-Barking.fbx": 139,
519
+ "Hound-Die.fbx": 141,
520
+ "Hound-Die_Loop.fbx": 60,
521
+ "Hound-Get_Up.fbx": 61,
522
+ "Hound-Hit.fbx": 31,
523
+ "Hound-Idle.fbx": 120,
524
+ "Hound-Ready_2.fbx": 70,
525
+ "Hound-Restless.fbx": 201,
526
+ "Hound-Run_Loop.fbx": 31,
527
+ "Hound-Sniff.fbx": 121,
528
+ "Hound-Walk_Loop.fbx": 79,
529
+ "Isopetra-Attack.fbx": 60,
530
+ "Isopetra-Attack_2.fbx": 60,
531
+ "Isopetra-Attack_3.fbx": 108,
532
+ "Isopetra-Die.fbx": 121,
533
+ "Isopetra-Idle.fbx": 49,
534
+ "Isopetra-Idle_2.fbx": 100,
535
+ "Isopetra-Idle_3.fbx": 201,
536
+ "Isopetra-Run.fbx": 31,
537
+ "Isopetra-Walk.fbx": 51,
538
+ "Jaguar-Attack.fbx": 117,
539
+ "Jaguar-Attack_1.fbx": 72,
540
+ "Jaguar-Attack_2.fbx": 72,
541
+ "Jaguar-Die_1.fbx": 106,
542
+ "Jaguar-Die_2.fbx": 31,
543
+ "Jaguar-Get_Up.fbx": 61,
544
+ "Jaguar-Idle.fbx": 120,
545
+ "Jaguar-Lie_Idle.fbx": 60,
546
+ "Jaguar-Low.fbx": 109,
547
+ "Jaguar-Run.fbx": 34,
548
+ "Jaguar-Sit.fbx": 301,
549
+ "Jaguar-Stancing.fbx": 75,
550
+ "Jaguar-Walk.fbx": 61,
551
+ "Jaws-Bite_Left.fbx": 71,
552
+ "Jaws-Bite_Right.fbx": 71,
553
+ "Jaws-Dead.fbx": 63,
554
+ "Jaws-Dead_Loop.fbx": 181,
555
+ "Jaws-Swim.fbx": 61,
556
+ "Jaws-Swim_180.fbx": 71,
557
+ "Jaws-Swim_At.fbx": 31,
558
+ "Jaws-Swim_Left.fbx": 61,
559
+ "Jaws-Swim_Right.fbx": 61,
560
+ "KingCobra-Attack.fbx": 145,
561
+ "KingCobra-Attack_2.fbx": 90,
562
+ "KingCobra-Bite.fbx": 72,
563
+ "KingCobra-Circle_Bite.fbx": 130,
564
+ "KingCobra-Get_Up.fbx": 100,
565
+ "KingCobra-Idle.fbx": 100,
566
+ "KingCobra-Idle_Loop.fbx": 281,
567
+ "KingCobra-Killed.fbx": 76,
568
+ "KingCobra-Run.fbx": 39,
569
+ "KingCobra-Steady.fbx": 121,
570
+ "KingCobra-Walk.fbx": 199,
571
+ "KingCobra-Walk_Fast.fbx": 100,
572
+ "Leapord-Attack.fbx": 82,
573
+ "Leapord-Bite.fbx": 82,
574
+ "Leapord-Death.fbx": 31,
575
+ "Leapord-Die.fbx": 111,
576
+ "Leapord-Die_Loop.fbx": 60,
577
+ "Leapord-Graze.fbx": 301,
578
+ "Leapord-Growl.fbx": 90,
579
+ "Leapord-Idle.fbx": 201,
580
+ "Leapord-Jump_Up.fbx": 61,
581
+ "Leapord-Pounce.fbx": 100,
582
+ "Leapord-Pounce_Swipe.fbx": 121,
583
+ "Leapord-Run.fbx": 36,
584
+ "Leapord-Sick.fbx": 120,
585
+ "Leapord-Walk.fbx": 100,
586
+ "Lion-Attack.fbx": 72,
587
+ "Lion-Death_Idle.fbx": 60,
588
+ "Lion-Die.fbx": 111,
589
+ "Lion-Die_2.fbx": 31,
590
+ "Lion-Get_Up.fbx": 60,
591
+ "Lion-Growl.fbx": 79,
592
+ "Lion-Jump_Bite.fbx": 72,
593
+ "Lion-Leap_Bite.fbx": 91,
594
+ "Lion-Run.fbx": 40,
595
+ "Lion-Slow_Idle.fbx": 180,
596
+ "Lion-Sniff.fbx": 139,
597
+ "Lion-Swatting.fbx": 121,
598
+ "Lion-Walk.fbx": 109,
599
+ "Lion-Yawn.fbx": 280,
600
+ "Lynx-Attack.fbx": 60,
601
+ "Lynx-Attack_2.fbx": 60,
602
+ "Lynx-Attack_3.fbx": 79,
603
+ "Lynx-Die.fbx": 92,
604
+ "Lynx-Die_2.fbx": 31,
605
+ "Lynx-Die_Loop.fbx": 60,
606
+ "Lynx-Idle.fbx": 160,
607
+ "Lynx-Idle_2.fbx": 121,
608
+ "Lynx-Idle_3.fbx": 75,
609
+ "Lynx-Jump.fbx": 90,
610
+ "Lynx-Run.fbx": 33,
611
+ "Lynx-Stand.fbx": 61,
612
+ "Lynx-Walk.fbx": 90,
613
+ "Mammoth-Bellow.fbx": 351,
614
+ "Mammoth-Death_Loop.fbx": 60,
615
+ "Mammoth-Die.fbx": 181,
616
+ "Mammoth-Die_2.fbx": 70,
617
+ "Mammoth-Gesture.fbx": 120,
618
+ "Mammoth-Get_Up.fbx": 100,
619
+ "Mammoth-Idle.fbx": 160,
620
+ "Mammoth-Idle_2.fbx": 150,
621
+ "Mammoth-Rise.fbx": 121,
622
+ "Mammoth-Run.fbx": 90,
623
+ "Mammoth-Side_Swipe.fbx": 115,
624
+ "Mammoth-Walk.fbx": 150,
625
+ "Monkey-Attack_1.fbx": 60,
626
+ "Monkey-Attack_2.fbx": 60,
627
+ "Monkey-Attack_3.fbx": 121,
628
+ "Monkey-Attack_4.fbx": 117,
629
+ "Monkey-B01_Die.fbx": 81,
630
+ "Monkey-B01_Idle.fbx": 301,
631
+ "Monkey-B02_Attack.fbx": 130,
632
+ "Monkey-B02_Die.fbx": 100,
633
+ "Monkey-B02_Idle.fbx": 250,
634
+ "Monkey-Die.fbx": 111,
635
+ "Monkey-Idle_1.fbx": 90,
636
+ "Monkey-Idle_2.fbx": 121,
637
+ "Monkey-Idle_3.fbx": 301,
638
+ "Monkey-Run.fbx": 40,
639
+ "Monkey-Walk.fbx": 61,
640
+ "Ostrich-Attack.fbx": 70,
641
+ "Ostrich-Attack_2.fbx": 70,
642
+ "Ostrich-Attack_3.fbx": 100,
643
+ "Ostrich-Attack_4.fbx": 94,
644
+ "Ostrich-Die.fbx": 91,
645
+ "Ostrich-Idle.fbx": 90,
646
+ "Ostrich-Idle_2.fbx": 121,
647
+ "Ostrich-Idle_3.fbx": 331,
648
+ "Ostrich-Run.fbx": 40,
649
+ "Ostrich-Walk.fbx": 61,
650
+ "Parrot-Attack.fbx": 181,
651
+ "Parrot-Circle_Fly.fbx": 235,
652
+ "Parrot-Die.fbx": 106,
653
+ "Parrot-Die_2.fbx": 78,
654
+ "Parrot-Die_3.fbx": 85,
655
+ "Parrot-Fly.fbx": 30,
656
+ "Parrot-Hover.fbx": 34,
657
+ "Parrot-Idle.fbx": 201,
658
+ "Parrot-Idle_2.fbx": 301,
659
+ "Parrot-Land.fbx": 91,
660
+ "Parrot-Preen.fbx": 181,
661
+ "Parrot-Rise.fbx": 61,
662
+ "Parrot-Walk.fbx": 46,
663
+ "Parrot2-Idle.fbx": 201,
664
+ "Parrot2-Idle_Clean.fbx": 202,
665
+ "Parrot2-Land.fbx": 301,
666
+ "Pigeon-Circle.fbx": 100,
667
+ "Pigeon-Cooing.fbx": 31,
668
+ "Pigeon-Fly_Loop.fbx": 10,
669
+ "Pigeon-Idle.fbx": 81,
670
+ "Pigeon-Idle_Loop.fbx": 301,
671
+ "Pigeon-Land.fbx": 66,
672
+ "Pigeon-Left.fbx": 81,
673
+ "Pigeon-Peck.fbx": 70,
674
+ "Pigeon-Right.fbx": 81,
675
+ "Pigeon-Take_Off.fbx": 28,
676
+ "Pigeon-Walk.fbx": 25,
677
+ "Pirrana-Biting.fbx": 60,
678
+ "Pirrana-Biting_2.fbx": 45,
679
+ "Pirrana-Dead_Float.fbx": 121,
680
+ "Pirrana-Dead_Float_2.fbx": 100,
681
+ "Pirrana-Dive_In.fbx": 61,
682
+ "Pirrana-Flopping.fbx": 45,
683
+ "Pirrana-Mid_Swim.fbx": 97,
684
+ "Pirrana-Rise_Top.fbx": 61,
685
+ "Pirrana-Swim.fbx": 97,
686
+ "Pirrana-Swim_Jump.fbx": 100,
687
+ "PolarBear-Attack.fbx": 100,
688
+ "PolarBear-Attack_2.fbx": 90,
689
+ "PolarBear-Attack_3.fbx": 150,
690
+ "PolarBear-Die.fbx": 111,
691
+ "PolarBear-Idle.fbx": 79,
692
+ "PolarBear-Idle_2.fbx": 181,
693
+ "PolarBear-Idle_3.fbx": 301,
694
+ "PolarBear-Run.fbx": 37,
695
+ "PolarBear-Walk.fbx": 70,
696
+ "PolarBearB-B_Idle_3.fbx": 181,
697
+ "PolarBearB-Fall.fbx": 84,
698
+ "PolarBearB-Get_Up.fbx": 181,
699
+ "PolarBearB-Idle.fbx": 90,
700
+ "PolarBearB-Idle_2.fbx": 121,
701
+ "PolarBearB-Play.fbx": 120,
702
+ "PolarBearB-Run.fbx": 42,
703
+ "PolarBearB-Walk.fbx": 61,
704
+ "Pteranodon-Arc_Left.fbx": 46,
705
+ "Pteranodon-Arc_Right.fbx": 46,
706
+ "Pteranodon-Death.fbx": 70,
707
+ "Pteranodon-Death_2.fbx": 40,
708
+ "Pteranodon-Fancy.fbx": 79,
709
+ "Pteranodon-Flapergasted.fbx": 46,
710
+ "Pteranodon-Fly_Loop.fbx": 91,
711
+ "Pteranodon-Glide_Scream.fbx": 73,
712
+ "Pteranodon-Hit.fbx": 46,
713
+ "Pteranodon-Hit_2.fbx": 46,
714
+ "Pteranodon-Lander.fbx": 79,
715
+ "Pteranodon-Scream_Fly.fbx": 73,
716
+ "Puppy-Idle_Energetic.fbx": 501,
717
+ "Puppy-Idle_Lay_Down.fbx": 501,
718
+ "Puppy-Run.fbx": 31,
719
+ "Puppy-Walk.fbx": 70,
720
+ "Raindeer-Attack.fbx": 91,
721
+ "Raindeer-Attack_2.fbx": 91,
722
+ "Raindeer-Attack_3.fbx": 120,
723
+ "Raindeer-Die.fbx": 91,
724
+ "Raindeer-Idle.fbx": 115,
725
+ "Raindeer-Run.fbx": 40,
726
+ "Raindeer-Stance.fbx": 91,
727
+ "Raindeer-Walk.fbx": 61,
728
+ "Raindeer-Yell.fbx": 211,
729
+ "Raptor-Attack.fbx": 79,
730
+ "Raptor-Die.fbx": 100,
731
+ "Raptor-Fast_Walk.fbx": 44,
732
+ "Raptor-Head_Smash.fbx": 91,
733
+ "Raptor-Idle.fbx": 274,
734
+ "Raptor-Idle_2.fbx": 201,
735
+ "Raptor-Leg_Scratch.fbx": 301,
736
+ "Raptor-Roar.fbx": 139,
737
+ "Raptor-Slow_Walk.fbx": 79,
738
+ "Raptor-Yawn.fbx": 301,
739
+ "Raptor2-Breathe_Idle.fbx": 76,
740
+ "Raptor2-Clean.fbx": 85,
741
+ "Raptor2-Die.fbx": 88,
742
+ "Raptor2-Die_2_Get_Up.fbx": 106,
743
+ "Raptor2-Die_Get_Up.fbx": 123,
744
+ "Raptor2-Eat.fbx": 67,
745
+ "Raptor2-Eat_Grass.fbx": 205,
746
+ "Raptor2-Egg_Tend.fbx": 220,
747
+ "Raptor2-Fall.fbx": 142,
748
+ "Raptor2-Fall_Get_Up.fbx": 190,
749
+ "Raptor2-Fence_Climb_Fall.fbx": 166,
750
+ "Raptor2-Idle.fbx": 226,
751
+ "Raptor2-Idle_Alert.fbx": 76,
752
+ "Raptor2-Idle_Bite_Apple.fbx": 205,
753
+ "Raptor2-Idle_Curious.fbx": 304,
754
+ "Raptor2-Idle_Forward.fbx": 226,
755
+ "Raptor2-Idle_Left.fbx": 226,
756
+ "Raptor2-Idle_Look_Left.fbx": 226,
757
+ "Raptor2-Idle_Look_Right.fbx": 226,
758
+ "Raptor2-Idle_Right.fbx": 226,
759
+ "Raptor2-Jump_Spin_Run.fbx": 97,
760
+ "Raptor2-Left_Head_Run.fbx": 109,
761
+ "Raptor2-Left_Run_Bite.fbx": 64,
762
+ "Raptor2-Reverse_Run.fbx": 61,
763
+ "Raptor2-Right_Head_Run.fbx": 52,
764
+ "Raptor2-Right_Run_Bite.fbx": 64,
765
+ "Raptor2-Run.fbx": 61,
766
+ "Raptor2-Run_Fall.fbx": 139,
767
+ "Raptor2-Run_Jump.fbx": 151,
768
+ "Raptor2-Run_Jump_Bite.fbx": 178,
769
+ "Raptor2-Run_Jump_Fall.fbx": 160,
770
+ "Raptor2-Run_Jump_Land_Back.fbx": 118,
771
+ "Raptor2-Run_Jump_Roll.fbx": 160,
772
+ "Raptor2-Run_Scream_Jump.fbx": 157,
773
+ "Raptor2-Run_To_Stop_Roar.fbx": 64,
774
+ "Raptor2-Run_To_Stop_Roar_2.fbx": 97,
775
+ "Raptor2-Spin_Run.fbx": 76,
776
+ "Raptor2-Stride.fbx": 49,
777
+ "Raptor2-Walk.fbx": 145,
778
+ "Raptor3-Attack_Right.fbx": 82,
779
+ "Raptor3-Bark_Forward.fbx": 82,
780
+ "Raptor3-Left_Puke.fbx": 82,
781
+ "Raptor3-Mean_Left.fbx": 112,
782
+ "Raptor3-Mean_Right.fbx": 112,
783
+ "Raptor3-Roar_Forward.fbx": 112,
784
+ "Raptor3-Roar_Left.fbx": 112,
785
+ "Raptor3-Roar_Right.fbx": 112,
786
+ "Raptor3-Run.fbx": 55,
787
+ "Raptor3-Step_Left.fbx": 112,
788
+ "Raptor3-Step_Right.fbx": 112,
789
+ "Raptor3-Step_Roar.fbx": 112,
790
+ "Raptor3-Yell.fbx": 112,
791
+ "Rat-Alert_Run.fbx": 107,
792
+ "Rat-Clean.fbx": 55,
793
+ "Rat-Eat.fbx": 133,
794
+ "Rat-Itch.fbx": 55,
795
+ "Rat-Scamper.fbx": 15,
796
+ "Rat-Trottle.fbx": 16,
797
+ "Rhino-Attack.fbx": 79,
798
+ "Rhino-Attack_2.fbx": 79,
799
+ "Rhino-Attack_3.fbx": 130,
800
+ "Rhino-Die.fbx": 160,
801
+ "Rhino-Idle.fbx": 139,
802
+ "Rhino-Idle_2.fbx": 201,
803
+ "Rhino-Idle_3.fbx": 301,
804
+ "Rhino-Run.fbx": 49,
805
+ "Rhino-Walk.fbx": 81,
806
+ "Roach-Bristle.fbx": 31,
807
+ "Roach-Fall.fbx": 19,
808
+ "Roach-Hop.fbx": 21,
809
+ "Roach-Left.fbx": 19,
810
+ "Roach-Move.fbx": 40,
811
+ "Roach-Scurry.fbx": 14,
812
+ "Roach-Shake.fbx": 31,
813
+ "Roach-Smelling.fbx": 100,
814
+ "Roach-Turn_Left.fbx": 20,
815
+ "Roach-Turn_Right.fbx": 20,
816
+ "Roach-Uppity.fbx": 27,
817
+ "SabreToothTiger-180RIght.fbx": 70,
818
+ "SabreToothTiger-180_Flip.fbx": 22,
819
+ "SabreToothTiger-45_Turn_Left.fbx": 35,
820
+ "SabreToothTiger-Agitated.fbx": 46,
821
+ "SabreToothTiger-Attack.fbx": 31,
822
+ "SabreToothTiger-Back_Up.fbx": 50,
823
+ "SabreToothTiger-Backing.fbx": 41,
824
+ "SabreToothTiger-Begg.fbx": 101,
825
+ "SabreToothTiger-Bite.fbx": 55,
826
+ "SabreToothTiger-Cage_Bat.fbx": 80,
827
+ "SabreToothTiger-Cowering.fbx": 41,
828
+ "SabreToothTiger-Cowering_2.fbx": 55,
829
+ "SabreToothTiger-Eating.fbx": 100,
830
+ "SabreToothTiger-Get_Up.fbx": 36,
831
+ "SabreToothTiger-Get_Up_2.fbx": 31,
832
+ "SabreToothTiger-Get_Up_Mad.fbx": 116,
833
+ "SabreToothTiger-Growling.fbx": 111,
834
+ "SabreToothTiger-Layout.fbx": 61,
835
+ "SabreToothTiger-Leaper.fbx": 31,
836
+ "SabreToothTiger-Left_Turn.fbx": 35,
837
+ "SabreToothTiger-Mean.fbx": 41,
838
+ "SabreToothTiger-Paw_Swatting.fbx": 66,
839
+ "SabreToothTiger-Pissed_Off.fbx": 36,
840
+ "SabreToothTiger-Pissed_Off_2.fbx": 36,
841
+ "SabreToothTiger-Raged.fbx": 80,
842
+ "SabreToothTiger-Roaring.fbx": 51,
843
+ "SabreToothTiger-Run.fbx": 23,
844
+ "SabreToothTiger-Sit.fbx": 31,
845
+ "SabreToothTiger-Sitting.fbx": 101,
846
+ "SabreToothTiger-Sitting_2.fbx": 101,
847
+ "SabreToothTiger-Slow_180.fbx": 70,
848
+ "SabreToothTiger-Snap.fbx": 61,
849
+ "SabreToothTiger-Spin_180.fbx": 29,
850
+ "SabreToothTiger-Stablize.fbx": 31,
851
+ "SabreToothTiger-Stalker.fbx": 44,
852
+ "SabreToothTiger-Start_Left.fbx": 22,
853
+ "SabreToothTiger-Start_Walk.fbx": 25,
854
+ "SabreToothTiger-Swat_Lft.fbx": 36,
855
+ "SabreToothTiger-Swim.fbx": 44,
856
+ "SabreToothTiger-Tired_Yawn.fbx": 31,
857
+ "SabreToothTiger-Trot.fbx": 36,
858
+ "SabreToothTiger-Turn_Left.fbx": 25,
859
+ "SabreToothTiger-Warning.fbx": 111,
860
+ "SandMouse-Attack.fbx": 90,
861
+ "SandMouse-Attack_2.fbx": 91,
862
+ "SandMouse-Die.fbx": 93,
863
+ "SandMouse-Die_2.fbx": 78,
864
+ "SandMouse-Die_3.fbx": 100,
865
+ "SandMouse-Dig_In.fbx": 94,
866
+ "SandMouse-Dig_Out.fbx": 91,
867
+ "SandMouse-Idle.fbx": 322,
868
+ "SandMouse-Idle_2.fbx": 220,
869
+ "SandMouse-Idle_3.fbx": 190,
870
+ "SandMouse-Idle_4.fbx": 301,
871
+ "SandMouse-Run.fbx": 21,
872
+ "SandMouse-Walk.fbx": 49,
873
+ "Scorpion-Agitated.fbx": 25,
874
+ "Scorpion-Attack_1.fbx": 46,
875
+ "Scorpion-Back_Up.fbx": 40,
876
+ "Scorpion-Defend.fbx": 241,
877
+ "Scorpion-Idle_Loop.fbx": 101,
878
+ "Scorpion-Recoil.fbx": 31,
879
+ "Scorpion-Recoil_2.fbx": 31,
880
+ "Scorpion-Slow_Forward.fbx": 80,
881
+ "Scorpion-Stinger.fbx": 31,
882
+ "Scorpion-Stretch_Arms.fbx": 100,
883
+ "Scorpion-Turn_Left.fbx": 31,
884
+ "Scorpion-Turn_Right.fbx": 31,
885
+ "Scorpion-Walk_Forward.fbx": 38,
886
+ "Scorpion2-Attack_Retreat.fbx": 91,
887
+ "Scorpion2-Back_Confused.fbx": 70,
888
+ "Scorpion2-Back_Up.fbx": 55,
889
+ "Scorpion2-Backing_Crazy.fbx": 55,
890
+ "Scorpion2-Belly_Death.fbx": 196,
891
+ "Scorpion2-Belly_Death_1.fbx": 40,
892
+ "Scorpion2-Bite_Attack.fbx": 70,
893
+ "Scorpion2-Bite_Grab.fbx": 160,
894
+ "Scorpion2-Blasted_Death.fbx": 55,
895
+ "Scorpion2-Death.fbx": 346,
896
+ "Scorpion2-Death_2.fbx": 184,
897
+ "Scorpion2-Flipped.fbx": 40,
898
+ "Scorpion2-Guns.fbx": 61,
899
+ "Scorpion2-Hasppy_Fangs.fbx": 49,
900
+ "Scorpion2-Hit_And_Sorr.fbx": 175,
901
+ "Scorpion2-Jump_Sting.fbx": 70,
902
+ "Scorpion2-Limp_Alive.fbx": 55,
903
+ "Scorpion2-Lunge_Forward.fbx": 67,
904
+ "Scorpion2-On_Back_Dying.fbx": 121,
905
+ "Scorpion2-Pissed_Fangs.fbx": 97,
906
+ "Scorpion2-Rising_Walk.fbx": 55,
907
+ "Scorpion2-Run_Attack.fbx": 49,
908
+ "Scorpion2-Run_To_Attrack.fbx": 46,
909
+ "Scorpion2-Settle_Back.fbx": 79,
910
+ "Scorpion2-Slide_Back.fbx": 49,
911
+ "Scorpion2-Slow_Idle.fbx": 97,
912
+ "Scorpion2-Stand_Attack.fbx": 76,
913
+ "Scorpion2-Stand_Ready.fbx": 55,
914
+ "Scorpion2-Standing_Run.fbx": 49,
915
+ "Scorpion2-Steady_Walk.fbx": 49,
916
+ "Scorpion2-Sting_Kill.fbx": 55,
917
+ "Scorpion2-Sting_Kill_2.fbx": 61,
918
+ "Scorpion2-Sting_Ya.fbx": 70,
919
+ "Scorpion2-Sting_Ya_YA.fbx": 61,
920
+ "Scorpion2-Strafe_Left.fbx": 49,
921
+ "Scorpion2-Strafe_Right.fbx": 49,
922
+ "Scorpion2-Walk_And_Rise.fbx": 40,
923
+ "Scorpion2-Walk_Forward.fbx": 55,
924
+ "Scorpion2-Wild_Death.fbx": 70,
925
+ "Skunk-Die.fbx": 85,
926
+ "Skunk-Idle.fbx": 79,
927
+ "Skunk-Idle_2.fbx": 120,
928
+ "Skunk-Idle_3.fbx": 181,
929
+ "Skunk-Run.fbx": 30,
930
+ "Skunk-Spray.fbx": 121,
931
+ "Skunk-Walk.fbx": 61,
932
+ "Spider-Attack_1.fbx": 35,
933
+ "Spider-Attack_2.fbx": 46,
934
+ "Spider-Attack_4.fbx": 46,
935
+ "Spider-Attack_5.fbx": 50,
936
+ "Spider-Attack_Left.fbx": 36,
937
+ "Spider-Attack_Right.fbx": 36,
938
+ "Spider-Back_Rear.fbx": 31,
939
+ "Spider-Backit_Up.fbx": 43,
940
+ "Spider-Barking.fbx": 37,
941
+ "Spider-Fangy.fbx": 301,
942
+ "Spider-Gliding.fbx": 91,
943
+ "Spider-Hurt.fbx": 151,
944
+ "Spider-Injured_Walk.fbx": 31,
945
+ "Spider-Jump.fbx": 46,
946
+ "Spider-LandinHAir.fbx": 31,
947
+ "Spider-Landing.fbx": 19,
948
+ "Spider-Rearing.fbx": 50,
949
+ "Spider-Retreat.fbx": 31,
950
+ "Spider-Retreat_Injured.fbx": 31,
951
+ "Spider-Retreat_Slow.fbx": 91,
952
+ "Spider-Riser.fbx": 35,
953
+ "Spider-Rising.fbx": 31,
954
+ "Spider-Run_Left.fbx": 31,
955
+ "Spider-Scary.fbx": 31,
956
+ "Spider-Scramble.fbx": 91,
957
+ "Spider-Slow_Idle.fbx": 151,
958
+ "Spider-Travel_Web.fbx": 49,
959
+ "Spider-Walk_Left.fbx": 31,
960
+ "Spider-Walk_Loop.fbx": 31,
961
+ "Spider-Walker.fbx": 31,
962
+ "Spider-Weaver.fbx": 49,
963
+ "Spider-Weaving.fbx": 70,
964
+ "SpiderG-Attack.fbx": 120,
965
+ "SpiderG-Attack_2.fbx": 120,
966
+ "SpiderG-Attack_3.fbx": 180,
967
+ "SpiderG-Attack_4.fbx": 160,
968
+ "SpiderG-Attack_5.fbx": 195,
969
+ "SpiderG-Attack_6.fbx": 175,
970
+ "SpiderG-Attack_7.fbx": 141,
971
+ "SpiderG-Burrough.fbx": 85,
972
+ "SpiderG-Come_Out.fbx": 70,
973
+ "SpiderG-Die.fbx": 274,
974
+ "SpiderG-Fangs.fbx": 270,
975
+ "SpiderG-Idle.fbx": 79,
976
+ "SpiderG-Idle_2.fbx": 199,
977
+ "SpiderG-Idle_3.fbx": 241,
978
+ "SpiderG-Retreat.fbx": 181,
979
+ "SpiderG-Run.fbx": 40,
980
+ "SpiderG-Shiver.fbx": 75,
981
+ "SpiderG-Walk.fbx": 91,
982
+ "Stego-Attack.fbx": 72,
983
+ "Stego-Attack_2.fbx": 72,
984
+ "Stego-Attack_3.fbx": 111,
985
+ "Stego-Fall.fbx": 151,
986
+ "Stego-Idle.fbx": 90,
987
+ "Stego-Idle_2.fbx": 151,
988
+ "Stego-Run.fbx": 60,
989
+ "Stego-Shake.fbx": 201,
990
+ "Stego-Slow_Walk.fbx": 121,
991
+ "Stego-Tail_Whip.fbx": 141,
992
+ "Trex-Big_Roar_Step.fbx": 136,
993
+ "Trex-Bite_90_Left.fbx": 89,
994
+ "Trex-Bite_90_Right.fbx": 81,
995
+ "Trex-Bite_Close_Left.fbx": 81,
996
+ "Trex-Bite_Close_Right.fbx": 67,
997
+ "Trex-Bite_Step_Back_Forward.fbx": 53,
998
+ "Trex-Chase_Bite.fbx": 53,
999
+ "Trex-Chase_Bite_Left.fbx": 53,
1000
+ "Trex-Chase_Bite_Right.fbx": 81,
1001
+ "Trex-Chase_Head_Butt_Left.fbx": 81,
1002
+ "Trex-Chase_Roar.fbx": 136,
1003
+ "Trex-Chase_Roar_Left.fbx": 136,
1004
+ "Trex-Chase_Roar_Right.fbx": 136,
1005
+ "Trex-Climb_Down.fbx": 121,
1006
+ "Trex-Climb_Up.fbx": 123,
1007
+ "Trex-Death.fbx": 40,
1008
+ "Trex-Death_Short.fbx": 181,
1009
+ "Trex-Head_Butt_Left.fbx": 77,
1010
+ "Trex-Hit_Head_1.fbx": 151,
1011
+ "Trex-Hit_Head_2.fbx": 64,
1012
+ "Trex-Hit_Head_3.fbx": 64,
1013
+ "Trex-Hit_Leg.fbx": 73,
1014
+ "Trex-Hit_Leg_2.fbx": 76,
1015
+ "Trex-Hit_Torso_Left.fbx": 79,
1016
+ "Trex-Hit_Torso_Right.fbx": 79,
1017
+ "Trex-Human_Bite.fbx": 123,
1018
+ "Trex-Human_Kill.fbx": 75,
1019
+ "Trex-Human_Shake.fbx": 153,
1020
+ "Trex-Idle_Attack.fbx": 79,
1021
+ "Trex-Idle_Attack_To_Run_Left.fbx": 57,
1022
+ "Trex-Idle_Attack_To_Run_Right.fbx": 57,
1023
+ "Trex-Idle_Investigae_Out.fbx": 75,
1024
+ "Trex-Idle_Investigate.fbx": 85,
1025
+ "Trex-Idle_Investigate_Loop.fbx": 171,
1026
+ "Trex-Idle_Sneeze.fbx": 301,
1027
+ "Trex-Idle_To_Run.fbx": 57,
1028
+ "Trex-Kill_Long.fbx": 316,
1029
+ "Trex-Long_Death.fbx": 556,
1030
+ "Trex-Look_Forward.fbx": 118,
1031
+ "Trex-Look_Forward_2.fbx": 118,
1032
+ "Trex-Look_Left.fbx": 118,
1033
+ "Trex-Look_Right.fbx": 118,
1034
+ "Trex-Mama_Cave_Bite.fbx": 82,
1035
+ "Trex-Mama_Cave_Bite_Loop.fbx": 76,
1036
+ "Trex-Mama_Cave_Bite_Out.fbx": 123,
1037
+ "Trex-Roar.fbx": 130,
1038
+ "Trex-Roar_Left.fbx": 130,
1039
+ "Trex-Roar_Right.fbx": 130,
1040
+ "Trex-Run_Head_Butt_Right.fbx": 65,
1041
+ "Trex-Run_Head_Loop.fbx": 79,
1042
+ "Trex-Run_Head_Low.fbx": 77,
1043
+ "Trex-Run_Head_Low_2.fbx": 77,
1044
+ "Trex-Run_To_Stop.fbx": 45,
1045
+ "Trex-Sprint_Head_Left.fbx": 97,
1046
+ "Trex-Sprint_Head_Right.fbx": 97,
1047
+ "Trex-Sprint_Loop.fbx": 81,
1048
+ "Trex-Step_Back.fbx": 85,
1049
+ "Trex-Stunned.fbx": 316,
1050
+ "Trex-Turn_180_Look.fbx": 82,
1051
+ "Trex-Turn_180_Right.fbx": 82,
1052
+ "Trex-Turn_180_Turn_Right.fbx": 82,
1053
+ "Trex-Turn_90_Left.fbx": 52,
1054
+ "Trex-Turn_90_Right.fbx": 52,
1055
+ "Trex-Walk_Back.fbx": 160,
1056
+ "Trex-Walk_Bite.fbx": 82,
1057
+ "Trex-Walk_Head_Low.fbx": 111,
1058
+ "Trex-Walk_Left_Bite.fbx": 82,
1059
+ "Trex-Walk_Loop.fbx": 97,
1060
+ "Trex-Walk_Right_Bite.fbx": 82,
1061
+ "Trex-Walk_Slow_Loop.fbx": 166,
1062
+ "Tricera-Attack.fbx": 85,
1063
+ "Tricera-Attack_2.fbx": 100,
1064
+ "Tricera-Attack_3.fbx": 130,
1065
+ "Tricera-Attack_4.fbx": 121,
1066
+ "Tricera-Fall.fbx": 151,
1067
+ "Tricera-Idle.fbx": 109,
1068
+ "Tricera-Nose_Dirt.fbx": 201,
1069
+ "Tricera-Run.fbx": 61,
1070
+ "Tricera-Walk.fbx": 130,
1071
+ "Tukan-Fly.fbx": 46,
1072
+ "Tukan-Fly_Forward.fbx": 70,
1073
+ "Tukan-Fly_Loop.fbx": 13,
1074
+ "Tukan-Idle_Look.fbx": 55,
1075
+ "Tukan-Shake.fbx": 49,
1076
+ "Tukan-Slow_Down.fbx": 19,
1077
+ "Tukan-Sqwak.fbx": 81,
1078
+ "Tukan-Wing_Scratch.fbx": 64,
1079
+ "Turtle-Attack.fbx": 91,
1080
+ "Turtle-Attack_2.fbx": 160,
1081
+ "Turtle-Attack_3.fbx": 181,
1082
+ "Turtle-Hide.fbx": 157,
1083
+ "Turtle-Idle.fbx": 100,
1084
+ "Turtle-Idle_2.fbx": 160,
1085
+ "Turtle-Onback.fbx": 148,
1086
+ "Turtle-Run.fbx": 49,
1087
+ "Turtle-Walk.fbx": 120,
1088
+ "Turtle-Yawn.fbx": 300,
1089
+ "Tyranno-Attack.fbx": 81,
1090
+ "Tyranno-Attack_2.fbx": 76,
1091
+ "Tyranno-Fall.fbx": 76,
1092
+ "Tyranno-Head_Butt.fbx": 91,
1093
+ "Tyranno-Idle.fbx": 91,
1094
+ "Tyranno-Idle_2.fbx": 91,
1095
+ "Tyranno-Roar.fbx": 151,
1096
+ "Tyranno-Run.fbx": 76,
1097
+ "Tyranno-Tail_Whip.fbx": 91,
1098
+ "Tyranno-Walk.fbx": 145
1099
+ }
animation_prompts.json ADDED
The diff for this file is too large to render. See raw diff
 
clips.csv ADDED
The diff for this file is too large to render. See raw diff
 
excluded.csv ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ file,group,reason
2
+ Truebone_Z-OO/Crocodile/CrocodileALL.fbx,Crocodile,not a binary FBX
scripts/README.md ADDED
@@ -0,0 +1,75 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Scripts
2
+
3
+ ```
4
+ scripts/
5
+ pipeline/ the build steps, run in order
6
+ probes/ format readers — each parses BVH or binary FBX on its own
7
+ ```
8
+
9
+ Pure Python 3 with no dependencies; step 5 additionally downloads from the Hugging Face Hub.
10
+ Everything in `probes/` is importable on its own, and `pipeline/` puts those probes to work.
11
+
12
+ Nothing in here re-exports a file. `animation/` is built by selecting and renaming, so a clip is a
13
+ hardlink of one in `Truebone_Z-OO/` — a round trip through an editor would rebuild the rest pose from
14
+ the first frame of the take and move the root bones. Sixteen clips are no longer hardlinks,
15
+ because three probes repaired them by editing the binary node tree in place: the four `Cat` clips
16
+ and all twelve `KingCobra` clips. Each writes a temporary file and renames it, so the source keeps
17
+ its own inode and its bytes.
18
+
19
+ ## pipeline/
20
+
21
+ ```bash
22
+ cd scripts
23
+ python3 pipeline/build_dataset.py # 1. index the download -> ../clips.csv
24
+ python3 pipeline/normalize.py # 2. name every clip -> ../clips.csv
25
+ python3 pipeline/build_animation.py # 3. one file per motion-> ../animation/
26
+ python3 pipeline/build_metadata.py # 4. measure animation/ -> ../animation.csv, ../species.csv
27
+ python3 pipeline/build_prompts.py # 5. attach captions -> ../animation_prompts.json
28
+ ```
29
+
30
+ Step 5 is optional and stands apart from the rest: it is the only step that pulls from a third
31
+ party, and what it pulls is CC-BY-NC-4.0.
32
+
33
+ Each step reads what the one before it wrote, and each can be re-run on its own.
34
+
35
+ | script | purpose |
36
+ |---|---|
37
+ | `build_dataset.py` | Walks `../Truebone_Z-OO/`, probes every BVH and FBX, writes `clips.csv`, and hardlinks the indexed files and their textures into `../Truebone_Z-OO/`. Files that fail to parse land in `excluded.csv`. |
38
+ | `normalize.py` | Names every source FBX that carries motion `<Species>-<Action>.fbx` and fills the `normalized_name` column in `clips.csv`. Creates no files. Holds the naming rules — species aliases, compound words, canonical casing, Mixamo-style actions. |
39
+ | `build_animation.py` | Builds `../animation/`: drops each group's combined `ALL` file and its `TPOSE` rest pose, removes the clips the source exported twice, hardlinks the rest. A file carrying more than one take is reported, never rewritten. |
40
+ | `build_prompts.py` | Downloads the [T2M4LVO](https://huggingface.co/datasets/1Konny/t2m4lvo-truebones-zoo) captions and attaches them to `../animation/` through `clips.csv`, writing `../animation_prompts.json` — one `short`/`original` sentence per clip, in the Mixamo file's shape. `--full` adds all four lengths, seven phrasings and the alternative object labels. Resolves each caption to the phrasing that names the species — the source lists seven object labels alphabetically, so index 0 is usually the most generic one, not the animal. |
41
+ | `build_metadata.py` | Measures `../animation/` into `animation.csv`, `species.csv`, `animation_frames.json` and `animation_bones.json`, and maps every row of `clips.csv` onto the clip that carries its motion (`animation_file`, `status`). |
42
+
43
+ ## probes/
44
+
45
+ Each reads the file format itself and runs standalone from the command line.
46
+
47
+ | script | purpose |
48
+ |---|---|
49
+ | `bvh_probe.py` | BVH `HIERARCHY` and `MOTION` headers: joints, end sites, tree depth, frames, frame time, fps, duration, root, joint names. Stops before the motion rows. |
50
+ | `fbx_probe.py` | Binary FBX node tree: version, joints, keyframes, fps and duration measured off the key times, the topmost animated joint, joint names. |
51
+ | `fbx_takes.py` | Enumerates a file's `AnimationStack` objects and each one's time span — the only way to tell a single clip from a combined timeline. |
52
+ | `fbx_stacks.py` | Which of those stacks actually carry animation. Four files pair the real motion with an empty `Take 001` left by a C4D export; counting stacks calls them two-take, following the connections shows one action and one empty shell. |
53
+ | `fbx_motion.py` | Whether a clip moves at all: decodes the curves and reports the widest value range. Used to keep T-poses and model-only exports out of the clip set. |
54
+ | `fbx_fingerprint.py` | Per-curve value ranges — a cheap first pass for spotting repeated motions. |
55
+ | `fbx_curves.py` | Decodes curve values and compares two clips frame by frame, to confirm what the range test only suggests. |
56
+ | `fbx_rig.py` | Bone-length fingerprint, for checking that a species' clips share one skeleton. |
57
+ | `fbx_anomaly.py` | Flags sudden jumps in a curve — first-frame pops, gimbal reparameterizations, broken frames. |
58
+ | `fbx_check.py` | Structural integrity: header, node tree, truncation. |
59
+ | `fbx_embed_texture.py` | Grafts an embedded texture into an FBX that only references one externally. Parses the node tree, inserts one `Video/Content` node copied verbatim from a donor of the same species, and re-serializes with recomputed offsets — every node record holds an absolute end offset, so an insertion shifts everything after it. Gated on a byte-identical no-edit round trip, and writes through a temporary file so hardlinked sources are left alone. Used once, for the four `Cat` clips. |
60
+ | `fbx_graft_mesh.py` | Grafts a mesh and its skin from a donor FBX into one exported without geometry. Moves `Geometry::Mesh`, `Model::Mesh`, `Deformer::Skin`, its `Cluster`s and `Pose::BindPose` across on fresh uids, re-points every connection that referenced the donor's bones, materials or textures at the target's own by name, and drops the target's orphan deformers. Also collapses a `Texture → LayeredTexture → Material` chain to the direct connection importers look for. `--bind` decides whose bind pose — whose rest pose, as an importer shows it — the repaired clip ends up with: `donor` (the default) adopts the donor's, which is what keeps a species' clips sharing one rest pose; `self` keeps the target's own and re-poses the grafted mesh to match; a path takes a third file's. Same round-trip gate and same temporary-file write as `fbx_embed_texture.py`. `--inspect` reports what geometry and skin any file holds. Used once, for `KingCobra-Walk.fbx`. |
61
+ | `fbx_strip_variant.py` | Keeps one colourway of a mesh that ships several stacked on top of each other. Drops the other materials' polygons, renumbers the surviving vertices and follows them through every array that indexes them — normals and colours per vertex, UV indices per polygon vertex, the material array per polygon, and each skin cluster's indices and weights — then removes the materials, textures and embedded images nothing references any more. Where one image exists as two `Video` objects and the pixels hang off the slot being removed, they are moved onto the surviving one first. The material is named rather than indexed, because the two KingCobra export batches connect the same materials in opposite orders. `--list` shows what variants a file carries. Used once, for the twelve `KingCobra` clips. |
62
+ | `fbx_align_material.py` | Gives a clip's materials the same settings its siblings use. Matches materials by name and moves only the values inside `Properties70`, keeping each file's own property type strings, shading model and textures; a property the reference lacks is removed, one only the reference has is added. `--diff` reports what differs without writing. Used once, for `KingCobra-Walk.fbx`, whose `ReflectionFactor` made Blender import it at `Metallic` 0.0 while every other clip in the library imports at 1.0. |
63
+
64
+ ```bash
65
+ python3 probes/fbx_probe.py ../animation/Cat-Walk.fbx
66
+ python3 probes/fbx_graft_mesh.py --inspect ../animation/*.fbx
67
+ python3 probes/fbx_takes.py ../Truebone_Z-OO/Lynx/LynxALL.fbx
68
+ python3 probes/bvh_probe.py ../Truebone_Z-OO/Cat/CAT_Walk.bvh
69
+ python3 probes/fbx_curves.py ../animation/Crab-Attack_1.fbx ../animation/Crab-Attack_3.fbx
70
+ ```
71
+
72
+ The two header probes skip the motion payload, so indexing the whole 2.8 GB library takes about
73
+ twenty seconds. The curve-level tools decompress the payload and are correspondingly slower.
74
+
75
+
scripts/pipeline/build_animation.py ADDED
@@ -0,0 +1,156 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python3
2
+ """Build ../animation/: one flat folder, one file per distinct motion.
3
+
4
+ Files are named `<Species>-<Action>.fbx`, so the species travels with the file
5
+ rather than living in a directory: `Cat-Walk.fbx`, `Trex-Big_Roar_Step.fbx`.
6
+ The action never contains a hyphen, so `name.split("-", 1)` recovers both parts.
7
+
8
+ Every file here holds exactly one animation take, so a clip is a motion and
9
+ nothing else.
10
+
11
+ Starts from the names `normalize.py` recorded in `clips.csv` and drops two
12
+ kinds of redundancy:
13
+
14
+ 1. `ALL.fbx`, the combined take that repeats every clip in its group, and
15
+ `TPOSE.fbx`, the rest pose. Both are recognised by name, not by amplitude:
16
+ most T-poses are perfectly flat and are dropped earlier as static, but one
17
+ (`Tukan`) drifts by a degree or two and would otherwise pass for a clip. A
18
+ threshold cannot separate the two — a genuine `Die_Loop` or `Sleep_Loop`
19
+ moves no more than that drifting T-pose does — but the name settles it, since
20
+ `TPOSE` is a reserved marker in `normalize.py` and never names a motion.
21
+ 2. Clips that are the same motion exported twice. The source ships some groups
22
+ in two batches — `Gazelle-Run.fbx` alongside a bare `run.fbx`, `PolarBearB-Idle.fbx`
23
+ alongside `B idle 1.fbx` — and the second batch is often mislabelled
24
+ (`die.fbx` actually holds the Fall motion). Candidates are found by comparing
25
+ each animation curve's value range, then confirmed frame by frame, because
26
+ the range test alone pairs up distinct motions that happen to span the same
27
+ extents.
28
+
29
+ Which twin survives is decided in three steps. The shorter clip wins, since the
30
+ longer one carries a static tail. On a tie the clip from the group's primary
31
+ batch wins — the batch whose filenames carry the species prefix — because the
32
+ second batch is the one that abbreviates and, in several groups, mislabels. On
33
+ a tie there too the lower ordinal wins, so a group keeps `Attack_1` rather than
34
+ `Attack_2`.
35
+
36
+ Nothing here is re-exported. Every clip is a hardlink straight into
37
+ `Truebone_Z-OO/`, byte for byte, so the set costs almost no extra disk and no
38
+ clip carries a rig that a round trip through an editor has altered. A source file holding more than
39
+ one take is reported rather than repaired, and a take that exists only inside a
40
+ group's combined file stays there — `Lynx/Idle4` is the one such case.
41
+ """
42
+ import csv, os, re, shutil, sys
43
+ HERE = os.path.dirname(os.path.abspath(__file__))
44
+ SCRIPTS = os.path.dirname(HERE)
45
+ ROOT = os.path.dirname(SCRIPTS)
46
+ sys.path[:0] = [HERE, os.path.join(SCRIPTS, "probes")]
47
+ from fbx_fingerprint import probe as fingerprint
48
+ from fbx_takes import probe as takes
49
+ from fbx_curves import same_motion
50
+ from normalize import infer_aliases, norm_species, _base_species, _alnum, RESERVED
51
+ from fbx_stacks import takes_with_motion
52
+
53
+ DST = os.path.join(ROOT, "animation")
54
+
55
+
56
+ def secondary_batch(rows):
57
+ """The clip names whose source filename does not carry the species prefix.
58
+
59
+ Groups shipped in two batches name them differently: `Gazelle-HeadPoke.fbx`
60
+ against a bare `atk 1.fbx`, `POLARBEARB-Idle.fbx` against `B idle 1.fbx`.
61
+ The prefixed batch is the primary one — the other abbreviates and, in
62
+ several groups, mislabels. Used only to break ties between exact duplicates.
63
+ """
64
+ alias = infer_aliases(rows)
65
+ out = set()
66
+ for r in rows:
67
+ if not r.get("normalized_name"):
68
+ continue
69
+ sp = norm_species(r["group"])
70
+ stem = _alnum(os.path.splitext(os.path.basename(r["file"]))[0])
71
+ cands = [_alnum(sp), _alnum(_base_species(sp))]
72
+ a = alias.get((sp, r["format"]))
73
+ if a:
74
+ cands.append(a)
75
+ if not any(c and stem.startswith(c) for c in cands):
76
+ out.add(r["normalized_name"])
77
+ return out
78
+
79
+
80
+ def main():
81
+ rows = list(csv.DictReader(open(os.path.join(ROOT, "clips.csv"))))
82
+ os.makedirs(DST, exist_ok=True)
83
+ kept = []
84
+ for r in sorted(rows, key=lambda r: r["file"]):
85
+ name = r.get("normalized_name")
86
+ if not name:
87
+ continue
88
+ if os.path.splitext(name)[0].split("-", 1)[1] in RESERVED:
89
+ continue
90
+ t = os.path.join(DST, name)
91
+ if not os.path.exists(t):
92
+ try: os.link(os.path.join(ROOT, r["file"]), t)
93
+ except OSError: shutil.copy2(os.path.join(ROOT, r["file"]), t)
94
+ kept.append(t)
95
+ print("linked %d clips (%s excluded)" % (len(kept), ", ".join(sorted(RESERVED))))
96
+
97
+ groups = {}
98
+ for p in kept:
99
+ r = fingerprint(p)
100
+ mv = tuple(sorted((a, b) for a, b in r["ranges"] if b - a > 1e-6))
101
+ if mv:
102
+ species = os.path.basename(p).split("-", 1)[0]
103
+ groups.setdefault((species, mv), []).append(p)
104
+
105
+ second = secondary_batch(rows)
106
+
107
+ def rank(p):
108
+ action = os.path.splitext(os.path.basename(p))[0].split("-", 1)[1]
109
+ m = re.search(r"_(\d+)$", action)
110
+ return (takes(p)["total_sec"], os.path.basename(p) in second,
111
+ int(m.group(1)) if m else 1, action, os.path.getsize(p))
112
+
113
+ removed = 0
114
+ for files in groups.values():
115
+ if len(files) < 2:
116
+ continue
117
+ files.sort(key=rank)
118
+ keep = files[0]
119
+ for other in files[1:]:
120
+ ok, _ = same_motion(keep, other)
121
+ if ok:
122
+ os.remove(other); removed += 1
123
+ print(" duplicate of %s: removed %s"
124
+ % (os.path.relpath(keep, ROOT), os.path.relpath(other, ROOT)))
125
+ print("removed %d duplicates -> %d files" % (removed, len(kept) - removed))
126
+
127
+ # One action per clip is a property of the source, not something imposed here.
128
+ # Reported, never repaired: rewriting a file would mean re-exporting it, and a
129
+ # round trip through an editor rebuilds the rest pose from the first frame and
130
+ # quietly moves the root bones.
131
+ #
132
+ # Counting stacks is not the same as counting actions. Four files pair the real
133
+ # motion with an empty `Take 001` left behind by a C4D export — a stack with no
134
+ # curves under it at all — so what matters is how many stacks carry animation.
135
+ multi, shells = [], []
136
+ for f in sorted(os.listdir(DST)):
137
+ p = os.path.join(DST, f)
138
+ n_stacks = takes(p)["num_takes"]
139
+ n_real = takes_with_motion(p)
140
+ if n_real > 1:
141
+ multi.append((f, n_real))
142
+ elif n_stacks > n_real:
143
+ shells.append((f, n_stacks - n_real))
144
+ if multi:
145
+ print("WARNING: %d clip(s) carry more than one action:" % len(multi))
146
+ for f, n in multi:
147
+ print(" %-34s %d actions" % (f, n))
148
+ else:
149
+ print("every clip holds exactly one action")
150
+ if shells:
151
+ print("(%d also carry an empty leftover stack: %s)"
152
+ % (len(shells), ", ".join(f for f, _ in shells)))
153
+
154
+
155
+ if __name__ == "__main__":
156
+ main()
scripts/pipeline/build_dataset.py ADDED
@@ -0,0 +1,79 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python3
2
+ """Index the source library: one row per motion file in `Truebone_Z-OO/`.
3
+
4
+ Step 1. Walks the original download in place, probes every BVH and FBX, and
5
+ writes `clips.csv`. Nothing is copied: `Truebone_Z-OO/` is the download exactly
6
+ as it shipped and stays the one copy of it, with `fbx/` and `animation/`
7
+ hardlinked to it further down the pipeline. Files that fail to parse are listed
8
+ in `excluded.csv` and left out.
9
+
10
+ Skeleton and timeline come from the file headers, but `has_motion` does not: a
11
+ clip can carry ninety keyframes that all hold the same pose, so the curves are
12
+ decoded and their ranges measured. That is what makes this step take minutes
13
+ rather than seconds, and it is what keeps every T-pose out of `fbx/`.
14
+
15
+ build_dataset.py -> normalize.py -> build_animation.py -> build_metadata.py
16
+ """
17
+ import csv, os, re, sys, time
18
+ HERE = os.path.dirname(os.path.abspath(__file__))
19
+ SCRIPTS = os.path.dirname(HERE)
20
+ ROOT = os.path.dirname(SCRIPTS)
21
+ sys.path[:0] = [HERE, os.path.join(SCRIPTS, "probes")]
22
+ from bvh_probe import probe as bvh_probe
23
+ from fbx_probe import probe as fbx_probe
24
+ from fbx_motion import probe as motion_probe
25
+
26
+ SRC_DIR = "Truebone_Z-OO" # the download, inside the repo
27
+ SRC = sys.argv[1] if len(sys.argv) > 1 else os.path.join(ROOT, SRC_DIR)
28
+
29
+ CLIP_COLS=["file","group","format","clip_name","num_joints","frames","fps","duration_sec",
30
+ "root_joint","fbx_version","probe_error","has_motion"]
31
+
32
+ def main():
33
+ groups=sorted(d for d in os.listdir(SRC) if os.path.isdir(os.path.join(SRC,d)))
34
+ rows=[]; excluded=[]; t0=time.time()
35
+ for g in groups:
36
+ gdir=os.path.join(SRC,g)
37
+ for dp,dn,fn in os.walk(gdir):
38
+ for f in sorted(fn):
39
+ ext=os.path.splitext(f)[1].lower()
40
+ if ext not in (".bvh",".fbx"): continue
41
+ p=os.path.join(dp,f)
42
+ rel=os.path.relpath(p,SRC)
43
+ r={"file":SRC_DIR+"/"+rel.replace(os.sep,"/"),"group":g,
44
+ "format":ext[1:],"clip_name":os.path.splitext(f)[0],
45
+ "num_joints":"","frames":"","fps":"","duration_sec":"",
46
+ "root_joint":"","fbx_version":"","probe_error":"","has_motion":""}
47
+ try:
48
+ if ext==".bvh":
49
+ b=bvh_probe(p,motion=True)
50
+ r.update(num_joints=b["num_joints"],frames=b["frames"],fps=b["fps"],
51
+ duration_sec=b["duration_sec"],root_joint=b["root"],
52
+ has_motion=str(b["has_motion"]).lower())
53
+ else:
54
+ x=fbx_probe(p)
55
+ m=motion_probe(p)
56
+ r.update(num_joints=x["num_joints"],frames=x["keyframes"],
57
+ fps=x["fps"] or "",duration_sec=x["duration_sec"] or "",
58
+ root_joint=x["root_joint"],fbx_version=x["fbx_version"],
59
+ has_motion=str(not (m["static"] or m["no_curves"])).lower())
60
+ except Exception as e:
61
+ r["probe_error"]=str(e)[:80]
62
+ excluded.append({"file":r["file"],"group":g,"reason":str(e)[:100]}); continue
63
+ if ext==".bvh" and int(r["frames"] or 0) < 2:
64
+ excluded.append({"file":r["file"],"group":g,
65
+ "reason":"truncated: %s frame(s)"%r["frames"]}); continue
66
+ rows.append(r)
67
+ print(" %-18s %d files %.0fs"%(g,sum(1 for x in rows if x["group"]==g),time.time()-t0),flush=True)
68
+
69
+ with open(os.path.join(ROOT,"clips.csv"),"w",newline="",encoding="utf-8") as fh:
70
+ w=csv.DictWriter(fh,fieldnames=CLIP_COLS); w.writeheader(); w.writerows(rows)
71
+ print("clips.csv ->",len(rows),"rows")
72
+
73
+ if excluded:
74
+ with open(os.path.join(ROOT,"excluded.csv"),"w",newline="",encoding="utf-8") as fh:
75
+ w=csv.DictWriter(fh,fieldnames=["file","group","reason"]); w.writeheader(); w.writerows(excluded)
76
+ print("excluded.csv ->",len(excluded),"rows (unparseable files skipped)")
77
+ print("%.0fs"%(time.time()-t0))
78
+
79
+ if __name__=="__main__": main()
scripts/pipeline/build_metadata.py ADDED
@@ -0,0 +1,234 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python3
2
+ """Index ../animation/ and map every source clip onto it.
3
+
4
+ `animation/` is the dataset: one FBX per distinct motion, each holding exactly
5
+ one take. Everything reported about the library is measured there, so this
6
+ script writes the two tables that describe it —
7
+
8
+ animation.csv one row per clip in animation/
9
+ species.csv one row per species, aggregated from animation.csv
10
+ animation_frames.json clip -> frame count
11
+ animation_bones.json species -> its joint names
12
+
13
+ — and fills two columns in `clips.csv` that say, for every file in `Truebone_Z-OO/`,
14
+ which animation clip carries its motion and why it is not itself in the set:
15
+
16
+ animation_file the clip in animation/ that holds this motion
17
+ status linked | mirror | duplicate | combined | combined_only | static | orphan
18
+
19
+ A source clip is `linked` when animation/ holds that exact file, `mirror` when
20
+ it is the BVH export of a clip already there, `duplicate` when the source shipped
21
+ the same motion twice under two names, `combined` for a group's `ALL` file,
22
+ `static` when it carries no motion at all (every T-pose, plus model-only
23
+ exports), and `orphan` for a rig that belongs to no group.
24
+
25
+ `combined_only` marks the one motion the library ships with no standalone FBX of
26
+ its own — `Lynx/Idle4`, which exists as a BVH and as a take inside `LynxALL.fbx`
27
+ and nowhere else. Cutting it out would mean re-exporting it, and a round trip
28
+ through an editor rebuilds the rest pose from the first frame, so the clip would
29
+ no longer share its species' skeleton. It stays where the source put it.
30
+
31
+ Source clips are matched to animation clips by name first, then by content:
32
+ same species and the same length to within a frame, confirmed curve by curve for
33
+ FBX. That second pass is what pairs the BVH exports, whose names do not always
34
+ agree with their FBX twins (`__BearRun.bvh` against `BEAR-BearRun.fbx`).
35
+ """
36
+ import collections, csv, json, os, sys
37
+
38
+ HERE = os.path.dirname(os.path.abspath(__file__))
39
+ SCRIPTS = os.path.dirname(HERE)
40
+ ROOT = os.path.dirname(SCRIPTS)
41
+ sys.path[:0] = [HERE, os.path.join(SCRIPTS, "probes")]
42
+ from fbx_probe import probe as fbx_probe
43
+ from fbx_takes import probe as takes_probe
44
+ from fbx_stacks import takes_with_motion
45
+ from fbx_curves import same_motion
46
+ import normalize as N
47
+
48
+ ANIM = os.path.join(ROOT, "animation")
49
+
50
+ ANIM_COLS = ["file", "species", "action", "take", "num_takes", "num_actions", "num_joints", "root_joint",
51
+ "frames", "fps", "duration_sec", "fbx_version", "bytes", "num_source_files"]
52
+ SPECIES_COLS = ["species", "num_clips", "num_joints", "rig_variants", "root_joint",
53
+ "total_frames", "total_duration_sec", "mean_duration_sec", "num_textures",
54
+ "source_fbx", "source_bvh", "has_combined_all", "has_tpose"]
55
+
56
+
57
+ def index_animation(clip_joints):
58
+ rows = []
59
+ for f in sorted(os.listdir(ANIM)):
60
+ if not f.endswith(".fbx"):
61
+ continue
62
+ p = os.path.join(ANIM, f)
63
+ species, action = os.path.splitext(f)[0].split("-", 1)
64
+ x, t = fbx_probe(p), takes_probe(p)
65
+ clip_joints[f] = x["joints"]
66
+ rows.append({
67
+ "file": "animation/" + f, "species": species, "action": action,
68
+ "take": t["takes"][0][0] if t["takes"] else "", "num_takes": t["num_takes"],
69
+ "num_actions": takes_with_motion(p),
70
+ "num_joints": x["num_joints"], "root_joint": x["root_joint"],
71
+ "frames": x["keyframes"], "fps": x["fps"], "duration_sec": x["duration_sec"],
72
+ "fbx_version": x["fbx_version"], "bytes": os.path.getsize(p),
73
+ "num_source_files": 0,
74
+ })
75
+ return rows
76
+
77
+
78
+ def normalized_names(clips):
79
+ """(species, action) for every source row, under the naming rules of normalize.py."""
80
+ rows = sorted(clips, key=lambda r: r["file"])
81
+ alias = N.infer_aliases(rows)
82
+ prelim = [N.norm_action(os.path.splitext(os.path.basename(r["file"]))[0],
83
+ r["group"], alias, r["format"]) for r in rows]
84
+ canon = N.canonical_case(prelim)
85
+ return {r["file"]: (N.norm_species(r["group"]), N.mixamo_style(canon[a.lower()]))
86
+ for r, a in zip(rows, prelim)}
87
+
88
+
89
+ def main():
90
+ clip_joints = {}
91
+ anim = index_animation(clip_joints)
92
+ by_name = {(r["species"], r["action"]): r for r in anim}
93
+ by_species = collections.defaultdict(list)
94
+ for r in anim:
95
+ by_species[r["species"]].append(r)
96
+
97
+ clips = list(csv.DictReader(open(os.path.join(ROOT, "clips.csv"))))
98
+ names = normalized_names(clips)
99
+ # build_dataset.py leaves fps/duration/root empty for FBX rows because its
100
+ # first pass reads headers only. Fill them here, where the key times are
101
+ # decoded anyway.
102
+ for r in clips:
103
+ if r["format"] != "fbx" or r["fps"]:
104
+ continue
105
+ try:
106
+ x = fbx_probe(os.path.join(ROOT, r["file"]))
107
+ except Exception:
108
+ continue
109
+ r["fps"] = x["fps"] or ""
110
+ r["duration_sec"] = x["duration_sec"] or ""
111
+ r["root_joint"] = x["root_joint"]
112
+
113
+ unmatched = []
114
+ for r in clips:
115
+ sp, act = names[r["file"]]
116
+ r["animation_file"], r["status"] = "", ""
117
+ # The exact file animation/ holds. `normalized_name` is not always
118
+ # `<species>-<action>.fbx`: three clips carry a `_2` suffix so that two
119
+ # names differing only in case can coexist on this filesystem.
120
+ if r.get("normalized_name"):
121
+ target = "animation/" + r["normalized_name"]
122
+ if os.path.exists(os.path.join(ROOT, target)):
123
+ r["animation_file"], r["status"] = target, "linked"
124
+ continue
125
+ if r["file"] in N.EXCLUDE_SOURCES:
126
+ r["status"] = "orphan"; continue
127
+ # Order matters: 21 groups ship a bind-pose model named after the species
128
+ # alone, which normalizes to `ALL` but holds no take at all.
129
+ # A T-pose is a rest pose whatever its curves say — one of them drifts by
130
+ # a degree over its 60 frames, which is motion by measurement and nothing
131
+ # by intent — so the name decides here, not `has_motion`.
132
+ if r["has_motion"] != "true" or act == "TPOSE":
133
+ r["status"] = "static"; continue
134
+ if act == "ALL":
135
+ r["status"] = "combined"; continue
136
+ # Same motion under another name, or the BVH twin of an FBX already in the
137
+ # set: same species, same length to within a frame. Several candidates are
138
+ # ranked by how close the action names are, and an FBX match is confirmed
139
+ # curve by curve before it is accepted.
140
+ want = int(r["frames"] or 0)
141
+ cands = [a for a in by_species.get(sp, []) if abs(a["frames"] - want) <= 1]
142
+ if (sp, act) in by_name:
143
+ cands = [by_name[(sp, act)]] + [c for c in cands if c is not by_name[(sp, act)]]
144
+ hit = ""
145
+ for c in cands:
146
+ if r["format"] == "fbx":
147
+ ok, _ = same_motion(os.path.join(ROOT, r["file"]), os.path.join(ROOT, c["file"]))
148
+ if not ok:
149
+ continue
150
+ hit = c["file"]; break
151
+ if hit:
152
+ r["animation_file"] = hit
153
+ r["status"] = "mirror" if r["format"] == "bvh" else "duplicate"
154
+ else:
155
+ r["status"] = "combined_only"
156
+ unmatched.append((r["file"], sp, act, want))
157
+
158
+ counts = collections.Counter(r["animation_file"] for r in clips if r["animation_file"])
159
+ for a in anim:
160
+ a["num_source_files"] = counts.get(a["file"], 0)
161
+
162
+ tex, src_fbx, src_bvh, tpose, comb = (collections.Counter() for _ in range(5))
163
+ for r in clips:
164
+ sp, act = names[r["file"]]
165
+ (src_fbx if r["format"] == "fbx" else src_bvh)[sp] += 1
166
+ if act == "TPOSE": tpose[sp] += 1
167
+ if r["status"] == "combined": comb[sp] += 1
168
+ for dp, dn, fn in os.walk(os.path.join(ROOT, "Truebone_Z-OO")):
169
+ for f in fn:
170
+ if os.path.splitext(f)[1].lower() in (".jpg", ".jpeg", ".png", ".tga"):
171
+ tex[N.norm_species(os.path.relpath(dp, os.path.join(ROOT, "Truebone_Z-OO")).split(os.sep)[0])] += 1
172
+
173
+ species = []
174
+ for sp in sorted(by_species):
175
+ cs = by_species[sp]
176
+ dur = sum(c["duration_sec"] for c in cs)
177
+ joints = sorted({c["num_joints"] for c in cs})
178
+ roots = sorted({c["root_joint"] for c in cs})
179
+ variants = len({tuple(clip_joints[c["file"].split("/")[-1]]) for c in cs})
180
+ species.append({
181
+ "species": sp, "num_clips": len(cs), "rig_variants": variants,
182
+ "num_joints": joints[0] if len(joints) == 1 else "|".join(map(str, joints)),
183
+ "root_joint": roots[0] if len(roots) == 1 else "|".join(roots),
184
+ "total_frames": sum(c["frames"] for c in cs),
185
+ "total_duration_sec": round(dur, 3),
186
+ "mean_duration_sec": round(dur / len(cs), 3),
187
+ "num_textures": tex.get(sp, 0),
188
+ "source_fbx": src_fbx.get(sp, 0), "source_bvh": src_bvh.get(sp, 0),
189
+ "has_combined_all": str(comb.get(sp, 0) > 0).lower(),
190
+ "has_tpose": str(tpose.get(sp, 0) > 0).lower(),
191
+ })
192
+
193
+ def write(name, cols, rows):
194
+ with open(os.path.join(ROOT, name), "w", newline="", encoding="utf-8") as fh:
195
+ w = csv.DictWriter(fh, fieldnames=cols, extrasaction="ignore")
196
+ w.writeheader(); w.writerows(rows)
197
+ print("%-16s -> %d rows" % (name, len(rows)))
198
+
199
+ # The two per-clip sidecars, shaped like the Mixamo set's: a flat map from
200
+ # filename to one value, sorted by key.
201
+ frames = {r["file"].split("/")[-1]: r["frames"] for r in anim}
202
+ # A species' joint list is the one its clips most often have — a real rig, not
203
+ # a pooled vocabulary. Pooling looked tidier but produced a list that matched
204
+ # no actual file: `Monkey` clips carry 88 joints each and the union ran to 91,
205
+ # because every clip names the container node of the mesh variant it was
206
+ # exported with (`Monkey_A01` against `Monkey_B02`).
207
+ seen = collections.defaultdict(collections.Counter)
208
+ for r in anim:
209
+ seen[r["species"]][tuple(clip_joints[r["file"].split("/")[-1]])] += 1
210
+ bones = {sp: list(c.most_common(1)[0][0]) for sp, c in seen.items()}
211
+ def dump(name, obj):
212
+ with open(os.path.join(ROOT, name), "w", encoding="utf-8") as fh:
213
+ json.dump(obj, fh, indent=1, ensure_ascii=False)
214
+ print("%-22s -> %d keys" % (name, len(obj)))
215
+ dump("animation_frames.json", {k: frames[k] for k in sorted(frames)})
216
+ dump("animation_bones.json", {k: sorted(bones[k]) for k in sorted(bones)})
217
+
218
+ write("animation.csv", ANIM_COLS, anim)
219
+ write("species.csv", SPECIES_COLS, species)
220
+ cols = [c for c in clips[0] if c not in ("animation_file", "status")] + ["animation_file", "status"]
221
+ write("clips.csv", cols, clips)
222
+
223
+ st = collections.Counter(r["status"] for r in clips)
224
+ print("\nstatus:", dict(st))
225
+ print("animation clips with no source row:",
226
+ sum(1 for a in anim if a["num_source_files"] == 0),
227
+ [a["file"] for a in anim if a["num_source_files"] == 0])
228
+ print("source clips with motion and no clip of their own:", len(unmatched))
229
+ for u in unmatched[:20]:
230
+ print(" ", u)
231
+
232
+
233
+ if __name__ == "__main__":
234
+ main()
scripts/pipeline/build_prompts.py ADDED
@@ -0,0 +1,192 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """Build animation_prompts.json: a text prompt for every clip in animation/.
2
+
3
+ Step 5, optional. Pulls the human-written captions of T2M4LVO — the annotation
4
+ set from *How to Move Your Dragon* (ICML 2025), which describes Truebones
5
+ motions but ships no motion data — and attaches them to this dataset's clips.
6
+
7
+ https://huggingface.co/datasets/1Konny/t2m4lvo-truebones-zoo
8
+
9
+ Captions are keyed by the original Truebones filename, so `clips.csv` is what
10
+ makes the join exact: source path -> animation clip. 1,088 of the 1,099 clips
11
+ get a prompt; the rest are written out with nulls rather than dropped.
12
+
13
+ Organised like `animation_prompts.json` in the Mixamo set: a flat map from
14
+ filename to a small flat record, sorted by key, with absent fields left out
15
+ rather than set to null. Which source file was annotated is not repeated here —
16
+ `clips.csv` already maps every path in `Truebone_Z-OO/` onto its clip.
17
+
18
+ One prompt per clip — the source's `short` length and `original` phrasing, in
19
+ the wording that names the species. The source also carries three longer
20
+ lengths, six further phrasings, and each sentence rewritten with six more
21
+ general object labels; `--full` adds all of that to the same file for anyone
22
+ who wants it as caption augmentation.
23
+
24
+ T2M4LVO does not describe nine of the clips — most of them near-motionless
25
+ idles, which is what an annotator skips. Those carry a caption written here
26
+ instead and are marked `prompt_source: "inferred"` so they can be filtered out.
27
+ They are not human annotations and should not be evaluated as if they were.
28
+
29
+ Each was written from two things: a rendered strip of the clip, and a per-frame
30
+ profile of the posed skeleton — every joint's world-space path length over the
31
+ whole timeline, split into six spans so the order of events is visible. The
32
+ profile is measured on the posed rig rather than read off the rotation curves,
33
+ because an Euler channel wrapping from 180 to -180 reads as an enormous move
34
+ while the bone barely turns, and several of these clips are quiet enough for that
35
+ artefact to dominate. Phrasing follows the same species' existing captions, and each names at
36
+ most two things: the pose the animal holds and the one part that moves most.
37
+
38
+ T2M4LVO is CC-BY-NC-4.0: non-commercial use only, which is narrower than the
39
+ rest of this repository.
40
+ """
41
+ import collections, csv, difflib, json, os, re, sys
42
+ from huggingface_hub import snapshot_download
43
+
44
+ HERE = os.path.dirname(os.path.abspath(__file__))
45
+ SCRIPTS = os.path.dirname(HERE)
46
+ ROOT = os.path.dirname(SCRIPTS)
47
+
48
+ CAPTIONS_REPO = "1Konny/t2m4lvo-truebones-zoo"
49
+ # Written from rendered frames, not by an annotator watching playback. Kept in
50
+ # the source so a rebuild reproduces them; `prompt_source` marks them apart.
51
+ INFERRED = {
52
+ "Ant-Idle_3.fbx":
53
+ "An ant stands in place, working its mandibles.",
54
+ "Centipede-Idle_3.fbx":
55
+ "A centipede stays on the ground, stirring its legs.",
56
+ "Cricket-Idle.fbx":
57
+ "A cricket stands still, slowly sweeping its antennae.",
58
+ "Cricket-Idle_Pissed.fbx":
59
+ "A cricket bristles in place, whipping its antennae.",
60
+ "Fox-Idle_2.fbx":
61
+ "A fox stands still, gently swaying its tail.",
62
+ "Hound-Idle.fbx":
63
+ "A hound stands at attention, almost motionless.",
64
+ "KingCobra-Steady.fbx":
65
+ "A king cobra holds still, flicking its tongue out midway.",
66
+ "KingCobra-Walk.fbx":
67
+ "A king cobra winds its body and tail from side to side.",
68
+ "Trex-Look_Forward.fbx":
69
+ "A tyrannosaurus rex stands facing forward, swinging its tail.",
70
+ }
71
+
72
+ LEVELS = ("short", "mid", "long", "long_rich")
73
+ STYLES = ("original", "synonyms", "structure", "voice", "detail", "action", "figurative")
74
+ alnum = lambda s: re.sub(r"[^A-Za-z0-9]", "", s).upper()
75
+
76
+
77
+ def slot_of(js, level, style):
78
+ """Index of the sentence that names the actual species, not the alphabetically-first label."""
79
+ pat = re.compile(r"\b%s\b" % re.escape(js["object_name"].strip().lower()))
80
+ hit = [i for i, s in enumerate(js["captions"][level][style]) if pat.search(s.lower())]
81
+ if len(hit) != 1: # synonyms/figurative swap the noun ~1-5% of the time
82
+ hit = [i for i, s in enumerate(js["captions"][level]["original"]) if pat.search(s.lower())]
83
+ return hit[0]
84
+
85
+
86
+ def name_variants(sentences, i):
87
+ """The seven object labels the same sentence is written with.
88
+
89
+ All seven differ only in the noun phrase, so each is diffed word-wise against
90
+ the one naming the species — whose label is known — and the first replaced
91
+ span is the label. Diffing rather than taking a common prefix keeps names of
92
+ different word counts intact (`hoofed mammal`) and copes with sentences that
93
+ name the animal twice (`a deer ... pushed back by another deer`), where a
94
+ prefix/suffix cut would swallow the whole middle.
95
+ """
96
+ ref = sentences[i].split()
97
+ out = []
98
+ for k, s in enumerate(sentences):
99
+ if k == i:
100
+ out.append(" ".join(ref[1:]).split(" ")[0] if False else None)
101
+ continue
102
+ w = s.split()
103
+ blocks = [b for b in difflib.SequenceMatcher(None, ref, w).get_opcodes()
104
+ if b[0] == "replace"]
105
+ label = " ".join(w[blocks[0][3]:blocks[0][4]]).strip(" ,.") if blocks else ""
106
+ # `A deer` against `An animal` differs in the article too, so the diff
107
+ # block can start one word early; the article is not part of the label.
108
+ out.append(re.sub(r"^(?:an?|the)\s+", "", label, flags=re.I))
109
+ # the species sentence keeps the label already known for it
110
+ out[i] = None
111
+ return out
112
+
113
+
114
+ def main():
115
+ CAP = os.path.join(snapshot_download(CAPTIONS_REPO, repo_type="dataset",
116
+ allow_patterns=["captions/**"]), "captions")
117
+ clips = list(csv.DictReader(open(os.path.join(ROOT, "clips.csv"))))
118
+ src_index = {(alnum(os.path.basename(os.path.dirname(r["file"]))),
119
+ alnum(os.path.splitext(os.path.basename(r["file"]))[0])): r
120
+ for r in clips if r["format"] == "fbx"}
121
+
122
+ # caption file -> the animation clip it describes, via clips.csv
123
+ hits = collections.defaultdict(list)
124
+ for dp, dn, fn in os.walk(CAP):
125
+ for f in sorted(fn):
126
+ if not f.endswith(".json"):
127
+ continue
128
+ row = src_index.get((alnum(os.path.basename(dp)), alnum(f[:-5])))
129
+ if row and row["animation_file"]: # skips ALL files and the one T-pose caption
130
+ hits[os.path.basename(row["animation_file"])].append(
131
+ (os.path.join(dp, f), row["file"]))
132
+
133
+ out = {}
134
+ for f in sorted(os.listdir(os.path.join(ROOT, "animation"))):
135
+ if not f.endswith(".fbx"):
136
+ continue
137
+ species = f[:-4].split("-", 1)[0]
138
+ entry = {"species": species, "action": f[:-4].split("-", 1)[1],
139
+ "object_name": None, "orientation": None, "prompt": None,
140
+ "prompts": None, "object_name_variants": None,
141
+ "source_fbx": [], "source_caption": []}
142
+ for path, srcfbx in hits.get(f, []):
143
+ js = json.load(open(path))
144
+ entry["source_caption"].append("captions/" + os.path.relpath(path, CAP))
145
+ entry["source_fbx"].append(srcfbx)
146
+ if entry["prompt"]: # a second annotation of the same motion
147
+ entry.setdefault("alt_prompts", []).append(
148
+ js["captions"]["short"]["original"][slot_of(js, "short", "original")])
149
+ continue
150
+ entry["object_name"] = js["object_name"]
151
+ entry["orientation"] = js["orientation"]
152
+ entry["prompts"] = {lv: {st: js["captions"][lv][st][slot_of(js, lv, st)]
153
+ for st in STYLES} for lv in LEVELS}
154
+ entry["prompt"] = entry["prompts"]["short"]["original"]
155
+ v = name_variants(js["captions"]["short"]["original"], slot_of(js, "short", "original"))
156
+ v[v.index(None)] = js["object_name"].strip().lower()
157
+ entry["object_name_variants"] = v
158
+ out[f] = entry
159
+
160
+ full = "--full" in sys.argv
161
+ slim = {}
162
+ for k in sorted(out):
163
+ v = out[k]
164
+ rec = {}
165
+ if not v["prompt"] and k in INFERRED:
166
+ rec["prompt"] = INFERRED[k]
167
+ rec["prompt_source"] = "inferred"
168
+ elif v["prompt"]:
169
+ rec["object_name"] = v["object_name"]
170
+ rec["prompt"] = v["prompt"]
171
+ rec["prompt_source"] = "t2m4lvo"
172
+ if v.get("alt_prompts"):
173
+ rec["alt_prompt"] = v["alt_prompts"][0]
174
+ if full:
175
+ rec["object_name_variants"] = v["object_name_variants"]
176
+ rec["prompts"] = v["prompts"]
177
+ slim[k] = dict(sorted(rec.items()))
178
+
179
+ dst = os.path.join(ROOT, "animation_prompts.json")
180
+ json.dump(slim, open(dst, "w"), indent=1, ensure_ascii=False)
181
+ have = [k for k, v in slim.items() if v]
182
+ inf = [k for k, v in slim.items() if v.get("prompt_source") == "inferred"]
183
+ print("clips: %d | with a prompt: %d (%d inferred) | without: %d"
184
+ % (len(slim), len(have), len(inf), len(slim) - len(have)))
185
+ print("second annotation:", sum(1 for v in slim.values() if "alt_prompt" in v))
186
+ print("mode: %s" % ("full - all 4 levels x 7 styles" if full else "short/original only"))
187
+ print("written: %s %.2f MB" % (dst, os.path.getsize(dst) / 1e6))
188
+ print("\nno prompt:", [k for k, v in slim.items() if not v])
189
+
190
+
191
+ if __name__ == "__main__":
192
+ main()
scripts/pipeline/normalize.py ADDED
@@ -0,0 +1,280 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python3
2
+ """Name every source motion uniformly, and record the name in clips.csv.
3
+
4
+ <Species>-<Action>.fbx
5
+
6
+ Step 2. Creates no files: it fills the `normalized_name` column, and
7
+ `build_animation.py` is what puts those names on disk. Naming rule: the species
8
+ travels with the file rather than living in a directory, and the action never
9
+ contains a hyphen, so `name.split("-", 1)` recovers both parts.
10
+ Spaces, source hyphens and stray punctuation become underscores and runs of
11
+ underscores collapse, leaving names that are safe as identifiers, in shell
12
+ globs and on any filesystem.
13
+
14
+ Trex/T-Rex-Big roar step.fbx -> Trex-Big_Roar_Step.fbx
15
+ Dog-2/DOG-Attack.fbx -> Dog2-Attack.fbx
16
+
17
+ A species prefix already present in the source name is stripped so it is not
18
+ repeated. Folders whose files are named after something else — an abbreviation,
19
+ a synonym, or a misspelling — are handled by inferring each folder's dominant
20
+ filename prefix from the data rather than by string-matching the folder name. Files are hardlinked, so this costs no extra disk; `Truebone_Z-OO/` keeps the
21
+ original layout and names, and `clips.csv` carries both paths.
22
+ """
23
+ import collections, csv, os, re, sys
24
+
25
+ HERE = os.path.dirname(os.path.abspath(__file__))
26
+ SCRIPTS = os.path.dirname(HERE)
27
+ ROOT = os.path.dirname(SCRIPTS)
28
+ sys.path[:0] = [HERE, os.path.join(SCRIPTS, "probes")]
29
+
30
+ from fbx_motion import probe as motion_probe
31
+
32
+
33
+ def _alnum(s):
34
+ return re.sub(r"[^A-Za-z0-9]", "", s).upper()
35
+
36
+
37
+ def norm_species(group):
38
+ """Species names are joined straight through: `Dog-2` -> `Dog2`."""
39
+ return re.sub(r"[^A-Za-z0-9]", "", group)
40
+
41
+
42
+ def _base_species(sp):
43
+ """`Scorpion2` -> `Scorpion`, `SpiderG` -> `Spider`: drop a trailing variant marker."""
44
+ b = re.sub(r"\d+$", "", sp)
45
+ if len(b) > 4 and b[-1].isupper() and b[-2].islower():
46
+ b = b[:-1]
47
+ return b
48
+
49
+
50
+ def _eat(s, prefix):
51
+ """Drop as many alphanumeric characters from the front of s as prefix has."""
52
+ i = cnt = 0
53
+ while i < len(s) and cnt < len(prefix):
54
+ if s[i].isalnum(): cnt += 1
55
+ i += 1
56
+ return s[i:]
57
+
58
+
59
+ def infer_aliases(rows, min_share=0.6, min_len=3):
60
+ """Per (species, format), the prefix its filenames actually use.
61
+
62
+ Folder names do not always match what is inside them: `Leapord/` holds
63
+ `Leopard-*.fbx`, `Jaws/` holds `Shark-*.fbx`, `SabreToothTiger/` holds
64
+ `SABREALL-*.fbx`. String-matching the folder name cannot catch synonyms,
65
+ abbreviations or misspellings, so the dominant leading token is taken from
66
+ the files themselves. A trailing `ALL` is left off the alias so that variant
67
+ marker survives into the action, and aliases shorter than `min_len` are
68
+ ignored so single-letter markers (`PolarBearB`, `Giantbee`) are not eaten.
69
+ """
70
+ by = {}
71
+ for r in rows:
72
+ key = (norm_species(r["group"]), r["format"])
73
+ stem = os.path.splitext(os.path.basename(r["file"]))[0].lstrip("_")
74
+ by.setdefault(key, []).append(stem)
75
+ alias = {}
76
+ for key, stems in by.items():
77
+ toks = [re.split(r"[\s\-_]+", s)[0] for s in stems if s]
78
+ if not toks:
79
+ continue
80
+ top, n = collections.Counter(toks).most_common(1)[0]
81
+ if n / len(toks) < min_share:
82
+ continue
83
+ a = _alnum(top)
84
+ if a.endswith("ALL") and len(a) > 4:
85
+ a = a[:-3]
86
+ sp = _alnum(key[0])
87
+ if len(a) >= min_len and a != sp and not a.startswith(sp):
88
+ alias[key] = a
89
+ return alias
90
+
91
+
92
+ def norm_action(stem, group, alias=None, fmt=None):
93
+ """Strip a repeated species prefix, then normalize what is left.
94
+
95
+ The full species name is tried first, then the base name, so a group whose
96
+ files are named after the base (`Scorpion-Back Up.fbx` inside `Scorpion-2/`)
97
+ does not end up with the species twice. Matching consumes characters rather
98
+ than whole tokens, so a variant marker fused to the species survives:
99
+ `AlligatorALL-BigMouth` keeps its `ALL`.
100
+ """
101
+ s = stem.strip().lstrip("_")
102
+ sp = norm_species(group)
103
+ cands = [_alnum(sp), _alnum(_base_species(sp))]
104
+ if alias:
105
+ a = alias.get((sp, fmt))
106
+ if a:
107
+ cands.append(a)
108
+ cands += EXTRA_ALIASES.get(sp, [])
109
+ for cand in cands:
110
+ if cand and _alnum(s).startswith(cand):
111
+ s = _eat(s, cand); break
112
+ s = re.sub(r"[\s\-]+", "_", s)
113
+ s = re.sub(r"[^A-Za-z0-9_]", "_", s)
114
+ # A name that is nothing but the species belongs to that group's combined file,
115
+ # the same role `<Species>ALL.fbx` plays elsewhere, so it lands on ALL too.
116
+ s = re.sub(r"_+", "_", s).strip("_") or "ALL"
117
+ # The `ALL` export marker is only meaningful on the combined take, which has
118
+ # no action of its own. On a single clip it says nothing, so drop it there.
119
+ m = re.match(r"^[Aa][Ll][Ll]_(.+)$", s)
120
+ s = m.group(1) if m else s
121
+ for pat, rep in WORD_FIXES.get(norm_species(group), []):
122
+ s = re.sub(pat, rep, s)
123
+ return s
124
+
125
+
126
+ RESERVED = {"ALL", "TPOSE"}
127
+
128
+ # Spelling variants the dominant-prefix inference cannot see, because they occur
129
+ # on a single file while a different spelling dominates the folder. `Pirrana/`
130
+ # holds eleven `Piranna-*.fbx` plus one `PirhannaALL.fbx` — a third spelling of
131
+ # the same species. Fuzzy matching was tried and rejected: at an edit distance
132
+ # loose enough to catch this, it also swallowed the real action `Shiver` in
133
+ # `SpiderG/`. Listed explicitly instead.
134
+ EXTRA_ALIASES = {"Pirrana": ["PIRHANNA"]}
135
+
136
+ # Groups whose combined ALL file spells an action out while the standalone clips
137
+ # abbreviate it. Folding the abbreviation into the full word makes the two agree,
138
+ # so `ALL` lists exactly the clips the folder holds. Scoped per group: `Gazelle`
139
+ # is left alone because it ships `Attack_1` and `Atk_1` as separate motions, and
140
+ # `Monkey` because its ALL diverges for other reasons besides spelling.
141
+ WORD_FIXES = {
142
+ # Matched case-insensitively: the source spells it `atk 1.fbx` in lower case,
143
+ # and capitalisation only happens further down the pipeline.
144
+ "Elephant": [(r"(?<![A-Za-z])[Aa][Tt][Kk](?![A-Za-z])", "Attack")],
145
+ "Fox": [(r"(?<![A-Za-z])[Aa][Tt][Kk](?![A-Za-z])", "Attack")],
146
+ "Monkey": [(r"(?<![A-Za-z])[Aa][Tt][Kk](?![A-Za-z])", "Attack")],
147
+ }
148
+
149
+ # Source files deliberately left out of fbx/. `Bird/Bird.fbx` rigs a second,
150
+ # unrelated bird: 36 joints over 390 vertices with `Bone*` names, against the
151
+ # 62 joints over 2,173 vertices with `BN_*` names used by every other Bird clip.
152
+ # It shares no bone name with any of the 74 groups and appears in no BVH, so it
153
+ # is an orphan model rather than a variant, and keeping it would break the one-
154
+ # skeleton-per-species-folder assumption.
155
+ EXCLUDE_SOURCES = {"Truebone_Z-OO/Bird/Bird.fbx"}
156
+
157
+ # Compound words the source ran together with no camel-case boundary to split on
158
+ # (`Roarforward`, `Walkbackward`). Automatic word segmentation against a
159
+ # vocabulary built from the library both missed cases and produced false splits
160
+ # (`Layout` -> `Lay_out`), so these are listed explicitly instead. Group context
161
+ # resolved the odd ones: `Flamingo-OneLEgBEnt` is a flamingo on one leg.
162
+ COMPOUNDS = {
163
+ "Injuredwalk": "Injured_Walk", "Landflap": "Land_Flap",
164
+ "Leashjump": "Leash_Jump", "MeanLEft": "Mean_Left",
165
+ "OneLEgBEnt": "One_Leg_Bent", "Roarforward": "Roar_Forward",
166
+ "Runleft": "Run_Left", "Slowtail": "Slow_Tail",
167
+ "Startwalk": "Start_Walk", "Swimturn": "Swim_Turn",
168
+ "Twistrattle": "Twist_Rattle", "WalkSLow": "Walk_Slow",
169
+ "Walkbackward": "Walk_Backward", "Walkleft": "Walk_Left",
170
+ }
171
+
172
+
173
+ def mixamo_style(action):
174
+ """Underscore-separated words, each capitalised, trailing variant as `_2`.
175
+
176
+ Matches the convention used by the Mixamo animation set: `Bite_Arm_Shake`,
177
+ `Walk_Loop`, `Attack_1`. Word boundaries are taken from camel case and from
178
+ letter/digit transitions. A split that would leave a one-character fragment
179
+ is skipped, so source typos and variant codes are not mangled — `180RIght`
180
+ (a misspelling of Right) and `CarrionC_A02` stay intact rather than becoming
181
+ `180_R_Ight` and `Carrion_C_A_02`. The `ALL` and `TPOSE` markers are left uppercase.
182
+ """
183
+ if action in RESERVED:
184
+ return action
185
+ if action in COMPOUNDS:
186
+ return COMPOUNDS[action]
187
+ words = []
188
+ for seg in action.split("_"):
189
+ if not seg:
190
+ continue
191
+ t = seg
192
+ t = re.sub(r"(?<=[a-z0-9])(?=[A-Z])", "\x00", t)
193
+ t = re.sub(r"(?<=[A-Z])(?=[A-Z][a-z])", "\x00", t)
194
+ t = re.sub(r"(?<=[A-Za-z])(?=\d)", "\x00", t)
195
+ t = re.sub(r"(?<=\d)(?=[A-Za-z])", "\x00", t)
196
+ parts = [p for p in t.split("\x00") if p]
197
+ if len(seg) > 2 and any(len(p) == 1 and p.isalpha() for p in parts):
198
+ parts = [seg]
199
+ words += parts
200
+ return "_".join(w[0].upper() + w[1:] for w in words) or action
201
+
202
+
203
+ def canonical_case(actions):
204
+ """One spelling per action across the whole library.
205
+
206
+ Source casing is inconsistent — `TPOSE`/`Tpose`, `Idle`/`IDLE`/`idle`,
207
+ `WalkLoop`/`walkloop` all occur. For each action the most frequent spelling
208
+ wins, which keeps well-formed internal capitals (`WalkLoop`, not
209
+ `Walkloop`). An all-caps spelling is left alone so markers like `ALL` and
210
+ `TPOSE` stay markers; anything else gets its first letter capitalised so no
211
+ lowercase-only names survive.
212
+ """
213
+ counts = collections.defaultdict(collections.Counter)
214
+ for a in actions:
215
+ counts[a.lower()][a] += 1
216
+ canon = {}
217
+ for key, variants in counts.items():
218
+ best = sorted(variants.items(), key=lambda kv: (-kv[1], kv[0]))[0][0]
219
+ if not best.isupper() and best and best[0].islower():
220
+ best = best[0].upper() + best[1:]
221
+ canon[key] = best
222
+ return canon
223
+
224
+
225
+ def main():
226
+ rows = list(csv.DictReader(open(os.path.join(ROOT, "clips.csv"))))
227
+ rows.sort(key=lambda r: r["file"]) # deterministic disambiguation order
228
+ alias = infer_aliases(rows)
229
+ taken, made, renamed = set(), {"bvh": 0, "fbx": 0}, []
230
+ prelim = []
231
+ for r in rows:
232
+ stem = os.path.splitext(os.path.basename(r["file"]))[0]
233
+ prelim.append(norm_action(stem, r["group"], alias, r["format"]))
234
+ canon = canonical_case(prelim)
235
+
236
+ for r, raw_act in zip(rows, prelim):
237
+ r["normalized_name"] = ""
238
+ if r["format"] != "fbx": # bvh is not part of the clip set
239
+ continue
240
+ if r["file"] in EXCLUDE_SOURCES:
241
+ continue
242
+ # Skip FBX that carry no motion at all: keyframes whose values never
243
+ # change (including every TPOSE) and files with no animation curves.
244
+ try:
245
+ m = motion_probe(os.path.join(ROOT, r["file"]))
246
+ if m["static"] or m["no_curves"]:
247
+ continue
248
+ except Exception:
249
+ pass
250
+ sp = norm_species(r["group"])
251
+ act = mixamo_style(canon[raw_act.lower()])
252
+ name = "%s-%s.fbx" % (sp, act)
253
+ # macOS/Windows filesystems are case-insensitive: `Gazelle-run.fbx` and
254
+ # `Gazelle-Run.fbx` are the same path there, so compare case-folded and
255
+ # give the later file a numeric suffix instead of silently losing it.
256
+ n = 2
257
+ while name.lower() in taken:
258
+ name = "%s-%s_%d.fbx" % (sp, act, n); n += 1
259
+ if n == 3: renamed.append(name)
260
+ taken.add(name.lower())
261
+ r["normalized_name"] = name
262
+ made["fbx"] += 1
263
+
264
+ # `normalized_file` is what this column used to be called, back when the
265
+ # names were also written out as an `fbx/` tree; drop it if an older
266
+ # clips.csv is being re-normalized in place.
267
+ cols = [c for c in rows[0] if c not in ("normalized_name", "normalized_file")]
268
+ cols.insert(1, "normalized_name")
269
+ for r in rows:
270
+ r.pop("normalized_file", None)
271
+ with open(os.path.join(ROOT, "clips.csv"), "w", newline="", encoding="utf-8") as fh:
272
+ w = csv.DictWriter(fh, fieldnames=cols); w.writeheader(); w.writerows(rows)
273
+
274
+ print("named %d clips | case-disambiguated: %d" % (made["fbx"], len(renamed)))
275
+ for x in renamed[:10]:
276
+ print(" suffixed:", os.path.basename(x))
277
+
278
+
279
+ if __name__ == "__main__":
280
+ main()
scripts/probes/bvh_probe.py ADDED
@@ -0,0 +1,76 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python3
2
+ """Parse a BVH file's HIERARCHY and MOTION headers.
3
+
4
+ Only the header is read — motion rows are skipped — so probing a whole library
5
+ costs almost nothing. Pass `motion=True` to also scan the rows and report whether
6
+ any channel actually changes: a clip can carry 91 frames that all hold the same
7
+ pose, and every T-pose does.
8
+ """
9
+ import os, re, sys
10
+
11
+ def probe(path, motion=False):
12
+ joints, ends, root = [], 0, None
13
+ frames, frame_time = 0, 0.0
14
+ depth, max_depth = 0, 0
15
+ in_motion = False
16
+ has_motion = False
17
+ with open(path, "r", encoding="utf-8", errors="replace") as f:
18
+ for line in f:
19
+ s = line.strip()
20
+ if not in_motion:
21
+ if s.startswith("ROOT "):
22
+ root = s[5:].strip(); joints.append(root)
23
+ elif s.startswith("JOINT "):
24
+ joints.append(s[6:].strip())
25
+ elif s.startswith("End Site"):
26
+ ends += 1
27
+ elif s == "{":
28
+ depth += 1; max_depth = max(max_depth, depth)
29
+ elif s == "}":
30
+ depth -= 1
31
+ elif s == "MOTION":
32
+ in_motion = True
33
+ else:
34
+ if s.startswith("Frames:"):
35
+ try: frames = int(s.split(":", 1)[1])
36
+ except ValueError: pass
37
+ elif s.lower().startswith("frame time"):
38
+ try: frame_time = float(s.split(":", 1)[1])
39
+ except ValueError: pass
40
+ if not motion:
41
+ break # header done; skip the motion rows
42
+ lo = hi = None
43
+ for row in f:
44
+ try:
45
+ vals = [float(x) for x in row.split()]
46
+ except ValueError:
47
+ continue
48
+ if not vals:
49
+ continue
50
+ if lo is None:
51
+ lo, hi = list(vals), list(vals)
52
+ else:
53
+ n = min(len(lo), len(vals))
54
+ for i in range(n):
55
+ if vals[i] < lo[i]: lo[i] = vals[i]
56
+ if vals[i] > hi[i]: hi[i] = vals[i]
57
+ has_motion = bool(lo) and max(h - l for l, h in zip(lo, hi)) > 1e-6
58
+ break
59
+ fps = round(1.0 / frame_time, 3) if frame_time > 0 else 0.0
60
+ out = {
61
+ "root": root or "", "num_joints": len(joints), "num_end_sites": ends,
62
+ "max_depth": max_depth, "frames": frames,
63
+ "frame_time": round(frame_time, 6), "fps": fps,
64
+ "duration_sec": round(frames * frame_time, 4) if frame_time > 0 else 0.0,
65
+ "joint_names": "|".join(joints)[:400],
66
+ }
67
+ if motion:
68
+ out["has_motion"] = has_motion
69
+ return out
70
+
71
+ if __name__ == "__main__":
72
+ for p in sys.argv[1:]:
73
+ r = probe(p)
74
+ print("%-34s joints=%-4d frames=%-5d fps=%-5s %.2fs root=%s" % (
75
+ os.path.basename(p), r["num_joints"], r["frames"], r["fps"],
76
+ r["duration_sec"], r["root"]))
scripts/probes/fbx_align_material.py ADDED
@@ -0,0 +1,117 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python3
2
+ """Give a clip's materials the same settings its siblings use.
3
+
4
+ fbx_align_material.py --diff <reference> <fbx>... what differs
5
+ fbx_align_material.py --from <reference> <fbx>... align, in place
6
+
7
+ Materials are matched by name, and only the values inside `Properties70` move —
8
+ the property's own type strings, the shading model, the textures and everything
9
+ outside the material are left alone. A property the reference does not have is
10
+ removed; one only the reference has is added.
11
+
12
+ This exists for `KingCobra-Walk.fbx`, whose material block is anomalous in the
13
+ same way the rest of that file was. It is the only clip in the library that sets
14
+ `ReflectionFactor`, and Blender reads that property as the Principled `Metallic`
15
+ input: with it absent the importer defaults to 1.0, so the clip came in at 0.0
16
+ while its eleven siblings — and every other clip in the library — came in at 1.0.
17
+ The visible result was a paler, greyer snake. Four more properties differed
18
+ alongside it (`Shininess`, `ShininessExponent`, `Specular`, `SpecularColor`),
19
+ with no effect in Blender but no reason to keep them apart either.
20
+
21
+ Aligning to a sibling rather than writing `ReflectionFactor` into the other 1,096
22
+ clips keeps the library uniform without baking one renderer's default for an
23
+ unspecified property into the data.
24
+
25
+ Correctness gate: with no edits the serializer must reproduce its input byte for
26
+ byte. Writes through a temporary file and renames it into place.
27
+ """
28
+ import os, sys
29
+
30
+ sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
31
+ from fbx_graft_mesh import parse, serialize, objects, clean, sval, Node
32
+
33
+
34
+ def props_of(node):
35
+ p70 = next((ch for ch in node.children if ch.name == b"Properties70"), None)
36
+ return p70, {} if p70 is None else {
37
+ clean(pn.props[0][1]): pn for pn in p70.children if pn.props}
38
+
39
+
40
+ def materials(tree):
41
+ return {clean(n): node for u, (c, n, s, node) in objects(tree).items()
42
+ if c == b"Material"}
43
+
44
+
45
+ def value(pn):
46
+ return tuple(round(v, 6) if isinstance(v, float) else v
47
+ for v in (sval(x) for x in pn.props[4:]))
48
+
49
+
50
+ def diff(ref_path, path):
51
+ ref, cur = materials(parse(ref_path)), materials(parse(path))
52
+ out = []
53
+ for name, node in sorted(cur.items()):
54
+ if name not in ref: continue
55
+ _, a = props_of(node)
56
+ _, b = props_of(ref[name])
57
+ for k in sorted(set(a) | set(b)):
58
+ va = value(a[k]) if k in a else None
59
+ vb = value(b[k]) if k in b else None
60
+ if va != vb: out.append((name, k, va, vb))
61
+ return out
62
+
63
+
64
+ def align(ref_path, path):
65
+ t = parse(path)
66
+ ref = materials(parse(ref_path))
67
+ changed = []
68
+ for name, node in materials(t).items():
69
+ if name not in ref: continue
70
+ p70, a = props_of(node)
71
+ _, b = props_of(ref[name])
72
+ if p70 is None: continue
73
+ for k in sorted(set(a) | set(b)):
74
+ va = value(a[k]) if k in a else None
75
+ vb = value(b[k]) if k in b else None
76
+ if va == vb: continue
77
+ if k not in b:
78
+ p70.children.remove(a[k]); changed.append((name, k, va, "删除"))
79
+ elif k not in a:
80
+ cp = Node(b"P"); cp.props = list(b[k].props)
81
+ p70.children.append(cp); changed.append((name, k, "新增", vb))
82
+ else:
83
+ # keep this file's own type strings, take the reference's values
84
+ a[k].props = a[k].props[:4] + list(b[k].props[4:])
85
+ changed.append((name, k, va, vb))
86
+ data = serialize(t)
87
+ tmp = path + ".tmp"
88
+ with open(tmp, "wb") as fh: fh.write(data)
89
+ os.replace(tmp, path)
90
+ return changed, len(data)
91
+
92
+
93
+ def main(argv):
94
+ if len(argv) < 3 or argv[0] not in ("--diff", "--from"):
95
+ print(__doc__); return 2
96
+ mode, ref, targets = argv[0], argv[1], argv[2:]
97
+ for p in targets:
98
+ if serialize(parse(p)) != open(p, "rb").read():
99
+ print("拒绝执行:%s 无法字节级往返" % p); return 1
100
+ if mode == "--diff":
101
+ d = diff(ref, p)
102
+ print("%s vs %s" % (os.path.basename(p), os.path.basename(ref)))
103
+ for name, k, va, vb in d:
104
+ print(" %-34s %-20s %-22s → %s" % (name, k, va, vb))
105
+ if not d: print(" 材质属性已一致")
106
+ else:
107
+ before = os.path.getsize(p)
108
+ ch, size = align(ref, p)
109
+ print("%s ← %s" % (os.path.basename(p), os.path.basename(ref)))
110
+ for name, k, va, vb in ch:
111
+ print(" %-20s %-22s → %s" % (k, str(va)[:22], vb))
112
+ print(" %d → %d 字节" % (before, size))
113
+ return 0
114
+
115
+
116
+ if __name__ == "__main__":
117
+ sys.exit(main(sys.argv[1:]))
scripts/probes/fbx_anomaly.py ADDED
@@ -0,0 +1,102 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python3
2
+ """Look for discontinuities in an FBX's animation curves.
3
+
4
+ Reports the largest frame-to-frame step in each curve, relative to how that
5
+ curve normally moves. Rotation tracks are stored in degrees and wrap at ±180,
6
+ so a 179° -> -179° step is a 2° move, not a 358° one; those are unwrapped first,
7
+ otherwise nearly every turning clip looks broken.
8
+
9
+ A curve is called discontinuous when its biggest step is large in absolute terms
10
+ and also several times the *second* largest step. Fast but smooth motion has many
11
+ comparable steps, so nothing stands out; a teleport or a snapped pose produces one
12
+ isolated spike. Comparing against a percentile instead fails here, because most
13
+ curves barely move and their percentile sits at ~0, making every ratio explode.
14
+ """
15
+ import os, struct, sys, zlib
16
+
17
+ SCALAR = {"Y": 2, "C": 1, "I": 4, "F": 4, "D": 8, "L": 8}
18
+ ELEM = {"f": 4, "d": 8, "l": 8, "i": 4, "b": 1}
19
+ FMT = {"f": "f", "d": "d", "l": "q", "i": "i", "b": "b"}
20
+
21
+
22
+ def _curves(path):
23
+ d = open(path, "rb").read()
24
+ if d[:21] != b"Kaydara FBX Binary \x00":
25
+ raise ValueError("not a binary FBX")
26
+ u64 = struct.unpack("<I", d[23:27])[0] >= 7500
27
+ N = 25 if u64 else 13
28
+ out = []
29
+
30
+ def rp(p, want):
31
+ t = chr(d[p]); s = p; p += 1
32
+ if t in SCALAR: p += SCALAR[t]; return p, None
33
+ if t in ELEM:
34
+ n, enc, cl = struct.unpack("<III", d[p:p+12]); p += 12
35
+ body = cl if enc else n * ELEM[t]
36
+ raw = d[p:p+body]; p += body
37
+ if want and n:
38
+ try:
39
+ if enc: raw = zlib.decompress(raw)
40
+ return p, struct.unpack("<%d%s" % (n, FMT[t]), raw[:n*ELEM[t]])
41
+ except Exception: return p, None
42
+ return p, None
43
+ if t in "SR":
44
+ ln = struct.unpack("<I", d[p:p+4])[0]; p += 4 + ln; return p, None
45
+ raise ValueError("bad prop")
46
+
47
+ def rn(p):
48
+ if u64: e, np_, pl = struct.unpack("<QQQ", d[p:p+24]); q = p+24
49
+ else: e, np_, pl = struct.unpack("<III", d[p:p+12]); q = p+12
50
+ if e == 0 and np_ == 0 and pl == 0: return p + N
51
+ nl = d[q]; q += 1; nm = d[q:q+nl]; q += nl
52
+ p = q; want = nm == b"KeyValueFloat"; v = None
53
+ for _ in range(np_):
54
+ p, x = rp(p, want)
55
+ if x is not None: v = x
56
+ if want and v: out.append(v)
57
+ while p < e:
58
+ if d[p:p+N] == b"\x00"*N: p += N; break
59
+ p = rn(p)
60
+ return e
61
+
62
+ p = 27
63
+ while p < len(d) - 160:
64
+ if d[p:p+N] == b"\x00"*N: break
65
+ p = rn(p)
66
+ return out
67
+
68
+
69
+ def probe(path, abs_min=45.0, ratio=4.0):
70
+ worst = 0.0; worst_ratio = 0.0; bad = 0; n = 0
71
+ for c in _curves(path):
72
+ if len(c) < 3: continue
73
+ rng = max(c) - min(c)
74
+ if rng <= 1e-6: continue
75
+ n += 1
76
+ degrees = rng > 20.0 # rotation tracks span tens of degrees
77
+ deltas = []
78
+ for i in range(1, len(c)):
79
+ dv = c[i] - c[i-1]
80
+ if degrees and abs(dv) > 180.0:
81
+ dv -= 360.0 if dv > 0 else -360.0 # unwrap
82
+ deltas.append(abs(dv))
83
+ if not deltas: continue
84
+ s = sorted(deltas, reverse=True)
85
+ mx = s[0]; second = s[1] if len(s) > 1 else 0.0
86
+ r = mx / second if second > 1e-9 else (float("inf") if mx > abs_min else 0.0)
87
+ if mx > worst: worst = mx
88
+ if r != float("inf") and r > worst_ratio: worst_ratio = r
89
+ if mx >= abs_min and r >= ratio: bad += 1
90
+ return {"curves": n, "max_step": round(worst, 3),
91
+ "max_ratio": round(worst_ratio, 1), "discontinuous_curves": bad}
92
+
93
+
94
+ if __name__ == "__main__":
95
+ for f in sys.argv[1:]:
96
+ try:
97
+ r = probe(f)
98
+ print("%-34s curves=%-4d max_step=%-9.2f ratio=%-7.1f bad=%d" % (
99
+ os.path.basename(f), r["curves"], r["max_step"], r["max_ratio"],
100
+ r["discontinuous_curves"]))
101
+ except Exception as e:
102
+ print("%-34s ERROR %s" % (os.path.basename(f), str(e)[:50]))
scripts/probes/fbx_check.py ADDED
@@ -0,0 +1,87 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python3
2
+ """Integrity check for binary FBX.
3
+
4
+ Beyond "does it parse": walks the whole node tree and verifies the walk lands in
5
+ the footer region, which catches truncated or padded files that a shallow parse
6
+ would accept. Also reports skeleton and geometry presence so empty shells show up.
7
+ """
8
+ import os, struct, sys
9
+
10
+ SCALAR = {"Y": 2, "C": 1, "I": 4, "F": 4, "D": 8, "L": 8}
11
+ ELEM = {"f": 4, "d": 8, "l": 8, "i": 4, "b": 1}
12
+
13
+
14
+ def check(path):
15
+ size = os.path.getsize(path)
16
+ r = {"size": size, "ok": False, "reason": "", "version": None,
17
+ "joints": 0, "meshes": 0, "verts": 0, "curves": 0, "end_gap": None}
18
+ if size == 0:
19
+ r["reason"] = "zero bytes"; return r
20
+ d = open(path, "rb").read()
21
+ if d[:21] != b"Kaydara FBX Binary \x00":
22
+ r["reason"] = "bad magic (not a binary FBX)"; return r
23
+ r["version"] = struct.unpack("<I", d[23:27])[0]
24
+ u64 = r["version"] >= 7500
25
+ NREC = 25 if u64 else 13
26
+ joints = set(); meshes = 0; verts = 0; curves = 0
27
+
28
+ def rd_prop(p):
29
+ t = chr(d[p]); s = p; p += 1
30
+ if t in SCALAR: p += SCALAR[t]; return p, (t, d[s+1:p], None)
31
+ if t in ELEM:
32
+ n, enc, clen = struct.unpack("<III", d[p:p+12]); p += 12
33
+ p += clen if enc else n * ELEM[t]
34
+ return p, (t, None, n)
35
+ if t in "SR":
36
+ ln = struct.unpack("<I", d[p:p+4])[0]; p += 4
37
+ v = d[p:p+ln]; p += ln
38
+ return p, (t, v, None)
39
+ raise ValueError("bad property type %r at %d" % (t, s))
40
+
41
+ def rd_node(p, depth=0):
42
+ nonlocal meshes, verts, curves
43
+ if depth > 64: raise ValueError("node nesting too deep")
44
+ if p + (24 if u64 else 12) > len(d): raise ValueError("header past EOF")
45
+ if u64: end, nprop, plen = struct.unpack("<QQQ", d[p:p+24]); q = p+24
46
+ else: end, nprop, plen = struct.unpack("<III", d[p:p+12]); q = p+12
47
+ if end == 0 and nprop == 0 and plen == 0: return p + NREC
48
+ if end > len(d): raise ValueError("node end offset past EOF")
49
+ nl = d[q]; q += 1; name = d[q:q+nl]; q += nl
50
+ p = q; props = []
51
+ for _ in range(nprop):
52
+ p, pr = rd_prop(p); props.append(pr)
53
+ if name == b"Model" and len(props) >= 3 and props[2][1] in (b"LimbNode", b"Root"):
54
+ joints.add(props[1][1])
55
+ elif name == b"Geometry": meshes += 1
56
+ elif name == b"Vertices" and props and props[0][2]: verts += props[0][2] // 3
57
+ elif name == b"AnimationCurve": curves += 1
58
+ while p < end:
59
+ if d[p:p+NREC] == b"\x00" * NREC: p += NREC; break
60
+ p = rd_node(p, depth + 1)
61
+ return end
62
+
63
+ try:
64
+ p = 27
65
+ while p < len(d) - 160:
66
+ if d[p:p+NREC] == b"\x00" * NREC: p += NREC; break
67
+ p = rd_node(p)
68
+ except Exception as e:
69
+ r["reason"] = "parse: %s" % str(e)[:70]; return r
70
+ r.update(joints=len(joints), meshes=meshes, verts=verts, curves=curves,
71
+ end_gap=len(d) - p)
72
+ if r["end_gap"] < 0:
73
+ r["reason"] = "walk ran past EOF"; return r
74
+ if r["end_gap"] > 4096:
75
+ r["reason"] = "%d trailing bytes unparsed (truncated or padded)" % r["end_gap"]; return r
76
+ if not joints and not meshes:
77
+ r["reason"] = "no skeleton and no geometry"; return r
78
+ r["ok"] = True
79
+ return r
80
+
81
+
82
+ if __name__ == "__main__":
83
+ for f in sys.argv[1:]:
84
+ r = check(f)
85
+ print("%-38s %-4s v%-5s joints=%-4d mesh=%-3d verts=%-8d curves=%-6d %s" % (
86
+ os.path.basename(f), "OK" if r["ok"] else "BAD", r["version"],
87
+ r["joints"], r["meshes"], r["verts"], r["curves"], r["reason"]))
scripts/probes/fbx_curves.py ADDED
@@ -0,0 +1,60 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """Decode FBX animation curve values and compare two clips frame by frame.
2
+
3
+ Range or amplitude comparisons pair up motions that merely span the same
4
+ extents; matching the actual key values settles it.
5
+ """
6
+ import os, struct, sys, zlib
7
+ SCALAR={"Y":2,"C":1,"I":4,"F":4,"D":8,"L":8}; ELEM={"f":4,"d":8,"l":8,"i":4,"b":1}
8
+ FMT={"f":"f","d":"d","l":"q","i":"i","b":"b"}
9
+ def curves(path):
10
+ d=open(path,'rb').read(); u64=struct.unpack("<I",d[23:27])[0]>=7500
11
+ N=25 if u64 else 13; out=[]
12
+ def rp(p,want):
13
+ t=chr(d[p]); s=p; p+=1
14
+ if t in SCALAR: p+=SCALAR[t]; return p,None
15
+ if t in ELEM:
16
+ n,enc,cl=struct.unpack("<III",d[p:p+12]); p+=12
17
+ body=cl if enc else n*ELEM[t]; raw=d[p:p+body]; p+=body
18
+ if want and n:
19
+ try:
20
+ if enc: raw=zlib.decompress(raw)
21
+ return p,struct.unpack("<%d%s"%(n,FMT[t]),raw[:n*ELEM[t]])
22
+ except Exception: return p,None
23
+ return p,None
24
+ if t in "SR":
25
+ ln=struct.unpack("<I",d[p:p+4])[0]; p+=4+ln; return p,None
26
+ raise ValueError
27
+ def rn(p):
28
+ if u64: e,np_,pl=struct.unpack("<QQQ",d[p:p+24]); q=p+24
29
+ else: e,np_,pl=struct.unpack("<III",d[p:p+12]); q=p+12
30
+ if e==0 and np_==0 and pl==0: return p+N
31
+ nl=d[q]; q+=1; nm=d[q:q+nl]; q+=nl; p=q; want=nm==b"KeyValueFloat"; v=None
32
+ for _ in range(np_):
33
+ p,x=rp(p,want)
34
+ if x is not None: v=x
35
+ if want and v: out.append(v)
36
+ while p<e:
37
+ if d[p:p+N]==b"\x00"*N: p+=N; break
38
+ p=rn(p)
39
+ return e
40
+ p=27
41
+ while p<len(d)-160:
42
+ if d[p:p+N]==b"\x00"*N: break
43
+ p=rn(p)
44
+ return out
45
+ def same_motion(a,b,eps=1e-4):
46
+ ca,cb=curves(a),curves(b)
47
+ ma=[c for c in ca if max(c)-min(c)>1e-6]; mb=[c for c in cb if max(c)-min(c)>1e-6]
48
+ if len(ma)!=len(mb): return False,"moving curves %d vs %d"%(len(ma),len(mb))
49
+ ka=sorted(ma,key=lambda c:(len(c),c[0])); kb=sorted(mb,key=lambda c:(len(c),c[0]))
50
+ matched=0
51
+ for x,y in zip(ka,kb):
52
+ n=min(len(x),len(y))
53
+ if n and all(abs(x[i]-y[i])<eps for i in range(n)): matched+=1
54
+ return matched==len(ka), "%d/%d curves identical frame by frame"%(matched,len(ka))
55
+ if __name__=="__main__":
56
+ for i in range(1,len(sys.argv),2):
57
+ a,b=sys.argv[i],sys.argv[i+1]
58
+ ok,msg=same_motion(a,b)
59
+ print(" %-26s vs %-26s %s (%s)"%(os.path.basename(a),os.path.basename(b),
60
+ "same motion" if ok else "different", msg))
scripts/probes/fbx_embed_texture.py ADDED
@@ -0,0 +1,170 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python3
2
+ """Graft an embedded texture into a binary FBX that references one externally.
3
+
4
+ fbx_embed_texture.py --selftest <fbx>... byte-identical round trip
5
+ fbx_embed_texture.py --donor <fbx> <fbx>... copy the donor's Video/Content
6
+ into each target, in place
7
+
8
+ Truebones embeds its textures in the FBX itself — 73 of the 74 species carry the
9
+ pixels in a `Video/Content` property, so a clip renders correctly wherever it is
10
+ opened. `Cat` is the exception: its four standalone clips were exported without
11
+ "embed media", so they carry only a `RelativeFilename` pointing at a `Cat.fbm/`
12
+ directory that does not exist. They render untextured from `animation/`, whose
13
+ flat layout puts no image anywhere the importer's search can reach.
14
+
15
+ The fix is not a re-export, which would rebuild the rig. The file is parsed into
16
+ its node tree, one `Content` node is inserted into `Video`, and the tree is
17
+ re-serialized with recomputed offsets — every node record stores an absolute end
18
+ offset, so an insertion shifts everything after it. Nothing else is touched.
19
+
20
+ The `Content` node is copied verbatim from a donor file of the same species that
21
+ does have it (`Cat-ALL.fbx`), rather than synthesised, so the property encoding
22
+ and node framing are known-good rather than guessed.
23
+
24
+ Correctness gate: with no edits the serializer must reproduce its input byte for
25
+ byte (`--selftest`). Some nodes carry a trailing null record despite having no
26
+ children; that is tracked per node so round trips stay exact.
27
+
28
+ Writes through a temporary file and renames it into place. Every clip here is a
29
+ hardlink of one in `Truebone_Z-OO/`, and writing to such a path writes through to
30
+ the original.
31
+ """
32
+ import os, struct, sys
33
+
34
+ ELEM = {'f':4,'d':8,'l':8,'i':4,'b':1}
35
+ SCALAR = {"Y":2,"C":1,"I":4,"F":4,"D":8,"L":8}
36
+
37
+
38
+ class Node:
39
+ __slots__ = ("name","props","children","nullrec")
40
+ def __init__(s, name): s.name=name; s.props=[]; s.children=[]; s.nullrec=False
41
+
42
+
43
+ def parse(path):
44
+ d=open(path,'rb').read()
45
+ assert d[:21]==b"Kaydara FBX Binary \x00", "not a binary FBX"
46
+ version=struct.unpack("<I",d[23:27])[0]; u64=version>=7500
47
+ NREC=25 if u64 else 13
48
+
49
+ def rd_prop(p):
50
+ t=chr(d[p]); s=p; p+=1
51
+ if t in SCALAR:
52
+ p+=SCALAR[t]; return p,(t,d[s+1:p])
53
+ if t in ELEM:
54
+ length,enc,clen=struct.unpack("<III",d[p:p+12]); hdr=d[p:p+12]; p+=12
55
+ body=clen if enc else length*ELEM[t]
56
+ data=d[p:p+body]; p+=body
57
+ return p,(t,hdr+data)
58
+ if t in "SR":
59
+ ln=struct.unpack("<I",d[p:p+4])[0]; p+=4
60
+ data=d[p:p+ln]; p+=ln
61
+ return p,(t,data)
62
+ raise ValueError("bad prop type %r @%d"%(t,s))
63
+
64
+ def is_null(p): return p+NREC<=len(d) and d[p:p+NREC]==b"\x00"*NREC
65
+
66
+ def rd_node(p):
67
+ if u64: end,nprop,plen=struct.unpack("<QQQ",d[p:p+24]); q=p+24
68
+ else: end,nprop,plen=struct.unpack("<III",d[p:p+12]); q=p+12
69
+ if end==0 and nprop==0 and plen==0: return None,p+NREC
70
+ nl=d[q]; q+=1; name=d[q:q+nl]; q+=nl
71
+ n=Node(name); p=q
72
+ for _ in range(nprop):
73
+ p,pr=rd_prop(p); n.props.append(pr)
74
+ while p<end:
75
+ if is_null(p): n.nullrec=True; p+=NREC; break
76
+ c,p2=rd_node(p)
77
+ if c is None: n.nullrec=True; p=p2; break
78
+ n.children.append(c); p=p2
79
+ return n,end
80
+
81
+ p=27; top=[]; tnull=False
82
+ while p<len(d):
83
+ if is_null(p): tnull=True; p+=NREC; break
84
+ n,p2=rd_node(p)
85
+ if n is None: tnull=True; p=p2; break
86
+ top.append(n); p=p2
87
+ return {"header":d[:27],"u64":u64,"top":top,"footer":d[p:],
88
+ "toplevel_null":tnull,"orig":d,"version":version}
89
+
90
+
91
+ def pbytes(t,pay):
92
+ if t in "SR": return t.encode()+struct.pack("<I",len(pay))+pay
93
+ return t.encode()+pay
94
+
95
+ def nsize(n,u64):
96
+ NREC=25 if u64 else 13
97
+ sz=NREC+len(n.name)
98
+ sz+=sum(len(pbytes(t,p)) for t,p in n.props)
99
+ sz+=sum(nsize(c,u64) for c in n.children)
100
+ if n.nullrec: sz+=NREC
101
+ return sz
102
+
103
+ def wnode(out,n,u64):
104
+ NREC=25 if u64 else 13
105
+ props=b"".join(pbytes(t,p) for t,p in n.props)
106
+ end=len(out)+nsize(n,u64)
107
+ out += struct.pack("<QQQ",end,len(n.props),len(props)) if u64 else \
108
+ struct.pack("<III",end,len(n.props),len(props))
109
+ out += bytes([len(n.name)])+n.name+props
110
+ for c in n.children: wnode(out,c,u64)
111
+ if n.nullrec: out+=b"\x00"*NREC
112
+
113
+ def serialize(t):
114
+ out=bytearray(t["header"])
115
+ for n in t["top"]: wnode(out,n,t["u64"])
116
+ if t["toplevel_null"]: out+=b"\x00"*(25 if t["u64"] else 13)
117
+ out+=t["footer"]
118
+ return bytes(out)
119
+
120
+
121
+ def walk(nodes):
122
+ for n in nodes:
123
+ yield n
124
+ for x in walk(n.children): yield x
125
+
126
+ def donor_content(path):
127
+ """The `Content` node of the donor's `Video`, with its raw payload."""
128
+ t=parse(path)
129
+ for n in walk(t["top"]):
130
+ if n.name!=b"Video": continue
131
+ for c in n.children:
132
+ if c.name==b"Content" and c.props and c.props[0][0]=="R" and len(c.props[0][1])>64:
133
+ return c
134
+ raise SystemExit("donor has no Video/Content: "+path)
135
+
136
+ def graft(path, content):
137
+ """Insert a copy of `content` into every Video node that lacks one."""
138
+ t=parse(path); added=0
139
+ for n in walk(t["top"]):
140
+ if n.name!=b"Video": continue
141
+ if any(c.name==b"Content" for c in n.children): continue
142
+ c=Node(b"Content"); c.props=list(content.props); c.nullrec=content.nullrec
143
+ # sits after RelativeFilename, which is where every embedding export puts it
144
+ idx=max((i for i,ch in enumerate(n.children)
145
+ if ch.name in (b"RelativeFilename", b"Filename")), default=len(n.children)-1)
146
+ n.children.insert(idx+1, c); added+=1
147
+ return added, serialize(t)
148
+
149
+
150
+ if __name__=="__main__":
151
+ a=sys.argv[1:]
152
+ if a and a[0]=="--selftest":
153
+ ok=True
154
+ for f in a[1:]:
155
+ t=parse(f); same=serialize(t)==t["orig"]; ok&=same
156
+ print(" %-30s identical=%s (%d bytes)"%(os.path.basename(f),same,len(t["orig"])))
157
+ sys.exit(0 if ok else 1)
158
+ if a and a[0]=="--donor":
159
+ content=donor_content(a[1])
160
+ print("donor blob: %d bytes"%len(content.props[0][1]))
161
+ for f in a[2:]:
162
+ t=parse(f)
163
+ assert serialize(t)==t["orig"], "round trip failed, refusing to edit "+f
164
+ n,data=graft(f, content)
165
+ tmp=f+".tmp"
166
+ open(tmp,"wb").write(data)
167
+ os.replace(tmp, f) # replaces the name, leaves other hardlinks alone
168
+ print(" %-30s +%d Content %d -> %d bytes"%(os.path.basename(f),n,len(t["orig"]),len(data)))
169
+ sys.exit(0)
170
+ sys.exit(__doc__)
scripts/probes/fbx_fingerprint.py ADDED
@@ -0,0 +1,70 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python3
2
+ """Motion fingerprint of a binary FBX: the per-curve value ranges.
3
+
4
+ Two exports of the same motion that differ only by a trailing hold share every
5
+ curve's (min, max) pair, while genuinely different motions do not. Comparing the
6
+ whole multiset is far stricter than comparing a single peak-to-peak figure,
7
+ which can coincide by chance.
8
+ """
9
+ import os, struct, sys, zlib
10
+
11
+ SCALAR = {"Y": 2, "C": 1, "I": 4, "F": 4, "D": 8, "L": 8}
12
+ ELEM = {"f": 4, "d": 8, "l": 8, "i": 4, "b": 1}
13
+ FMT = {"f": "f", "d": "d", "l": "q", "i": "i", "b": "b"}
14
+
15
+
16
+ def probe(path, nd=3):
17
+ d = open(path, "rb").read()
18
+ if d[:21] != b"Kaydara FBX Binary \x00":
19
+ raise ValueError("not a binary FBX")
20
+ u64 = struct.unpack("<I", d[23:27])[0] >= 7500
21
+ NREC = 25 if u64 else 13
22
+ curves = []
23
+
24
+ def rd_prop(p, want):
25
+ t = chr(d[p]); s = p; p += 1
26
+ if t in SCALAR: p += SCALAR[t]; return p, None
27
+ if t in ELEM:
28
+ n, enc, clen = struct.unpack("<III", d[p:p+12]); p += 12
29
+ body = clen if enc else n * ELEM[t]
30
+ raw = d[p:p+body]; p += body
31
+ if want and n:
32
+ try:
33
+ if enc: raw = zlib.decompress(raw)
34
+ return p, struct.unpack("<%d%s" % (n, FMT[t]), raw[:n*ELEM[t]])
35
+ except Exception: return p, None
36
+ return p, None
37
+ if t in "SR":
38
+ ln = struct.unpack("<I", d[p:p+4])[0]; p += 4 + ln; return p, None
39
+ raise ValueError("bad prop %r" % t)
40
+
41
+ def rd_node(p):
42
+ if u64: end, nprop, plen = struct.unpack("<QQQ", d[p:p+24]); q = p+24
43
+ else: end, nprop, plen = struct.unpack("<III", d[p:p+12]); q = p+12
44
+ if end == 0 and nprop == 0 and plen == 0: return p + NREC
45
+ nl = d[q]; q += 1; name = d[q:q+nl]; q += nl
46
+ p = q; want = name == b"KeyValueFloat"; vals = None
47
+ for _ in range(nprop):
48
+ p, v = rd_prop(p, want)
49
+ if v is not None: vals = v
50
+ if want and vals:
51
+ curves.append((round(min(vals), nd), round(max(vals), nd), len(vals)))
52
+ while p < end:
53
+ if d[p:p+NREC] == b"\x00"*NREC: p += NREC; break
54
+ p = rd_node(p)
55
+ return end
56
+
57
+ p = 27
58
+ while p < len(d) - 160:
59
+ if d[p:p+NREC] == b"\x00"*NREC: break
60
+ p = rd_node(p)
61
+ ranges = tuple(sorted((a, b) for a, b, _ in curves)) # ignores key counts
62
+ return {"num_curves": len(curves), "ranges": ranges,
63
+ "keys": tuple(sorted(c for _, _, c in curves))}
64
+
65
+
66
+ if __name__ == "__main__":
67
+ for f in sys.argv[1:]:
68
+ r = probe(f)
69
+ print("%-30s curves=%-5d fingerprint=%s" % (
70
+ os.path.basename(f), r["num_curves"], hash(r["ranges"])))
scripts/probes/fbx_graft_mesh.py ADDED
@@ -0,0 +1,507 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python3
2
+ """Graft a mesh and its skin from a donor FBX into one that was exported without geometry.
3
+
4
+ fbx_graft_mesh.py --selftest <fbx>... byte-identical round trip
5
+ fbx_graft_mesh.py --inspect <fbx>... what geometry/skin a file holds
6
+ fbx_graft_mesh.py --donor <donor> [--bind X] <target> graft, in place
7
+
8
+ `--bind` decides whose bind pose — whose rest pose, as an importer will show it —
9
+ the repaired clip ends up with. `donor` (the default) adopts the donor's, which is
10
+ what keeps a species' clips sharing one rest pose; `self` keeps the target's own,
11
+ re-posing the grafted mesh to match; a path takes a third file's.
12
+
13
+ `KingCobra-Walk.fbx` is the one clip in this dataset with no geometry: the export
14
+ dropped `Geometry::Mesh` and `Model::Mesh` while keeping the skeleton, the
15
+ animation curves, the materials and the embedded textures. Its two `Deformer::Skin`
16
+ objects survived as orphans, and they index a 1110-vertex mesh that exists in no
17
+ file — every other KingCobra clip carries the same 2220-vertex mesh instead. The
18
+ orphan skin is therefore unrecoverable, and the fix is to bring in a sibling's
19
+ complete geometry-plus-skin package.
20
+
21
+ That is sound because the two rigs are the same skeleton: identical bone names,
22
+ identical parenting, and identical `PreRotation` on all 19 bones. The donor's
23
+ bind *posture* differs, but a skin cluster stores
24
+ `Transform = MeshGlobal_bind · inverse(TransformLink)`, which resolves a vertex
25
+ into the bone's own local frame and so cancels the posture it was bound in. The
26
+ deformation is then reconstructed from whatever world matrix the target's own
27
+ animation gives each bone, frame by frame.
28
+
29
+ What moves: `Geometry::Mesh`, `Model::Mesh`, `Deformer::Skin`, its `Cluster`s and
30
+ `Pose::BindPose`. What is deleted: the target's orphan skins and clusters. Every
31
+ copied object gets a fresh uid, and connections that point at the donor's bones,
32
+ materials or textures are re-pointed at the target's own by name — nothing about
33
+ the target's skeleton, curves or embedded pixels is touched.
34
+
35
+ Correctness gate: with no edits the serializer must reproduce its input byte for
36
+ byte (`--selftest`), the same gate `fbx_embed_texture.py` uses.
37
+
38
+ Writes through a temporary file and renames it into place. Clips here are
39
+ hardlinks of files in `Truebone_Z-OO/`, and writing to such a path writes through
40
+ to the original; `os.replace` swaps the name and leaves the source alone.
41
+ """
42
+ import collections, math, os, struct, sys, zlib
43
+
44
+ sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
45
+ from fbx_embed_texture import parse, serialize, Node, ELEM, SCALAR
46
+
47
+
48
+ # ---------------------------------------------------------------- properties
49
+
50
+ def sval(pr):
51
+ t, pay = pr
52
+ if t in "SR": return pay
53
+ return {"L": "<q", "I": "<i", "D": "<d", "F": "<f", "Y": "<h"}.get(t) and \
54
+ struct.unpack({"L": "<q", "I": "<i", "D": "<d", "F": "<f", "Y": "<h"}[t], pay)[0]
55
+
56
+ def uid_prop(uid):
57
+ return ("L", struct.pack("<q", uid))
58
+
59
+ def clean(name):
60
+ return name.decode("utf-8", "replace").split("\x00")[0]
61
+
62
+
63
+ # ---------------------------------------------------------------- tree access
64
+
65
+ def top(tree, name):
66
+ for n in tree["top"]:
67
+ if n.name == name: return n
68
+ return None
69
+
70
+ def objects(tree):
71
+ """uid -> (class, name, subtype, node)"""
72
+ o = top(tree, b"Objects"); out = {}
73
+ if not o: return out
74
+ for ch in o.children:
75
+ if len(ch.props) >= 3:
76
+ out[sval(ch.props[0])] = (ch.name, sval(ch.props[1]), sval(ch.props[2]), ch)
77
+ return out
78
+
79
+ def connections(tree):
80
+ c = top(tree, b"Connections")
81
+ return [] if not c else [tuple(sval(x) for x in ch.props) for ch in c.children]
82
+
83
+ def copy_node(n):
84
+ c = Node(n.name)
85
+ c.props = list(n.props)
86
+ c.nullrec = n.nullrec
87
+ c.children = [copy_node(x) for x in n.children]
88
+ return c
89
+
90
+
91
+ # ---------------------------------------------------------------- inspection
92
+
93
+ def inspect(path):
94
+ t = parse(path); o = objects(t)
95
+ verts = polys = 0
96
+ for uid, (cls, nm, sub, node) in o.items():
97
+ if cls == b"Geometry":
98
+ for ch in node.children:
99
+ if ch.name == b"Vertices":
100
+ length = struct.unpack("<I", ch.props[0][1][:4])[0]; verts = length // 3
101
+ if ch.name == b"PolygonVertexIndex":
102
+ polys = struct.unpack("<I", ch.props[0][1][:4])[0]
103
+ census = collections.Counter((clean(cls), clean(sub)) for cls, _, sub, _ in
104
+ ((c, n, s, x) for c, n, s, x in o.values()))
105
+ return {"verts": verts, "poly_indices": polys,
106
+ "geometry": census[("Geometry", "Mesh")],
107
+ "model_mesh": census[("Model", "Mesh")],
108
+ "limbs": census[("Model", "LimbNode")],
109
+ "skins": census[("Deformer", "Skin")],
110
+ "clusters": census[("Deformer", "Cluster")],
111
+ "bindpose": census[("Pose", "BindPose")]}
112
+
113
+
114
+ # ---------------------------------------------------------------- arrays
115
+
116
+ FMT = {"d": ("d", 8), "f": ("f", 4), "i": ("i", 4), "l": ("q", 8), "b": ("b", 1)}
117
+
118
+ def rd_array(pr):
119
+ t, pay = pr
120
+ n, enc, clen = struct.unpack("<III", pay[:12])
121
+ body = pay[12:]
122
+ if enc: body = zlib.decompress(body)
123
+ f, sz = FMT[t]
124
+ return list(struct.unpack("<%d%s" % (n, f), body[:n * sz])), enc
125
+
126
+ def wr_array(t, vals, enc=1):
127
+ """An array property: `(length, encoding, byte count)` then the payload.
128
+
129
+ The third header field must carry the payload's byte count even when the data
130
+ is stored uncompressed — readers take it as the number of bytes to consume,
131
+ not as a compressed-only field. Writing 0 there produces a file that this
132
+ module still round-trips happily and that Blender refuses to open.
133
+ """
134
+ f, sz = FMT[t]
135
+ raw = struct.pack("<%d%s" % (len(vals), f), *vals)
136
+ if enc:
137
+ raw = zlib.compress(raw)
138
+ return (t, struct.pack("<III", len(vals), 1 if enc else 0, len(raw)) + raw)
139
+
140
+
141
+ # ---------------------------------------------------------------- rebinding
142
+
143
+ def _mat(vals):
144
+ """FBX stores a 4x4 as 16 doubles with the translation last — row-vector layout."""
145
+ return [vals[i * 4:i * 4 + 4] for i in range(4)]
146
+
147
+ def _mul(a, b):
148
+ return [[sum(a[i][k] * b[k][j] for k in range(4)) for j in range(4)] for i in range(4)]
149
+
150
+ def _inv(m):
151
+ """Gauss-Jordan; these are affine but may carry scale, so invert generally."""
152
+ n = 4
153
+ a = [row[:] + [1.0 if i == j else 0.0 for j in range(n)] for i, row in enumerate(m)]
154
+ for c in range(n):
155
+ p = max(range(c, n), key=lambda r: abs(a[r][c]))
156
+ if abs(a[p][c]) < 1e-14: raise ValueError("singular matrix")
157
+ a[c], a[p] = a[p], a[c]
158
+ d = a[c][c]
159
+ a[c] = [x / d for x in a[c]]
160
+ for r in range(n):
161
+ if r == c: continue
162
+ f = a[r][c]
163
+ if f: a[r] = [x - f * y for x, y in zip(a[r], a[c])]
164
+ return [row[n:] for row in a]
165
+
166
+ def _flat(m):
167
+ return [x for row in m for x in row]
168
+
169
+
170
+ def bind_pose_of(path):
171
+ """`{bone name: TransformLink}` — where each bone stood when the mesh was bound."""
172
+ t = parse(path); o = objects(t)
173
+ kids = collections.defaultdict(list)
174
+ for con in connections(t):
175
+ if con[0] == b"OO": kids[con[2]].append(con[1])
176
+ out = {}
177
+ for u, (c, n, s, node) in o.items():
178
+ if c != b"Deformer" or s != b"Cluster": continue
179
+ bone = next((clean(o[k][1]) for k in kids[u]
180
+ if k in o and o[k][0] == b"Model"), None)
181
+ g = {ch.name: ch for ch in node.children}
182
+ if bone and b"TransformLink" in g and bone not in out:
183
+ out[bone] = _mat(rd_array(g[b"TransformLink"].props[0])[0])
184
+ return out
185
+
186
+
187
+ def rebind(tt, tl_target, log):
188
+ """Re-pose the grafted mesh into the target's own bind pose.
189
+
190
+ The mesh arrives bound in the donor's posture, and an importer that reads the
191
+ bind matrices will show the donor's rest pose rather than this clip's. The two
192
+ are different postures of the same skeleton, so the mesh can be moved between
193
+ them by the skin itself: evaluate it at the target's bind pose and rebind there.
194
+
195
+ A cluster stores `Transform = MeshGlobal_bind · inverse(TransformLink)`, so with
196
+ `K_i = Transform_i · TransformLink_target_i · inverse(MeshGlobal)` every vertex
197
+ becomes `v' = Σ w_i · v · K_i` and the cluster matrices follow. Weights here sum
198
+ to exactly 1 per vertex, so the blend is affine and needs no normalising.
199
+ """
200
+ to = objects(tt)
201
+ geo = [node for u, (c, n, s, node) in to.items() if c == b"Geometry"]
202
+ if not geo: return False
203
+ geo = geo[0]
204
+ clusters = []
205
+ kids = collections.defaultdict(list)
206
+ for con in connections(tt):
207
+ if con[0] == b"OO": kids[con[2]].append(con[1])
208
+ for u, (c, n, s, node) in to.items():
209
+ if c != b"Deformer" or s != b"Cluster": continue
210
+ bone = next((clean(to[k][1]) for k in kids[u]
211
+ if k in to and to[k][0] == b"Model"), None)
212
+ g = {ch.name: ch for ch in node.children}
213
+ if bone is None or b"TransformLink" not in g: continue
214
+ clusters.append((bone, node, g))
215
+
216
+ missing = [b for b, _, _ in clusters if b not in tl_target]
217
+ if missing:
218
+ log.append("目标自身缺 %d 根骨骼的绑定矩阵,保留供体绑定姿势" % len(missing))
219
+ return False
220
+
221
+ # MeshGlobal is Transform · TransformLink, identical for every cluster
222
+ b0, _, g0 = clusters[0]
223
+ mesh_global = _mul(_mat(rd_array(g0[b"Transform"].props[0])[0]),
224
+ _mat(rd_array(g0[b"TransformLink"].props[0])[0]))
225
+ inv_mg = _inv(mesh_global)
226
+
227
+ K = {}
228
+ for bone, node, g in clusters:
229
+ tf = _mat(rd_array(g[b"Transform"].props[0])[0])
230
+ K[bone] = _mul(_mul(tf, tl_target[bone]), inv_mg)
231
+
232
+ verts, venc = rd_array(next(ch for ch in geo.children
233
+ if ch.name == b"Vertices").props[0])
234
+ nv = len(verts) // 3
235
+ acc = [[0.0, 0.0, 0.0] for _ in range(nv)]
236
+ nacc = [[0.0, 0.0, 0.0] for _ in range(nv)]
237
+
238
+ nrm_node = None
239
+ for ch in geo.children:
240
+ if ch.name != b"LayerElementNormal": continue
241
+ mapping = next((clean(cc.props[0][1]) for cc in ch.children
242
+ if cc.name == b"MappingInformationType"), "")
243
+ if mapping == "ByVertice":
244
+ nrm_node = next((cc for cc in ch.children if cc.name == b"Normals"), None)
245
+ normals = rd_array(nrm_node.props[0])[0] if nrm_node else None
246
+
247
+ for bone, node, g in clusters:
248
+ idx = rd_array(g[b"Indexes"].props[0])[0]
249
+ wts = rd_array(g[b"Weights"].props[0])[0]
250
+ k = K[bone]
251
+ # normals are directions: rotate by the inverse transpose of the 3x3
252
+ it = _inv([row[:3] + [0.0] for row in k[:3]] + [[0.0, 0.0, 0.0, 1.0]])
253
+ nk = [[it[j][i] for j in range(3)] for i in range(3)]
254
+ for i, w in zip(idx, wts):
255
+ x, y, z = verts[3 * i], verts[3 * i + 1], verts[3 * i + 2]
256
+ for j in range(3):
257
+ acc[i][j] += w * (x * k[0][j] + y * k[1][j] + z * k[2][j] + k[3][j])
258
+ if normals:
259
+ a, b_, c_ = normals[3 * i], normals[3 * i + 1], normals[3 * i + 2]
260
+ for j in range(3):
261
+ nacc[i][j] += w * (a * nk[0][j] + b_ * nk[1][j] + c_ * nk[2][j])
262
+
263
+ moved = max(math.dist((verts[3*i], verts[3*i+1], verts[3*i+2]), acc[i])
264
+ for i in range(nv))
265
+ for ch in geo.children:
266
+ if ch.name == b"Vertices":
267
+ ch.props[0] = wr_array("d", [c for v in acc for c in v], venc)
268
+ if normals:
269
+ out = []
270
+ for v in nacc:
271
+ L = math.sqrt(sum(c * c for c in v)) or 1.0
272
+ out += [c / L for c in v]
273
+ nrm_node.props[0] = wr_array("d", out, rd_array(nrm_node.props[0])[1])
274
+
275
+ for bone, node, g in clusters:
276
+ tl = tl_target[bone]
277
+ g[b"TransformLink"].props[0] = wr_array("d", _flat(tl), 0)
278
+ g[b"Transform"].props[0] = wr_array("d", _flat(_mul(mesh_global, _inv(tl))), 0)
279
+
280
+ log.append("重绑定到本片自身的绑定姿势:%d 根骨骼,顶点最大位移 %.4f" % (len(clusters), moved))
281
+ return True
282
+
283
+
284
+ # ---------------------------------------------------------------- the graft
285
+
286
+ MOVE = {(b"Geometry", b"Mesh"), (b"Model", b"Mesh"),
287
+ (b"Deformer", b"Skin"), (b"Deformer", b"Cluster"), (b"Pose", b"BindPose")}
288
+
289
+ def graft(donor_path, target_path, dry=False, bind="donor"):
290
+ dt, tt = parse(donor_path), parse(target_path)
291
+ do, to = objects(dt), objects(tt)
292
+ tobj, tcon = top(tt, b"Objects"), top(tt, b"Connections")
293
+ log = []
294
+
295
+ # 1. drop the target's orphan skins and clusters, keeping their bind pose
296
+ # — the clusters index a mesh that no longer exists, but `TransformLink`
297
+ # records where this clip's own bones stood at bind, which the graft must
298
+ # preserve or an importer will show the donor's rest pose instead.
299
+ had_pose = any(c == b"Pose" for c, _, _, _ in to.values())
300
+ tkids = collections.defaultdict(list)
301
+ for con in connections(tt):
302
+ if con[0] == b"OO": tkids[con[2]].append(con[1])
303
+ tl_target = {}
304
+ for u, (c, n, s, node) in to.items():
305
+ if c != b"Deformer" or s != b"Cluster": continue
306
+ bone = next((clean(to[k][1]) for k in tkids[u]
307
+ if k in to and to[k][0] == b"Model"), None)
308
+ g = {ch.name: ch for ch in node.children}
309
+ if bone and b"TransformLink" in g and bone not in tl_target:
310
+ tl_target[bone] = _mat(rd_array(g[b"TransformLink"].props[0])[0])
311
+ if bind == "donor":
312
+ tl_target = {} # adopt the donor's bind pose wholesale
313
+ elif bind != "self":
314
+ tl_target = bind_pose_of(bind) # a third file's, e.g. the species' own
315
+ if tl_target:
316
+ log.append("目标绑定姿势来源 %s:%d 根骨骼" %
317
+ ("本片自身" if bind == "self" else os.path.basename(bind), len(tl_target)))
318
+ else:
319
+ log.append("采用供体的绑定姿势(与供体所属的物种基准一致)")
320
+
321
+ orphan = {u for u, (c, n, s, _) in to.items()
322
+ if c == b"Deformer" and s in (b"Skin", b"Cluster")}
323
+ if orphan:
324
+ tobj.children = [ch for ch in tobj.children
325
+ if not (len(ch.props) >= 3 and sval(ch.props[0]) in orphan)]
326
+ tcon.children = [ch for ch in tcon.children
327
+ if not ({sval(ch.props[1]), sval(ch.props[2])} & orphan)]
328
+ log.append("删除孤儿 %d 个 Deformer 及其连接" % len(orphan))
329
+
330
+ # 2. name-indexed lookup into the target, for re-pointing --------------
331
+ by_name = collections.defaultdict(dict)
332
+ for u, (c, n, s, _) in to.items():
333
+ by_name[c][clean(n)] = u
334
+
335
+ # 3. copy the donor's geometry package in, with fresh uids -------------
336
+ nxt = max(list(to) + list(do)) + 1000
337
+ remap, moved = {}, []
338
+ for u, (c, n, s, node) in sorted(do.items()):
339
+ if (c, s) in MOVE:
340
+ remap[u] = nxt; nxt += 1
341
+ moved.append((u, c, n, s, node))
342
+ for u, c, n, s, node in moved:
343
+ cp = copy_node(node)
344
+ cp.props[0] = uid_prop(remap[u])
345
+ tobj.children.append(cp)
346
+ log.append("移入 %d 个对象: %s" % (len(moved), ", ".join(
347
+ "%s::%s" % (clean(c), clean(s)) for _, c, _, s, _ in moved[:3]) + " …"))
348
+
349
+ # 4. re-point the donor's bind pose at the target's own nodes ----------
350
+ dropped_pose = 0
351
+ for u, c, n, s, node in moved:
352
+ if (c, s) != (b"Pose", b"BindPose"): continue
353
+ cp = [x for x in tobj.children if sval(x.props[0]) == remap[u]][0]
354
+ keep = []
355
+ for pn in cp.children:
356
+ if pn.name != b"PoseNode": keep.append(pn); continue
357
+ ref = next((ch for ch in pn.children if ch.name == b"Node"), None)
358
+ new = ref and translate(sval(ref.props[0]), do, remap, by_name)
359
+ if new is None: dropped_pose += 1; continue
360
+ ref.props[0] = uid_prop(new); keep.append(pn)
361
+ cp.children = keep
362
+ for ch in cp.children: # NbPoseNodes must follow
363
+ if ch.name == b"Properties70": continue
364
+ if ch.name == b"NbPoseNodes":
365
+ ch.props[0] = ("I", struct.pack("<i", sum(
366
+ 1 for x in cp.children if x.name == b"PoseNode")))
367
+
368
+ # 5. copy the donor's connections, translating both endpoints ---------
369
+ added = skipped = 0
370
+ for con in connections(dt):
371
+ kind, cu, pu = con[0], con[1], con[2]
372
+ if not ({cu, pu} & set(remap)): continue # nothing to do with the graft
373
+ a = translate(cu, do, remap, by_name)
374
+ b = translate(pu, do, remap, by_name)
375
+ if a is None or b is None: skipped += 1; continue
376
+ n = Node(b"C")
377
+ n.props = [("S", kind), uid_prop(a), uid_prop(b)]
378
+ if len(con) > 3: n.props.append(("S", con[3]))
379
+ tcon.children.append(n); added += 1
380
+ log.append("接入 %d 条连接(%d 条无对应端点已跳过,弃用 PoseNode %d 个)"
381
+ % (added, skipped, dropped_pose))
382
+
383
+ # 6. put the mesh back into this clip's own bind pose
384
+ if tl_target:
385
+ rebind(tt, tl_target, log)
386
+ if not had_pose and tl_target:
387
+ # the donor's BindPose records the donor's posture; once the mesh has been
388
+ # moved somewhere else it is wrong, and this clip shipped without one anyway
389
+ gone = {u for u, (c, n, s, _) in objects(tt).items() if c == b"Pose"}
390
+ if gone:
391
+ tobj.children = [ch for ch in tobj.children
392
+ if not (len(ch.props) >= 3 and sval(ch.props[0]) in gone)]
393
+ tcon.children = [ch for ch in tcon.children
394
+ if not ({sval(ch.props[1]), sval(ch.props[2])} & gone)]
395
+ log.append("丢弃供体 BindPose %d 个(本片原本没有,且它记的是供体姿势)" % len(gone))
396
+
397
+ # 7. collapse the LayeredTexture indirection so importers find the pixels
398
+ n_add, n_lay = collapse_layered(tt)
399
+ if n_lay:
400
+ log.append("压平 %d 个 LayeredTexture,改为 %d 条 Texture→Material 直连" % (n_lay, n_add))
401
+
402
+ # 8. keep Definitions counts honest -----------------------------------
403
+ defs = top(tt, b"Definitions")
404
+ if defs:
405
+ want = collections.Counter()
406
+ for u, (c, n, s, _) in objects(tt).items(): want[c] += 1
407
+ for ch in defs.children:
408
+ if ch.name != b"ObjectType": continue
409
+ k = sval(ch.props[0])
410
+ if k in want:
411
+ for cc in ch.children:
412
+ if cc.name == b"Count":
413
+ cc.props[0] = ("I", struct.pack("<i", want[k]))
414
+ for ch in defs.children:
415
+ if ch.name == b"Count":
416
+ ch.props[0] = ("I", struct.pack("<i", sum(want.values())))
417
+
418
+ if dry: return log, None
419
+ data = serialize(tt)
420
+ tmp = target_path + ".tmp"
421
+ with open(tmp, "wb") as fh: fh.write(data)
422
+ os.replace(tmp, target_path) # replaces the name; other hardlinks survive
423
+ return log, len(data)
424
+
425
+
426
+ def collapse_layered(tt):
427
+ """Rewire `Texture -> Material` directly, dropping the `LayeredTexture` level.
428
+
429
+ This clip routes its textures `Video -> Texture -> LayeredTexture -> Material`.
430
+ That is legal FBX, but importers that only look for a texture connected straight
431
+ to a material property see an untextured mesh — the pixels load and go unused.
432
+ It is the only file in the dataset wired this way; the other 1,096 connect
433
+ `Texture -> Material` directly, which is what this reproduces.
434
+ """
435
+ to, tcon, tobj = objects(tt), top(tt, b"Connections"), top(tt, b"Objects")
436
+ layered = {u for u, (c, n, s, _) in to.items() if c == b"LayeredTexture"}
437
+ if not layered: return 0, 0
438
+ feed = {} # LayeredTexture uid -> Texture uid
439
+ for con in connections(tt):
440
+ if con[0] == b"OO" and con[2] in layered and to.get(con[1], (b"",))[0] == b"Texture":
441
+ feed[con[2]] = con[1]
442
+ kept, added = [], 0
443
+ for ch in tcon.children:
444
+ p = [sval(x) for x in ch.props]
445
+ if not ({p[1], p[2]} & layered):
446
+ kept.append(ch); continue
447
+ if p[1] in layered and len(p) > 3 and to.get(p[2], (b"",))[0] == b"Material" \
448
+ and p[1] in feed:
449
+ n = Node(b"C")
450
+ n.props = [("S", p[0]), uid_prop(feed[p[1]]), uid_prop(p[2]), ("S", p[3])]
451
+ kept.append(n); added += 1
452
+ tcon.children = kept
453
+ tobj.children = [ch for ch in tobj.children
454
+ if not (len(ch.props) >= 3 and sval(ch.props[0]) in layered)]
455
+ return added, len(layered)
456
+
457
+
458
+ def translate(uid, do, remap, by_name):
459
+ """A donor uid, as it should be referred to inside the target."""
460
+ if uid == 0: return 0 # scene root
461
+ if uid in remap: return remap[uid] # object we just moved
462
+ ent = do.get(uid)
463
+ if not ent: return None
464
+ cls, nm, sub, _ = ent
465
+ return by_name.get(cls, {}).get(clean(nm)) # the target's own by name
466
+
467
+
468
+ # ---------------------------------------------------------------- cli
469
+
470
+ def main(argv):
471
+ if not argv or argv[0] not in ("--selftest", "--donor", "--inspect"):
472
+ print(__doc__); return 2
473
+ mode, rest = argv[0], argv[1:]
474
+
475
+ if mode == "--selftest":
476
+ bad = 0
477
+ for p in rest:
478
+ same = serialize(parse(p)) == open(p, "rb").read()
479
+ print("%-6s %s" % ("ok" if same else "DIFF", p)); bad += not same
480
+ return 1 if bad else 0
481
+
482
+ if mode == "--inspect":
483
+ for p in rest:
484
+ i = inspect(p)
485
+ print("%-34s verts %-6d idx %-6d geom %d meshnode %d limbs %-3d skin %d cluster %-3d bindpose %d"
486
+ % (os.path.basename(p), i["verts"], i["poly_indices"], i["geometry"],
487
+ i["model_mesh"], i["limbs"], i["skins"], i["clusters"], i["bindpose"]))
488
+ return 0
489
+
490
+ bind = "donor"
491
+ if "--bind" in rest:
492
+ i = rest.index("--bind"); bind = rest[i + 1]; rest = rest[:i] + rest[i + 2:]
493
+ donor, targets = rest[0], rest[1:]
494
+ for t in targets:
495
+ for p in (donor, t):
496
+ if serialize(parse(p)) != open(p, "rb").read():
497
+ print("拒绝执行:%s 无法字节级往返" % p); return 1
498
+ before = os.path.getsize(t)
499
+ log, size = graft(donor, t, bind=bind)
500
+ print("%s ← %s" % (t, donor))
501
+ for line in log: print(" " + line)
502
+ print(" %d → %d 字节" % (before, size))
503
+ return 0
504
+
505
+
506
+ if __name__ == "__main__":
507
+ sys.exit(main(sys.argv[1:]))
scripts/probes/fbx_motion.py ADDED
@@ -0,0 +1,89 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python3
2
+ """Decide whether a binary FBX actually contains motion.
3
+
4
+ Keyframe *count* says nothing: a clip can carry 91 keys that all hold the same
5
+ value. This decodes the `KeyValueFloat` arrays of every animation curve (FBX
6
+ stores them zlib-compressed) and reports the largest peak-to-peak range found.
7
+ A file whose every curve is flat is static.
8
+ """
9
+ import os, struct, sys, zlib
10
+
11
+ SCALAR = {"Y": 2, "C": 1, "I": 4, "F": 4, "D": 8, "L": 8}
12
+ ELEM = {"f": 4, "d": 8, "l": 8, "i": 4, "b": 1}
13
+ FMT = {"f": "f", "d": "d", "l": "q", "i": "i", "b": "b"}
14
+
15
+
16
+ def probe(path, eps=1e-6):
17
+ d = open(path, "rb").read()
18
+ if d[:21] != b"Kaydara FBX Binary \x00":
19
+ raise ValueError("not a binary FBX")
20
+ version = struct.unpack("<I", d[23:27])[0]
21
+ u64 = version >= 7500
22
+ NREC = 25 if u64 else 13
23
+ curves = [] # (name, peak-to-peak range, n)
24
+
25
+ def rd_prop(p, want_values):
26
+ t = chr(d[p]); s = p; p += 1
27
+ if t in SCALAR:
28
+ p += SCALAR[t]; return p, (t, d[s + 1:p])
29
+ if t in ELEM:
30
+ n, enc, clen = struct.unpack("<III", d[p:p + 12]); p += 12
31
+ body = clen if enc else n * ELEM[t]
32
+ raw = d[p:p + body]; p += body
33
+ vals = None
34
+ if want_values and n:
35
+ try:
36
+ if enc: raw = zlib.decompress(raw)
37
+ vals = struct.unpack("<%d%s" % (n, FMT[t]), raw[:n * ELEM[t]])
38
+ except Exception:
39
+ vals = None
40
+ return p, (t, vals, n)
41
+ if t in "SR":
42
+ ln = struct.unpack("<I", d[p:p + 4])[0]; p += 4
43
+ v = d[p:p + ln]; p += ln
44
+ return p, (t, v)
45
+ raise ValueError("bad prop %r" % t)
46
+
47
+ def rd_node(p):
48
+ if u64: end, nprop, plen = struct.unpack("<QQQ", d[p:p + 24]); q = p + 24
49
+ else: end, nprop, plen = struct.unpack("<III", d[p:p + 12]); q = p + 12
50
+ if end == 0 and nprop == 0 and plen == 0:
51
+ return p + NREC
52
+ nl = d[q]; q += 1; name = d[q:q + nl]; q += nl
53
+ p = q
54
+ want = name == b"KeyValueFloat"
55
+ props = []
56
+ for _ in range(nprop):
57
+ p, pr = rd_prop(p, want); props.append(pr)
58
+ if want and props and len(props[0]) == 3 and props[0][1]:
59
+ v = props[0][1]
60
+ curves.append((max(v) - min(v), len(v)))
61
+ while p < end:
62
+ if d[p:p + NREC] == b"\x00" * NREC: p += NREC; break
63
+ p = rd_node(p)
64
+ return end
65
+
66
+ p = 27
67
+ while p < len(d) - 160:
68
+ if d[p:p + NREC] == b"\x00" * NREC: break
69
+ p = rd_node(p)
70
+
71
+ ranges = [r for r, _ in curves]
72
+ return {
73
+ "num_curves": len(curves),
74
+ "max_range": max(ranges) if ranges else 0.0,
75
+ "moving_curves": sum(1 for r in ranges if r > eps),
76
+ "static": bool(ranges) and max(ranges) <= eps,
77
+ "no_curves": not ranges,
78
+ }
79
+
80
+
81
+ if __name__ == "__main__":
82
+ for f in sys.argv[1:]:
83
+ try:
84
+ r = probe(f)
85
+ print("%-40s curves=%-5d moving=%-5d max_range=%-12.6g %s" % (
86
+ os.path.basename(f), r["num_curves"], r["moving_curves"],
87
+ r["max_range"], "STATIC" if r["static"] else ("NO_CURVES" if r["no_curves"] else "")))
88
+ except Exception as e:
89
+ print("%-40s ERROR %s" % (os.path.basename(f), str(e)[:50]))
scripts/probes/fbx_probe.py ADDED
@@ -0,0 +1,158 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python3
2
+ """Read a binary FBX (Kaydara 7.x): skeleton, animation length and root joint.
3
+
4
+ Walks the node tree, collecting LimbNode/Root models as joints and the longest
5
+ KeyTime track as the timeline, then reads the `Connections` block to find which
6
+ joint sits at the top of the hierarchy. Frame rate is measured from the key
7
+ times themselves rather than assumed. Self-contained; no external deps.
8
+ """
9
+ import os, struct, sys, zlib
10
+
11
+ SCALAR = {"Y": 2, "C": 1, "I": 4, "F": 4, "D": 8, "L": 8}
12
+ ELEM = {"f": 4, "d": 8, "l": 8, "i": 4, "b": 1}
13
+ FBX_KTIME = 46186158000 # ktime units per second
14
+
15
+
16
+ def _parse(path):
17
+ d = open(path, "rb").read()
18
+ if d[:21] != b"Kaydara FBX Binary \x00":
19
+ raise ValueError("not a binary FBX")
20
+ version = struct.unpack("<I", d[23:27])[0]
21
+ u64 = version >= 7500
22
+ NREC = 25 if u64 else 13
23
+ joints, keytimes = [], [] # joints: (uid, name); keytimes: (n, type, slice)
24
+ models, links = {}, [] # every Model uid -> name; child -> parent edges
25
+ animated = [] # object-property edges: curve node -> the model it drives
26
+
27
+ def rd_prop(p):
28
+ t = chr(d[p]); s = p; p += 1
29
+ if t in SCALAR:
30
+ p += SCALAR[t]; return p, (t, d[s + 1:p])
31
+ if t in ELEM:
32
+ length, enc, clen = struct.unpack("<III", d[p:p + 12]); p += 12
33
+ body = clen if enc else length * ELEM[t]
34
+ start = p; p += body
35
+ return p, (t, b"", length, (start, body, enc))
36
+ if t in "SR":
37
+ ln = struct.unpack("<I", d[p:p + 4])[0]; p += 4
38
+ val = d[p:p + ln]; p += ln
39
+ return p, (t, val)
40
+ raise ValueError("bad prop %r" % t)
41
+
42
+ def rd_node(p):
43
+ if u64: end, nprop, plen = struct.unpack("<QQQ", d[p:p + 24]); q = p + 24
44
+ else: end, nprop, plen = struct.unpack("<III", d[p:p + 12]); q = p + 12
45
+ if end == 0 and nprop == 0 and plen == 0:
46
+ return p + NREC
47
+ nl = d[q]; q += 1; name = d[q:q + nl]; q += nl
48
+ p = q; props = []
49
+ for _ in range(nprop):
50
+ p, pr = rd_prop(p); props.append(pr)
51
+ if name == b"Model" and len(props) >= 3:
52
+ uid = struct.unpack("<q", props[0][1])[0] if props[0][0] == "L" else 0
53
+ nm = props[1][1].split(b"\x00\x01")[0].decode("utf-8", "replace")
54
+ models[uid] = nm
55
+ if props[2][1] in (b"LimbNode", b"Root"):
56
+ joints.append((uid, nm))
57
+ elif name == b"KeyTime" and props and len(props[0]) == 4:
58
+ keytimes.append((props[0][2], props[0][0], props[0][3]))
59
+ elif name == b"C" and len(props) >= 3 and props[0][1] in (b"OO", b"OP"):
60
+ try:
61
+ a = struct.unpack("<q", props[1][1])[0]
62
+ b = struct.unpack("<q", props[2][1])[0]
63
+ except (struct.error, TypeError):
64
+ return end
65
+ (links if props[0][1] == b"OO" else animated).append((a, b))
66
+ while p < end:
67
+ if d[p:p + NREC] == b"\x00" * NREC: p += NREC; break
68
+ p = rd_node(p)
69
+ return end
70
+
71
+ p = 27
72
+ while p < len(d) - 160:
73
+ if d[p:p + NREC] == b"\x00" * NREC: break
74
+ p = rd_node(p)
75
+ return d, version, joints, keytimes, links, animated
76
+
77
+
78
+ ELEM_FMT = {"f": "f", "d": "d", "l": "q", "i": "i", "b": "b"}
79
+
80
+
81
+ def _timeline(d, keytimes):
82
+ """Frames and frame rate, read off the longest key-time track.
83
+
84
+ The track is decoded rather than counted so the spacing is measured: every
85
+ clip in this library keys on a strict 1/30 s grid, and a clip that did not
86
+ would report its own rate instead of inheriting an assumed one.
87
+ """
88
+ if not keytimes:
89
+ return 0, 0.0
90
+ n, t, (start, body, enc) = max(keytimes, key=lambda k: k[0])
91
+ raw = d[start:start + body]
92
+ try:
93
+ if enc:
94
+ raw = zlib.decompress(raw)
95
+ vals = struct.unpack("<%d%s" % (n, ELEM_FMT[t]), raw[:n * ELEM[t]])
96
+ except Exception:
97
+ return n, 0.0
98
+ steps = sorted({vals[i + 1] - vals[i] for i in range(len(vals) - 1)})
99
+ step = steps[0] if steps else 0
100
+ return n, round(FBX_KTIME / step, 3) if step else 0.0
101
+
102
+
103
+ def probe(path):
104
+ d, version, joints, keytimes, links, animated = _parse(path)
105
+ frames, fps = _timeline(d, keytimes)
106
+ # The exporter types every node in the hierarchy as a `LimbNode`, mesh and
107
+ # null containers included, so the topmost one is often `Null` or `U3DMesh 1`
108
+ # rather than a bone. The root reported is instead the highest joint that
109
+ # actually carries animation — the node a retargeter would drive — with the
110
+ # largest subtree breaking ties. `joint_names` carries the full list.
111
+ ids = {uid for uid, _ in joints}
112
+ parent, children = {}, {}
113
+ for child, par in links:
114
+ if child in ids and child not in parent:
115
+ parent[child] = par
116
+ children.setdefault(par, []).append(child)
117
+
118
+ def subtree(uid, seen=None):
119
+ seen = seen or set()
120
+ if uid in seen:
121
+ return 0
122
+ seen.add(uid)
123
+ return 1 + sum(subtree(c, seen) for c in children.get(uid, ()))
124
+
125
+ def depth(uid, seen=None):
126
+ seen = seen or set()
127
+ d = 0
128
+ while uid in parent and uid not in seen:
129
+ seen.add(uid); uid = parent[uid]; d += 1
130
+ return d
131
+
132
+ driven = {par for _, par in animated} & ids
133
+ pool = driven or ids
134
+ roots = sorted(((uid, nm) for uid, nm in joints if uid in pool),
135
+ key=lambda t: (depth(t[0]), -subtree(t[0])))
136
+ names = [nm for _, nm in joints]
137
+ return {
138
+ "fbx_version": version,
139
+ "num_joints": len(set(names)),
140
+ "keyframes": frames,
141
+ "fps": fps,
142
+ "duration_sec": round((frames - 1) / fps, 4) if fps and frames > 1 else 0.0,
143
+ "root_joint": roots[0][1] if roots else "",
144
+ "num_animated": len(driven),
145
+ "joints": sorted(set(names)),
146
+ "joint_names": "|".join(sorted(set(names)))[:400],
147
+ }
148
+
149
+
150
+ if __name__ == "__main__":
151
+ for p in sys.argv[1:]:
152
+ try:
153
+ r = probe(p)
154
+ print("%-34s ver=%s joints=%-4d keys=%-5d %-5s fps %.2fs root=%s" % (
155
+ os.path.basename(p), r["fbx_version"], r["num_joints"],
156
+ r["keyframes"], r["fps"], r["duration_sec"], r["root_joint"]))
157
+ except Exception as e:
158
+ print("%-34s ERROR %s" % (os.path.basename(p), str(e)[:60]))
scripts/probes/fbx_rig.py ADDED
@@ -0,0 +1,74 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python3
2
+ """Rig fingerprint of a binary FBX: joint names plus their rest offsets.
3
+
4
+ Joint count alone cannot tell two skeletons apart — two rigs can share a count
5
+ and still differ in proportions. Each joint's `Lcl Translation` is its offset
6
+ from its parent, i.e. the bone vector, so the (name, offset) set pins down both
7
+ topology and bone lengths.
8
+ """
9
+ import math, os, struct, sys
10
+
11
+ SCALAR = {"Y": 2, "C": 1, "I": 4, "F": 4, "D": 8, "L": 8}
12
+ ELEM = {"f": 4, "d": 8, "l": 8, "i": 4, "b": 1}
13
+
14
+
15
+ def probe(path, nd=3):
16
+ d = open(path, "rb").read()
17
+ if d[:21] != b"Kaydara FBX Binary \x00":
18
+ raise ValueError("not a binary FBX")
19
+ version = struct.unpack("<I", d[23:27])[0]
20
+ u64 = version >= 7500
21
+ NREC = 25 if u64 else 13
22
+ bones = {}
23
+
24
+ def rd_prop(p):
25
+ t = chr(d[p]); s = p; p += 1
26
+ if t in SCALAR:
27
+ p += SCALAR[t]; return p, (t, d[s + 1:p])
28
+ if t in ELEM:
29
+ n, enc, clen = struct.unpack("<III", d[p:p + 12]); p += 12
30
+ p += clen if enc else n * ELEM[t]
31
+ return p, (t, None)
32
+ if t in "SR":
33
+ ln = struct.unpack("<I", d[p:p + 4])[0]; p += 4
34
+ v = d[p:p + ln]; p += ln
35
+ return p, (t, v)
36
+ raise ValueError("bad prop %r" % t)
37
+
38
+ def rd_node(p, cur=None):
39
+ if u64: end, nprop, plen = struct.unpack("<QQQ", d[p:p + 24]); q = p + 24
40
+ else: end, nprop, plen = struct.unpack("<III", d[p:p + 12]); q = p + 12
41
+ if end == 0 and nprop == 0 and plen == 0:
42
+ return p + NREC
43
+ nl = d[q]; q += 1; name = d[q:q + nl]; q += nl
44
+ p = q; props = []
45
+ for _ in range(nprop):
46
+ p, pr = rd_prop(p); props.append(pr)
47
+ mine = cur
48
+ if name == b"Model" and len(props) >= 3 and props[2][1] in (b"LimbNode", b"Root"):
49
+ mine = props[1][1].split(b"\x00\x01")[0].decode("utf-8", "replace")
50
+ bones.setdefault(mine, (0.0, 0.0, 0.0))
51
+ elif name == b"P" and cur is not None and props and props[0][1] == b"Lcl Translation":
52
+ vals = [struct.unpack("<d", v)[0] for t, v in props if t == "D" and v and len(v) == 8]
53
+ if len(vals) >= 3:
54
+ bones[cur] = tuple(vals[-3:])
55
+ while p < end:
56
+ if d[p:p + NREC] == b"\x00" * NREC: p += NREC; break
57
+ p = rd_node(p, mine)
58
+ return end
59
+
60
+ p = 27
61
+ while p < len(d) - 160:
62
+ if d[p:p + NREC] == b"\x00" * NREC: break
63
+ p = rd_node(p)
64
+ sig = tuple(sorted((n, round(x, nd), round(y, nd), round(z, nd))
65
+ for n, (x, y, z) in bones.items()))
66
+ total = sum(math.sqrt(x * x + y * y + z * z) for _, (x, y, z) in bones.items())
67
+ return {"num_joints": len(bones), "signature": sig, "bone_length_sum": round(total, 3)}
68
+
69
+
70
+ if __name__ == "__main__":
71
+ for f in sys.argv[1:]:
72
+ r = probe(f)
73
+ print("%-34s joints=%-4d bone_len_sum=%-12.3f" % (
74
+ os.path.basename(f), r["num_joints"], r["bone_length_sum"]))
scripts/probes/fbx_stacks.py ADDED
@@ -0,0 +1,86 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """Per-take motion: which `AnimationStack` in an FBX actually carries animation.
2
+
3
+ `fbx_takes.py` counts the stacks; this says which of them hold anything. The two
4
+ disagree on four files in this library, where a C4D export left an empty second
5
+ stack named `Take 001` beside the real motion — no layers with curves under it,
6
+ nothing to play. Counting stacks calls those files two-take; following the
7
+ connections shows they hold one action and one empty shell.
8
+
9
+ Walks `Connections` from each stack down through its layers and curve nodes to
10
+ the curves themselves, then reports how many of those curves move.
11
+ """
12
+ import struct, sys, zlib, collections
13
+ SCALAR={"Y":2,"C":1,"I":4,"F":4,"D":8,"L":8}; ELEM={"f":4,"d":8,"l":8,"i":4,"b":1}
14
+ FMT={"f":"f","d":"d","l":"q","i":"i","b":"b"}
15
+
16
+ def analyse(path):
17
+ d=open(path,"rb").read(); u64=struct.unpack("<I",d[23:27])[0]>=7500; N=25 if u64 else 13
18
+ obj={}; conn=[]; curve_vals={}
19
+ def rp(p,want):
20
+ t=chr(d[p]); s=p; p+=1
21
+ if t in SCALAR: p+=SCALAR[t]; return p,(t,d[s+1:p])
22
+ if t in ELEM:
23
+ n,enc,cl=struct.unpack("<III",d[p:p+12]); p+=12
24
+ body=cl if enc else n*ELEM[t]; raw=d[p:p+body]; p+=body
25
+ if want and n:
26
+ try:
27
+ if enc: raw=zlib.decompress(raw)
28
+ return p,(t,struct.unpack("<%d%s"%(n,FMT[t]),raw[:n*ELEM[t]]))
29
+ except Exception: return p,(t,None)
30
+ return p,(t,None)
31
+ if t in "SR":
32
+ ln=struct.unpack("<I",d[p:p+4])[0]; p+=4; v=d[p:p+ln]; p+=ln; return p,(t,v)
33
+ raise ValueError(t)
34
+ def rn(p,owner=None):
35
+ if u64: e,np_,pl=struct.unpack("<QQQ",d[p:p+24]); q=p+24
36
+ else: e,np_,pl=struct.unpack("<III",d[p:p+12]); q=p+12
37
+ if e==0 and np_==0 and pl==0: return p+N
38
+ nl=d[q]; q+=1; nm=d[q:q+nl]; q+=nl; p=q
39
+ want = nm==b"KeyValueFloat"; props=[]
40
+ for _ in range(np_):
41
+ p,x=rp(p,want); props.append(x)
42
+ mine=owner
43
+ if nm in (b"AnimationStack",b"AnimationLayer",b"AnimationCurveNode",b"AnimationCurve") and len(props)>=2:
44
+ uid=struct.unpack("<q",props[0][1])[0]
45
+ obj[uid]=(nm.decode(), props[1][1].split(b"\x00\x01")[0].decode("utf8","replace"))
46
+ mine=uid
47
+ elif nm==b"C" and len(props)>=3:
48
+ try: conn.append((props[0][1], struct.unpack("<q",props[1][1])[0], struct.unpack("<q",props[2][1])[0]))
49
+ except Exception: pass
50
+ elif want and props and props[0][1]:
51
+ v=props[0][1]
52
+ if owner is not None: curve_vals[owner]=max(v)-min(v)
53
+ while p<e:
54
+ if d[p:p+N]==b"\x00"*N: p+=N; break
55
+ p=rn(p,mine)
56
+ return e
57
+ p=27
58
+ while p<len(d)-160:
59
+ if d[p:p+N]==b"\x00"*N: break
60
+ p=rn(p)
61
+ kids=collections.defaultdict(list)
62
+ for kind,child,parent in conn: kids[parent].append(child)
63
+ out=[]
64
+ for uid,(t,name) in obj.items():
65
+ if t!="AnimationStack": continue
66
+ curves=[]
67
+ for lay in [c for c in kids[uid] if obj.get(c,("",""))[0]=="AnimationLayer"]:
68
+ for cn in [c for c in kids[lay] if obj.get(c,("",""))[0]=="AnimationCurveNode"]:
69
+ for cv in [c for c in kids[cn] if obj.get(c,("",""))[0]=="AnimationCurve"]:
70
+ if cv in curve_vals: curves.append(curve_vals[cv])
71
+ moving=[r for r in curves if r>1e-6]
72
+ out.append((name, len(curves), len(moving), max(curves) if curves else 0.0))
73
+ return out
74
+
75
+ def takes_with_motion(path):
76
+ """How many of the file's stacks actually carry a curve."""
77
+ return sum(1 for _, ncurves, _, _ in analyse(path) if ncurves)
78
+
79
+
80
+ if __name__=="__main__":
81
+ import os
82
+ for f in sys.argv[1:]:
83
+ print(os.path.basename(f))
84
+ for name,n,mv,mx in analyse(f):
85
+ print(" take %-24s curves=%-4d moving=%-4d max_range=%.4f%s"
86
+ %(name,n,mv,mx," <- empty" if not n else ""))
scripts/probes/fbx_strip_variant.py ADDED
@@ -0,0 +1,276 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python3
2
+ """Keep one colourway of a mesh that ships several stacked on top of each other.
3
+
4
+ fbx_strip_variant.py --list <fbx>... what variants a file carries
5
+ fbx_strip_variant.py --keep A01 <fbx>... drop every other one, in place
6
+
7
+ `KingCobra` is the one model in this library whose mesh is two co-located copies of
8
+ the same surface, one per material — the game asset shipped two colourways of the
9
+ same mob, and the export merged both variant meshes into a single object instead of
10
+ keeping them separable. Every vertex of one copy sits within 0.0002 of a vertex of
11
+ the other, their normals agree to 1.0000, and they share a UV layout, so the two
12
+ surfaces coincide exactly: a renderer has to pick one, and which one it picks is
13
+ draw order. That is z-fighting, and it is why the same species renders brown from
14
+ one batch of clips and dark red from the other.
15
+
16
+ Keeping one variant removes the coincident surfaces and halves the mesh. The
17
+ material to keep is named, not indexed, because the two export batches connect the
18
+ same two materials to the mesh in opposite orders — `A01` is material 1 in the
19
+ `Cobra-*` files and material 0 in `run`/`walk fast`.
20
+
21
+ Polygons of the other material are dropped, the surviving vertices are renumbered,
22
+ and every array that indexes them follows: normals and vertex colours (per vertex),
23
+ UV indices (per polygon vertex), the material array (per polygon) and each skin
24
+ cluster's indices and weights. The materials, textures and embedded images that
25
+ nothing references any more are removed with them. Nothing touches the skeleton,
26
+ the curves or the bind matrices.
27
+
28
+ Correctness gate: with no edits the serializer must reproduce its input byte for
29
+ byte, and the kept vertices must still carry weights summing to 1. Writes through a
30
+ temporary file and renames it into place, so a hardlinked source keeps its bytes.
31
+ """
32
+ import collections, os, struct, sys
33
+
34
+ sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
35
+ from fbx_graft_mesh import (parse, serialize, Node, objects, connections, clean,
36
+ sval, top, rd_array, wr_array, uid_prop)
37
+
38
+
39
+ def geometry_of(tree):
40
+ for u, (c, n, s, node) in objects(tree).items():
41
+ if c == b"Geometry": return node
42
+ return None
43
+
44
+
45
+ def material_order(tree):
46
+ """Material names in the order they connect to the mesh — the index the
47
+ per-polygon material array refers to."""
48
+ o = objects(tree)
49
+ mesh = {u for u, (c, n, s, _) in o.items() if c == b"Model" and s == b"Mesh"}
50
+ out = []
51
+ for con in connections(tree):
52
+ if con[0] == b"OO" and con[2] in mesh and con[1] in o and o[con[1]][0] == b"Material":
53
+ out.append((clean(o[con[1]][1]), con[1]))
54
+ return out
55
+
56
+
57
+ def layer_field(node, name):
58
+ return next((ch for ch in node.children if ch.name == name), None)
59
+
60
+
61
+ def variants(path):
62
+ t = parse(path)
63
+ geo = geometry_of(t)
64
+ if geo is None: return None
65
+ order = material_order(t)
66
+ V = rd_array(layer_field(geo, b"Vertices").props[0])[0]
67
+ pvi = rd_array(layer_field(geo, b"PolygonVertexIndex").props[0])[0]
68
+ lem = layer_field(geo, b"LayerElementMaterial")
69
+ mats = rd_array(layer_field(lem, b"Materials").props[0])[0] if lem else [0]
70
+ polys, cur = [], []
71
+ for i in pvi:
72
+ cur.append(-i - 1 if i < 0 else i)
73
+ if i < 0: polys.append(cur); cur = []
74
+ grp = collections.defaultdict(set)
75
+ for p, m in zip(polys, mats if len(mats) == len(polys) else [0] * len(polys)):
76
+ grp[m].update(p)
77
+ return {"verts": len(V) // 3, "polys": len(polys), "materials": order,
78
+ "groups": {m: len(v) for m, v in grp.items()}}
79
+
80
+
81
+ def strip(path, keep_sub, dry=False):
82
+ t = parse(path)
83
+ geo = geometry_of(t)
84
+ if geo is None: raise ValueError("no geometry")
85
+ order = material_order(t)
86
+ hit = [i for i, (nm, _) in enumerate(order) if keep_sub in nm]
87
+ if len(hit) != 1:
88
+ raise ValueError("%r matches %d materials: %s" %
89
+ (keep_sub, len(hit), [n for n, _ in order]))
90
+ keep_i = hit[0]
91
+ keep_uid = order[keep_i][1]
92
+ log = ["保留材质 %s(索引 %d)" % (order[keep_i][0], keep_i)]
93
+
94
+ V, venc = rd_array(layer_field(geo, b"Vertices").props[0])
95
+ pvi_node = layer_field(geo, b"PolygonVertexIndex")
96
+ pvi, pienc = rd_array(pvi_node.props[0])
97
+ lem = layer_field(geo, b"LayerElementMaterial")
98
+ mats, menc = rd_array(layer_field(lem, b"Materials").props[0])
99
+
100
+ polys, pvpos, cur, cpos = [], [], [], []
101
+ for k, i in enumerate(pvi):
102
+ cur.append(-i - 1 if i < 0 else i); cpos.append(k)
103
+ if i < 0: polys.append(cur); pvpos.append(cpos); cur, cpos = [], []
104
+ if len(mats) != len(polys): raise ValueError("material array is not per polygon")
105
+
106
+ keep_poly = [k for k, m in enumerate(mats) if m == keep_i]
107
+ if not keep_poly: raise ValueError("that material covers no polygon")
108
+ kv = sorted({v for k in keep_poly for v in polys[k]})
109
+ vmap = {v: i for i, v in enumerate(kv)}
110
+ keep_pv = [p for k in keep_poly for p in pvpos[k]]
111
+ log.append("多边形 %d → %d,顶点 %d → %d" % (len(polys), len(keep_poly), len(V) // 3, len(kv)))
112
+
113
+ new_pvi = []
114
+ for k in keep_poly:
115
+ idx = [vmap[v] for v in polys[k]]
116
+ new_pvi += idx[:-1] + [-idx[-1] - 1]
117
+ layer_field(geo, b"Vertices").props[0] = wr_array(
118
+ "d", [V[3 * v + j] for v in kv for j in range(3)], venc)
119
+ pvi_node.props[0] = wr_array("i", new_pvi, pienc)
120
+ layer_field(lem, b"Materials").props[0] = wr_array("i", [0] * len(keep_poly), menc)
121
+
122
+ # every other layer element, by how it is mapped
123
+ for ch in geo.children:
124
+ if not ch.name.startswith(b"LayerElement") or ch.name == b"LayerElementMaterial":
125
+ continue
126
+ mapping = next((clean(cc.props[0][1]) for cc in ch.children
127
+ if cc.name == b"MappingInformationType"), "")
128
+ for cc in ch.children:
129
+ if not (cc.props and cc.props[0][0] in "dfil"): continue
130
+ if cc.name.endswith(b"Index"):
131
+ if mapping == "ByPolygonVertex":
132
+ a, e = rd_array(cc.props[0])
133
+ cc.props[0] = wr_array("i", [a[p] for p in keep_pv], e)
134
+ continue
135
+ a, e = rd_array(cc.props[0])
136
+ if mapping == "ByVertice":
137
+ w = len(a) // (len(V) // 3)
138
+ cc.props[0] = wr_array(cc.props[0][0],
139
+ [a[w * v + j] for v in kv for j in range(w)], e)
140
+ elif mapping == "ByPolygonVertex" and len(a) == len(pvi):
141
+ cc.props[0] = wr_array(cc.props[0][0], [a[p] for p in keep_pv], e)
142
+
143
+ # skin clusters follow the surviving vertices
144
+ o = objects(t)
145
+ dropped = 0
146
+ for u, (c, n, s, node) in o.items():
147
+ if c != b"Deformer" or s != b"Cluster": continue
148
+ gi = layer_field(node, b"Indexes"); gw = layer_field(node, b"Weights")
149
+ if not gi: continue
150
+ idx, ie = rd_array(gi.props[0]); wt, we = rd_array(gw.props[0])
151
+ pair = [(vmap[i], w) for i, w in zip(idx, wt) if i in vmap]
152
+ dropped += len(idx) - len(pair)
153
+ gi.props[0] = wr_array("i", [p[0] for p in pair], ie)
154
+ gw.props[0] = wr_array("d", [p[1] for p in pair], we)
155
+ log.append("蒙皮索引丢弃 %d 条(属于被剥离的那套)" % dropped)
156
+
157
+ # drop the materials nothing uses now, then the textures and images they held
158
+ tobj, tcon = top(t, b"Objects"), top(t, b"Connections")
159
+ before_n = len(objects(t))
160
+ dead = {uid for nm, uid in order if uid != keep_uid}
161
+ tcon.children = [ch for ch in tcon.children
162
+ if not ({sval(ch.props[1]), sval(ch.props[2])} & dead)]
163
+ tobj.children = [ch for ch in tobj.children
164
+ if not (len(ch.props) >= 3 and sval(ch.props[0]) in dead)]
165
+
166
+ # A texture is alive only if a surviving material still reaches it. These files
167
+ # also connect every texture straight to the mesh node, a legacy edge that says
168
+ # nothing about which material uses it, so reachability is walked from the
169
+ # materials rather than taken from "appears in some connection".
170
+ o = objects(t)
171
+ feeds = collections.defaultdict(list)
172
+ for con in connections(t):
173
+ feeds[con[2]].append(con[1])
174
+ alive, stack = set(), [u for u, (c, n, s, _) in o.items() if c == b"Material"]
175
+ while stack:
176
+ u = stack.pop()
177
+ for src in feeds.get(u, []):
178
+ if src in alive or src not in o: continue
179
+ if o[src][0] in (b"Texture", b"LayeredTexture", b"Video"):
180
+ alive.add(src); stack.append(src)
181
+ dead = {u for u, (c, n, s, _) in o.items()
182
+ if c in (b"Texture", b"LayeredTexture", b"Video") and u not in alive}
183
+
184
+ # One image can appear as two `Video` objects with the same filename, only one
185
+ # of which carries pixels — here the shared normal map, whose bytes hang off the
186
+ # slot of the variant being removed while the surviving slot points at an empty
187
+ # shell. Move the pixels across before the shell's twin is deleted, or the kept
188
+ # colourway loses a map it had.
189
+ def content_of(node):
190
+ return next((ch for ch in node.children if ch.name == b"Content"), None)
191
+ def filename_of(node):
192
+ for key in (b"RelativeFilename", b"Filename"):
193
+ ch = next((c for c in node.children if c.name == key), None)
194
+ if ch and ch.props:
195
+ return clean(ch.props[0][1]).replace("\\", "/").rsplit("/", 1)[-1]
196
+ return None
197
+ pixels = {}
198
+ for u, (c, n, sub, node) in o.items():
199
+ if c != b"Video": continue
200
+ ct = content_of(node)
201
+ if ct and ct.props and len(ct.props[0][1]) > 64:
202
+ pixels.setdefault(filename_of(node), ct)
203
+ rescued = 0
204
+ for u, (c, n, sub, node) in o.items():
205
+ if c != b"Video" or u in dead: continue
206
+ ct = content_of(node)
207
+ if ct and ct.props and len(ct.props[0][1]) > 64: continue
208
+ donor = pixels.get(filename_of(node))
209
+ if donor is None: continue
210
+ if ct is not None:
211
+ ct.props = list(donor.props)
212
+ else:
213
+ cp = Node(b"Content"); cp.props = list(donor.props)
214
+ node.children.insert(len(node.children) - 1, cp)
215
+ rescued += 1
216
+ if rescued:
217
+ log.append("补回 %d 张贴图的像素(像素挂在被剥离那套的槽位上)" % rescued)
218
+
219
+ if dead:
220
+ tcon.children = [ch for ch in tcon.children
221
+ if not ({sval(ch.props[1]), sval(ch.props[2])} & dead)]
222
+ tobj.children = [ch for ch in tobj.children
223
+ if not (len(ch.props) >= 3 and sval(ch.props[0]) in dead)]
224
+ log.append("移除 %d 个对象(材质、及只有它用的贴图与内嵌图像)" %
225
+ (before_n - len(objects(t))))
226
+
227
+ defs = top(t, b"Definitions")
228
+ if defs:
229
+ want = collections.Counter(c for c, _, _, _ in objects(t).values())
230
+ for ch in defs.children:
231
+ if ch.name == b"ObjectType" and sval(ch.props[0]) in want:
232
+ for cc in ch.children:
233
+ if cc.name == b"Count":
234
+ cc.props[0] = ("I", struct.pack("<i", want[sval(ch.props[0])]))
235
+ elif ch.name == b"Count":
236
+ ch.props[0] = ("I", struct.pack("<i", sum(want.values())))
237
+
238
+ if dry: return log, None
239
+ data = serialize(t)
240
+ tmp = path + ".tmp"
241
+ with open(tmp, "wb") as fh: fh.write(data)
242
+ os.replace(tmp, path)
243
+ return log, len(data)
244
+
245
+
246
+ def main(argv):
247
+ if not argv or argv[0] not in ("--list", "--keep", "--selftest"):
248
+ print(__doc__); return 2
249
+ mode = argv[0]
250
+ if mode == "--selftest":
251
+ bad = 0
252
+ for p in argv[1:]:
253
+ same = serialize(parse(p)) == open(p, "rb").read()
254
+ print("%-6s %s" % ("ok" if same else "DIFF", p)); bad += not same
255
+ return 1 if bad else 0
256
+ if mode == "--list":
257
+ for p in argv[1:]:
258
+ v = variants(p)
259
+ print("%-30s 顶点 %-6d 多边形 %-6d" % (os.path.basename(p), v["verts"], v["polys"]))
260
+ for i, (nm, _) in enumerate(v["materials"]):
261
+ print(" 索引 %d %-42s %d 顶点" % (i, nm, v["groups"].get(i, 0)))
262
+ return 0
263
+ keep, targets = argv[1], argv[2:]
264
+ for p in targets:
265
+ if serialize(parse(p)) != open(p, "rb").read():
266
+ print("拒绝执行:%s 无法字节级往返" % p); return 1
267
+ before = os.path.getsize(p)
268
+ log, size = strip(p, keep)
269
+ print(os.path.basename(p))
270
+ for line in log: print(" " + line)
271
+ print(" %d → %d 字节" % (before, size))
272
+ return 0
273
+
274
+
275
+ if __name__ == "__main__":
276
+ sys.exit(main(sys.argv[1:]))
scripts/probes/fbx_takes.py ADDED
@@ -0,0 +1,87 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python3
2
+ """Count animation takes in a binary FBX and read each take's time span.
3
+
4
+ An FBX may hold several `AnimationStack` objects — one per take. Keyframe counts
5
+ cannot reveal this; the stacks have to be enumerated. Each stack's LocalStart /
6
+ LocalStop live in its Properties70 block, in FBX ktime units.
7
+ """
8
+ import os, struct, sys
9
+
10
+ SCALAR = {"Y": 2, "C": 1, "I": 4, "F": 4, "D": 8, "L": 8}
11
+ ELEM = {"f": 4, "d": 8, "l": 8, "i": 4, "b": 1}
12
+ KTIME = 46186158000
13
+
14
+
15
+ def probe(path):
16
+ d = open(path, "rb").read()
17
+ if d[:21] != b"Kaydara FBX Binary \x00":
18
+ raise ValueError("not a binary FBX")
19
+ version = struct.unpack("<I", d[23:27])[0]
20
+ u64 = version >= 7500
21
+ NREC = 25 if u64 else 13
22
+ stacks = [] # (name, seconds)
23
+ layers = 0
24
+
25
+ def rd_prop(p):
26
+ t = chr(d[p]); s = p; p += 1
27
+ if t in SCALAR:
28
+ p += SCALAR[t]
29
+ return p, (t, d[s + 1:p])
30
+ if t in ELEM:
31
+ n, enc, clen = struct.unpack("<III", d[p:p + 12]); p += 12
32
+ p += clen if enc else n * ELEM[t]
33
+ return p, (t, None)
34
+ if t in "SR":
35
+ ln = struct.unpack("<I", d[p:p + 4])[0]; p += 4
36
+ v = d[p:p + ln]; p += ln
37
+ return p, (t, v)
38
+ raise ValueError("bad prop %r" % t)
39
+
40
+ def rd_node(p, stack=None):
41
+ nonlocal layers
42
+ if u64: end, nprop, plen = struct.unpack("<QQQ", d[p:p + 24]); q = p + 24
43
+ else: end, nprop, plen = struct.unpack("<III", d[p:p + 12]); q = p + 12
44
+ if end == 0 and nprop == 0 and plen == 0:
45
+ return p + NREC
46
+ nl = d[q]; q += 1; name = d[q:q + nl]; q += nl
47
+ p = q; props = []
48
+ for _ in range(nprop):
49
+ p, pr = rd_prop(p); props.append(pr)
50
+ mine = stack
51
+ if name == b"AnimationStack" and len(props) >= 2:
52
+ nm = props[1][1] or b""
53
+ mine = [nm.split(b"\x00\x01")[0].decode("utf-8", "replace"), 0.0]
54
+ stacks.append(mine)
55
+ elif name == b"AnimationLayer":
56
+ layers += 1
57
+ elif name == b"P" and stack is not None and props:
58
+ key = props[0][1]
59
+ if key in (b"LocalStop", b"LocalStart"):
60
+ for t, v in props:
61
+ if t == "L" and v is not None and len(v) == 8:
62
+ val = struct.unpack("<q", v)[0]
63
+ if key == b"LocalStop":
64
+ stack[1] = max(stack[1], val / KTIME)
65
+ while p < end:
66
+ if d[p:p + NREC] == b"\x00" * NREC: p += NREC; break
67
+ p = rd_node(p, mine)
68
+ return end
69
+
70
+ p = 27
71
+ while p < len(d) - 160:
72
+ if d[p:p + NREC] == b"\x00" * NREC: break
73
+ p = rd_node(p)
74
+ return {"num_takes": len(stacks), "num_layers": layers,
75
+ "takes": [(n, round(s, 3)) for n, s in stacks],
76
+ "total_sec": round(sum(s for _, s in stacks), 3)}
77
+
78
+
79
+ if __name__ == "__main__":
80
+ for f in sys.argv[1:]:
81
+ try:
82
+ r = probe(f)
83
+ print("%-34s takes=%-4d layers=%-4d total=%.2fs %s" % (
84
+ os.path.basename(f), r["num_takes"], r["num_layers"], r["total_sec"],
85
+ [n for n, _ in r["takes"]][:4]))
86
+ except Exception as e:
87
+ print("%-34s ERROR %s" % (os.path.basename(f), str(e)[:50]))
species.csv ADDED
@@ -0,0 +1,75 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ species,num_clips,num_joints,rig_variants,root_joint,total_frames,total_duration_sec,mean_duration_sec,num_textures,source_fbx,source_bvh,has_combined_all,has_tpose
2
+ Alligator,21,29,1,EAL1_2,3144,104.1,4.957,6,23,22,true,true
3
+ Anaconda,18,31,1,Null,2706,89.6,4.978,9,19,18,true,false
4
+ Ant,17,41,1,Hips,1567,51.667,3.039,10,19,18,true,true
5
+ Bat,10,48,1,Hips,790,26.0,2.6,6,11,11,true,true
6
+ Bear,29,76,1,Hips,1488,48.633,1.677,5,31,30,true,true
7
+ Bird,18,62,1,Hips,1657,54.633,3.035,8,24,18,true,false
8
+ BrownBear,21,39,1,Hips,2425,80.133,3.816,6,23,22,true,true
9
+ Buffalo,18,43,1,Hips,2250,74.4,4.133,10,23,19,true,true
10
+ Buzzard,10,62,1,Hips,771,25.367,2.537,4,12,11,true,true
11
+ Camel,18,51,1,Hips,1853,61.167,3.398,4,19,18,true,false
12
+ Cat,4,44,1,Hips,1593,52.967,13.242,2,6,5,true,true
13
+ Centipede,10,84,1,Hips,1159,38.3,3.83,3,12,11,true,true
14
+ Chicken,3,41,1,Hips,492,16.3,5.433,2,5,4,true,true
15
+ Comodoa,9,65,1,Hips,1334,44.167,4.907,4,11,10,true,true
16
+ Coyote,10,41,1,Hips,1109,36.634,3.663,4,13,11,true,true
17
+ Crab,9,54,1,Hips,857,28.267,3.141,5,12,11,true,true
18
+ Cricket,12,54,1,Hips,1300,42.933,3.578,3,14,12,true,false
19
+ Crocodile,12,39,1,Hips,1230,40.6,3.383,3,14,13,false,true
20
+ Crow,10,29,1,Null,975,32.167,3.217,5,12,11,true,true
21
+ Deer,20,60,1,NPC_Root__Root_,1481,48.7,2.435,3,22,21,true,true
22
+ Dog,42,61,1,Hips,2532,83.0,1.976,0,44,43,true,false
23
+ Dog2,35,131,1,Hips,2254,73.967,2.113,8,37,36,true,true
24
+ Dragon,9,143,1,Hips,2010,66.7,7.411,3,12,10,true,true
25
+ Eagle,12,52,1,Hips,948,31.2,2.6,5,15,13,true,true
26
+ Elephant,13,42,1,Hips,1464,48.367,3.721,5,15,15,true,true
27
+ FireAnt,24,45,1,Hips,1268,41.467,1.728,1,26,25,true,true
28
+ Flamingo,4,41,1,Hips,682,22.6,5.65,2,6,5,true,true
29
+ Fox,13,42,1,Hips,1643,54.334,4.18,6,17,15,true,true
30
+ Gazelle,9,42,1,Hips,1021,33.733,3.748,4,21,10,true,true
31
+ Giantbee,9,52,1,Hips,783,25.8,2.867,8,13,10,true,true
32
+ Goat,10,33,1,Null,870,28.667,2.867,12,11,10,true,false
33
+ Hamster,5,42,1,Hips,611,20.2,4.04,3,7,6,true,true
34
+ HermitCrab,12,67,1,Hips,1229,40.567,3.381,5,15,14,true,true
35
+ Hippopotamus,10,41,1,Hips,1136,37.533,3.753,4,13,11,true,true
36
+ Horse,28,79,1,Hips,3500,115.733,4.133,6,31,29,true,true
37
+ Hound,13,45,1,Hips,1204,39.7,3.054,7,15,14,true,true
38
+ Isopetra,9,63,1,Hips,781,25.733,2.859,4,13,10,true,true
39
+ Jaguar,13,46,1,Hips,1219,40.2,3.092,4,15,14,true,true
40
+ Jaws,9,18,1,N_ALL,671,22.067,2.452,4,11,0,true,true
41
+ KingCobra,12,19|20,2,Hips|Null,1453,48.033,4.003,5,14,10,true,true
42
+ Leapord,14,48,1,Hips,1496,49.4,3.529,4,16,15,true,true
43
+ Lion,14,32,1,Hips,1445,47.7,3.407,4,16,15,true,false
44
+ Lynx,13,39,1,Hips,1012,33.3,2.562,4,16,15,true,true
45
+ Mammoth,12,42,1,Hips,1668,55.2,4.6,4,15,13,true,true
46
+ Monkey,15,88,4,B01_die|Hips,1944,64.3,4.287,9,19,13,true,false
47
+ Ostrich,10,54,1,Hips,1068,35.267,3.527,4,13,11,true,true
48
+ Parrot,13,71,1,Hips,1630,53.9,4.146,6,17,14,true,true
49
+ Parrot2,3,63,1,Hips,704,23.367,7.789,2,5,4,true,true
50
+ Pigeon,11,9,1,Hips,874,28.767,2.615,1,14,12,true,true
51
+ Pirrana,10,22,1,Hips,787,25.9,2.59,2,13,12,true,true
52
+ PolarBear,9,41,1,Hips,1119,37.0,4.111,5,12,10,true,true
53
+ PolarBearB,8,39,1,Hips,880,29.067,3.633,5,17,8,true,true
54
+ Pteranodon,12,44,1,Hips,735,24.1,2.008,0,13,12,true,false
55
+ Puppy,4,40,1,Hips,1103,36.633,9.158,2,6,5,true,true
56
+ Raindeer,9,36,1,Hips,911,30.067,3.341,4,11,10,true,true
57
+ Raptor,10,36,1,Hips,1609,53.3,5.33,3,12,11,true,true
58
+ Raptor2,39,63,1,Hips,5411,179.067,4.591,4,41,40,true,true
59
+ Raptor3,13,64,1,Hips,1309,43.2,3.323,0,15,14,true,true
60
+ Rat,6,18,1,Hips,381,12.5,2.083,2,8,6,true,false
61
+ Rhino,9,44,1,Hips,1219,40.333,4.481,2,11,10,true,true
62
+ Roach,11,46,1,Hips,342,11.033,1.003,3,13,12,true,true
63
+ SabreToothTiger,43,74,1,Hips,2279,74.533,1.733,3,45,44,true,false
64
+ SandMouse,13,38,1,Hips,1740,57.567,4.428,5,18,14,true,true
65
+ Scorpion,13,64,1,Hips,826,27.1,2.085,2,15,14,true,true
66
+ Scorpion2,39,59,1,Hips,3171,104.4,2.677,0,41,40,true,false
67
+ Skunk,7,36,1,Hips,677,22.333,3.19,4,11,8,true,true
68
+ Spider,32,71,1,Hips,1864,61.067,1.908,0,34,33,true,true
69
+ SpiderG,18,62,1,Hips,2696,89.267,4.959,6,22,19,true,true
70
+ Stego,10,41,1,Hips,1170,38.667,3.867,2,12,11,true,true
71
+ Trex,70,61,1,jt_Cog_C,7708,254.6,3.637,0,72,71,true,false
72
+ Tricera,9,32,1,Hips,1088,35.967,3.996,6,11,10,true,true
73
+ Tukan,8,18,1,Hips,397,12.967,1.621,3,10,9,true,true
74
+ Turtle,10,50,1,Hips,1466,48.533,4.853,9,12,11,true,true
75
+ Tyranno,10,69,1,Hips,969,31.967,3.197,3,12,11,true,true
species_tpose/Alligator.png ADDED

Git LFS Details

  • SHA256: 777f9f56345f7d1b72dcd7ad9e474e183027dab05d761027ed24cde898cd47e5
  • Pointer size: 131 Bytes
  • Size of remote file: 351 kB
species_tpose/Anaconda.png ADDED

Git LFS Details

  • SHA256: 79fd2c0d75cb206620303bfa78b4a2fb4068980899f9933b6c35e68cee7b2484
  • Pointer size: 131 Bytes
  • Size of remote file: 343 kB
species_tpose/Ant.png ADDED

Git LFS Details

  • SHA256: bec421980d36a86982644950757d7deaa307d5a58b7884a7eee1630776d5df91
  • Pointer size: 131 Bytes
  • Size of remote file: 539 kB
species_tpose/Bat.png ADDED

Git LFS Details

  • SHA256: 452da1bb3315ad4ed48b5f281631facf83c48cd7838c46793da8543ed48b86cc
  • Pointer size: 131 Bytes
  • Size of remote file: 380 kB
species_tpose/Bear.png ADDED

Git LFS Details

  • SHA256: 62e425a479940ab6e67c0a5d0bb0c2cfa12e93794fab469162aec820a13013a8
  • Pointer size: 131 Bytes
  • Size of remote file: 568 kB
species_tpose/Bird.png ADDED

Git LFS Details

  • SHA256: 19fabb1757ea9f6032dbbbbd0fe01343736a982c3683c8b978e4b7ce13a6fd3c
  • Pointer size: 131 Bytes
  • Size of remote file: 465 kB
species_tpose/BrownBear.png ADDED

Git LFS Details

  • SHA256: df4cf8a940ef28fdc6c459472f3defa4db715d4ace939bcfa51475e74ce14dd5
  • Pointer size: 131 Bytes
  • Size of remote file: 539 kB
species_tpose/Buffalo.png ADDED

Git LFS Details

  • SHA256: f4b0a455d1a646bc4b7a68642cc9e66048ce04758280cdb54fe3cf792bac3544
  • Pointer size: 131 Bytes
  • Size of remote file: 500 kB
species_tpose/Buzzard.png ADDED

Git LFS Details

  • SHA256: 7502e55e5896bc3d483d6918308878e9a60ed0235ad6d617d7b8db6548058bf2
  • Pointer size: 131 Bytes
  • Size of remote file: 502 kB
species_tpose/Camel.png ADDED

Git LFS Details

  • SHA256: 3dacd4dadf16a73acc98ce3585a4df67098ed3a2349036f1fa5462e39932b061
  • Pointer size: 131 Bytes
  • Size of remote file: 467 kB
species_tpose/Cat.png ADDED

Git LFS Details

  • SHA256: 64e50b67a515956ef8cabfb61adcbd971793e71955de97878e7f69e7f1daeebe
  • Pointer size: 131 Bytes
  • Size of remote file: 408 kB
species_tpose/Centipede.png ADDED

Git LFS Details

  • SHA256: a378cab59fc3b7149303a1c421eb0e8560f92813b3fc03d47a7f3be889b5d420
  • Pointer size: 131 Bytes
  • Size of remote file: 337 kB
species_tpose/Chicken.png ADDED

Git LFS Details

  • SHA256: 5dfd8ddf9b62c58daf0c4239cde6c052a614e11d53d53a243723116bfe23d16e
  • Pointer size: 131 Bytes
  • Size of remote file: 657 kB
species_tpose/Comodoa.png ADDED

Git LFS Details

  • SHA256: 162f75726bc3d49376761929deb0dd19f8fd1b6b7873c06e2c4e0eacaa7d9197
  • Pointer size: 131 Bytes
  • Size of remote file: 386 kB
species_tpose/Coyote.png ADDED

Git LFS Details

  • SHA256: 8e8ab7f670c525c9eca76226966b51a92da04f02984e84632abe99b59e4d3f89
  • Pointer size: 131 Bytes
  • Size of remote file: 407 kB
species_tpose/Crab.png ADDED

Git LFS Details

  • SHA256: 97b2f9f4995584177716166a0d7742be1e23b3139442a6b3d8b69f2530160536
  • Pointer size: 131 Bytes
  • Size of remote file: 531 kB
species_tpose/Cricket.png ADDED

Git LFS Details

  • SHA256: ff35f4e6fa9c12af2dc8aeb10ed68f5a241dceb7b681d07e1c7d27cfac43c10f
  • Pointer size: 131 Bytes
  • Size of remote file: 428 kB
species_tpose/Crocodile.png ADDED

Git LFS Details

  • SHA256: 8003a577a88a99bf191899190351fdd826d844c23c12bb43812cb16d54160859
  • Pointer size: 131 Bytes
  • Size of remote file: 369 kB
species_tpose/Crow.png ADDED

Git LFS Details

  • SHA256: 924df74d01240fcc590fd6d682220bb85cd3e5ba441ea73e7d36d2d7c94c0703
  • Pointer size: 131 Bytes
  • Size of remote file: 304 kB
species_tpose/Deer.png ADDED

Git LFS Details

  • SHA256: cd26482f6c151b81e0d962c78da99682492dae3560a8f02dfb6548981ce4b41c
  • Pointer size: 131 Bytes
  • Size of remote file: 620 kB