EQEmulator Forums

EQEmulator Forums (https://www.eqemulator.org/forums/index.php)
-   Development::Development (https://www.eqemulator.org/forums/forumdisplay.php?f=590)
-   -   global_chr.wld to global_chr.obj (https://www.eqemulator.org/forums/showthread.php?t=34143)

Tyen05 09-09-2011 07:59 PM

global_chr.wld to global_chr.obj
 
Zone converter 1.1 BETA = error (nothing to save)
VBZCLib 1.3.0 = error (Subscript out of range)

I am able to convert zones like ecommons to an .obj but I'm looking to export the actual character models themselves.

Anyone able to lend wisdom?

I've been documenting what I'm doing here: http://www.fohguild.org/forums/game-...e-console.html

Tyen05 09-09-2011 10:29 PM

I'm reading through old 2002 stuff and Kyu mentions chequip.s3d.

i don't have this

GeorgeS 09-09-2011 10:33 PM

That chequip.s3d should be available on earlier everquest CD's from ages ago. It's the main file you need for what you're doing.

GeorgeS

Tyen05 09-09-2011 10:35 PM

Thanks George, I've been scouring the net.


Quote:

I'm in the processing of getting a copy of this chequip.s3d myself.

Once you've obtained a copy here's what you do.

Open Kaiyodo's Model Viewer
Select 'chequip.s3d' from the left-most dialogue box
Click 'Load from .s3d' at the bottom of said Dialogue Box
Select the .spk file of your choosing to see in the viewer
Extract the model to .POV format OR .MS format with skins
Load the object in the program of your choice
Render the object

Tyen05 09-10-2011 03:55 AM

Got it.

updating all progress here: http://www.fohguild.org/forums/game-...e-console.html

http://www.fohguild.org/forums/attac...uest-unity.png

lerxst2112 09-10-2011 04:19 AM

Unity is a lot of fun. :)

Tyen05 09-10-2011 04:53 AM

I need to figure out animations now.

Can anyone be of assistance?

http://www.fohguild.org/forums/attac...ragon-slay.png

Tyen05 09-10-2011 06:45 AM

.mdf and .sps what are those?

Texturing these things is next on my list of things to start doing.

Tyen05 09-10-2011 08:14 AM

some 2003 stuff posting here for reference

Quote:

IMPORTING MODELS INTO 3DMAX

1. Start EQ Model Viewer

2. The left column, when properly configured, will display all of the *.S3D files in your /EverQuest/ directory. Select "gequip3.s3d" and click the "LOAD S3D" button on the bottom of that column.

3. You should see "gequip3.wld" show up in the upper right column under "Model Files". Make sure it is highlighted/selected and hit the "LOAD MODEL" button.

4. All of the models in gequip3.wld are now displayed in the lower right column. Make sure only show selection is checked and scroll down to *IT10025_DMSPRITEDEF" - highlight this model.

5. In the viewport window, you should now see Seru's Sword of Truth (that badass sword they gave him just for looks).

6. Above the object selection window are a set of controls (wire mode, only show selection, etc.). Click the EXPORT button. And Export Options window will appear.

7. Select MAXSCRIPT FORMAT, Export Skin, and leave scale at 1.00000

8. Press SAVE... and name your file.

9. You show now have a filename.ms and filename.dat in your saved directory.

== OPTIONAL - You currently have the raw MODEL but no textures, continue on to get those also ==

10. Using Notepad or 3dMax (I suggest Notepad), open the filename.ms and you will see something like the following:

-- START OF MODEL
fp = openFile "sword7-noskin.dat" mode:"r"
if fp != undefined then
(
-- START OF OBJECT
undo off
(
try
(
try
(
Mat = MultiMaterial()
Mat.numsubs = 4
Mat[1] = StandardMaterial name:"Slot1"
Mat[1].DiffuseMap = BitmapTexture filename:"1025BLDBLUE.DDS"
assignNewName Mat[1].DiffuseMap
ShowTextureMap Mat[1] Mat[1].DiffuseMap true
Mat[2] = StandardMaterial name:"Slot2"
Mat[2].DiffuseMap = BitmapTexture filename:"IT10025HLT.DDS"
assignNewName Mat[2].DiffuseMap
ShowTextureMap Mat[2] Mat[2].DiffuseMap true
Mat[3] = StandardMaterial name:"Slot3"
Mat[3].DiffuseMap = BitmapTexture filename:"IT10025HAFT.DDS"
assignNewName Mat[3].DiffuseMap
ShowTextureMap Mat[3] Mat[3].DiffuseMap true
Mat[4] = StandardMaterial name:"Slot4"
Mat[4].DiffuseMap = BitmapTexture filename:"IT10025POM.DDS"
assignNewName Mat[4].DiffuseMap
ShowTextureMap Mat[4] Mat[4].DiffuseMap true
)
catch
(
format "An Exception occurred during Material setup\n"
)

try
(

format "Creating object IT10025_DMSPRITEDEF\n"

Obj = mesh NumVerts:478 NumFaces:454
Obj.Name = "IT10025_DMSPRITEDEF"
Obj.Mat = Mat
SetNumTverts Obj 478 false
BuildTvFaces Obj false

local tempx,tempy,tempz
for i=1 to 478 do
(
tempx = ReadValue fp -- Vertex positions
tempy = ReadValue fp
tempz = ReadValue fp
SetVert Obj i tempx tempy tempz
tempx = ReadValue fp -- UVs
tempy = ReadValue fp
SetTVert Obj i [tempx, tempy, 1.0]
)

local index0,index1,index2
for i=1 to 454 do
(
index0 = ReadValue fp
index1 = ReadValue fp

index2 = ReadValue fp
SetFace Obj i index0 index1 index2
SetTVFace Obj i [index0, index1, index2]
)

local tmap,faceindex
for i=1 to 454 do
(
faceindex = ReadValue fp
tmap = ReadValue fp
SetFaceMatId Obj faceindex tmap
)

Update Obj
)
catch
(
format "An Exception occurred during Geometry setup\n"
)
) catch (format "An unknown exception occurred during import\n")
) -- undo off
-- END OF OBJECT

-- END OF MODEL
close fp
)
else
(
format "Error loading data file.\n"
)

11. Search for Mat[#].DiffuseMap = BitmapTexture filename:"*.DDS"

12. Each .DDS file is basically a bitmap of the material used to texture the object. To texture it in max (if you want it exactly as it is in game), you will need to extract those *.DDS files into the same directory as the .MS and .DAT files.

13. To do this, I use EQInside. Load up the SAME *.S3D file you generated the maxscript from. When the S3D is load, you will see its contents in the right column. Highlight the needed materials (in this case 1025BLDBLUE.DDS, IT10025HLT.DDS, IT10025HAFT.DDS and IT10025POM.DDS) seperately, and under the ARCHIVE menu is "SAVE DATA". Save that .DDS to the same directory as your *.MS and .DAT

14. Continue this for any remaining textures/materials.

15. Load 3D Max (I use R5)

16. In the menu (File, Edit, Tools, Group, etc) is "MAXscript". Select MAXscript >> Run Script... and load your filename.ms into 3dMax.

17. Left click-dragging your mouse inside the modeling window will now create the model (in my experience they're usually very small - so you may need to zoom). You'll know it's created when the model number appears as the object name.

18. Edit, Render, do whatever... you are done.

You can now save ANY EQ model to .max, .lwo or any other format that your version of Max will allow you to export.


** This has only worked on individual object models in Everquest. I have not seen or been able to export/render a zone into Max **

Tyen05 09-10-2011 08:24 AM

step 11 is bunk.

need to find out how to make it to where this 3ds textures the model so I can save it to an .obj and have a textured dragon model in unity

http://www.fohguild.org/forums/attac...en-texture.png

Tyen05 09-10-2011 09:20 AM

http://www.fohguild.org/forums/attac...exture-max.png


http://www.fohguild.org/forums/attac...g-texture-.png

Tyen05 09-10-2011 05:33 PM

the .dds files in the "ActorEffects" folder, I assume it's the animations I'm looking for?


Is there any conversion I need to do, to connect these to models? Is there any insight from any experienced pals on this animation stuff and getting it into max?

Tyen05 09-10-2011 11:16 PM

If anyone wants to start texturing, here is all the assets, including the textures and the .obj models.

put it in C:\Documents and Settings\All Users\Documents(or shared documents)\Unity Projects\eq


http://www.fohguild.org/forums/attac...-texturing.png

Moderator Edit: Copyrighted Materials.

Tyen05 09-11-2011 12:52 AM

I need to figure out how to scale these textures appropriately.

There is "tiling" on the bottom right of my above image, but setting the number does nothing =/

Sakrateri 09-11-2011 03:50 AM

Waits for Sony.......

Tyen05 09-11-2011 06:19 AM

Quote:

Originally Posted by Sakrateri (Post 202992)
Waits for Sony.......

If sony is jelly at the point that I get a broswer based EQ going then I have no problem being an absolute ass and writing 1,000 word essays about it.

Sakrateri 09-11-2011 01:39 PM

no...they will have a problem with you giving away files that contains thier property and im surprised no mods have called you on it yet.

Caryatis 09-11-2011 02:10 PM

I dont get why people are so paranoid. Maybe if Sony had actually shut down something in the last 10 years I could see it but for a free browser based game that likely will increase the awareness of their product and not compete with it at all? Not like they are losing revenue to Tyen's idea.

If they send a C&D letter to Tyen then he could stop(or alter it enough so they have no footing) but until that happens, chillax.

Tyen05 09-11-2011 04:38 PM

Quote:

f they send a C&D letter to Tyen then he could stop
Usually how it goes.

It's not like I would ignore a C&D like some Emulated servers/operators/management that currently exist right now on the Eqemu server list...

Not to mention the "servers" placing code inside client-side files that are monitoring the process list just so macroquest couldn't be ran. I think if I were you guys, I'd stop calling the kettle black for a few minutes so we can actually get something important accomplished.

=)

Tyen05 09-11-2011 04:43 PM

Now to get back on track, if anyone is able to tell me where animations are at that would be amazing...

KLS 09-11-2011 04:56 PM

Free to discuss how to work with assets, not to hand them out. Not here at least.

Tyen05 09-11-2011 05:22 PM

I have no problem not putting any links to the project which includes Ecommons, Half Elf, and Nagafen objects including textures on Eqemu forums.

I'll follow those guidelines.


Animations, still looking for them.

Secrets 09-11-2011 05:27 PM

Quote:

Originally Posted by Tyen05 (Post 203010)
Not to mention the "servers" placing code inside client-side files that are monitoring the process list just so macroquest couldn't be ran. I think if I were you guys, I'd stop calling the kettle black for a few minutes so we can actually get something important accomplished.

=)

Project1999 is not EQEmulator. No one (except for me) is involved in P1999 in this thread.

That being said this project seems interesting, and I wish you the best of luck.

Tyen05 09-11-2011 05:54 PM

Here is the Unity forum thread:

http://forum.unity3d.com/threads/103...oking-for-pals

FoH thread: http://www.fohguild.org/forums/game-...e-console.html


Putting this here just in case anyone is following. Secrets helped out huge imparting his knowledge. Confirmed pal.

Tyen05 09-12-2011 05:15 PM

Had an issue with unity I would like to share.


Quote:

For texture painting you need a Unity terrain, but what you have shown there doesn't look like one frankly ^^, even though the editor show the terrain menu. If you want to use terrain features, like texture painting, you can really ONLY do them on the Unity terrain surface. So don't try to paint on normal objects, it won't work.
http://www.fohguild.org/forums/attac...ole-text-1.png

Tyen05 09-12-2011 07:05 PM

still workin on textures

http://www.fohguild.org/forums/attac...onsole-max.png

Tyen05 09-12-2011 10:29 PM

http://www.fohguild.org/forums/attac...nsole-dirt.png

Tyen05 09-17-2011 08:57 PM

http://www.fohguild.org/forums/attac...ured4unity.jpg

Tyen05 09-20-2011 08:00 PM

How to texture/UV map a gnome

http://vimeo.com/29347384

Tyen05 09-21-2011 08:52 PM

For reference

POV pulls out the MTL file
OBJ is just a plain model
Maxscript are the joints

http://www.fohguild.org/forums/attac...ort-readme.png

Tyen05 09-22-2011 02:07 AM

extracted all of chequip.s3d

http://www.fohguild.org/forums/attac...e-eqmodels.png

Tyen05 09-22-2011 03:28 AM

More info on digging through the filetypes

.sps .sph .mdf
[spoiler]

Quote:

Originally Posted by .sph
// This file was created by MAXCONVS SPH Exporter (Version 1.54) -- Wednesday, January 13, 1999 17:20:24
// SPH Export options used:
// Name prefix: C05
// Input filename:
// Output filename: P:\STUDIO\EQUEST\CHARACTERS\OGF\EXPORT\C05_OGF.SPH
// RMConfig filename:
// Dependencies filename: P:\STUDIO\EQUEST\CHARACTERS\OGF\EXPORT\C05_OGF.DEP
// Scale factor: 1.0000000e+000
// Textures enabled: No
// Collision volumes enabled: No
// Ignore unselected: Yes
// Assume Z-buffer: Yes
// Optimize geometry: Yes
// Optimize tracks: Yes
// Optimize hierarchy: Yes
// Create MIP maps: No
// MIP map format: 8
// Sharing sprite definitions: Yes
// Shared sprite prefix:
// Sharing animation tracks: No
// Shared track prefix:
// First key frame: 2
// Last key frame: 11
// Number of key frames: 10
// Playback frame rate: 1.0000000e+001




// HierSprite statistics for "C05C05_OGF_HS_DEF":
// Number of DAG nodes: 22
// Number of faces: 454
// Number of vertices: 336
// Bounding radius: 8.0486922e+000

TRACKDEFINITION
TAG "C05OGF_TRACKDEF"
NUMFRAMES 1
FRAMETRANSFORM 1.0000000e+000 0 512 0 0.0000000e+000 0.0000000e+000 0.0000000e+000
ENDTRACKDEFINITION

TRACKINSTANCE
TAG "C05OGF_TRACK"
DEFINITION "C05OGF_TRACKDEF"
INTERPOLATE
SLEEP 0
ENDTRACKINSTANCE

TRACKDEFINITION
TAG "C05OGFPE_TRACKDEF"
NUMFRAMES 10
FRAMETRANSFORM 9.9999994e-001 486 14 508 -1.0346926e-001 -1.4447451e-001 -9.3579638e-001
FRAMETRANSFORM 1.0000000e+000 474 11 507 -1.5539770e-001 -1.4447449e-001 -8.9163280e-001
FRAMETRANSFORM 1.0000001e+000 463 8 507 -2.1471795e-001 -1.4447446e-001 -8.4466320e-001
FRAMETRANSFORM 1.0000000e+000 455 5 506 -2.6125491e-001 -1.4447446e-001 -8.1525308e-001
FRAMETRANSFORM 9.9999994e-001 452 2 504 -2.7483323e-001 -1.4447445e-001 -8.2376754e-001
FRAMETRANSFORM 1.0000000e+000 462 512 503 -2.4755731e-001 -1.4447443e-001 -8.8912624e-001
FRAMETRANSFORM 1.0000000e+000 481 509 503 -2.0077303e-001 -1.4447445e-001 -9.7883284e-001
FRAMETRANSFORM 1.0000000e+000 496 510 503 -1.5816723e-001 -1.4447445e-001 -1.0361282e+000
FRAMETRANSFORM 1.0000000e+000 500 3 504 -1.2463624e-001 -1.4447445e-001 -1.0268812e+000
FRAMETRANSFORM 1.0000000e+000 498 11 506 -9.5283799e-002 -1.4447449e-001 -9.8522341e-001
ENDTRACKDEFINITION

TRACKINSTANCE
TAG "C05OGFPE_TRACK"
DEFINITION "C05OGFPE_TRACKDEF"
INTERPOLATE
SLEEP 100
ENDTRACKINSTANCE

TRACKDEFINITION
TAG "C05OGFCH_TRACKDEF"
NUMFRAMES 10
FRAMETRANSFORM 1.0000001e+000 7 483 5 -1.2158766e-001 6.3391546e-008 6.6359311e-001
FRAMETRANSFORM 1.0000004e+000 510 480 5 -1.2158769e-001 5.7611690e-008 6.6359323e-001
FRAMETRANSFORM 1.0000007e+000 508 489 11 -1.2158773e-001 4.9917631e-008 6.6359323e-001
FRAMETRANSFORM 1.0000005e+000 508 503 20 -1.2158769e-001 4.7399130e-008 6.6359323e-001
FRAMETRANSFORM 1.0000005e+000 2 510 24 -1.2158770e-001 5.0156320e-008 6.6359317e-001
FRAMETRANSFORM 1.0000005e+000 28 501 21 -1.2158770e-001 5.8104760e-008 6.6359317e-001
FRAMETRANSFORM 1.0000002e+000 58 483 22 -1.2158767e-001 5.8139072e-008 6.6359311e-001
FRAMETRANSFORM 1.0000002e+000 65 470 25 -1.2158768e-001 6.0535939e-008 6.6359317e-001
FRAMETRANSFORM 1.0000002e+000 54 485 10 -1.2158767e-001 6.1421993e-008 6.6359317e-001
FRAMETRANSFORM 1.0000001e+000 35 489 7 -1.2158769e-001 6.1433809e-008 6.6359311e-001
ENDTRACKDEFINITION

TRACKINSTANCE
TAG "C05OGFCH_TRACK"
DEFINITION "C05OGFCH_TRACKDEF"
INTERPOLATE
SLEEP 100
ENDTRACKINSTANCE

TRACKDEFINITION
TAG "C05OGFNE_TRACKDEF"
NUMFRAMES 1
FRAMETRANSFORM 1.0000002e+000 511 510 511 -2.6718935e-001 -6.1374003e-008 2.2660692e+000
ENDTRACKDEFINITION

TRACKINSTANCE
TAG "C05OGFNE_TRACK"
DEFINITION "C05OGFNE_TRACKDEF"
INTERPOLATE
SLEEP 0
ENDTRACKINSTANCE

TRACKDEFINITION
TAG "C05OGFHE_TRACKDEF"
NUMFRAMES 10
FRAMETRANSFORM 1.0000002e+000 10 1 506 -7.6898061e-002 -9.2519699e-009 1.6726537e-001
FRAMETRANSFORM 1.0000004e+000 20 510 497 -7.6898061e-002 -1.4059069e-008 1.6726540e-001
FRAMETRANSFORM 1.0000006e+000 29 506 489 -7.6898068e-002 -4.5240292e-009 1.6726540e-001
FRAMETRANSFORM 1.0000005e+000 34 504 483 -7.6898038e-002 -3.8290988e-009 1.6726536e-001
FRAMETRANSFORM 1.0000004e+000 35 505 480 -7.6898031e-002 4.8784576e-009 1.6726530e-001
FRAMETRANSFORM 1.0000004e+000 15 9 489 -7.6898009e-002 -1.8330699e-008 1.6726534e-001
FRAMETRANSFORM 1.0000001e+000 494 23 0 -7.6898046e-002 7.5144584e-009 1.6726533e-001
FRAMETRANSFORM 1.0000002e+000 479 9 14 -7.6898046e-002 -8.1977873e-009 1.6726546e-001
FRAMETRANSFORM 1.0000002e+000 478 7 15 -7.6898001e-002 -7.9448608e-009 1.6726527e-001
FRAMETRANSFORM 1.0000002e+000 484 8 13 -7.6898046e-002 -9.2966221e-009 1.6726546e-001
ENDTRACKDEFINITION

TRACKINSTANCE
TAG "C05OGFHE_TRACK"
DEFINITION "C05OGFHE_TRACKDEF"
INTERPOLATE
SLEEP 100
ENDTRACKINSTANCE

TRACKDEFINITION
TAG "C05OGFHE_2_TRACKDEF"
NUMFRAMES 1
FRAMETRANSFORM 1.0000000e+000 0 512 0 1.1133264e-001 -3.1166195e-004 1.2911978e+000
ENDTRACKDEFINITION

TRACKINSTANCE
TAG "C05OGFHE_2_TRACK"
DEFINITION "C05OGFHE_2_TRACKDEF"
INTERPOLATE
SLEEP 0
ENDTRACKINSTANCE

TRACKDEFINITION
TAG "C05OGFBI_R_TRACKDEF"
NUMFRAMES 10
FRAMETRANSFORM 1.0000002e+000 36 465 13 -1.8379676e-001 -1.1002553e+000 2.0224681e+000
FRAMETRANSFORM 1.0000005e+000 29 460 0 -1.8379673e-001 -1.1002554e+000 2.0224686e+000
FRAMETRANSFORM 1.0000006e+000 469 492 441 -1.8379676e-001 -1.1002555e+000 2.0224686e+000
FRAMETRANSFORM 1.0000005e+000 71 75 388 -1.8379681e-001 -1.1002555e+000 2.0224681e+000
FRAMETRANSFORM 1.0000006e+000 471 221 55 -1.8379664e-001 -1.1002554e+000 2.0224681e+000
FRAMETRANSFORM 1.0000005e+000 453 196 66 -1.8379679e-001 -1.1002553e+000 2.0224683e+000
FRAMETRANSFORM 1.0000002e+000 100 76 411 -1.8379672e-001 -1.1002553e+000 2.0224681e+000
FRAMETRANSFORM 1.0000001e+000 126 33 463 -1.8379681e-001 -1.1002553e+000 2.0224683e+000
FRAMETRANSFORM 1.0000002e+000 56 7 488 -1.8379675e-001 -1.1002553e+000 2.0224683e+000
FRAMETRANSFORM 1.0000001e+000 35 493 508 -1.8379676e-001 -1.1002551e+000 2.0224683e+000
ENDTRACKDEFINITION

TRACKINSTANCE
TAG "C05OGFBI_R_TRACK"
DEFINITION "C05OGFBI_R_TRACKDEF"
INTERPOLATE
SLEEP 100
ENDTRACKINSTANCE

TRACKDEFINITION
TAG "C05OGFFO_R_TRACKDEF"
NUMFRAMES 10
FRAMETRANSFORM 1.0000001e+000 34 111 446 -2.1633303e-001 -9.2231703e-001 -1.6093806e+000
FRAMETRANSFORM 1.0000005e+000 492 108 474 -2.1633299e-001 -9.2231727e-001 -1.6093810e+000
FRAMETRANSFORM 1.0000006e+000 127 69 389 -2.1633303e-001 -9.2231745e-001 -1.6093811e+000
FRAMETRANSFORM 1.0000005e+000 85 53 406 -2.1633294e-001 -9.2231721e-001 -1.6093808e+000
FRAMETRANSFORM 1.0000004e+000 36 42 420 -2.1633299e-001 -9.2231727e-001 -1.6093807e+000
FRAMETRANSFORM 1.0000004e+000 6 36 443 -2.1633285e-001 -9.2231721e-001 -1.6093808e+000
FRAMETRANSFORM 1.0000002e+000 499 24 470 -2.1633291e-001 -9.2231697e-001 -1.6093806e+000
FRAMETRANSFORM 1.0000002e+000 4 506 495 -2.1633293e-001 -9.2231715e-001 -1.6093807e+000
FRAMETRANSFORM 1.0000002e+000 32 81 509 -2.1633294e-001 -9.2231709e-001 -1.6093807e+000
FRAMETRANSFORM 1.0000002e+000 75 102 458 -2.1633293e-001 -9.2231721e-001 -1.6093808e+000
ENDTRACKDEFINITION

TRACKINSTANCE
TAG "C05OGFFO_R_TRACK"
DEFINITION "C05OGFFO_R_TRACKDEF"
INTERPOLATE
SLEEP 100
ENDTRACKINSTANCE

TRACKDEFINITION
TAG "C05OGFFI_R_TRACKDEF"
NUMFRAMES 10
FRAMETRANSFORM 1.0000001e+000 487 38 14 1.7339090e-001 -4.0652564e-001 -1.0173132e+000
FRAMETRANSFORM 1.0000004e+000 461 53 49 1.7339104e-001 -4.0652561e-001 -1.0173131e+000
FRAMETRANSFORM 1.0000006e+000 363 14 59 1.7339097e-001 -4.0652573e-001 -1.0173132e+000
FRAMETRANSFORM 1.0000005e+000 394 6 32 1.7339098e-001 -4.0652573e-001 -1.0173131e+000
FRAMETRANSFORM 1.0000002e+000 435 504 17 1.7339088e-001 -4.0652558e-001 -1.0173130e+000
FRAMETRANSFORM 1.0000002e+000 446 498 30 1.7339100e-001 -4.0652570e-001 -1.0173131e+000
FRAMETRANSFORM 1.0000002e+000 439 494 43 1.7339092e-001 -4.0652573e-001 -1.0173132e+000
FRAMETRANSFORM 1.0000004e+000 380 494 12 1.7339107e-001 -4.0652561e-001 -1.0173132e+000
FRAMETRANSFORM 1.0000002e+000 407 511 7 1.7339100e-001 -4.0652576e-001 -1.0173134e+000
FRAMETRANSFORM 1.0000001e+000 451 13 509 1.7339107e-001 -4.0652558e-001 -1.0173134e+000
ENDTRACKDEFINITION

TRACKINSTANCE
TAG "C05OGFFI_R_TRACK"
DEFINITION "C05OGFFI_R_TRACKDEF"
INTERPOLATE
SLEEP 100
ENDTRACKINSTANCE

TRACKDEFINITION
TAG "C05OGFFI_R2_TRACKDEF"
NUMFRAMES 1
FRAMETRANSFORM 1.0000001e+000 0 512 0 1.4274719e-001 -1.5655853e-002 -6.5170836e-001
ENDTRACKDEFINITION

TRACKINSTANCE
TAG "C05OGFFI_R2_TRACK"
DEFINITION "C05OGFFI_R2_TRACKDEF"
INTERPOLATE
SLEEP 0
ENDTRACKINSTANCE

TRACKDEFINITION
TAG "C05OGFBI_L_TRACKDEF"
NUMFRAMES 10
FRAMETRANSFORM 1.0000001e+000 508 493 4 -1.8379676e-001 1.0996884e+000 2.0220668e+000
FRAMETRANSFORM 1.0000004e+000 499 502 14 -1.8379672e-001 1.0996884e+000 2.0220668e+000
FRAMETRANSFORM 1.0000006e+000 490 508 24 -1.8379673e-001 1.0996885e+000 2.0220673e+000
FRAMETRANSFORM 1.0000004e+000 480 512 33 -1.8379667e-001 1.0996883e+000 2.0220668e+000
FRAMETRANSFORM 1.0000005e+000 471 1 39 -1.8379676e-001 1.0996884e+000 2.0220668e+000
FRAMETRANSFORM 1.0000004e+000 470 488 15 -1.8379673e-001 1.0996883e+000 2.0220668e+000
FRAMETRANSFORM 1.0000004e+000 495 495 23 -1.8379676e-001 1.0996884e+000 2.0220666e+000
FRAMETRANSFORM 1.0000001e+000 9 1 29 -1.8379679e-001 1.0996884e+000 2.0220666e+000
FRAMETRANSFORM 1.0000002e+000 23 22 15 -1.8379673e-001 1.0996884e+000 2.0220666e+000
FRAMETRANSFORM 1.0000001e+000 14 510 19 -1.8379675e-001 1.0996884e+000 2.0220666e+000
ENDTRACKDEFINITION

TRACKINSTANCE
TAG "C05OGFBI_L_TRACK"
DEFINITION "C05OGFBI_L_TRACKDEF"
INTERPOLATE
SLEEP 100
ENDTRACKINSTANCE

TRACKDEFINITION
TAG "C05OGFFO_L_TRACKDEF"
NUMFRAMES 10
FRAMETRANSFORM 1.0000002e+000 391 93 109 -2.1599995e-001 9.2199993e-001 -1.6090000e+000
FRAMETRANSFORM 1.0000004e+000 422 94 85 -2.1599995e-001 9.2200005e-001 -1.6090001e+000
FRAMETRANSFORM 1.0000007e+000 452 91 63 -2.1600001e-001 9.2200017e-001 -1.6090003e+000
FRAMETRANSFORM 1.0000006e+000 478 87 49 -2.1599990e-001 9.2200005e-001 -1.6090001e+000
FRAMETRANSFORM 1.0000002e+000 503 84 41 -2.1599987e-001 9.2199993e-001 -1.6089998e+000
FRAMETRANSFORM 1.0000002e+000 66 112 33 -2.1599983e-001 9.2199993e-001 -1.6089998e+000
FRAMETRANSFORM 1.0000004e+000 510 109 41 -2.1599990e-001 9.2200005e-001 -1.6090002e+000
FRAMETRANSFORM 1.0000002e+000 449 90 24 -2.1599989e-001 9.2200005e-001 -1.6090001e+000
FRAMETRANSFORM 1.0000004e+000 433 30 504 -2.1599995e-001 9.2200023e-001 -1.6090001e+000
FRAMETRANSFORM 1.0000000e+000 424 63 34 -2.1599999e-001 9.2199993e-001 -1.6090000e+000
ENDTRACKDEFINITION

TRACKINSTANCE
TAG "C05OGFFO_L_TRACK"
DEFINITION "C05OGFFO_L_TRACKDEF"
INTERPOLATE
SLEEP 100
ENDTRACKINSTANCE

TRACKDEFINITION
TAG "C05OGFFI_L_TRACKDEF"
NUMFRAMES 1
FRAMETRANSFORM 1.0000001e+000 31 19 503 1.7299996e-001 4.0699995e-001 -1.0170003e+000
ENDTRACKDEFINITION

TRACKINSTANCE
TAG "C05OGFFI_L_TRACK"
DEFINITION "C05OGFFI_L_TRACKDEF"
INTERPOLATE
SLEEP 0
ENDTRACKINSTANCE

TRACKDEFINITION
TAG "C05OGFFI_L2_TRACKDEF"
NUMFRAMES 1
FRAMETRANSFORM 1.0000001e+000 0 512 0 1.4280538e-001 1.5441929e-002 -6.5209055e-001
ENDTRACKDEFINITION

TRACKINSTANCE
TAG "C05OGFFI_L2_TRACK"
DEFINITION "C05OGFFI_L2_TRACKDEF"
INTERPOLATE
SLEEP 0
ENDTRACKINSTANCE

TRACKDEFINITION
TAG "C05OGFTH_R_TRACKDEF"
NUMFRAMES 10
FRAMETRANSFORM 9.9999994e-001 4 491 0 -2.6780738e-002 -1.1623113e+000 -2.2034095e-001
FRAMETRANSFORM 1.0000000e+000 9 503 511 -2.6780805e-002 -1.1623113e+000 -2.2034091e-001
FRAMETRANSFORM 1.0000001e+000 14 1 510 -2.6780756e-002 -1.1623117e+000 -2.2034097e-001
FRAMETRANSFORM 9.9999994e-001 18 9 509 -2.6780710e-002 -1.1623114e+000 -2.2034088e-001
FRAMETRANSFORM 1.0000000e+000 19 12 508 -2.6780687e-002 -1.1623114e+000 -2.2034091e-001
FRAMETRANSFORM 1.0000001e+000 15 2 510 -2.6780769e-002 -1.1623114e+000 -2.2034094e-001
FRAMETRANSFORM 1.0000000e+000 6 494 511 -2.6780730e-002 -1.1623114e+000 -2.2034098e-001
FRAMETRANSFORM 1.0000000e+000 511 480 511 -2.6780756e-002 -1.1623114e+000 -2.2034088e-001
FRAMETRANSFORM 1.0000000e+000 510 477 511 -2.6780736e-002 -1.1623116e+000 -2.2034095e-001
FRAMETRANSFORM 1.0000000e+000 510 480 511 -2.6780749e-002 -1.1623114e+000 -2.2034089e-001
ENDTRACKDEFINITION

TRACKINSTANCE
TAG "C05OGFTH_R_TRACK"
DEFINITION "C05OGFTH_R_TRACKDEF"
INTERPOLATE
SLEEP 100
ENDTRACKINSTANCE

TRACKDEFINITION
TAG "C05OGFCA_R_TRACKDEF"
NUMFRAMES 10
FRAMETRANSFORM 1.0000000e+000 1 494 8 -1.1677191e-001 2.8685182e-001 -9.8991597e-001
FRAMETRANSFORM 1.0000000e+000 4 490 12 -1.1677194e-001 2.8685185e-001 -9.8991591e-001
FRAMETRANSFORM 1.0000001e+000 8 487 16 -1.1677194e-001 2.8685188e-001 -9.8991603e-001
FRAMETRANSFORM 1.0000001e+000 11 485 20 -1.1677193e-001 2.8685182e-001 -9.8991621e-001
FRAMETRANSFORM 9.9999994e-001 12 484 21 -1.1677194e-001 2.8685185e-001 -9.8991597e-001
FRAMETRANSFORM 1.0000000e+000 11 485 20 -1.1677190e-001 2.8685179e-001 -9.8991603e-001
FRAMETRANSFORM 1.0000000e+000 9 486 18 -1.1677190e-001 2.8685182e-001 -9.8991597e-001
FRAMETRANSFORM 1.0000000e+000 6 489 14 -1.1677191e-001 2.8685185e-001 -9.8991591e-001
FRAMETRANSFORM 1.0000000e+000 3 492 11 -1.1677190e-001 2.8685191e-001 -9.8991603e-001
FRAMETRANSFORM 1.0000001e+000 0 495 7 -1.1677199e-001 2.8685191e-001 -9.8991597e-001
ENDTRACKDEFINITION

TRACKINSTANCE
TAG "C05OGFCA_R_TRACK"
DEFINITION "C05OGFCA_R_TRACKDEF"
INTERPOLATE
SLEEP 100
ENDTRACKINSTANCE

TRACKDEFINITION
TAG "C05OGFBO_R_TRACKDEF"
NUMFRAMES 10
FRAMETRANSFORM 1.0000001e+000 2 22 510 -1.5827020e-001 -1.5208093e-002 -7.8628081e-001
FRAMETRANSFORM 1.0000000e+000 2 17 509 -1.5827021e-001 -1.5208062e-002 -7.8628105e-001
FRAMETRANSFORM 1.0000001e+000 2 12 507 -1.5827017e-001 -1.5208044e-002 -7.8628099e-001
FRAMETRANSFORM 1.0000001e+000 1 8 506 -1.5827014e-001 -1.5208071e-002 -7.8628099e-001
FRAMETRANSFORM 1.0000000e+000 1 5 505 -1.5827020e-001 -1.5208076e-002 -7.8628075e-001
FRAMETRANSFORM 1.0000000e+000 1 5 505 -1.5827017e-001 -1.5208101e-002 -7.8628087e-001
FRAMETRANSFORM 9.9999994e-001 1 7 507 -1.5827018e-001 -1.5208015e-002 -7.8628075e-001
FRAMETRANSFORM 1.0000000e+000 2 11 508 -1.5827006e-001 -1.5208069e-002 -7.8628087e-001
FRAMETRANSFORM 9.9999994e-001 2 16 510 -1.5827006e-001 -1.5208009e-002 -7.8628105e-001
FRAMETRANSFORM 1.0000001e+000 2 22 511 -1.5827027e-001 -1.5208109e-002 -7.8628093e-001
ENDTRACKDEFINITION

TRACKINSTANCE
TAG "C05OGFBO_R_TRACK"
DEFINITION "C05OGFBO_R_TRACKDEF"
INTERPOLATE
SLEEP 100
ENDTRACKINSTANCE

TRACKDEFINITION
TAG "C05OGFTO_R_TRACKDEF"
NUMFRAMES 10
FRAMETRANSFORM 9.9999994e-001 0 1 0 5.8141989e-001 -2.0046225e-001 -3.4862328e-001
FRAMETRANSFORM 1.0000000e+000 0 2 0 5.8141994e-001 -2.0046231e-001 -3.4862342e-001
FRAMETRANSFORM 1.0000001e+000 0 4 0 5.8141994e-001 -2.0046218e-001 -3.4862337e-001
FRAMETRANSFORM 1.0000000e+000 0 6 0 5.8142000e-001 -2.0046224e-001 -3.4862342e-001
FRAMETRANSFORM 1.0000000e+000 511 11 0 5.8141989e-001 -2.0046213e-001 -3.4862334e-001
FRAMETRANSFORM 1.0000001e+000 510 24 0 5.8142000e-001 -2.0046234e-001 -3.4862348e-001
FRAMETRANSFORM 9.9999994e-001 509 40 0 5.8141983e-001 -2.0046224e-001 -3.4862342e-001
FRAMETRANSFORM 1.0000001e+000 508 48 0 5.8142000e-001 -2.0046218e-001 -3.4862339e-001
FRAMETRANSFORM 9.9999994e-001 509 37 0 5.8141994e-001 -2.0046224e-001 -3.4862325e-001
FRAMETRANSFORM 1.0000000e+000 511 17 0 5.8142000e-001 -2.0046222e-001 -3.4862339e-001
ENDTRACKDEFINITION

TRACKINSTANCE
TAG "C05OGFTO_R_TRACK"
DEFINITION "C05OGFTO_R_TRACKDEF"
INTERPOLATE
SLEEP 100
ENDTRACKINSTANCE

TRACKDEFINITION
TAG "C05OGFTH_L_TRACKDEF"
NUMFRAMES 10
FRAMETRANSFORM 9.9999988e-001 510 45 24 -2.6384393e-002 1.1619127e+000 -2.2034092e-001
FRAMETRANSFORM 9.9999994e-001 3 41 29 -2.6384385e-002 1.1619127e+000 -2.2034095e-001
FRAMETRANSFORM 1.0000002e+000 8 38 35 -2.6384434e-002 1.1619130e+000 -2.2034095e-001
FRAMETRANSFORM 1.0000000e+000 11 38 40 -2.6384445e-002 1.1619128e+000 -2.2034083e-001
FRAMETRANSFORM 1.0000000e+000 12 40 42 -2.6384443e-002 1.1619127e+000 -2.2034086e-001
FRAMETRANSFORM 1.0000000e+000 3 52 41 -2.6384385e-002 1.1619128e+000 -2.2034085e-001
FRAMETRANSFORM 1.0000000e+000 500 71 39 -2.6384424e-002 1.1619128e+000 -2.2034094e-001
FRAMETRANSFORM 1.0000000e+000 488 82 38 -2.6384415e-002 1.1619128e+000 -2.2034091e-001
FRAMETRANSFORM 1.0000000e+000 492 76 30 -2.6384424e-002 1.1619129e+000 -2.2034091e-001
FRAMETRANSFORM 1.0000001e+000 501 61 23 -2.6384402e-002 1.1619128e+000 -2.2034097e-001
ENDTRACKDEFINITION

TRACKINSTANCE
TAG "C05OGFTH_L_TRACK"
DEFINITION "C05OGFTH_L_TRACKDEF"
INTERPOLATE
SLEEP 100
ENDTRACKINSTANCE

TRACKDEFINITION
TAG "C05OGFCA_L_TRACKDEF"
NUMFRAMES 10
FRAMETRANSFORM 1.0000001e+000 25 432 8 -1.1700003e-001 -2.8722432e-001 -9.8999995e-001
FRAMETRANSFORM 1.0000000e+000 24 434 4 -1.1700003e-001 -2.8722432e-001 -9.8999995e-001
FRAMETRANSFORM 1.0000001e+000 23 437 1 -1.1700002e-001 -2.8722432e-001 -9.9000001e-001
FRAMETRANSFORM 1.0000000e+000 22 438 511 -1.1699992e-001 -2.8722432e-001 -9.8999989e-001
FRAMETRANSFORM 1.0000000e+000 22 437 510 -1.1700001e-001 -2.8722426e-001 -9.8999989e-001
FRAMETRANSFORM 1.0000000e+000 23 431 1 -1.1700004e-001 -2.8722435e-001 -9.9000001e-001
FRAMETRANSFORM 1.0000000e+000 27 420 10 -1.1700000e-001 -2.8722429e-001 -9.8999989e-001
FRAMETRANSFORM 1.0000000e+000 32 414 18 -1.1699986e-001 -2.8722426e-001 -9.8999995e-001
FRAMETRANSFORM 1.0000001e+000 31 417 18 -1.1699998e-001 -2.8722429e-001 -9.9000001e-001
FRAMETRANSFORM 9.9999994e-001 28 424 14 -1.1700007e-001 -2.8722426e-001 -9.9000001e-001
ENDTRACKDEFINITION

TRACKINSTANCE
TAG "C05OGFCA_L_TRACK"
DEFINITION "C05OGFCA_L_TRACKDEF"
INTERPOLATE
SLEEP 100
ENDTRACKINSTANCE

TRACKDEFINITION
TAG "C05OGFBO_L_TRACKDEF"
NUMFRAMES 10
FRAMETRANSFORM 1.0000000e+000 510 18 508 -1.5800002e-001 1.4999999e-002 -7.8600007e-001
FRAMETRANSFORM 1.0000000e+000 509 21 506 -1.5800004e-001 1.4999994e-002 -7.8600019e-001
FRAMETRANSFORM 1.0000001e+000 508 24 504 -1.5799995e-001 1.4999975e-002 -7.8600013e-001
FRAMETRANSFORM 1.0000000e+000 507 26 502 -1.5799998e-001 1.5000011e-002 -7.8599995e-001
FRAMETRANSFORM 9.9999994e-001 506 27 501 -1.5800004e-001 1.4999975e-002 -7.8599995e-001
FRAMETRANSFORM 1.0000000e+000 506 24 504 -1.5799995e-001 1.5000014e-002 -7.8599995e-001
FRAMETRANSFORM 1.0000000e+000 506 20 508 -1.5800004e-001 1.4999987e-002 -7.8600007e-001
FRAMETRANSFORM 1.0000000e+000 507 16 511 -1.5800002e-001 1.4999968e-002 -7.8599995e-001
FRAMETRANSFORM 9.9999994e-001 508 16 511 -1.5799995e-001 1.5000010e-002 -7.8600007e-001
FRAMETRANSFORM 1.0000000e+000 509 16 511 -1.5800002e-001 1.5000027e-002 -7.8600007e-001
ENDTRACKDEFINITION

TRACKINSTANCE
TAG "C05OGFBO_L_TRACK"
DEFINITION "C05OGFBO_L_TRACKDEF"
INTERPOLATE
SLEEP 100
ENDTRACKINSTANCE

TRACKDEFINITION
TAG "C05OGFTO_L_TRACKDEF"
NUMFRAMES 10
FRAMETRANSFORM 9.9999994e-001 0 512 0 5.8100003e-001 2.0099993e-001 -3.4899983e-001
FRAMETRANSFORM 1.0000001e+000 0 512 0 5.8100003e-001 2.0099998e-001 -3.4900010e-001
FRAMETRANSFORM 1.0000001e+000 0 511 0 5.8100009e-001 2.0100002e-001 -3.4899995e-001
FRAMETRANSFORM 1.0000000e+000 0 511 0 5.8099997e-001 2.0099993e-001 -3.4900007e-001
FRAMETRANSFORM 1.0000000e+000 0 511 0 5.8100003e-001 2.0099995e-001 -3.4899983e-001
FRAMETRANSFORM 1.0000001e+000 0 511 0 5.8100009e-001 2.0099996e-001 -3.4900001e-001
FRAMETRANSFORM 1.0000001e+000 0 511 0 5.8100009e-001 2.0099996e-001 -3.4900001e-001
FRAMETRANSFORM 9.9999994e-001 0 512 0 5.8100003e-001 2.0099996e-001 -3.4899977e-001
FRAMETRANSFORM 9.9999994e-001 0 512 0 5.8100009e-001 2.0099996e-001 -3.4900001e-001
FRAMETRANSFORM 1.0000000e+000 0 512 0 5.8100009e-001 2.0099995e-001 -3.4900001e-001
ENDTRACKDEFINITION

TRACKINSTANCE
TAG "C05OGFTO_L_TRACK"
DEFINITION "C05OGFTO_L_TRACKDEF"
INTERPOLATE
SLEEP 100
ENDTRACKINSTANCE


// Summary:

// 454 faces from model
// 336 vertices from model
// 0 faces merged
// 4513707 slivers removed
// 0 T-joints removed
// 22 tracks collapsed
// 22 DAG nodes in model
// 0 DAG nodes removed
// 0 DAG nodes merged
// 22 DAG nodes in sprite
// 454 faces in sprite
// 336 vertices in sprite


Quote:

Originally Posted by .sps
// This file was created by MAXCONVS SPK Skin Exporter (Version 1.59) -- Thursday, January 14, 1999 15:17:58 PM

SIMPLESPRITEDEF
SIMPLESPRITETAG "ALLCH0002_SPRITE"
NUMFRAMES 1
BMINFO "ALLCH0002" "ALLCH0002.BMP"
ENDSIMPLESPRITEDEF


Quote:

Originally Posted by .mdf
// This file was created by MAXCONVS SPM Exporter (Version 1.56) -- Wednesday, January 06, 1999 19:16:58 PM

INCLUDE "AFTWALL.SPS"
MATERIALDEFINITION
TAG "AFTWALL_MDF"
RENDERMETHOD USERDEFINED 2
RGBPEN 178 178 178
BRIGHTNESS 0.0000000
SCALEDAMBIENT 0.7500000
SIMPLESPRITEINST
TAG "AFTWALL_SPRITE"
ENDSIMPLESPRITEINST
ENDMATERIALDEFINITION

[/spoiler]

.pov
[spoiler]
Quote:

Originally Posted by .pov
mesh2 {
vertex_vectors { 671, <0.267613,-0.031538,1.108813>, <-0.006561,0.143819,1.070480>, <0.235127,0.143819,1.070566>, <-0.280729,-0.070845,1.108672>, <-0.248251,0.143819,1.070391>,
<-0.006562,-0.292875,1.124622>, <0.185163,-0.292875,1.124710>, <-0.198287,-0.292875,1.124533>, <0.267613,-0.031538,1.108813>, <-0.280729,-0.070845,1.108672>,
<-0.006562,-0.292875,1.124622>, <0.185163,-0.292875,1.124710>, <-0.198287,-0.292875,1.124533>, <-0.270717,-0.213374,1.090682>, <0.184865,-0.292911,1.124761>,
<-0.006605,0.389951,0.549509>, <0.315556,0.351268,0.668574>, <0.211000,0.305471,0.876797>, <-0.006605,0.305471,0.876797>, <0.416687,-0.005071,0.812944>,
<0.455551,0.010825,0.624243>, <-0.006605,-0.330365,0.695929>, <0.214706,-0.315843,0.737160>, <0.014412,-0.353794,0.297723>, <-0.224211,0.305471,0.876797>,
<-0.328767,0.351268,0.668574>, <-0.432824,-0.005071,0.811730>, <-0.453825,0.010825,0.622900>, <-0.227911,-0.315844,0.737160>, <-0.027589,-0.353794,0.297723>,
<0.014412,-0.303462,0.297723>, <-0.027589,-0.262073,0.297723>, <-0.006561,0.143819,1.070480>, <0.235127,0.143819,1.070566>, <-0.248251,0.143819,1.070391>,
<0.014416,0.289170,0.343885>, <-0.006605,-0.330365,0.695929>, <-0.027589,-0.262073,0.297723>, <-0.328767,0.351268,0.509322>, <0.267613,-0.031538,1.108813>,
<-0.280729,-0.070845,1.108672>, <-0.006562,-0.292875,1.124622>, <0.185163,-0.292875,1.124710>, <-0.198287,-0.292875,1.124533>, <0.014416,0.289170,0.343885>,
<-0.027589,-0.353794,0.297723>, <0.315556,0.351268,0.509322>, <-0.006562,-0.292875,1.124622>, <0.000468,-0.279293,0.293132>, <-0.006551,-0.355546,0.323001>,
<0.011772,-0.339747,0.304347>, <-0.329634,0.358438,0.557589>, <0.318026,0.358161,0.559718>, <-0.459322,0.007692,0.663037>, <0.454052,0.008336,0.665803>,
<-0.270717,-0.213374,1.090682>, <-0.011348,0.370696,0.404960>, <-0.281152,0.370700,0.698759>, <0.184865,-0.292911,1.124761>, <0.265411,0.370750,0.702841>,
<0.377959,0.245435,0.770948>, <-0.072369,-0.002364,0.362344>, <0.014416,0.289170,0.343885>, <0.315556,0.351268,0.509322>, <-0.328767,0.351268,0.509322>,
<0.455551,0.010825,0.624243>, <0.014412,-0.353794,0.297723>, <-0.453825,0.010825,0.622900>, <-0.027589,-0.353794,0.297723>, <0.315556,0.351268,0.509322>,
<-0.006551,-0.355546,0.323001>, <0.011772,-0.339747,0.304347>, <-0.329634,0.358438,0.557589>, <0.318026,0.358161,0.559718>, <-0.459322,0.007692,0.663037>,
<0.454052,0.008336,0.665803>, <-0.011348,0.370696,0.404960>, <-0.281152,0.370700,0.698759>, <0.265411,0.370750,0.702841>, <0.377959,0.245435,0.770948>,
<-0.072369,-0.002364,0.362344>, <-0.296549,-0.137088,1.985585>, <-0.122250,-0.006195,2.170068>, <-0.128243,0.222158,2.123083>, <0.316216,0.201072,2.116428>,
<0.282015,-0.137089,1.985585>, <-0.006479,0.187618,1.631436>, <-0.006543,0.119235,1.204413>, <0.344947,0.010674,1.537925>, <0.249672,0.211295,1.614968>,
<0.197074,0.145419,1.204413>, <-0.007188,0.327492,1.973744>, <-0.007188,0.292967,1.734822>, <0.357042,0.274172,1.681114>, <0.366351,0.041407,1.702765>,
<0.334803,0.307155,1.956258>, <0.322688,-0.084384,1.806566>, <-0.006882,0.232607,2.122803>, <0.115714,0.253507,2.127742>, <-0.262630,0.211296,1.614968>,
<-0.210161,0.145419,1.204413>, <-0.381963,0.010257,1.551005>, <-0.385767,0.274172,1.681298>, <-0.389886,0.041407,1.704160>, <-0.356430,0.307155,1.935262>,
<-0.007188,-0.171738,2.005126>, <-0.007253,-0.006195,2.170068>, <0.107743,-0.006195,2.170068>, <-0.006488,-0.368481,1.469199>, <0.275927,-0.368481,1.469199>,
<-0.007198,-0.438093,1.763573>, <0.307933,-0.463391,1.707984>, <-0.288903,-0.368481,1.469199>, <-0.322330,-0.463391,1.707984>, <-0.337245,-0.084384,1.803631>,
<-0.332589,0.201072,2.118373>, <-0.296549,-0.137088,1.985585>, <0.316216,0.201072,2.116428>, <0.282015,-0.137089,1.985585>, <0.344947,0.010674,1.537925>,
<0.366351,0.041407,1.702765>, <-0.381963,0.010257,1.551005>, <-0.389886,0.041407,1.704160>, <-0.007188,-0.171738,2.005126>, <-0.007253,-0.006195,2.170068>,
<-0.006488,-0.368481,1.469199>, <0.275927,-0.368481,1.469199>, <-0.007198,-0.438093,1.763573>, <0.307933,-0.463391,1.707984>, <-0.288903,-0.368481,1.469199>,
<-0.322330,-0.463391,1.707984>, <-0.332589,0.201072,2.118373>, <-0.128243,0.222158,2.123083>, <0.366351,0.041407,1.702765>, <0.115714,0.253507,2.127742>,
<0.292055,0.251555,1.651213>, <-0.006527,0.128794,1.097531>, <-0.005964,0.223400,1.662638>, <-0.321135,0.254071,1.657965>, <0.358409,-0.019275,1.722321>,
<0.211801,0.138893,1.118950>, <-0.224231,0.139118,1.118286>, <-0.377677,-0.020536,1.723082>, <-0.127361,0.219409,2.123371>, <-0.122248,-0.006193,2.170069>,
<0.228599,0.121543,1.132238>, <-0.006483,0.147267,1.090389>, <-0.393839,0.044249,1.663691>, <0.365716,0.042693,1.661293>, <0.104102,-0.006577,2.166847>,
<-0.002085,0.233153,2.136868>, <-0.318654,-0.447907,1.711369>, <0.309841,-0.448584,1.712259>, <-0.007150,-0.445136,1.749518>, <-0.275391,0.009486,1.125680>,
<0.359561,0.176571,1.618092>, <-0.391913,0.173616,1.624519>, <-0.152065,0.318242,1.832040>, <-0.012086,0.002243,2.193431>, <0.271753,-0.125838,1.116566>,
<0.345938,-0.065930,1.560657>, <-0.315161,-0.445515,1.729367>, <-0.268085,0.078932,1.154216>, <-0.122250,-0.006195,2.170068>, <-0.128243,0.222158,2.123083>,
<-0.006882,0.232607,2.122803>, <0.115714,0.253507,2.127742>, <0.107743,-0.006195,2.170068>, <-0.007253,-0.006195,2.170068>, <0.107743,-0.006195,2.170068>,
<-0.127361,0.219409,2.123371>, <-0.122248,-0.006193,2.170069>, <0.104102,-0.006577,2.166847>, <-0.002085,0.233153,2.136868>, <-0.012086,0.002243,2.193431>,
<-0.006527,0.128794,1.097531>, <0.211801,0.138893,1.118950>, <-0.224231,0.139118,1.118286>, <0.228599,0.121543,1.132238>, <-0.006483,0.147267,1.090389>,
<-0.275391,0.009486,1.125680>, <0.271753,-0.125838,1.116566>, <-0.268085,0.078932,1.154216>, <-0.447843,0.253784,2.063455>, <-0.622445,0.150862,1.854917>,
<-0.378161,0.018525,2.048641>, <-0.569817,-0.052100,1.884564>, <-0.300934,-0.043578,1.957465>, <-0.378161,0.018525,2.048641>, <-0.569817,-0.052100,1.884564>,
<-0.569817,-0.052100,1.884564>, <-0.295584,-0.095715,1.960084>, <-0.447698,0.257363,2.051551>, <-0.675179,0.050548,1.868063>, <-0.277921,-0.057473,2.001622>,
<-0.447325,0.252933,2.062608>, <-0.361055,0.151093,2.080899>, <-0.466560,0.133428,1.720225>, <-0.437962,-0.141654,1.658683>, <-0.124300,0.174428,2.133770>,
<-0.124300,0.174428,2.133770>, <-1.243201,0.008447,1.935310>, <-1.207031,0.118243,2.051121>, <-1.203652,0.108073,1.829936>, <-1.238066,0.241231,1.952433>,
<-0.447843,0.253784,2.063455>, <-0.622445,0.150862,1.854917>, <-1.203652,0.108073,1.829936>, <-0.622445,0.150862,1.854917>, <-0.378161,0.018525,2.048641>,
<-0.378161,0.018525,2.048641>, <-0.569817,-0.052100,1.884564>, <-0.447698,0.257363,2.051551>, <-0.675179,0.050548,1.868063>, <-0.277921,-0.057473,2.001622>,
<-0.447325,0.252933,2.062608>, <-0.361055,0.151093,2.080899>, <-0.466560,0.133428,1.720225>, <-0.437962,-0.141654,1.658683>, <-0.124300,0.174428,2.133770>,
<-1.328475,0.015466,1.940020>, <-1.266245,0.115915,2.050405>, <-1.272707,0.113404,1.835965>, <-1.263005,0.240932,1.957598>, <-1.272707,0.113404,1.835965>,
<-1.249584,0.241486,1.954667>, <-1.250088,0.116730,2.049471>, <-1.225404,0.110934,1.831773>, <-1.312147,0.015565,1.939054>, <-1.435124,0.178072,2.008880>,
<-1.479312,0.062788,1.892660>, <-1.328475,0.015466,1.940020>, <-1.266245,0.115915,2.050405>, <-1.263005,0.240932,1.957598>, <-1.272707,0.113404,1.835965>,
<-1.272707,0.113404,1.835965>, <-1.249584,0.241486,1.954667>, <-1.250088,0.116730,2.049471>, <-1.225404,0.110934,1.831773>, <-1.312147,0.015565,1.939054>,
<-1.435124,0.178072,2.008880>, <-1.479312,0.062788,1.892660>, <-1.691290,0.114430,1.959655>, <-1.969991,-0.020535,1.970641>, <-1.908951,0.033234,1.903474>,
<-1.972272,0.108165,1.919777>, <-1.918290,0.100808,1.997692>, <-1.975647,0.100808,2.001402>, <-1.967884,0.033234,1.898716>, <-1.954592,0.034073,1.902241>,
<-1.941211,0.098088,1.997948>, <-1.950369,0.067252,1.902162>, <-1.878821,0.081976,1.936193>, <-1.836871,0.067206,1.946251>, <-2.158240,0.124146,1.848913>,
<-2.224744,0.131191,1.912388>, <-2.218092,-0.064020,1.902824>, <-2.160989,-0.028319,1.841957>, <-2.193946,0.141992,2.022706>, <-2.168560,-0.072252,2.009417>,
<-1.969991,-0.020535,1.970641>, <-1.972272,0.108165,1.919777>, <-1.975647,0.100808,2.001402>, <-1.967884,0.033234,1.898716>, <-2.158240,0.124146,1.848913>,
<-1.972272,0.108165,1.919777>, <-1.954592,0.034073,1.902241>, <-1.941211,0.098088,1.997948>, <-1.950369,0.067252,1.902162>, <-2.209224,0.125907,1.881432>,
<-2.191199,-0.039940,1.858508>, <-2.198731,-0.052426,1.894383>, <-2.212274,0.125129,1.940626>, <-1.878821,0.081976,1.936193>, <-2.184341,0.039579,1.903824>,
<-2.224744,0.131191,1.912388>, <-2.218092,-0.064020,1.902824>, <-2.160989,-0.028319,1.841957>, <-2.193946,0.141992,2.022706>, <-2.168560,-0.072252,2.009417>,
<-2.158240,0.124146,1.848913>, <-2.209224,0.125907,1.881432>, <-2.191199,-0.039940,1.858508>, <-2.198731,-0.052426,1.894383>, <0.603846,0.215746,1.872257>,
<0.407888,0.248352,2.097464>, <0.542245,-0.052100,1.899248>, <0.357551,0.035763,2.077340>, <0.279679,-0.043578,1.982996>, <0.542245,-0.052100,1.899248>,
<0.357551,0.035763,2.077340>, <0.542245,-0.052100,1.899248>, <0.281972,-0.104058,1.962699>, <0.383732,0.239580,2.093035>, <0.405231,0.254276,2.083074>,
<0.243959,-0.047700,2.024781>, <0.681591,0.096165,1.899940>, <0.343538,0.164809,2.110804>, <0.435190,-0.009968,1.691090>, <0.061621,-0.113903,1.511941>,
<0.142905,-0.109337,1.484923>, <1.225079,0.015983,1.953240>, <1.187513,0.118243,2.076601>, <1.183333,0.108073,1.855429>, <1.218190,0.241231,1.977800>,
<0.603846,0.215746,1.872257>, <0.407888,0.248352,2.097464>, <1.218190,0.241231,1.977800>, <0.407888,0.248352,2.097464>, <0.357551,0.035763,2.077340>,
<0.542245,-0.052100,1.899248>, <0.383732,0.239580,2.093035>, <0.405231,0.254276,2.083074>, <0.243959,-0.047700,2.024781>, <0.681591,0.096165,1.899940>,
<0.343538,0.164809,2.110804>, <0.435190,-0.009968,1.691090>, <0.061621,-0.113903,1.511941>, <0.142905,-0.109337,1.484923>, <0.096795,-0.054244,1.288715>,
<-0.065716,0.032635,0.075454>, <0.371590,0.056310,-0.285750>, <0.142905,-0.109337,1.484923>, <0.096795,-0.054244,1.288715>, <0.142905,-0.109337,1.484923>,
<1.309462,0.019233,1.961352>, <1.246724,0.115915,2.075670>, <1.252409,0.113404,1.861208>, <1.243148,0.240933,1.982876>, <1.243148,0.240933,1.982876>,
<1.232539,0.240979,1.980412>, <1.231702,0.116390,2.074969>, <1.203629,0.110749,1.857311>, <1.275495,0.020175,1.958202>, <1.396869,0.061052,1.912196>,
<1.451247,0.171715,2.037552>, <1.309462,0.019233,1.961352>, <1.246724,0.115915,2.075670>, <1.252409,0.113404,1.861208>, <1.243148,0.240933,1.982876>,
<1.243148,0.240933,1.982876>, <1.232539,0.240979,1.980412>, <1.231702,0.116390,2.074969>, <1.203629,0.110749,1.857311>, <1.275495,0.020175,1.958202>,
<1.396869,0.061052,1.912196>, <1.451247,0.171715,2.037552>, <1.692230,0.110455,1.989393>, <2.115489,0.071900,1.973405>, <1.950176,-0.020535,1.993359>,
<1.888894,0.033233,1.926414>, <1.952273,0.108165,1.942487>, <1.898573,0.100808,2.020597>, <1.955944,0.100808,2.024100>, <1.947809,0.033233,1.921443>,
<1.934994,0.034006,1.925027>, <1.921636,0.098066,2.020876>, <1.931861,0.067123,1.924876>, <1.861890,0.081816,1.959456>, <1.819456,0.066923,1.969916>,
<2.140631,0.044899,1.942986>, <2.137389,0.124146,1.867792>, <2.204122,0.131191,1.931025>, <2.197436,-0.064020,1.921485>, <2.140113,-0.028320,1.860826>,
<2.173724,0.141992,2.041455>, <2.148290,-0.072252,2.028257>, <1.950176,-0.020535,1.993359>, <1.952273,0.108165,1.942487>, <1.955944,0.100808,2.024100>,
<1.947809,0.033233,1.921443>, <2.137389,0.124146,1.867792>, <1.952273,0.108165,1.942487>, <1.934994,0.034006,1.925027>, <1.921636,0.098066,2.020876>,
<1.931861,0.067123,1.924876>, <2.188189,0.125824,1.899976>, <2.169991,-0.039697,1.877109>, <2.177966,-0.052364,1.913178>, <2.191890,0.125098,1.959383>,
<1.861890,0.081816,1.959456>, <2.163713,0.039622,1.922887>, <2.204122,0.131191,1.931025>, <2.197436,-0.064020,1.921485>, <2.140113,-0.028320,1.860826>,
<2.173724,0.141992,2.041455>, <2.148290,-0.072252,2.028257>, <2.137389,0.124146,1.867792>, <2.188189,0.125824,1.899976>, <2.169991,-0.039697,1.877109>,
<2.177966,-0.052364,1.913178>, <-0.053265,0.000744,2.192243>, <-0.008827,-0.000382,2.191046>, <0.189646,0.176031,2.183390>, <-0.007221,0.165025,2.182400>,
<0.071300,0.171195,2.202712>, <-0.011045,0.171197,2.214658>, <-0.024409,0.152510,2.124574>, <-0.124213,0.012701,2.258222>, <-0.003559,0.012701,2.256130>,
<0.115033,0.012701,2.258222>, <0.115005,0.200310,2.249206>, <-0.125926,0.200310,2.247656>, <-0.006760,0.200309,2.249097>, <0.115033,0.012701,2.258222>,
<0.115021,0.012843,2.257828>, <-0.123121,0.193647,2.250644>, <-0.005313,0.186820,2.296353>, <-0.053265,0.000744,2.192243>, <-0.008827,-0.000382,2.191046>,
<0.189646,0.176031,2.183390>, <-0.007221,0.165025,2.182400>, <0.189646,0.176031,2.183390>, <0.071300,0.171195,2.202712>, <-0.011045,0.171197,2.214658>,
<-0.024409,0.152510,2.124574>, <-0.359051,-0.175780,-1.614370>, <-0.364589,-0.209978,-0.933802>, <-0.094867,-0.209993,-0.933816>, <-0.069449,-0.175872,-1.614397>,
<-0.103365,0.080682,-0.847118>, <-0.365170,0.100586,-0.847389>, <-0.079146,0.157555,-1.614355>, <-0.362437,0.179833,-1.614266>, <-0.103365,0.080682,-0.847118>,
<-0.079146,0.157555,-1.614355>, <-0.102791,0.083369,-0.874292>, <-0.364981,0.103231,-0.874899>, <-0.364632,-0.210505,-0.848410>, <-0.096773,-0.210983,-0.833794>,
<-0.265110,0.100990,-0.931202>, <-0.271378,-0.221000,-1.277306>, <-0.313263,0.199311,-0.526612>, <-0.188211,-0.093483,-1.532795>, <-0.159626,-0.140375,-1.288900>,
<-0.345653,0.189069,-0.857142>, <-0.047394,0.017678,-2.644142>, <-0.079146,0.157555,-1.614355>, <-0.362437,0.179833,-1.614266>, <-0.140949,-0.038914,-2.653337>,
<-0.215893,0.032505,-2.644142>, <-0.109673,0.109193,-2.644142>, <-0.359051,-0.175780,-1.614370>, <-0.069449,-0.175872,-1.614397>, <-0.109673,0.109193,-2.644142>,
<-0.079146,0.157555,-1.614355>, <-0.271378,-0.221000,-1.277306>, <-0.188211,-0.093483,-1.532795>, <-0.159626,-0.140375,-1.288900>, <-0.345653,0.189069,-0.857142>,
<-0.363780,0.099796,-1.479456>, <-0.313263,0.199311,-0.526612>, <-0.345653,0.189069,-0.857142>, <-0.363780,0.099796,-1.479456>, <-0.261481,-0.004882,-1.759601>,
<-0.211282,0.007241,-2.643639>, <-0.364589,-0.209978,-0.933802>, <-0.094867,-0.209993,-0.933816>, <-0.102791,0.083369,-0.874292>, <-0.364981,0.103231,-0.874899>,
<-0.364632,-0.210505,-0.848410>, <-0.096773,-0.210983,-0.833794>, <-0.265110,0.100990,-0.931202>, <-0.271378,-0.221000,-1.277306>, <-0.313263,0.199311,-0.526612>,
<-0.188211,-0.093483,-1.532795>, <-0.159626,-0.140375,-1.288900>, <-0.345653,0.189069,-0.857142>, <-0.363780,0.099796,-1.479456>, <-0.323414,0.230040,0.780283>,
<-0.288711,0.135197,0.682444>, <-0.383534,0.044738,0.706692>, <-0.284489,-0.285077,0.672039>, <-0.073206,0.288199,-0.227213>, <-0.063152,-0.340478,-0.201697>,
<-0.458356,0.254359,-0.227298>, <-0.468375,-0.268321,-0.201711>, <-0.073206,0.288199,-0.227213>, <-0.063152,-0.340478,-0.201697>, <-0.458356,0.254359,-0.227298>,
<-0.468375,-0.268321,-0.201711>, <-0.027586,0.289170,0.343885>, <-0.063152,-0.340478,-0.201697>, <-0.027586,0.289170,0.343885>, <-0.063152,-0.340478,-0.201697>,
<-0.273277,-0.300735,0.725170>, <-0.452776,0.267092,-0.242598>, <-0.474776,-0.303574,-0.366332>, <-0.416173,-0.194241,0.649298>, <-0.183242,0.390134,0.468324>,
<-0.404278,-0.216933,0.613867>, <-0.323414,0.230040,0.780283>, <-0.288711,0.135197,0.682444>, <-0.383534,0.044738,0.706692>, <-0.103364,0.080682,-0.889726>,
<-0.365169,0.100586,-0.889996>, <-0.094914,-0.209997,-0.809326>, <-0.364526,-0.209977,-0.809372>, <-0.027586,0.289170,0.343885>, <-0.284489,-0.285077,0.672039>,
<-0.103364,0.080682,-0.889726>, <-0.027586,0.289170,0.343885>, <-0.273277,-0.300735,0.725170>, <-0.416173,-0.194241,0.649298>, <-0.183242,0.390134,0.468324>,
<-0.404278,-0.216933,0.613867>, <-0.323414,0.230040,0.780283>, <-0.288711,0.135197,0.682444>, <-0.383534,0.044738,0.706692>, <-0.092792,-0.359408,-2.814809>,
<-0.053755,0.111749,-2.417200>, <-0.231538,0.120458,-2.425840>, <-0.132655,-0.383549,-2.605067>, <-0.338409,-0.262453,-2.616983>, <-0.092792,-0.359408,-2.814809>,
<-0.345690,-0.200337,-2.815817>, <0.017343,0.088005,-2.808716>, <-0.047350,0.229282,-2.814224>, <-0.224590,0.093992,-2.814765>, <-0.092921,-0.359916,-2.814814>,
<-0.070897,0.157338,-2.775666>, <-0.214534,0.058382,-2.810410>, <-0.000554,0.024714,-2.804699>, <-0.075056,0.134366,-2.554615>, <-0.241219,0.071163,-2.722855>,
<-0.035847,0.101183,-2.661215>, <-0.199579,-0.257583,-2.560243>, <-0.043939,0.057437,-2.673705>, <-0.270022,-0.371448,-2.808226>, <-0.112844,0.083846,-2.695240>,
<-0.273550,-0.686643,-2.805048>, <-0.070897,0.157338,-2.775666>, <-0.214534,0.058382,-2.810410>, <-0.000554,0.024714,-2.804699>, <-0.075056,0.134366,-2.554615>,
<-0.241219,0.071163,-2.722855>, <-0.035847,0.101183,-2.661215>, <-0.043939,0.057437,-2.673705>, <-0.112844,0.083846,-2.695240>, <-0.122112,0.084000,-2.741756>,
<-0.160596,0.003678,-2.674776>, <-0.372436,-0.598945,-2.819501>, <-0.184490,-0.704974,-2.816896>, <-0.372437,-0.598945,-2.819501>, <-0.184490,-0.704973,-2.816895>,
<-0.184490,-0.704975,-2.816896>, <-0.372437,-0.598944,-2.819501>, <-0.276988,-0.683988,-2.820269>, <0.440727,-0.190975,1.043795>, <0.473050,-0.079986,0.998174>,
<0.271316,-0.285077,0.672039>, <0.061536,0.288199,-0.227095>, <0.050564,-0.340478,-0.201697>, <0.444667,0.254359,-0.227064>, <0.455169,-0.268321,-0.201712>,
<0.061536,0.288199,-0.227095>, <0.050564,-0.340478,-0.201697>, <0.444667,0.254359,-0.227064>, <0.455169,-0.268321,-0.201712>, <0.258479,-0.301070,0.733747>,
<0.435731,0.270411,-0.227244>, <0.251461,-0.312766,0.765201>, <0.542852,0.159875,-0.203574>, <0.440727,-0.190975,1.043795>, <0.473050,-0.079986,0.998174>,
<0.091152,0.080679,-0.889357>, <0.351737,0.100514,-0.889258>, <0.351503,-0.210049,-0.809372>, <0.081942,-0.210000,-0.809326>, <0.271316,-0.285077,0.672039>,
<0.351737,0.100514,-0.889258>, <0.258479,-0.301070,0.733747>, <0.251461,-0.312766,0.765201>, <0.440727,-0.190975,1.043795>, <0.473050,-0.079986,0.998174>,
<0.081894,-0.209997,-0.933817>, <0.351567,-0.210050,-0.933802>, <0.346064,-0.175895,-1.614370>, <0.056494,-0.175874,-1.614398>, <0.066179,0.157551,-1.614356>,
<0.091152,0.080679,-0.846748>, <0.351737,0.100514,-0.846649>, <0.351737,0.100514,-0.846649>, <0.349357,0.179716,-1.614267>, <0.349357,0.179716,-1.614267>,
<0.090235,0.083135,-0.876632>, <0.351571,0.103119,-0.874085>, <0.351542,-0.210623,-0.845846>, <0.084039,-0.211140,-0.827691>, <0.253688,0.097327,-1.024616>,
<0.327754,-0.282957,-0.765438>, <0.198913,-0.256351,-0.744545>, <0.287672,0.122105,-1.320648>, <0.312340,-0.107812,-0.811285>, <0.204848,-0.137897,-2.129012>,
<0.228899,0.139672,-1.321029>, <0.349357,0.179716,-1.614267>, <0.127585,-0.038914,-2.653338>, <0.034611,0.017678,-2.644143>, <0.203112,0.032505,-2.644143>,
<0.096891,0.109193,-2.644143>, <0.346064,-0.175895,-1.614370>, <0.056494,-0.175874,-1.614398>, <0.066179,0.157551,-1.614356>, <0.349357,0.179716,-1.614267>,
<0.127585,-0.038914,-2.653338>, <0.203112,0.032505,-2.644143>, <0.346064,-0.175895,-1.614370>, <0.287672,0.122105,-1.320648>, <0.204848,-0.137897,-2.129012>,
<0.228899,0.139672,-1.321029>, <0.277864,-0.032719,-0.983039>, <0.327754,-0.282957,-0.765438>, <0.198913,-0.256351,-0.744545>, <0.312340,-0.107812,-0.811285>,
<0.277864,-0.032719,-0.983039>, <0.277342,-0.062541,-1.302892>, <0.233284,-0.043350,-2.595384>, <0.081894,-0.209997,-0.933817>, <0.351567,-0.210050,-0.933802>,
<0.090235,0.083135,-0.876632>, <0.351571,0.103119,-0.874085>, <0.351542,-0.210623,-0.845846>, <0.084039,-0.211140,-0.827691>, <0.253688,0.097327,-1.024616>,
<0.327754,-0.282957,-0.765438>, <0.198913,-0.256351,-0.744545>, <0.287672,0.122105,-1.320648>, <0.312340,-0.107812,-0.811285>, <0.228899,0.139672,-1.321029>,
<0.277864,-0.032719,-0.983039>, <0.277342,-0.062541,-1.302892>, <0.106186,-0.381628,-2.598933>, <0.321163,-0.277107,-2.599984>, <0.043653,0.108841,-2.418219>,
<0.221727,0.103587,-2.422634>, <0.106186,-0.381627,-2.598933>, <0.321163,-0.277107,-2.599985>, <0.073692,-0.343481,-2.807867>, <0.338396,-0.205540,-2.794991>,
<-0.019517,0.111292,-2.811855>, <0.056674,0.246972,-2.808391>, <0.222534,0.098006,-2.812480>, <0.321164,-0.277111,-2.599987>, <0.106187,-0.381633,-2.598936>,
<0.073427,0.171487,-2.773254>, <0.210104,0.063501,-2.808613>, <-0.005730,0.046854,-2.808778>, <0.238672,0.067122,-2.715358>, <0.069861,0.139215,-2.549617>,
<0.030757,0.113688,-2.658160>, <0.237189,0.023883,-2.721602>, <0.181729,-0.279528,-2.558986>, <0.234764,-0.275768,-2.790983>, <0.107493,0.091659,-2.691146>,
<0.276476,-0.603073,-2.789505>, <0.073427,0.171487,-2.773254>, <0.210104,0.063501,-2.808613>, <-0.005730,0.046854,-2.808778>, <0.238672,0.067122,-2.715358>,
<0.069861,0.139215,-2.549617>, <0.030757,0.113688,-2.658160>, <0.237189,0.023883,-2.721602>, <0.107493,0.091659,-2.691146>, <0.137655,0.035127,-2.568344>,
<0.161750,-0.009802,-2.629056>, <0.333431,-0.614843,-2.803493>, <0.137634,-0.705324,-2.810563>, <0.333431,-0.614844,-2.803493>, <0.333431,-0.614843,-2.803493>,
<0.231706,-0.690273,-2.811104>, }
uv_vectors { 671, <0.241195,0.094374>, <0.023469,0.060303>, <0.215398,0.060380>, <0.241195,0.094374>, <0.215398,0.060380>,
<0.982552,0.060943>, <0.603140,0.048982>, <0.615559,0.039003>, <0.399273,0.049560>, <0.405939,0.039056>,
<0.972251,0.061018>, <0.804162,0.061022>, <0.792782,0.060938>, <0.654098,0.038994>, <0.804436,0.061073>,
<1.006421,0.574558>, <0.758263,0.662623>, <0.798124,0.816633>, <1.008319,0.816633>, <0.480985,0.769405>,
<0.493719,0.629834>, <-0.006421,0.682856>, <0.172326,0.713352>, <0.012976,0.388326>, <1.212409,0.816633>,
<1.249114,0.662623>, <1.518233,0.768507>, <1.506281,0.628841>, <1.818040,0.713352>, <1.972804,0.388326>,
<0.012976,0.388326>, <-0.027196,0.388326>, <1.027826,0.959889>, <0.616714,0.959953>, <1.390059,0.959823>,
<0.983999,0.422470>, <1.993579,0.682856>, <1.972804,0.388326>, <1.249114,0.544834>, <0.389781,0.988242>,
<1.604514,0.988137>, <-0.007557,0.999934>, <0.161213,1.000000>, <1.827460,0.999869>, <0.983999,0.422470>,
<-0.027196,0.388326>, <0.758263,0.544834>, <1.992443,0.999934>, <-0.024018,0.389432>, <-0.007030,0.406883>,
<0.010464,0.393818>, <1.249114,0.719832>, <0.758263,0.717658>, <1.525755,0.856404>, <0.494294,0.623534>,
<1.737012,0.967263>, <1.007219,0.469686>, <1.219898,0.680812>, <-0.175802,0.999869>, <0.789715,0.683678>,
<0.668535,0.719339>, <0.066030,0.405972>, <0.105014,0.795651>, <-0.043097,0.898673>, <0.956903,0.898673>,
<0.743939,0.970237>, <0.410564,0.766905>, <0.743939,0.970237>, <0.410564,0.766905>, <0.956903,0.898673>,
<0.410537,0.766850>, <-0.186959,0.823120>, <0.957005,0.898639>, <0.541694,1.038198>, <0.743953,0.970235>,
<0.315181,1.028612>, <-0.173753,0.989554>, <0.957720,0.898399>, <0.554860,1.033774>, <0.691382,0.987898>,
<0.043402,0.801448>, <0.684514,0.834304>, <0.857460,1.000000>, <0.126396,1.000000>, <0.295171,0.989944>,
<0.697935,0.834291>, <0.023538,0.558883>, <0.023483,0.179343>, <0.331423,0.500764>, <0.239157,0.544245>,
<0.185179,0.179343>, <0.022941,0.863126>, <0.022941,0.650771>, <0.342011,0.628031>, <0.350160,0.647274>,
<0.310817,0.847584>, <0.413079,0.695337>, <0.023199,0.995610>, <0.126396,1.000000>, <0.239157,0.544245>,
<0.185179,0.179343>, <0.339609,0.514559>, <0.342011,0.628031>, <0.350160,0.647274>, <0.306521,0.832383>,
<0.983170,0.851843>, <0.983234,1.000000>, <0.869815,1.000000>, <0.982479,0.370454>, <0.660248,0.370394>,
<0.983179,0.634871>, <0.659695,0.610200>, <0.692101,0.370505>, <0.646673,0.610231>, <0.424574,0.694679>,
<0.648754,0.953569>, <0.485635,0.818873>, <0.664204,0.951819>, <0.469784,0.814163>, <0.322019,0.467262>,
<0.292359,0.622586>, <0.325003,0.481296>, <0.300972,0.617460>, <0.971629,0.851855>, <0.971565,1.000000>,
<0.972324,0.370505>, <0.703939,0.370454>, <0.971620,0.634901>, <0.740966,0.612312>, <0.673615,0.366206>,
<0.756577,0.612809>, <0.286934,0.995796>, <0.851514,0.957800>, <0.300972,0.617460>, <0.861954,0.961981>,
<0.281473,0.592315>, <0.023468,0.054784>, <0.024221,0.588314>, <0.287994,0.598403>, <0.347426,0.634421>,
<0.196874,0.103326>, <0.196334,0.102831>, <0.358388,0.630873>, <0.851513,0.957794>, <0.857460,1.000000>,
<0.206501,0.114025>, <0.024221,0.076897>, <0.347093,0.612522>, <0.345311,0.611002>, <0.873406,0.998387>,
<0.220873,1.004019>, <0.743372,0.616350>, <0.728056,0.615664>, <0.981918,0.624402>, <0.225867,0.105972>,
<0.327422,0.452681>, <0.342379,0.645415>, <0.144672,0.748596>, <0.752746,1.000000>, <0.464571,0.056167>,
<0.388233,0.482755>, <0.655081,0.625097>, <0.209626,0.128007>, <0.679903,0.349027>, <0.437819,0.002070>,
<0.296839,0.000001>, <0.175910,0.036474>, <0.910611,0.349027>, <0.794725,0.349027>, <-0.089389,0.349027>,
<0.916266,0.687786>, <0.679906,0.349039>, <0.910727,0.349027>, <0.291601,0.098227>, <0.789658,0.529795>,
<0.205752,0.960017>, <0.612891,0.959954>, <0.734063,0.959942>, <0.237911,1.007173>, <0.205894,0.960017>,
<1.298048,0.947675>, <0.316334,0.984570>, <1.361350,0.956033>, <0.481342,0.849321>, <0.345665,0.690132>,
<0.440945,0.865288>, <0.550617,0.694543>, <0.543807,0.918655>, <0.458994,0.908079>, <0.374927,0.710485>,
<0.369599,0.739704>, <0.622147,0.871283>, <0.468913,0.845277>, <0.341820,0.682168>, <0.624236,0.913875>,
<0.436829,0.966355>, <0.382810,0.937321>, <0.346789,0.650303>, <0.461667,0.578781>, <0.827040,0.967189>,
<0.488329,0.389405>, <0.578375,0.080831>, <0.797038,0.140116>, <0.176286,0.103607>, <0.950134,0.092058>,
<0.982534,0.884252>, <0.208639,0.703707>, <1.180796,0.102314>, <1.208639,0.703707>, <1.480404,0.949785>,
<0.485872,0.949919>, <0.392827,0.764976>, <1.423713,0.531971>, <0.290527,0.652643>, <0.485872,0.949919>,
<0.982525,0.884251>, <0.860222,0.868153>, <0.518856,0.806898>, <0.392827,0.764976>, <0.762451,0.855284>,
<0.315710,0.886893>, <0.702900,1.000000>, <0.111738,0.937001>, <0.918778,0.981003>, <1.111738,0.937001>,
<1.302774,0.893438>, <1.130388,0.962381>, <0.111738,0.937001>, <0.316094,0.886798>, <0.773229,0.756597>,
<0.275059,0.667535>, <0.613531,-0.000000>, <0.793239,0.080831>, <0.946502,0.067255>, <1.150504,0.035809>,
<0.150504,0.035809>, <0.945445,0.060035>, <0.795099,0.096891>, <1.170304,0.081475>, <0.603560,0.015262>,
<0.761266,0.083663>, <-0.268333,0.068201>, <0.613531,-0.000000>, <0.487510,0.015967>, <0.444963,0.082611>,
<0.586329,0.000000>, <0.601745,0.093611>, <0.604930,0.015988>, <0.453088,0.000692>, <0.453747,0.019499>,
<0.600268,0.062456>, <0.507392,0.026554>, <0.494829,0.119655>, <0.450514,0.172813>, <1.129271,0.029245>,
<0.956366,0.000000>, <0.514976,0.115763>, <0.344793,0.128773>, <0.834464,0.014074>, <0.631137,0.114577>,
<0.614557,0.999900>, <1.087886,0.826374>, <0.959978,0.908631>, <0.270968,0.906152>, <0.129270,0.029245>,
<0.087886,0.826374>, <0.942955,1.089503>, <0.960536,0.908483>, <0.303065,0.920138>, <0.934340,-0.003725>,
<0.319965,0.130671>, <0.479093,0.155366>, <0.929231,0.028385>, <0.352301,0.941592>, <0.066420,0.000220>,
<0.888655,0.594747>, <0.107538,0.558706>, <0.223612,0.863063>, <0.969848,0.174474>, <0.110332,0.159789>,
<0.832967,0.899240>, <0.857258,0.701575>, <0.185634,0.744976>, <0.149151,0.630059>, <0.356346,0.681462>,
<0.499131,0.864636>, <0.369599,0.739704>, <0.453911,0.866274>, <0.559555,0.919350>, <0.576998,0.698923>,
<0.474651,0.905298>, <0.374927,0.710485>, <0.650842,0.858748>, <0.455900,0.888022>, <0.482787,0.861087>,
<0.639010,0.929029>, <0.374910,0.763043>, <0.406520,0.928973>, <0.334966,0.614223>, <0.982460,0.363345>,
<0.457896,0.389531>, <0.578375,0.080831>, <0.797038,0.140116>, <0.176286,0.103607>, <-0.049866,0.092058>,
<0.153080,0.699928>, <0.974122,0.904505>, <0.950134,0.092058>, <-0.025878,0.904505>, <0.485872,0.949919>,
<0.392827,0.764976>, <0.059815,0.989548>, <-0.026019,0.904666>, <0.485872,0.949919>, <0.249068,0.621515>,
<0.327632,0.964637>, <-0.026234,0.651277>, <0.510184,0.998243>, <0.392827,0.764976>, <0.392827,0.764976>,
<0.209389,0.717621>, <1.208639,0.703707>, <-0.031589,0.999925>, <1.675687,0.999808>, <0.525331,1.000000>,
<0.375128,0.886463>, <0.773495,1.000000>, <0.187332,0.937001>, <-0.009742,0.981003>, <0.990258,0.981003>,
<-0.009750,0.981004>, <0.773484,1.000001>, <0.187332,0.937001>, <0.037145,0.977418>, <0.323745,0.753169>,
<0.828402,0.708416>, <0.613531,-0.000000>, <0.793239,0.080831>, <0.150504,0.035809>, <0.946502,0.067255>,
<-0.057593,0.068642>, <-0.053985,0.078591>, <0.793257,0.095785>, <0.167602,0.083816>, <0.594469,0.032173>,
<0.627693,-0.001095>, <0.829236,0.097022>, <0.613531,-0.000000>, <0.613531,-0.000000>, <0.562966,0.015968>,
<0.518090,0.082612>, <0.662788,0.000000>, <0.677725,0.093612>, <0.680793,0.015989>, <0.525331,0.000000>,
<0.524381,0.018448>, <0.676201,0.062258>, <0.581717,0.024201>, <0.571998,0.115643>, <0.526613,0.169446>,
<0.507508,-0.000000>, <1.129271,0.029245>, <0.956366,0.000000>, <0.514976,0.115763>, <0.344793,0.128773>,
<0.834464,0.014074>, <0.631137,0.114577>, <0.614557,0.999900>, <1.087886,0.826374>, <0.959978,0.908631>,
<0.270968,0.906152>, <0.129270,0.029245>, <0.087886,0.826374>, <0.270785,0.906102>, <0.296281,1.083998>,
<0.025873,0.799352>, <1.199990,0.041206>, <0.581026,0.110714>, <0.478830,0.155499>, <0.929218,0.028041>,
<0.067645,0.817554>, <0.390466,0.149865>, <0.888655,0.594747>, <0.107538,0.558706>, <0.223612,0.863063>,
<0.969848,0.174474>, <0.110332,0.159789>, <0.832967,0.899240>, <0.856834,0.702619>, <0.186514,0.746391>,
<0.149414,0.630100>, <0.816398,1.000000>, <0.746458,1.000000>, <0.793765,0.968132>, <0.022926,0.995598>,
<0.873042,1.015603>, <0.022555,0.995583>, <0.019080,0.995435>, <0.666076,1.000000>, <0.799816,0.998020>,
<0.928020,1.000000>, <0.135650,0.933416>, <0.455262,0.921979>, <0.296966,0.932618>, <-0.071980,1.000000>,
<-0.071828,0.997094>, <0.454982,0.921875>, <-0.021744,0.934194>, <0.745738,0.516083>, <0.793230,0.508853>,
<0.098188,0.444093>, <0.302229,0.532203>, <0.395569,0.958318>, <0.446905,0.953543>, <0.467426,0.951635>,
<0.572223,0.830245>, <0.603044,0.000036>, <0.598262,0.886483>, <0.375128,0.886463>, <0.355149,-0.000000>,
<0.146602,0.999871>, <0.832980,1.000000>, <0.106356,0.000055>, <0.882283,0.000170>, <1.152614,1.000000>,
<1.111945,0.000055>, <1.150832,0.964591>, <0.834593,0.964132>, <1.036235,1.098300>, <0.377030,0.885519>,
<0.947519,0.890713>, <0.525856,0.440911>, <1.372872,1.000000>, <0.456629,0.100655>, <0.431510,0.420589>,
<0.846978,0.975568>, <0.235317,0.008850>, <0.126396,1.000000>, <0.883644,1.000000>, <0.328134,-0.000000>,
<1.007792,0.008850>, <0.125352,0.008850>, <0.614557,0.999900>, <0.382039,0.999874>, <1.125352,0.008850>,
<1.123178,0.999914>, <0.635859,0.999903>, <0.695441,0.999910>, <0.724769,0.999913>, <1.336862,0.999838>,
<0.897255,1.000005>, <0.977990,0.000089>, <1.369680,-0.000005>, <1.897166,0.031821>, <1.815268,0.027061>,
<1.438259,-0.000021>, <0.603044,0.000036>, <0.397786,-0.000000>, <1.188500,0.037073>, <0.826636,0.036993>,
<0.594737,0.085119>, <0.399178,0.062286>, <0.772941,0.027791>, <0.309901,-0.000015>, <0.871124,0.254135>,
<0.373216,-0.000004>, <0.385959,-0.000002>, <0.834094,0.057277>, <0.482860,-0.014936>, <0.215398,0.060380>,
<0.215398,0.060380>, <0.255917,0.113772>, <1.760525,0.665186>, <1.085709,0.000063>, <-0.055974,0.018935>,
<1.349683,0.000000>, <1.675281,0.018925>, <1.085709,0.000063>, <-0.055974,0.018935>, <1.349683,0.000000>,
<1.675281,0.018925>, <-0.966506,0.422470>, <1.944026,0.018935>, <1.033494,0.422470>, <1.944026,0.018935>,
<1.788482,0.685778>, <1.349761,-0.000000>, <1.675281,0.018925>, <1.653226,0.684247>, <1.171713,0.455046>,
<1.676375,0.621064>, <1.301647,0.743225>, <1.387781,0.661726>, <1.467537,0.706407>, <1.190126,0.027456>,
<0.825512,0.027749>, <0.397813,0.077523>, <0.595481,0.077495>, <1.102348,0.795651>, <0.525331,1.000000>,
<0.192183,0.027687>, <0.105014,0.795651>, <0.525331,1.000000>, <0.820687,0.959787>, <0.993428,0.865149>,
<0.599308,0.971043>, <0.998354,0.884744>, <1.033073,0.873077>, <1.139407,0.837345>, <0.638138,0.586707>,
<0.865659,0.630854>, <0.860124,0.868354>, <0.345665,0.690132>, <0.455524,0.976767>, <0.379964,0.647091>,
<0.525331,1.000000>, <0.857377,0.547663>, <1.000000,0.648726>, <0.843549,0.870040>, <0.379964,0.647091>,
<0.921670,0.671077>, <0.807124,0.852895>, <0.789262,0.562722>, <0.909331,0.667240>, <0.814870,0.882957>,
<0.873868,0.589179>, <0.477331,0.786322>, <0.812374,0.586626>, <0.352656,0.881328>, <0.904253,0.790542>,
<-0.004594,0.690793>, <1.125352,0.008850>, <1.005082,0.008850>, <0.044740,0.008850>, <1.125366,0.002272>,
<1.007407,0.008850>, <0.115961,0.008850>, <0.094158,0.008850>, <0.939392,0.008850>, <0.947944,0.008850>,
<0.171300,-0.002042>, <0.993518,0.873292>, <0.725846,0.973009>, <0.106006,0.993678>, <0.010682,0.732628>,
<0.725846,0.973009>, <0.944653,1.006322>, <1.083176,0.839891>, <0.337714,0.049734>, <0.397043,0.049566>,
<0.230978,0.665186>, <0.929235,0.000150>, <0.043636,0.018935>, <0.662788,0.000000>, <0.320096,0.018925>,
<0.929235,0.000150>, <0.043636,0.018935>, <0.662788,0.000000>, <0.320096,0.018925>, <0.199016,0.693681>,
<0.669936,0.000796>, <0.180186,0.707579>, <0.599228,0.014099>, <0.268098,0.949571>, <0.371094,0.929342>,
<0.192183,0.027687>, <-0.174488,0.027749>, <0.595481,0.077495>, <0.397813,0.077523>, <0.525331,1.000000>,
<0.825512,0.027749>, <0.525331,1.000000>, <0.525331,1.000000>, <0.523424,1.000260>, <0.480481,1.006106>,
<0.375128,0.886463>, <0.598262,0.886483>, <0.603044,0.000036>, <0.355149,-0.000000>, <0.106356,0.000055>,
<0.146602,0.999871>, <0.832980,1.000000>, <-0.167020,1.000000>, <0.882283,0.000170>, <-0.117717,0.000170>,
<0.145452,0.960950>, <0.834565,0.964265>, <0.597046,0.885895>, <-0.039790,1.092371>, <-0.063920,0.770036>,
<0.189626,0.886446>, <0.333098,0.886459>, <-0.085821,0.385582>, <0.559241,0.867612>, <0.662043,0.000044>,
<-0.040502,0.382154>, <-0.106603,1.000000>, <0.328134,-0.000000>, <0.235317,0.008850>, <0.016836,0.008850>,
<0.125352,0.008850>, <0.614557,0.999900>, <0.382039,0.999874>, <0.126396,1.000000>, <0.722524,1.943928>,
<0.465558,0.943928>, <0.550336,0.952778>, <0.591997,1.943829>, <-0.119145,1.000000>, <0.446602,0.508333>,
<-0.150383,1.000000>, <0.570974,1.943813>, <0.346906,0.018924>, <0.001298,0.018937>, <0.799610,-0.007556>,
<0.738933,-0.004205>, <0.748001,-0.004706>, <1.001324,0.000191>, <0.397786,-0.000000>, <0.603044,0.000036>,
<0.189997,0.034638>, <0.826584,0.037141>, <0.606822,-0.038668>, <0.399353,0.066088>, <0.335313,0.027663>,
<0.577712,0.107077>, <0.483081,0.119219>, <0.404648,0.027651>, <0.670657,0.075948>, <0.299925,0.027669>,
<0.873186,0.033687>, <0.935068,0.041396>, <0.292359,0.622586>, <-0.001548,0.507664>, <0.865658,0.393890>,
<0.860124,0.156390>, <0.345665,0.309868>, <0.455524,0.023234>, <0.379964,0.352908>, <0.525331,0.000000>,
<0.857377,0.477530>, <1.000000,0.376018>, <0.843549,0.154705>, <0.455524,0.023233>, <0.345665,0.309868>,
<0.921706,0.353676>, <0.807282,0.171274>, <0.789744,0.459460>, <0.812385,0.137998>, <0.908347,0.358078>,
<0.874605,0.434404>, <0.773094,0.119034>, <0.459193,0.212785>, <0.451579,0.137679>, <0.904782,0.234676>,
<0.104646,0.080530>, <0.125352,0.008850>, <0.203644,0.008850>, <0.237741,0.008850>, <0.226956,0.008850>,
<0.125344,0.001741>, <0.156828,0.011172>, <0.550336,0.952778>, <0.131302,0.008850>, <0.057329,0.071366>,
<0.509215,0.974718>, <-0.018890,0.884466>, <0.000000,0.267372>, <0.095323,0.006320>, <0.095323,0.006320>,
<0.126879,-0.080096>, }
texture_list { 11, texture { uv_mapping pigment { image_map { sys "BAFFT0002.bmp" map_type 0 interpolate 0 }} finish { ambient .60 diffuse .25 }}
texture { uv_mapping pigment { image_map { sys "BAFCH0001.bmp" map_type 0 interpolate 0 }} finish { ambient .60 diffuse .25 }}
texture { uv_mapping pigment { image_map { sys "BAFCH0002.bmp" map_type 0 interpolate 0 }} finish { ambient .60 diffuse .25 }}
texture { uv_mapping pigment { image_map { sys "BAFLG0003.bmp" map_type 0 interpolate 0 }} finish { ambient .60 diffuse .25 }}
texture { uv_mapping pigment { image_map { sys "BAFFT0001.bmp" map_type 0 interpolate 0 }} finish { ambient .60 diffuse .25 }}
texture { uv_mapping pigment { image_map { sys "BAFFA0001.bmp" map_type 0 interpolate 0 }} finish { ambient .60 diffuse .25 }}
texture { uv_mapping pigment { image_map { sys "BAFUA0001.bmp" map_type 0 interpolate 0 }} finish { ambient .60 diffuse .25 }}
texture { uv_mapping pigment { image_map { sys "BAFLG0001.bmp" map_type 0 interpolate 0 }} finish { ambient .60 diffuse .25 }}
texture { uv_mapping pigment { image_map { sys "BAFLG0002.bmp" map_type 0 interpolate 0 }} finish { ambient .60 diffuse .25 }}
texture { uv_mapping pigment { image_map { sys "BAFHN0001.bmp" map_type 0 interpolate 0 }} finish { ambient .60 diffuse .25 }}
texture { uv_mapping pigment { image_map { sys "BAFHN0002.bmp" map_type 0 interpolate 0 }} finish { ambient .60 diffuse .25 }}
}
face_indices { 344, <666,633,632>, 0, <541,509,542>, 0, <636,667,668>, 0, <668,637,636>, 0, <668,667,638>, 0, <638,639,668>, 0, <638,667,636>, 0, <668,639,637>, 0, <640,636,634>, 0, <636,640,638>, 0,
<639,642,635>, 0, <635,637,639>, 0, <641,642,640>, 0, <642,638,640>, 0, <639,638,642>, 0, <635,634,637>, 0, <636,637,634>, 0, <641,634,635>, 0, <635,642,641>, 0, <640,634,641>, 0,
<512,543,544>, 0, <543,512,513>, 0, <543,514,544>, 0, <514,543,515>, 0, <514,512,544>, 0, <543,513,515>, 0, <516,510,512>, 0, <512,514,516>, 0, <515,511,518>, 0, <511,515,513>, 0,
<517,516,518>, 0, <516,514,518>, 0, <518,514,515>, 0, <511,513,510>, 0, <512,510,513>, 0, <516,517,510>, 0, <511,517,518>, 0, <517,511,510>, 0, <89,88,0>, 1, <86,89,90>, 1,
<90,87,86>, 1, <0,90,89>, 1, <88,89,93>, 1, <93,92,91>, 1, <93,94,88>, 1, <89,86,92>, 1, <91,95,93>, 1, <92,93,89>, 1, <90,2,1>, 1, <2,90,0>, 1,
<1,87,90>, 1, <98,91,97>, 1, <91,98,95>, 1, <84,95,98>, 1, <97,91,83>, 1, <3,99,100>, 1, <99,3,101>, 1, <100,86,87>, 1, <86,100,99>, 1, <101,102,99>, 1,
<102,91,92>, 1, <102,101,103>, 1, <99,92,86>, 1, <91,102,104>, 1, <92,99,102>, 1, <1,100,87>, 1, <100,1,4>, 1, <4,3,100>, 1, <83,91,104>, 1, <106,105,107>, 1,
<119,109,6>, 1, <6,8,119>, 1, <5,11,126>, 1, <126,108,5>, 1, <110,111,105>, 1, <85,105,111>, 1, <128,120,96>, 1, <120,128,109>, 1, <109,119,120>, 1, <96,118,128>, 1,
<111,110,108>, 1, <108,126,111>, 1, <107,105,85>, 1, <7,121,9>, 1, <10,112,12>, 1, <112,10,125>, 1, <121,7,129>, 1, <127,123,113>, 1, <81,113,123>, 1, <130,114,122>, 1,
<122,129,130>, 1, <129,122,121>, 1, <114,130,116>, 1, <113,125,127>, 1, <125,113,112>, 1, <82,123,124>, 1, <123,82,81>, 1, <134,107,117>, 1, <117,107,287>, 1, <84,290,285>, 1,
<284,286,94>, 1, <94,93,284>, 1, <93,95,284>, 1, <284,95,285>, 1, <95,84,285>, 1, <288,287,107>, 1, <288,85,289>, 1, <287,288,289>, 1, <288,107,85>, 1, <291,96,133>, 1,
<291,118,96>, 1, <82,132,115>, 1, <104,131,83>, 1, <82,185,187>, 1, <185,82,115>, 1, <183,188,131>, 1, <187,81,82>, 1, <81,187,186>, 1, <189,114,116>, 1, <114,189,122>, 1,
<103,190,184>, 1, <184,102,103>, 1, <184,104,102>, 1, <183,104,184>, 1, <183,131,104>, 1, <187,185,186>, 1, <398,163,168>, 2, <399,398,168>, 2, <168,400,399>, 2, <167,400,168>, 2,
<166,404,169>, 2, <404,166,401>, 2, <163,398,164>, 2, <398,402,164>, 2, <402,403,164>, 2, <165,164,403>, 2, <401,166,403>, 2, <165,403,166>, 2, <576,575,577>, 3, <575,578,577>, 3,
<417,416,418>, 3, <418,416,419>, 3, <575,579,578>, 3, <418,419,422>, 3, <575,580,579>, 3, <576,577,581>, 3, <583,581,577>, 3, <418,422,420>, 3, <417,421,416>, 3, <423,416,421>, 3,
<579,580,582>, 3, <579,582,584>, 3, <425,421,424>, 3, <425,423,421>, 3, <443,436,437>, 4, <442,439,443>, 4, <439,436,443>, 4, <436,441,437>, 4, <445,444,438>, 4, <444,440,438>, 4,
<438,440,442>, 4, <439,442,440>, 4, <601,602,597>, 4, <597,602,598>, 4, <602,603,598>, 4, <598,603,600>, 4, <603,596,600>, 4, <600,596,599>, 4, <604,607,606>, 4, <605,606,607>, 4,
<220,221,243>, 5, <220,243,244>, 5, <222,220,244>, 5, <222,244,245>, 5, <223,224,245>, 5, <223,245,246>, 5, <221,223,246>, 5, <246,243,221>, 5, <246,245,247>, 5, <246,247,243>, 5,
<244,243,248>, 5, <244,248,245>, 5, <326,325,349>, 5, <349,325,350>, 5, <325,327,350>, 5, <350,327,351>, 5, <327,328,351>, 5, <351,329,352>, 5, <329,326,352>, 5, <349,352,326>, 5,
<351,352,353>, 5, <353,352,349>, 5, <349,350,354>, 5, <354,350,351>, 5, <301,310,303>, 6, <303,310,305>, 6, <309,302,306>, 6, <309,310,301>, 6, <301,302,309>, 6, <201,203,211>, 6,
<203,206,211>, 6, <209,205,202>, 6, <210,201,211>, 6, <201,210,202>, 6, <303,305,304>, 6, <305,308,304>, 6, <307,306,302>, 6, <207,204,208>, 6, <208,204,205>, 6, <204,202,205>, 6,
<204,232,202>, 6, <204,233,232>, 6, <207,233,204>, 6, <207,234,233>, 6, <202,231,201>, 6, <202,232,231>, 6, <201,235,203>, 6, <201,231,235>, 6, <307,302,337>, 6, <307,337,339>, 6,
<303,304,340>, 6, <303,340,338>, 6, <302,301,336>, 6, <302,336,337>, 6, <301,303,338>, 6, <301,338,336>, 6, <16,15,17>, 7, <32,33,17>, 7, <32,17,18>, 7, <18,17,15>, 7,
<17,19,16>, 7, <17,33,19>, 7, <33,39,19>, 7, <16,19,20>, 7, <22,21,23>, 7, <22,41,21>, 7, <41,22,42>, 7, <19,39,42>, 7, <19,42,22>, 7, <22,23,550>, 7,
<20,19,550>, 7, <19,22,550>, 7, <25,24,15>, 7, <32,24,34>, 7, <32,18,24>, 7, <18,15,24>, 7, <24,25,26>, 7, <24,26,34>, 7, <34,26,40>, 7, <25,27,26>, 7,
<28,36,47>, 7, <47,43,28>, 7, <26,43,40>, 7, <26,28,43>, 7, <27,472,26>, 7, <26,472,28>, 7, <28,29,36>, 7, <28,472,29>, 7, <45,23,21>, 7, <30,481,35>, 7,
<31,481,30>, 7, <551,473,15>, 7, <552,31,30>, 7, <474,31,552>, 7, <23,45,478>, 7, <556,23,478>, 7, <44,483,555>, 7, <483,477,555>, 7, <15,473,475>, 7, <29,472,482>, 7,
<476,482,472>, 7, <553,551,15>, 7, <554,553,20>, 7, <556,550,23>, 7, <27,475,476>, 7, <20,550,554>, 7, <550,556,554>, 7, <476,472,27>, 7, <475,38,15>, 7, <553,46,20>, 7,
<15,46,553>, 7, <27,38,475>, 7, <20,46,16>, 7, <16,46,15>, 7, <25,15,38>, 7, <25,38,27>, 7, <477,483,479>, 7, <44,555,557>, 7, <552,30,558>, 7, <37,484,480>, 7,
<565,62,566>, 8, <570,65,567>, 8, <569,66,568>, 8, <569,567,65>, 8, <568,567,569>, 8, <568,62,565>, 8, <66,62,568>, 8, <495,497,67>, 8, <499,67,497>, 8, <494,495,498>, 8,
<496,500,501>, 8, <499,496,68>, 8, <496,499,497>, 8, <68,496,501>, 8, <570,567,619>, 8, <618,567,568>, 8, <618,568,565>, 8, <567,618,619>, 8, <495,456,497>, 8, <457,496,497>, 8,
<457,500,496>, 8, <497,456,457>, 8, <63,566,62>, 8, <69,65,570>, 8, <64,495,67>, 8, <64,498,495>, 8, <254,262,261>, 9, <262,254,255>, 9, <256,263,260>, 9, <263,256,257>, 9,
<265,257,264>, 9, <257,265,263>, 9, <258,260,262>, 9, <260,258,259>, 9, <260,259,256>, 9, <262,255,258>, 9, <369,361,368>, 9, <361,369,362>, 9, <370,363,367>, 9, <363,370,364>, 9,
<364,372,371>, 9, <372,364,370>, 9, <367,365,369>, 9, <365,367,366>, 9, <366,367,363>, 9, <362,369,365>, 9, <275,279,278>, 10, <279,275,276>, 10, <280,276,275>, 10, <276,280,277>, 10,
<386,382,385>, 10, <382,386,383>, 10, <383,387,382>, 10, <387,383,384>, 10, }
}
mesh2 {
vertex_vectors { 113, <-0.124213,0.019108,2.255477>, <-0.003559,0.019108,2.255208>, <0.115033,0.019108,2.255476>, <0.115004,0.206717,2.246460>, <-0.125926,0.206717,2.244911>,
<-0.006760,0.206717,2.246351>, <-0.170230,-0.098001,2.795432>, <0.161859,-0.098001,2.786301>, <-0.006516,-0.109234,2.880348>, <-0.004950,-0.166450,2.794212>,
<-0.004428,-0.154055,2.564526>, <-0.004428,-0.205600,2.402664>, <-0.046388,-0.173090,2.395793>, <0.037531,-0.173090,2.395793>, <-0.009386,-0.091032,2.228754>,
<-0.007499,-0.170694,2.236974>, <0.095010,-0.064024,2.252770>, <-0.108621,-0.064024,2.252771>, <0.192176,0.065791,2.457333>, <0.142848,0.290810,2.467921>,
<-0.152546,0.290810,2.467921>, <0.143850,-0.110329,2.580460>, <-0.004428,-0.179091,2.646074>, <0.144976,-0.137948,2.489142>, <-0.154455,-0.137948,2.489142>,
<-0.153114,-0.121260,2.580460>, <-0.201270,0.065791,2.457333>, <-0.214650,0.067254,2.787165>, <0.205837,0.067254,2.787165>, <-0.124213,0.019108,2.255477>,
<0.115033,0.019108,2.255476>, <0.161859,-0.098001,2.786301>, <-0.007499,-0.170694,2.236974>, <0.095010,-0.064024,2.252770>, <-0.108621,-0.064024,2.252771>,
<0.143850,-0.110329,2.580460>, <0.144976,-0.137948,2.489142>, <0.115033,0.019108,2.255476>, <-0.009386,-0.091032,2.228754>, <0.000668,-0.189680,2.402587>,
<-0.004200,-0.188530,2.402292>, <-0.007635,-0.163477,2.224794>, <-0.004189,-0.159266,2.570252>, <0.102812,-0.040519,2.249766>, <-0.112160,-0.046025,2.248981>,
<-0.159519,-0.127108,2.519480>, <0.150417,-0.121260,2.519711>, <-0.190246,-0.083711,2.783742>, <0.182005,-0.083128,2.774082>, <-0.005339,-0.145431,2.862829>,
<-0.080566,0.207079,2.218787>, <0.136203,0.235385,2.325056>, <0.215304,0.001633,2.542690>, <-0.225821,-0.000552,2.548284>, <-0.107083,0.208303,2.231507>,
<-0.006370,-0.183029,2.269126>, <-0.112117,-0.157404,2.522672>, <-0.126113,-0.136014,2.855821>, <0.193563,-0.014136,2.837897>, <0.203720,-0.072484,2.591589>,
<0.147448,0.162873,2.252669>, <-0.139941,0.190026,2.246372>, <-0.005570,0.161087,2.168118>, <0.081949,-0.169599,2.480117>, <-0.134159,-0.030653,2.946280>,
<-0.005918,-0.026365,2.218688>, <0.246290,-0.015347,2.549016>, <-0.259144,-0.015347,2.549016>, <-0.006534,0.279055,2.922905>, <-0.221850,0.239937,2.846566>,
<0.208781,0.239937,2.846566>, <-0.170230,-0.098001,2.795432>, <-0.006516,-0.109234,2.880348>, <0.161859,-0.098001,2.786301>, <-0.006760,0.206717,2.246351>,
<-0.006516,-0.109234,2.880348>, <-0.190246,-0.083711,2.783742>, <0.182005,-0.083128,2.774082>, <-0.005339,-0.145431,2.862829>, <-0.080566,0.207079,2.218787>,
<0.215304,0.001633,2.542690>, <-0.225821,-0.000552,2.548284>, <-0.166535,0.270026,2.908746>, <-0.107083,0.208303,2.231507>, <-0.126113,-0.136014,2.855821>,
<0.193563,-0.014136,2.837897>, <0.203720,-0.072484,2.591589>, <-0.139941,0.190026,2.246372>, <-0.005570,0.161087,2.168118>, <0.081949,-0.169599,2.480117>,
<-0.134159,-0.030653,2.946280>, <-0.005918,-0.026365,2.218688>, <-0.277160,0.243456,2.582631>, <0.264991,0.232277,2.790332>, <-0.005918,0.048637,2.185704>,
<-0.056260,-0.118194,2.638200>, <0.060304,0.039939,2.990799>, <0.272312,0.444194,1.963574>, <-0.006401,0.234897,1.969022>, <-0.285166,0.444194,1.963574>,
<0.289373,0.492568,2.541023>, <-0.302334,0.492568,2.541023>, <-0.331087,0.341298,2.485508>, <0.318125,0.341298,2.485508>, <-0.322105,0.483866,2.531195>,
<0.309371,0.486845,2.528052>, <0.152308,0.319992,1.936738>, <-0.006368,0.355491,1.894607>, <-0.277160,0.243456,2.582631>, <0.264991,0.232277,2.790332>,
<-0.005918,0.048637,2.185704>, <-0.056260,-0.118194,2.638200>, <0.060304,0.039939,2.990799>, }
uv_vectors { 113, <1.052402,0.041011>, <1.513546,0.040599>, <1.947439,0.041011>, <0.274097,0.027173>, <0.728660,0.024796>,
<0.505388,0.027007>, <1.198263,0.869679>, <1.802138,0.855667>, <1.494779,1.000000>, <1.499022,0.867806>,
<1.499958,0.515308>, <1.499967,0.289191>, <1.428107,0.274016>, <1.571820,0.274016>, <1.486007,-0.000000>,
<1.494551,0.012615>, <1.765247,0.036858>, <1.227305,0.036858>, <0.031695,0.350799>, <0.305515,0.367048>,
<0.695383,0.367048>, <1.771408,0.539762>, <1.499963,0.640461>, <1.746255,0.399616>, <1.253036,0.399616>,
<1.239039,0.539762>, <0.968350,0.350799>, <0.968492,0.856991>, <0.031508,0.856991>, <1.052402,0.041011>,
<-0.052561,0.041011>, <-0.197862,0.855667>, <1.494551,0.012615>, <1.765247,0.036858>, <1.227305,0.036858>,
<-0.228592,0.539762>, <-0.253745,0.399616>, <1.947439,0.041011>, <1.486006,-0.000000>, <1.508693,0.282070>,
<1.500355,0.281529>, <1.479166,-0.010100>, <1.499958,0.514465>, <2.040006,0.043121>, <1.191183,0.037432>,
<1.239785,0.445828>, <-0.233817,0.446052>, <1.172511,0.852673>, <-0.171399,0.837874>, <1.494303,1.014826>,
<0.760552,0.024480>, <0.280257,0.151080>, <-0.043868,0.485382>, <1.047462,0.493069>, <0.734146,0.024742>,
<1.496517,0.065828>, <1.326628,0.446518>, <1.156726,0.851423>, <-0.260627,0.855304>, <-0.149594,0.561274>,
<0.198814,0.052375>, <0.756736,0.034078>, <0.505408,0.027007>, <1.637812,0.386945>, <1.116215,0.833618>,
<1.501818,0.021696>, <-0.108761,0.491504>, <1.107164,0.491504>, <0.504175,1.065312>, <0.853806,0.948154>,
<0.148289,0.948154>, <1.244047,0.869679>, <-0.503966,1.000000>, <-0.243624,0.855667>, <0.505388,0.027007>,
<1.494779,1.000000>, <1.221911,0.846215>, <-0.220742,0.831449>, <-0.002974,0.722251>, <0.617039,-0.019547>,
<-0.061798,0.479624>, <1.064316,0.488603>, <0.892341,0.935241>, <0.653734,-0.001773>, <1.592946,1.051024>,
<-0.137555,0.881957>, <-0.132776,0.584427>, <0.808730,-0.010367>, <0.442886,-0.089064>, <0.005547,0.514767>,
<1.283418,0.968494>, <0.228757,0.002889>, <0.661213,0.305749>, <0.019735,0.878041>, <1.513700,0.040599>,
<1.384907,0.635551>, <1.493429,1.000634>, <0.261997,-0.409879>, <0.505303,-0.399299>, <0.740306,-0.409879>,
<0.274608,0.475796>, <0.727600,0.475796>, <0.835313,0.392203>, <0.166213,0.392203>, <0.736226,0.462120>,
<0.268086,0.457330>, <0.569092,-0.396526>, <0.502832,-0.405489>, <0.897401,0.547201>, <0.135566,0.845592>,
<0.308693,-0.051786>, <1.283588,0.914788>, <-0.121025,1.010849>, }
texture_list { 2, texture { uv_mapping pigment { image_map { sys "BAFHE0001.bmp" map_type 0 interpolate 0 }} finish { ambient .60 diffuse .25 }}
texture { uv_mapping pigment { image_map { sys "BAFHE0002.bmp" map_type 0 interpolate 0 }} finish { ambient .60 diffuse .25 }}
}
face_indices { 70, <8,6,9>, 0, <8,9,7>, 0, <11,10,12>, 0, <13,10,11>, 0, <11,12,13>, 0, <15,14,16>, 0, <15,17,14>, 0, <18,3,19>, 0, <20,5,4>, 0, <21,9,22>, 0,
<23,32,33>, 0, <24,10,25>, 0, <32,24,34>, 0, <5,19,3>, 0, <4,26,20>, 0, <9,21,7>, 0, <26,6,27>, 0, <10,23,21>, 0, <2,23,33>, 0, <25,9,6>, 0,
<0,24,26>, 0, <19,28,18>, 0, <10,21,22>, 0, <25,10,22>, 0, <27,20,26>, 0, <36,30,18>, 0, <24,0,34>, 0, <3,18,30>, 0, <26,4,0>, 0, <31,18,28>, 0,
<9,25,22>, 0, <6,26,25>, 0, <24,25,26>, 0, <31,35,18>, 0, <18,35,36>, 0, <29,14,17>, 0, <14,29,1>, 0, <14,37,16>, 0, <1,37,14>, 0, <10,24,12>, 0,
<12,24,32>, 0, <13,12,32>, 0, <23,13,32>, 0, <10,13,23>, 0, <74,66,73>, 1, <67,74,71>, 1, <97,66,98>, 1, <99,97,98>, 1, <66,74,98>, 1, <67,99,98>, 1,
<69,101,102>, 1, <75,69,71>, 1, <97,99,100>, 1, <70,73,66>, 1, <66,103,70>, 1, <68,70,100>, 1, <74,67,98>, 1, <102,67,69>, 1, <71,69,67>, 1, <69,75,68>, 1,
<70,72,73>, 1, <72,70,68>, 1, <100,101,68>, 1, <100,70,103>, 1, <69,68,101>, 1, <100,99,101>, 1, <102,101,99>, 1, <67,102,99>, 1, <103,66,97>, 1, <100,103,97>, 1,
}
}
mesh2 {
vertex_vectors { 348, <-0.004137,-0.499727,2.808475>, <-0.004137,-0.531409,3.062067>, <-0.075562,-0.533283,3.056464>, <-0.063641,-0.497251,2.815880>, <0.062277,-0.533283,3.056464>,
<0.055365,-0.497251,2.815879>, <-0.056787,-0.485589,2.803747>, <0.043156,-0.486869,2.804358>, <-0.053176,-0.483933,2.801340>, <0.041166,-0.483340,2.800713>,
<-0.020814,-0.490195,2.802295>, <0.061564,-0.532556,3.059194>, <-0.054107,-0.482131,2.800082>, <0.037847,-0.488011,2.801432>, <-0.006542,-0.546126,3.064331>,
<-0.002791,-0.056613,3.112497>, <-0.164325,-0.055171,3.093095>, <-0.184945,-0.219044,2.690098>, <-0.003646,-0.219045,2.690097>, <0.143901,-0.055172,3.093095>,
<0.177653,-0.219046,2.690097>, <-0.004137,-0.499727,2.808475>, <-0.004137,-0.531409,3.062067>, <-0.075562,-0.533283,3.056464>, <-0.063641,-0.497251,2.815880>,
<0.062277,-0.533283,3.056464>, <0.055365,-0.497251,2.815879>, <0.055365,-0.497251,2.815879>, <0.177653,-0.219046,2.690097>, <-0.004870,-0.184563,2.664322>,
<-0.056787,-0.485589,2.803747>, <0.043156,-0.486869,2.804358>, <-0.053176,-0.483933,2.801340>, <-0.004173,-0.157337,2.633909>, <0.041166,-0.483340,2.800713>,
<0.131470,-0.072393,3.108378>, <-0.020814,-0.490195,2.802295>, <-0.184958,-0.219296,2.690256>, <-0.122390,0.004545,3.124999>, <0.061564,-0.532556,3.059194>,
<-0.054107,-0.482131,2.800082>, <0.177456,-0.216456,2.688492>, <0.037847,-0.488011,2.801432>, <-0.006542,-0.546126,3.064331>, <0.110875,-0.147546,2.609634>,
<-0.011528,-0.105114,3.152340>, <-0.002091,-0.494775,2.803591>, <-0.133063,-0.214977,2.780577>, <0.177053,-0.218924,2.689690>, <-0.168634,-0.188351,2.785260>,
<0.094867,-0.048500,3.104019>, <-0.018941,-0.248525,2.663874>, <0.055452,-0.260369,2.697309>, <0.003555,-0.491206,2.801350>, <-0.032760,-0.275828,2.744280>,
<0.044732,-0.351017,3.128962>, <-0.279451,0.163791,2.149280>, <-0.220679,0.578992,2.636297>, <0.268039,0.163791,2.149280>, <0.264323,0.311763,2.069804>,
<0.209270,0.578992,2.636296>, <-0.005705,0.597645,2.662464>, <-0.275735,0.311764,2.069804>, <-0.272207,0.571828,2.507664>, <-0.005706,0.115624,2.179417>,
<0.260797,0.571827,2.507663>, <-0.230559,0.192955,2.918194>, <-0.003644,0.196047,3.055969>, <-0.003645,0.547485,2.824048>, <-0.256502,0.409947,2.812284>,
<-0.284047,0.037863,2.737673>, <-0.280476,0.096621,2.327569>, <-0.342433,0.389698,2.651154>, <-0.376556,0.445973,2.794803>, <-0.320067,0.343254,2.718722>,
<-0.367766,0.256872,2.593112>, <-0.003644,0.051157,2.442487>, <0.223270,0.192953,2.918193>, <0.249212,0.409944,2.812281>, <0.268785,0.096620,2.327570>,
<0.276757,0.037862,2.737673>, <0.369269,0.445973,2.794804>, <0.335146,0.389696,2.651153>, <0.360481,0.389204,2.529351>, <0.312780,0.343253,2.718722>,
<-0.279451,0.163791,2.149280>, <-0.220679,0.578992,2.636297>, <0.268039,0.163791,2.149280>, <0.264323,0.311763,2.069804>, <0.209270,0.578992,2.636296>,
<-0.005705,0.597645,2.662464>, <-0.275735,0.311764,2.069804>, <-0.272207,0.571828,2.507664>, <0.260797,0.571827,2.507663>, <-0.002791,-0.056613,3.112497>,
<-0.164325,-0.055171,3.093095>, <-0.184945,-0.219044,2.690098>, <-0.230559,0.192955,2.918194>, <-0.003644,0.196047,3.055969>, <-0.256502,0.409947,2.812284>,
<-0.280476,0.096621,2.327569>, <-0.342433,0.389698,2.651154>, <-0.003644,0.051157,2.442487>, <-0.003646,-0.219045,2.690097>, <-0.441696,0.358371,2.671908>,
<0.143901,-0.055172,3.093095>, <0.177653,-0.219046,2.690097>, <0.223270,0.192953,2.918193>, <0.249212,0.409944,2.812281>, <0.268785,0.096620,2.327570>,
<0.335146,0.389696,2.651153>, <0.434409,0.358372,2.671911>, <-0.279451,0.163791,2.149280>, <-0.220679,0.578992,2.636297>, <0.268039,0.163791,2.149280>,
<0.264323,0.311763,2.069804>, <0.209270,0.578992,2.636296>, <-0.275735,0.311764,2.069804>, <-0.272207,0.571828,2.507664>, <0.260797,0.571827,2.507663>,
<-0.184945,-0.219044,2.690098>, <-0.256502,0.409947,2.812284>, <-0.280476,0.096621,2.327569>, <-0.320067,0.343254,2.718722>, <-0.367766,0.256872,2.593112>,
<0.249212,0.409944,2.812281>, <0.268785,0.096620,2.327570>, <0.360481,0.389204,2.529351>, <0.312780,0.343253,2.718722>, <0.260797,0.571827,2.507663>,
<0.177653,-0.219046,2.690097>, <0.268785,0.096620,2.327570>, <-0.004870,-0.184563,2.664322>, <-0.269966,0.584857,2.542591>, <0.257028,0.584315,2.537693>,
<0.338169,0.375645,2.679740>, <0.233018,-0.032040,2.835965>, <-0.355069,0.367170,2.669966>, <0.160284,0.150874,2.172110>, <-0.003848,0.581909,2.790728>,
<-0.004173,-0.157337,2.633909>, <-0.262886,0.298605,2.842749>, <0.219224,-0.054282,2.799801>, <0.259264,0.296392,2.839741>, <-0.222455,-0.059927,2.808263>,
<-0.228824,0.065846,2.380165>, <-0.218968,0.254133,2.894007>, <-0.280270,0.237331,2.082021>, <0.216224,0.082981,2.353098>, <0.131470,-0.072393,3.108378>,
<-0.420852,0.400126,2.713608>, <-0.184958,-0.219296,2.690256>, <0.326584,0.512904,2.522494>, <-0.122390,0.004545,3.124999>, <-0.368754,0.343591,2.647222>,
<0.195246,0.224798,2.103288>, <0.305563,0.393371,2.754794>, <0.398066,0.375045,2.689255>, <-0.007554,-0.074756,2.231638>, <0.177456,-0.216456,2.688492>,
<0.205666,0.129139,2.304931>, <-0.201543,0.610308,2.710051>, <-0.003175,-0.108613,2.489658>, <0.110875,-0.147546,2.609634>, <-0.222929,0.386730,2.866022>,
<0.237417,0.062052,2.884689>, <-0.011528,-0.105114,3.152340>, <0.056656,-0.078852,2.231419>, <-0.133063,-0.214977,2.780577>, <-0.217512,-0.074885,2.518908>,
<-0.108392,-0.091352,2.371467>, <-0.371125,0.352918,2.659010>, <-0.190924,0.182564,2.139395>, <0.346010,0.444360,2.643676>, <0.177053,-0.218924,2.689690>,
<-0.168634,-0.188351,2.785260>, <0.194611,0.192979,2.169751>, <0.342503,0.425984,2.681485>, <-0.180104,-0.084557,2.405201>, <-0.330020,0.411422,2.765116>,
<0.094867,-0.048500,3.104019>, <-0.018941,-0.248525,2.663874>, <-0.078431,0.055047,2.185149>, <0.055452,-0.260369,2.697309>, <-0.289377,0.512875,2.802216>,
<0.083496,0.119459,2.182099>, <-0.032760,-0.275828,2.744280>, <0.044732,-0.351017,3.128962>, <-0.028501,0.004292,2.223462>, <-0.023170,-0.371026,2.752152>,
<0.200563,0.218890,2.971123>, <-0.161644,0.182912,2.428942>, <-0.441696,0.358371,2.671908>, <0.434409,0.358372,2.671911>, <-0.376556,0.445973,2.794803>,
<-0.320067,0.343254,2.718722>, <-0.367766,0.256872,2.593112>, <0.369269,0.445973,2.794804>, <0.360481,0.389204,2.529351>, <0.312780,0.343253,2.718722>,
<-0.256502,0.409947,2.812284>, <0.249212,0.409944,2.812281>, <0.338169,0.375645,2.679740>, <-0.355069,0.367170,2.669966>, <-0.420852,0.400126,2.713608>,
<0.326584,0.512904,2.522494>, <-0.368754,0.343591,2.647222>, <0.305563,0.393371,2.754794>, <0.398066,0.375045,2.689255>, <-0.222929,0.386730,2.866022>,
<-0.124213,0.019108,2.255477>, <-0.003559,0.019108,2.255208>, <0.115033,0.019108,2.255476>, <0.115004,0.206717,2.246460>, <-0.125926,0.206717,2.244911>,
<-0.006760,0.206717,2.246351>, <-0.170230,-0.098001,2.795432>, <0.161859,-0.098001,2.786301>, <-0.006516,-0.109234,2.880348>, <-0.004950,-0.166450,2.794212>,
<-0.004428,-0.154055,2.564526>, <-0.004428,-0.205600,2.402664>, <-0.046388,-0.173090,2.395793>, <0.037531,-0.173090,2.395793>, <-0.009386,-0.091032,2.228754>,
<-0.007499,-0.170694,2.236974>, <0.095010,-0.064024,2.252770>, <-0.108621,-0.064024,2.252771>, <0.192176,0.065791,2.457333>, <0.142848,0.290810,2.467921>,
<-0.152546,0.290810,2.467921>, <0.143850,-0.110329,2.580460>, <-0.004428,-0.179091,2.646074>, <0.144976,-0.137948,2.489142>, <-0.154455,-0.137948,2.489142>,
<-0.153114,-0.121260,2.580460>, <-0.201270,0.065791,2.457333>, <-0.214650,0.067254,2.787165>, <0.205837,0.067254,2.787165>, <0.115033,0.019108,2.255476>,
<0.161859,-0.098001,2.786301>, <0.143850,-0.110329,2.580460>, <0.144976,-0.137948,2.489142>, <-0.009386,-0.091032,2.228754>, <0.000668,-0.189680,2.402587>,
<-0.004870,-0.184563,2.664322>, <-0.004200,-0.188530,2.402292>, <-0.007635,-0.163477,2.224794>, <0.102812,-0.040519,2.249766>, <-0.112160,-0.046025,2.248981>,
<-0.159519,-0.127108,2.519480>, <0.233018,-0.032040,2.835965>, <0.150417,-0.121260,2.519711>, <-0.197220,-0.068034,2.799073>, <-0.005339,-0.145431,2.862829>,
<-0.125987,0.206617,2.245092>, <0.160284,0.150874,2.172110>, <-0.004173,-0.157337,2.633909>, <0.219224,-0.054282,2.799801>, <-0.222455,-0.059927,2.808263>,
<-0.228824,0.065846,2.380165>, <0.216224,0.082981,2.353098>, <-0.145718,0.233786,2.318320>, <0.195246,0.224798,2.103288>, <-0.007554,-0.074756,2.231638>,
<0.205666,0.129139,2.304931>, <-0.003175,-0.108613,2.489658>, <0.110875,-0.147546,2.609634>, <0.237417,0.062052,2.884689>, <0.056656,-0.078852,2.231419>,
<-0.133063,-0.214977,2.780577>, <-0.217512,-0.074885,2.518908>, <-0.108392,-0.091352,2.371467>, <-0.190924,0.182564,2.139395>, <-0.168634,-0.188351,2.785260>,
<0.194611,0.192979,2.169751>, <-0.180104,-0.084557,2.405201>, <0.094867,-0.048500,3.104019>, <-0.018941,-0.248525,2.663874>, <-0.078431,0.055047,2.185149>,
<0.055452,-0.260369,2.697309>, <0.083496,0.119459,2.182099>, <-0.032760,-0.275828,2.744280>, <0.044732,-0.351017,3.128962>, <-0.028501,0.004292,2.223462>,
<-0.023170,-0.371026,2.752152>, <0.200563,0.218890,2.971123>, <-0.161644,0.182912,2.428942>, <-0.006534,0.279055,2.922905>, <-0.221850,0.239937,2.846566>,
<0.208781,0.239937,2.846566>, <-0.170230,-0.098001,2.795432>, <-0.006516,-0.109234,2.880348>, <0.161859,-0.098001,2.786301>, <-0.006516,-0.109234,2.880348>,
<-0.197220,-0.068034,2.799073>, <-0.005339,-0.145431,2.862829>, <-0.262886,0.298605,2.842749>, <0.219224,-0.054282,2.799801>, <0.259264,0.296392,2.839741>,
<-0.222455,-0.059927,2.808263>, <-0.218968,0.254133,2.894007>, <-0.222929,0.386730,2.866022>, <0.237417,0.062052,2.884689>, <-0.133063,-0.214977,2.780577>,
<-0.168634,-0.188351,2.785260>, <-0.330020,0.411422,2.765116>, <0.094867,-0.048500,3.104019>, <-0.289377,0.512875,2.802216>, <-0.032760,-0.275828,2.744280>,
<0.044732,-0.351017,3.128962>, <-0.023170,-0.371026,2.752152>, <0.200563,0.218890,2.971123>, <-0.161644,0.182912,2.428942>, <-0.005960,-0.482586,2.734101>,
<-0.050057,-0.485704,2.734195>, <-0.005958,-0.478210,2.823123>, <-0.050057,-0.479706,2.817637>, <-0.005957,-0.481310,2.825080>, <-0.121724,-0.352174,2.685982>,
<-0.050057,-0.476573,2.815934>, <0.038138,-0.481329,2.731869>, <0.038139,-0.476572,2.815934>, <0.109902,-0.352173,2.685982>, <0.038139,-0.479706,2.817637>,
<0.109598,-0.340278,2.755819>, <-0.122041,-0.340279,2.755821>, <0.038138,-0.481329,2.731869>, <0.038139,-0.476572,2.815934>, <0.038139,-0.479706,2.817637>,
<-0.056787,-0.485589,2.803747>, <0.043156,-0.486869,2.804358>, <-0.053176,-0.483933,2.801340>, <0.038312,-0.480798,2.734381>, <0.041166,-0.483340,2.800713>,
<-0.020814,-0.490195,2.802295>, <-0.184958,-0.219296,2.690256>, <-0.054107,-0.482131,2.800082>, <0.177456,-0.216456,2.688492>, <0.037847,-0.488011,2.801432>,
<-0.050494,-0.484950,2.746410>, <-0.002091,-0.494775,2.803591>, <-0.133063,-0.214977,2.780577>, <0.177053,-0.218924,2.689690>, <-0.168634,-0.188351,2.785260>,
<-0.018941,-0.248525,2.663874>, <0.055452,-0.260369,2.697309>, <0.003555,-0.491206,2.801350>, }
uv_vectors { 348, <0.500000,-0.000000>, <0.500000,0.999998>, <1.000000,0.999999>, <0.783203,-0.000000>, <0.000000,1.000000>,
<0.216797,0.000000>, <0.285727,0.000000>, <0.203305,0.000000>, <0.315850,0.000000>, <0.198207,-0.000000>,
<0.479450,-0.000000>, <0.985712,0.999996>, <0.309389,0.000000>, <0.189090,0.000000>, <1.464322,1.000000>,
<0.300280,0.088320>, <0.361476,0.000000>, <0.754955,0.145300>, <0.875402,0.145300>, <0.243654,0.000000>,
<-0.035730,0.145300>, <0.877828,0.795584>, <0.260587,1.000000>, <0.467019,1.000000>, <0.797383,0.795584>,
<0.151589,1.000000>, <-0.055279,0.795584>, <0.944721,0.795584>, <0.964270,0.145300>, <0.875407,0.145300>,
<0.813674,0.762204>, <0.924969,0.765427>, <0.819701,0.756913>, <0.875403,0.145300>, <0.920708,0.755346>,
<0.245182,0.039753>, <0.860449,0.770976>, <0.754872,0.145822>, <0.366138,-0.006729>, <0.153185,0.998133>,
<0.819383,0.752268>, <0.964270,0.145300>, <0.918568,0.764973>, <0.260314,1.000000>, <0.976327,0.145300>,
<0.311714,0.172051>, <0.878775,0.781793>, <0.668052,0.201085>, <0.964271,0.145300>, <0.662401,0.132558>,
<0.325117,0.127057>, <0.865394,0.181531>, <0.904728,0.232563>, <0.881770,0.772342>, <0.856723,0.301936>,
<0.209520,0.641031>, <0.142105,0.203185>, <0.099568,0.828344>, <0.857895,0.203185>, <0.855214,0.396497>,
<0.900432,0.828344>, <-0.006419,0.442203>, <0.144786,0.396497>, <0.116240,0.685032>, <0.500000,-0.000000>,
<0.883760,0.685032>, <0.272028,0.826752>, <0.500000,0.904140>, <-0.006419,0.600247>, <0.099018,0.600247>,
<0.278543,0.585669>, <0.185771,0.392357>, <0.225701,0.802205>, <0.244272,1.004702>, <0.158132,0.827389>,
<0.171853,0.742675>, <0.000000,1.000000>, <0.727972,0.826752>, <-0.111856,0.600247>, <0.814229,0.392357>,
<0.721457,0.585669>, <1.252714,1.021963>, <1.268626,0.816393>, <0.828147,0.742675>, <0.841868,0.827389>,
<-0.291309,0.002376>, <0.122026,0.442203>, <0.291269,0.002376>, <-0.163176,0.023451>, <-0.134864,0.442203>,
<0.000197,0.732005>, <0.161253,0.022085>, <0.130285,0.534488>, <0.869715,0.534488>, <0.500000,0.660191>,
<0.450005,0.642675>, <0.431397,0.214331>, <0.162744,0.956094>, <-0.006419,1.026998>, <0.060082,0.982986>,
<-0.241668,0.454446>, <0.128221,0.827707>, <0.499063,0.277677>, <0.499037,0.475118>, <0.422836,0.831462>,
<0.549995,0.642675>, <0.568602,0.214331>, <-0.175582,0.956094>, <1.410559,0.999913>, <0.241668,0.454447>,
<0.871779,0.827707>, <1.099687,0.846097>, <0.877828,0.795584>, <0.104637,0.693980>, <0.877828,0.795584>,
<0.877828,0.795584>, <-0.105546,0.695067>, <0.877828,0.795584>, <0.142398,0.383336>, <-0.125995,0.528276>,
<0.474589,0.474796>, <0.117501,0.873248>, <0.392451,0.155165>, <0.171517,0.600247>, <0.367618,0.674567>,
<0.882499,0.873248>, <0.603937,0.156555>, <1.230225,0.676790>, <-0.184355,0.600247>, <-0.144177,0.384945>,
<0.523453,0.475440>, <0.697012,0.309015>, <0.498897,0.451957>, <0.117234,0.676485>, <0.910695,0.916572>,
<1.277868,0.845109>, <0.648738,0.546170>, <0.269456,0.800252>, <0.355269,0.036053>, <-0.006419,0.609997>,
<0.498867,0.430054>, <0.143181,0.760755>, <0.641558,0.492676>, <-0.158762,0.760479>, <0.365471,0.488433>,
<0.412912,0.198553>, <0.140219,0.871698>, <0.141219,0.139316>, <0.583763,0.183043>, <0.550474,0.642507>,
<0.355627,0.896383>, <0.468609,1.070919>, <0.861623,0.708820>, <0.464423,0.697619>, <0.307638,0.774533>,
<0.877828,0.795584>, <1.332624,0.935982>, <1.164813,0.867422>, <-0.208345,1.416689>, <0.524403,0.474431>,
<0.201944,0.435062>, <0.096174,0.475989>, <0.504599,0.355064>, <0.550574,0.438020>, <0.100347,0.688496>,
<0.681125,0.674133>, <0.500023,0.660199>, <0.284297,0.377828>, <0.461873,0.915870>, <0.437958,0.326024>,
<0.449436,0.279281>, <0.306176,0.789614>, <0.877828,0.795584>, <0.875234,0.811093>, <0.523502,0.475305>,
<0.461024,0.896333>, <0.877828,0.795584>, <1.269755,0.801807>, <0.431562,0.273321>, <0.177739,0.944002>,
<0.533039,0.654304>, <0.496914,0.474813>, <0.262887,0.108840>, <0.496443,0.475084>, <0.090676,0.806076>,
<0.405707,0.055326>, <0.457363,0.474570>, <0.575597,0.633705>, <0.343831,0.260396>, <0.455123,0.474540>,
<-0.144469,0.963078>, <-0.288879,0.347868>, <0.005512,0.556985>, <-0.021285,0.563315>, <0.338032,0.963694>,
<0.527681,0.339397>, <0.264396,0.036305>, <0.329255,1.015196>, <0.251628,-0.015196>, <0.529181,0.321559>,
<0.994488,0.509003>, <1.021285,0.510003>, <0.398764,0.287931>, <0.322523,0.391280>, <-0.041319,0.499706>,
<0.251628,-0.015196>, <0.261548,0.328469>, <0.668721,0.501463>, <1.727568,0.473887>, <0.994488,0.509003>,
<1.052402,0.041011>, <1.513546,0.040599>, <1.947439,0.041011>, <0.274097,0.027173>, <0.728660,0.024796>,
<0.505388,0.027007>, <1.198263,0.869679>, <1.802138,0.855667>, <1.494779,1.000000>, <1.499022,0.867806>,
<1.499958,0.515308>, <1.499967,0.289191>, <1.428107,0.274016>, <1.571820,0.274016>, <1.486007,-0.000000>,
<1.494551,0.012615>, <1.765247,0.036858>, <1.227305,0.036858>, <0.031695,0.350799>, <0.305515,0.367048>,
<0.695383,0.367048>, <1.771408,0.539762>, <1.499963,0.640461>, <1.746255,0.399616>, <1.253036,0.399616>,
<1.239039,0.539762>, <0.968350,0.350799>, <0.968492,0.856991>, <0.031508,0.856991>, <-0.052561,0.041011>,
<-0.197862,0.855667>, <-0.228592,0.539762>, <-0.253745,0.399616>, <1.486006,0.000000>, <1.508693,0.282070>,
<1.499976,0.637232>, <1.500355,0.281529>, <1.494646,0.012754>, <2.040006,0.043121>, <1.191183,0.037432>,
<1.239785,0.445828>, <-0.250977,0.855360>, <-0.233817,0.446052>, <0.824563,0.849044>, <1.494303,1.014826>,
<0.728841,0.025075>, <0.299344,0.026103>, <1.509387,0.614758>, <-0.223406,0.855519>, <0.852596,0.850592>,
<0.966673,0.260826>, <0.062157,0.222869>, <0.721865,0.140586>, <0.274097,0.027173>, <1.493606,0.005917>,
<0.142076,0.152408>, <1.489231,0.551327>, <1.694116,0.582075>, <0.031508,0.856991>, <1.654523,0.022663>,
<1.331095,0.837017>, <1.153841,0.441218>, <1.255318,0.207517>, <1.318377,0.054333>, <1.258742,0.845340>,
<0.275033,0.027133>, <1.171836,0.286222>, <1.494779,1.000000>, <1.499969,0.639009>, <1.690384,0.040441>,
<1.525060,0.706802>, <0.339529,0.024401>, <1.500305,0.557662>, <1.494779,1.000000>, <1.417426,0.032854>,
<1.498873,0.903896>, <0.031508,0.856991>, <0.813342,0.305123>, <0.504175,1.065312>, <0.853806,0.948154>,
<0.148289,0.948154>, <1.244047,0.869679>, <-0.503966,1.000000>, <-0.243624,0.855667>, <1.494779,1.000000>,
<1.247793,0.868926>, <-0.002974,0.722251>, <0.853806,0.948154>, <0.429926,1.014618>, <0.148289,0.948154>,
<1.251237,0.868233>, <0.856594,0.947220>, <0.859734,0.946168>, <0.235035,0.968626>, <1.663464,1.087676>,
<1.739488,1.127191>, <0.853806,0.948154>, <-0.314264,1.000631>, <0.853806,0.948154>, <1.536821,1.021852>,
<-0.503966,1.000000>, <1.519279,1.012734>, <0.178412,0.969847>, <1.400893,0.838138>, <1.500539,0.218430>,
<1.315058,0.198383>, <1.500486,1.120602>, <1.326713,1.001260>, <1.500468,1.137675>, <0.834276,0.131830>,
<1.321131,0.989456>, <-0.305477,0.182977>, <-0.320412,0.989457>, <0.165349,0.131829>, <-0.326006,1.001260>,
<0.170746,0.753811>, <0.829620,0.753812>, <1.694523,0.182977>, <1.679588,0.989457>, <1.673994,1.001260>,
<1.327052,1.024641>, <-0.290865,-0.399435>, <1.327169,1.032716>, <-0.304614,0.208192>, <-0.292274,-0.343272>,
<1.440523,0.891706>, <0.834943,0.042782>, <1.321619,0.833215>, <0.164679,0.054544>, <1.675543,0.846117>,
<1.316475,0.316021>, <1.515793,0.917657>, <0.829620,0.753812>, <0.164637,0.049713>, <0.829620,0.753812>,
<0.834276,0.131830>, <0.164576,0.042723>, <1.541071,0.893812>, }
texture_list { 7, texture { uv_mapping pigment { image_map { sys "BAMHE0105.bmp" map_type 0 interpolate 0 }} finish { ambient .60 diffuse .25 }}
texture { uv_mapping pigment { image_map { sys "BAMHE0103.bmp" map_type 0 interpolate 0 }} finish { ambient .60 diffuse .25 }}
texture { uv_mapping pigment { image_map { sys "BAMHE0104.bmp" map_type 0 interpolate 0 }} finish { ambient .60 diffuse .25 }}
texture { uv_mapping pigment { image_map { sys "BAMHE0102.bmp" map_type 0 interpolate 0 }} finish { ambient .60 diffuse .25 }}
texture { uv_mapping pigment { image_map { sys "BAFHE0001.bmp" map_type 0 interpolate 0 }} finish { ambient .60 diffuse .25 }}
texture { uv_mapping pigment { image_map { sys "BAFHE0002.bmp" map_type 0 interpolate 0 }} finish { ambient .60 diffuse .25 }}
texture { uv_mapping pigment { image_map { sys "BAMHE0106.bmp" map_type 0 interpolate 0 }} finish { ambient .60 diffuse .25 }}
}
face_indices { 144, <0,1,2>, 0, <3,0,2>, 0, <4,1,0>, 0, <4,0,5>, 0, <15,23,22>, 1, <16,23,15>, 1, <17,23,16>, 1, <17,24,23>, 1, <21,24,17>, 1, <18,21,17>, 1,
<22,25,15>, 1, <15,25,19>, 1, <19,25,20>, 1, <25,26,20>, 1, <28,27,21>, 1, <28,21,18>, 1, <66,95,67>, 2, <67,95,94>, 2, <97,98,68>, 2, <69,97,68>, 2,
<96,70,71>, 2, <70,96,95>, 2, <66,70,95>, 2, <99,72,73>, 2, <66,74,75>, 2, <101,121,57>, 2, <97,69,123>, 2, <124,104,72>, 2, <63,75,101>, 2, <71,70,75>, 2,
<73,72,104>, 2, <67,105,77>, 2, <94,105,67>, 2, <68,98,107>, 2, <68,107,78>, 2, <79,80,106>, 2, <105,106,80>, 2, <105,80,77>, 2, <81,82,108>, 2, <83,84,77>, 2,
<79,58,59>, 2, <60,125,110>, 2, <110,83,65>, 2, <82,111,127>, 2, <70,66,75>, 2, <128,78,107>, 2, <83,80,79>, 2, <111,82,81>, 2, <83,77,80>, 2, <69,68,86>, 2,
<56,71,62>, 2, <71,75,92>, 2, <71,92,62>, 2, <100,85,76>, 2, <76,85,64>, 2, <63,101,57>, 2, <86,68,61>, 2, <89,68,78>, 2, <93,83,79>, 2, <59,93,79>, 2,
<76,87,109>, 2, <64,87,76>, 2, <60,110,65>, 2, <61,68,89>, 2, <122,103,120>, 2, <103,122,102>, 2, <103,102,126>, 2, <103,131,130>, 2, <90,119,92>, 2, <116,119,90>, 2,
<113,90,92>, 2, <129,88,118>, 2, <91,118,88>, 2, <115,114,117>, 2, <117,114,112>, 2, <195,192,196>, 3, <194,192,200>, 3, <200,192,195>, 3, <198,193,199>, 3, <201,193,197>, 3,
<199,193,201>, 3, <218,216,219>, 4, <218,219,217>, 4, <221,220,222>, 4, <223,220,221>, 4, <221,222,223>, 4, <225,224,226>, 4, <225,227,224>, 4, <228,213,229>, 4, <230,215,214>, 4,
<231,219,232>, 4, <233,225,226>, 4, <234,220,235>, 4, <225,234,227>, 4, <215,229,213>, 4, <214,236,230>, 4, <219,231,217>, 4, <236,216,237>, 4, <220,233,231>, 4, <212,233,226>, 4,
<235,219,216>, 4, <210,234,236>, 4, <229,238,228>, 4, <220,231,232>, 4, <235,220,232>, 4, <237,230,236>, 4, <242,239,228>, 4, <234,210,227>, 4, <213,228,239>, 4, <236,214,210>, 4,
<240,228,238>, 4, <219,235,232>, 4, <216,236,235>, 4, <234,235,236>, 4, <240,241,228>, 4, <228,241,242>, 4, <210,224,227>, 4, <224,210,211>, 4, <224,212,226>, 4, <211,212,224>, 4,
<220,234,222>, 4, <222,234,225>, 4, <223,222,225>, 4, <233,223,225>, 4, <220,223,233>, 4, <294,289,291>, 5, <289,294,288>, 5, <290,292,293>, 5, <292,290,288>, 5, <314,315,316>, 6,
<317,315,318>, 6, <315,317,319>, 6, <316,315,320>, 6, <321,322,323>, 6, <318,315,314>, 6, <323,324,321>, 6, <316,327,314>, 6, <314,327,318>, 6, <318,327,329>, 6, <328,327,316>, 6,
<319,320,315>, 6, <324,323,325>, 6, <326,319,317>, 6, <325,323,322>, 6, }
}
mesh2 {
vertex_vectors { 167, <-0.128243,0.222159,2.122882>, <-0.006882,0.232607,2.122602>, <0.115714,0.253507,2.127541>, <-0.007188,-0.171738,2.004925>, <-0.007188,-0.171738,2.004925>,
<-0.172122,-0.098001,2.790550>, <0.161859,-0.098001,2.785985>, <-0.005232,-0.166450,2.793895>, <-0.265998,0.182542,2.425931>, <-0.190586,-0.098001,2.418812>,
<-0.183346,-0.019779,2.839969>, <-0.006078,0.009067,2.904424>, <-0.006078,0.152730,2.903107>, <-0.006078,-0.101198,2.924801>, <-0.200495,0.151056,2.840371>,
<-0.177427,0.304023,2.435647>, <-0.006078,0.381242,2.466806>, <0.178430,-0.098001,2.418812>, <0.171190,-0.019779,2.839968>, <0.188339,0.151056,2.840371>,
<-0.006078,0.353368,2.835938>, <0.253842,0.182542,2.425931>, <0.165271,0.304023,2.435647>, <-0.141611,-0.134869,2.416857>, <0.128344,-0.134869,2.416857>,
<-0.237065,0.180779,2.727624>, <-0.222487,-0.019779,2.733351>, <-0.006078,0.375689,2.726975>, <0.210331,-0.019779,2.733351>, <0.224909,0.180779,2.727623>,
<-0.198334,0.005402,2.215327>, <0.185068,0.005402,2.215327>, <-0.219127,0.097638,2.543530>, <0.206971,0.097638,2.543530>, <-0.172122,-0.098001,2.790550>,
<0.161859,-0.098001,2.785985>, <-0.183346,-0.019779,2.839969>, <-0.006078,0.152730,2.903107>, <-0.006078,-0.101198,2.924801>, <-0.200495,0.151056,2.840371>,
<0.178430,-0.098001,2.418812>, <0.171190,-0.019779,2.839968>, <0.188339,0.151056,2.840371>, <-0.006078,0.353368,2.835938>, <0.210331,-0.019779,2.733351>,
<0.185068,0.005402,2.215327>, <0.206971,0.097638,2.543530>, <0.161859,-0.098001,2.785985>, <-0.183346,-0.019779,2.839969>, <-0.006078,0.152730,2.903107>,
<-0.200495,0.151056,2.840371>, <0.171190,-0.019779,2.839968>, <0.188339,0.151056,2.840371>, <-0.183346,-0.019779,2.839969>, <0.171190,-0.019779,2.839968>,
<0.171190,-0.019779,2.839968>, <-0.006234,-0.093303,2.923876>, <-0.190586,-0.098001,2.418812>, <0.178430,-0.098000,2.418813>, <-0.119795,0.226311,2.123333>,
<0.109135,0.256854,2.130309>, <-0.210973,0.087425,2.475932>, <0.198887,0.080658,2.469781>, <0.178803,-0.083532,2.785838>, <-0.201790,-0.016367,2.826108>,
<-0.006209,-0.096057,2.918389>, <-0.226197,0.166132,2.813047>, <0.214041,0.166132,2.813047>, <-0.006078,0.361746,2.827050>, <-0.247748,0.245451,2.444594>,
<-0.187030,-0.070299,2.825665>, <0.236257,0.244829,2.451292>, <0.176077,-0.070209,2.823981>, <-0.121611,0.223829,2.126540>, <-0.177322,-0.118897,2.503998>,
<-0.183525,0.013015,2.258504>, <0.167983,-0.114295,2.505269>, <0.173307,0.018833,2.259074>, <-0.006077,-0.083353,2.923238>, <-0.005832,-0.171051,2.697483>,
<-0.236247,0.248013,2.469229>, <0.226061,0.246054,2.478976>, <-0.012848,0.414598,2.711756>, <-0.243910,0.047937,2.833899>, <0.232774,0.047590,2.832028>,
<-0.006704,-0.195739,2.233692>, <0.002177,0.205404,1.958977>, <0.157179,-0.104303,2.289269>, <-0.166949,-0.106816,2.282648>, <-0.004774,-0.136451,2.898957>,
<0.162243,0.382921,2.629701>, <-0.243344,0.038873,2.330858>, <-0.012634,-0.000927,2.119536>, <-0.163829,-0.088579,2.901998>, <0.274204,-0.003304,2.595422>,
<-0.148693,0.000982,2.152378>, <0.283040,0.196176,2.605739>, <-0.006516,-0.109233,2.879714>, <-0.004428,-0.205600,2.402030>, <-0.004428,-0.154055,2.563892>,
<-0.046388,-0.173090,2.395159>, <0.037531,-0.173090,2.395159>, <-0.007499,-0.170693,2.236339>, <-0.009386,-0.091032,2.228120>, <0.095010,-0.064024,2.252136>,
<-0.108621,-0.064024,2.252136>, <0.192176,0.065791,2.456698>, <0.115004,0.206717,2.245825>, <-0.125926,0.206717,2.244277>, <0.143850,-0.110329,2.579825>,
<-0.004428,-0.179090,2.645440>, <0.144976,-0.137948,2.488507>, <-0.154455,-0.137948,2.488507>, <-0.153114,-0.121260,2.579825>, <-0.201270,0.065791,2.456698>,
<0.115033,0.019108,2.254842>, <-0.124213,0.019108,2.254842>, <-0.003559,0.019108,2.254574>, <-0.005232,-0.166450,2.793895>, <0.143850,-0.110329,2.579825>,
<0.144976,-0.137948,2.488507>, <0.115033,0.019108,2.254842>, <-0.172122,-0.098001,2.790550>, <0.161859,-0.098001,2.785985>, <0.161859,-0.098001,2.785985>,
<-0.009386,-0.091032,2.228120>, <-0.006234,-0.093303,2.923876>, <0.000668,-0.189679,2.401953>, <-0.119795,0.226311,2.123333>, <0.109135,0.256854,2.130309>,
<-0.210973,0.087425,2.475932>, <0.198887,0.080658,2.469781>, <-0.004200,-0.188530,2.401658>, <-0.007635,-0.163477,2.224159>, <-0.004151,-0.159264,2.569606>,
<0.102812,-0.040519,2.249131>, <-0.112160,-0.046025,2.248347>, <-0.159449,-0.127091,2.519014>, <0.178803,-0.083532,2.785838>, <0.150418,-0.121265,2.519070>,
<-0.006209,-0.096057,2.918389>, <-0.187030,-0.070299,2.825665>, <0.176077,-0.070209,2.823981>, <-0.121611,0.223829,2.126540>, <-0.177322,-0.118897,2.503998>,
<-0.183525,0.013015,2.258504>, <0.167983,-0.114295,2.505269>, <0.173307,0.018833,2.259074>, <-0.006077,-0.083353,2.923238>, <-0.006370,-0.183029,2.268491>,
<-0.005832,-0.171051,2.697483>, <-0.236247,0.248013,2.469229>, <0.226061,0.246054,2.478976>, <-0.243910,0.047937,2.833899>, <0.232774,0.047590,2.832028>,
<-0.006704,-0.195739,2.233692>, <0.002177,0.205404,1.958977>, <0.157179,-0.104303,2.289269>, <-0.166949,-0.106816,2.282648>, <-0.004774,-0.136451,2.898957>,
<0.162243,0.382921,2.629701>, <-0.243344,0.038873,2.330858>, <-0.012634,-0.000927,2.119536>, <-0.163829,-0.088579,2.901998>, <0.274204,-0.003304,2.595422>,
<-0.148693,0.000982,2.152378>, <0.283040,0.196176,2.605739>, }
uv_vectors { 167, <0.766132,0.141640>, <0.502128,0.141305>, <0.271922,0.147216>, <1.498640,0.000483>, <-0.501360,0.000483>,
<0.738607,0.222889>, <0.229055,0.203379>, <0.483984,0.237184>, <0.912701,0.504049>, <1.255170,0.495772>,
<0.695910,0.434082>, <0.662990,0.709541>, <0.499035,0.703911>, <0.485275,0.796622>, <0.781896,0.500945>,
<0.735828,0.515918>, <0.500000,0.553205>, <-0.255171,0.495772>, <0.214818,0.434082>, <0.188654,0.500945>,
<0.485275,0.416858>, <0.087299,0.504049>, <0.264172,0.515919>, <1.327589,0.493191>, <1.671257,0.493191>,
<0.904485,0.865319>, <1.157841,0.871932>, <0.500000,0.864544>, <1.842159,0.871932>, <0.095515,0.865319>,
<1.143944,0.252266>, <-0.144670,0.252266>, <1.009989,0.644778>, <1.990011,0.644778>, <1.270095,0.935298>,
<1.729905,0.935298>, <0.755732,0.434082>, <0.485275,0.499035>, <0.788830,0.796622>, <0.781896,0.435803>,
<1.744829,0.495772>, <0.695910,0.434082>, <0.188654,0.435803>, <0.500000,0.994695>, <-0.157841,0.871932>,
<1.855330,0.252266>, <-0.009989,0.644778>, <-0.270095,0.935298>, <0.755732,0.695910>, <0.485275,0.703911>,
<0.929888,1.000000>, <0.214818,0.695910>, <0.070111,1.000000>, <1.185782,0.999518>, <1.814218,0.999518>,
<-0.185782,0.999518>, <0.789459,0.797058>, <1.255170,0.495772>, <-0.255170,0.495773>, <0.747241,0.143574>,
<0.283519,0.151877>, <1.021882,0.563698>, <-0.033195,0.556239>, <1.753259,0.931069>, <1.174219,0.977940>,
<0.782003,0.788665>, <0.892010,0.799185>, <0.067836,1.012061>, <0.500000,0.757569>, <0.840536,0.524222>,
<0.746433,0.322175>, <0.158190,0.532171>, <0.222767,0.314490>, <0.751778,0.145806>, <1.281948,0.596007>,
<1.134415,0.303367>, <1.723662,0.598912>, <-0.119537,0.302458>, <0.792012,0.798824>, <-0.020480,0.170290>,
<0.830994,0.554298>, <0.165454,0.565844>, <0.500000,0.279079>, <1.071572,0.972503>, <-0.071521,0.970124>,
<1.715595,0.619749>, <0.502128,0.141305>, <1.715378,0.346837>, <1.289384,0.339012>, <0.485366,0.836117>,
<0.334535,0.727086>, <1.087105,0.393113>, <1.183882,0.077173>, <0.671260,0.513007>, <-0.129479,0.714283>,
<1.161390,0.180047>, <0.084525,0.382061>, <1.494779,1.000000>, <1.499967,0.289191>, <1.499958,0.515308>,
<1.428107,0.274016>, <1.571820,0.274016>, <1.494551,0.012615>, <1.486007,-0.000000>, <1.765247,0.036858>,
<1.227305,0.036858>, <0.031695,0.350799>, <0.274097,0.027173>, <0.728660,0.024796>, <1.771408,0.539762>,
<1.499963,0.640461>, <1.746255,0.399616>, <1.253036,0.399616>, <1.239039,0.539762>, <0.968350,0.350799>,
<1.947439,0.041011>, <1.052402,0.041011>, <1.513546,0.040599>, <1.499022,0.867806>, <-0.228592,0.539762>,
<-0.253745,0.399616>, <-0.052561,0.041011>, <1.198263,0.869679>, <1.802138,0.855667>, <-0.197862,0.855667>,
<1.486007,0.000000>, <1.494779,1.000000>, <1.508693,0.282070>, <0.728660,0.024796>, <0.274097,0.027173>,
<0.968270,0.350619>, <-0.421826,1.348233>, <1.500355,0.281529>, <1.479166,-0.010100>, <1.499958,0.514467>,
<2.040007,0.043121>, <1.191184,0.037432>, <1.239797,0.446091>, <-0.197969,0.855901>, <-0.233823,0.446041>,
<1.494779,1.000000>, <1.198234,0.869666>, <1.201364,1.137785>, <0.728660,0.024796>, <1.222480,0.421822>,
<0.900696,0.600147>, <-0.217810,0.423149>, <0.098556,0.596630>, <1.494779,1.000000>, <1.496517,0.065828>,
<1.495701,0.720491>, <0.607309,-0.140255>, <0.015635,0.372241>, <0.774944,-0.085687>, <-0.199315,0.858863>,
<1.494551,0.012615>, <0.274097,0.027173>, <1.735077,0.613128>, <1.226216,0.021509>, <1.494779,1.000000>,
<0.026264,0.358051>, <0.949047,0.421944>, <1.477534,0.022328>, <1.168728,0.856698>, <-0.280423,1.037245>,
<1.340411,0.034172>, <-0.350962,1.192381>, }
texture_list { 2, texture { uv_mapping pigment { image_map { sys "CHAIN01.bmp" map_type 0 interpolate 0 }} finish { ambient .60 diffuse .25 }}
texture { uv_mapping pigment { image_map { sys "BAFHE0001.bmp" map_type 0 interpolate 0 }} finish { ambient .60 diffuse .25 }}
}
face_indices { 118, <0,30,8>, 0, <3,9,30>, 0, <10,11,12>, 0, <36,5,13>, 0, <5,7,13>, 0, <48,37,14>, 0, <38,11,10>, 0, <0,8,15>, 0, <0,15,16>, 0, <0,16,1>, 0,
<13,7,6>, 0, <13,6,18>, 0, <41,11,38>, 0, <12,11,41>, 0, <19,37,51>, 0, <20,49,42>, 0, <21,17,31>, 0, <31,4,2>, 0, <22,21,2>, 0, <16,22,2>, 0,
<1,16,2>, 0, <39,49,20>, 0, <23,9,3>, 0, <40,24,3>, 0, <9,25,8>, 0, <9,34,26>, 0, <9,26,25>, 0, <25,15,8>, 0, <15,25,27>, 0, <16,15,27>, 0,
<28,35,40>, 0, <29,44,17>, 0, <21,29,17>, 0, <21,22,29>, 0, <27,29,22>, 0, <27,22,16>, 0, <34,9,23>, 0, <34,53,26>, 0, <50,25,26>, 0, <26,53,50>, 0,
<43,27,25>, 0, <25,50,43>, 0, <24,40,35>, 0, <28,54,35>, 0, <44,29,52>, 0, <52,55,44>, 0, <29,27,43>, 0, <43,52,29>, 0, <3,9,23>, 0, <30,8,9>, 0,
<3,24,40>, 0, <3,40,45>, 0, <23,9,34>, 0, <9,8,34>, 0, <40,24,35>, 0, <21,17,47>, 0, <0,3,30>, 0, <30,9,8>, 0, <3,30,9>, 0, <45,40,3>, 0,
<21,31,2>, 0, <31,17,21>, 0, <30,0,32>, 0, <32,0,15>, 0, <15,0,16>, 0, <16,0,1>, 0, <40,33,45>, 0, <4,31,2>, 0, <46,22,2>, 0, <22,16,2>, 0,
<16,1,2>, 0, <15,25,32>, 0, <25,15,27>, 0, <15,16,27>, 0, <22,46,29>, 0, <29,27,22>, 0, <22,27,16>, 0, <32,30,9>, 0, <3,0,30>, 0, <9,30,32>, 0,
<31,46,2>, 0, <40,45,33>, 0, <97,122,118>, 1, <97,118,123>, 1, <98,99,100>, 1, <101,99,98>, 1, <98,100,101>, 1, <102,103,104>, 1, <102,105,103>, 1, <109,118,110>, 1,
<111,102,104>, 1, <112,99,113>, 1, <102,112,105>, 1, <118,109,123>, 1, <99,111,109>, 1, <115,111,104>, 1, <113,118,122>, 1, <116,112,114>, 1, <99,109,110>, 1, <113,99,110>, 1,
<120,121,106>, 1, <112,116,105>, 1, <107,106,121>, 1, <114,108,116>, 1, <118,113,110>, 1, <122,114,113>, 1, <112,113,114>, 1, <124,119,106>, 1, <106,119,120>, 1, <116,103,105>, 1,
<103,116,117>, 1, <103,115,104>, 1, <117,115,103>, 1, <99,112,100>, 1, <100,112,102>, 1, <101,100,102>, 1, <111,101,102>, 1, <99,101,111>, 1, }
}
mesh2 {
vertex_vectors { 315, <0.254867,-0.007084,2.649632>, <0.196130,0.287735,2.840942>, <0.196175,0.098999,2.847255>, <0.234918,0.002842,2.296138>, <0.101615,-0.186218,2.637259>,
<-0.004151,-0.211027,2.611252>, <-0.109919,-0.186218,2.637259>, <-0.243369,0.002843,2.296138>, <-0.263301,-0.007084,2.649632>, <-0.004151,0.310424,2.148891>,
<-0.268802,0.195309,2.175559>, <-0.109082,0.040799,2.206031>, <0.256738,0.266678,2.617668>, <-0.204608,0.099000,2.847255>, <-0.204563,0.287735,2.840942>,
<-0.265171,0.266678,2.617668>, <-0.109918,0.386052,2.620271>, <-0.004152,-0.211183,2.690876>, <-0.004152,-0.015642,2.904325>, <-0.004152,0.291424,2.899170>,
<-0.004151,0.448949,2.649632>, <0.260371,0.195308,2.175559>, <0.101615,0.386051,2.620271>, <0.075096,0.040799,2.206031>, <0.247302,-0.003913,2.639643>,
<-0.255773,-0.003912,2.639643>, <0.087952,0.211963,2.205422>, <-0.006189,-0.176483,2.576680>, <-0.224187,0.244816,2.612075>, <-0.365035,0.178357,2.690846>,
<-0.225149,0.159136,2.626969>, <-0.363644,0.248179,2.661802>, <-0.152755,0.328119,2.719539>, <-0.264392,0.315479,2.755988>, <-0.156263,0.216764,2.814319>,
<-0.190344,0.118484,2.745513>, <-0.321032,0.144720,2.787027>, <-0.267170,0.225303,2.843015>, <0.354444,0.178357,2.690258>, <0.213596,0.244816,2.611486>,
<0.214558,0.159136,2.626380>, <0.353053,0.248178,2.661214>, <0.253801,0.315478,2.755399>, <0.142164,0.328119,2.718951>, <0.179753,0.118484,2.744925>,
<0.310441,0.144719,2.786438>, <0.145672,0.216763,2.813730>, <0.256579,0.225302,2.842427>, <-0.109186,0.205676,2.191949>, <0.095010,-0.064024,2.252770>,
<-0.108621,-0.064024,2.252771>, <-0.154455,-0.137948,2.489142>, <-0.153114,-0.121260,2.580460>, <0.196130,0.287735,2.840942>, <-0.004151,-0.211027,2.611252>,
<-0.004151,0.310424,2.148891>, <-0.268802,0.195309,2.175559>, <0.256738,0.266678,2.617668>, <-0.004152,-0.211183,2.690876>, <-0.004152,-0.015642,2.904325>,
<-0.004152,0.291424,2.899170>, <-0.004151,0.448949,2.649632>, <0.260371,0.195308,2.175559>, <0.087952,0.211963,2.205422>, <-0.006189,-0.176483,2.576680>,
<-0.224187,0.244816,2.612075>, <-0.363644,0.248179,2.661802>, <-0.152755,0.328119,2.719539>, <-0.264392,0.315479,2.755988>, <0.213596,0.244816,2.611486>,
<0.353053,0.248178,2.661214>, <0.253801,0.315478,2.755399>, <0.142164,0.328119,2.718951>, <-0.109186,0.205676,2.191949>, <0.143850,-0.110329,2.580460>,
<0.144976,-0.137948,2.489142>, <-0.004151,0.310424,2.148891>, <0.260371,0.195308,2.175559>, <-0.263427,-0.006473,2.649762>, <0.255029,-0.006271,2.649816>,
<-0.004776,-0.154948,2.558387>, <-0.268277,0.253337,2.631177>, <0.259804,0.253343,2.631478>, <0.253801,0.315478,2.755399>, <-0.264392,0.315479,2.755988>,
<-0.365035,0.178357,2.690846>, <0.354444,0.178357,2.690258>, <0.309612,0.143599,2.785525>, <-0.320203,0.143600,2.786114>, <-0.119960,0.021795,2.233929>,
<0.107487,0.024060,2.233732>, <-0.018221,0.265909,2.168769>, <-0.010146,0.449652,2.650564>, <0.277100,0.238703,2.634022>, <-0.285943,0.238409,2.633870>,
<-0.004648,-0.191097,2.603812>, <0.227521,0.238969,2.837296>, <-0.004709,-0.180045,2.679530>, <-0.236280,0.238625,2.837418>, <0.052401,-0.204640,2.641665>,
<0.194823,0.198172,2.186355>, <-0.241146,-0.005907,2.701979>, <-0.004132,0.452291,2.649817>, <0.232175,-0.004569,2.704158>, <0.112804,-0.003219,2.240442>,
<-0.125239,-0.005736,2.240948>, <0.266416,0.129808,2.790358>, <-0.275099,0.129328,2.790274>, <-0.150127,-0.132846,2.603105>, <0.309484,0.202739,2.647601>,
<-0.318716,0.202304,2.647582>, <0.154011,-0.117376,2.556921>, <0.238936,0.274865,2.805498>, <-0.248038,0.274540,2.805622>, <0.051006,-0.178871,2.611161>,
<-0.201737,0.204963,2.182964>, <-0.163642,-0.129385,2.583845>, <0.043465,-0.181027,2.670277>, <-0.175084,-0.011808,2.263896>, <0.168254,-0.007482,2.265156>,
<0.157960,0.237880,2.172537>, <0.231716,0.283207,2.821674>, <-0.161719,-0.130605,2.586809>, <-0.055669,0.445716,2.653616>, <0.271942,0.209282,2.628558>,
<0.238450,0.086958,2.773608>, <-0.246472,0.086636,2.773809>, <0.168989,-0.103297,2.543089>, <0.042969,-0.185999,2.641304>, <0.160307,0.233496,2.182187>,
<-0.314964,0.239763,2.743691>, <-0.177321,-0.118360,2.576298>, <-0.213681,0.083105,2.845536>, <0.281729,0.149803,2.694648>, <-0.005603,0.235226,2.164032>,
<-0.229568,0.318615,2.720688>, <0.078314,-0.146508,2.268306>, <0.110485,-0.171701,2.615865>, <0.284343,0.212657,2.770108>, <-0.256214,-0.045997,2.565489>,
<-0.004978,-0.210382,2.595904>, <0.068821,0.244244,2.711539>, <-0.078046,-0.169145,2.379696>, <0.146042,0.232487,2.699103>, <-0.046967,-0.198067,2.531843>,
<-0.728604,0.939389,3.146092>, <-0.701645,1.103230,3.338143>, <-0.777267,0.879137,3.166113>, <-0.745400,0.857828,3.190699>, <-0.708521,0.882575,3.189487>,
<-0.645176,0.577310,2.855172>, <-0.582493,0.620773,2.899351>, <-0.685585,0.525872,2.874980>, <-0.643210,0.497636,2.937407>, <-0.592785,0.553020,2.966029>,
<0.766677,0.879136,3.165524>, <0.691056,1.103229,3.337554>, <0.718014,0.939388,3.145504>, <0.734810,0.857827,3.190111>, <0.697931,0.882574,3.188899>,
<0.571903,0.620772,2.898762>, <0.634586,0.577309,2.854584>, <0.674995,0.525871,2.874393>, <0.632620,0.497636,2.936819>, <0.582194,0.553020,2.965441>,
<-0.365035,0.178357,2.690846>, <-0.321032,0.144720,2.787027>, <-0.267170,0.225303,2.843015>, <-0.728604,0.939389,3.146092>, <-0.701645,1.103230,3.338143>,
<-0.645176,0.577310,2.855172>, <0.354444,0.178357,2.690258>, <0.310441,0.144719,2.786438>, <0.256579,0.225302,2.842427>, <0.691056,1.103229,3.337554>,
<0.718014,0.939388,3.145504>, <0.634586,0.577309,2.854584>, <-0.363644,0.248179,2.661802>, <-0.264392,0.315479,2.755988>, <-0.728604,0.939389,3.146092>,
<0.353053,0.248178,2.661214>, <0.253801,0.315478,2.755399>, <0.718014,0.939388,3.145504>, <-0.363644,0.248179,2.661802>, <-0.264392,0.315479,2.755988>,
<0.353053,0.248178,2.661214>, <0.253801,0.315478,2.755399>, <0.253801,0.315478,2.755399>, <-0.264392,0.315479,2.755988>, <-0.365035,0.178357,2.690846>,
<0.354444,0.178357,2.690258>, <0.309612,0.143599,2.785525>, <-0.320203,0.143600,2.786114>, <0.254635,0.223558,2.840288>, <-0.265226,0.223558,2.840877>,
<-0.671532,0.556919,2.862189>, <0.660942,0.556919,2.861601>, <0.277100,0.238703,2.634022>, <-0.285943,0.238409,2.633870>, <0.227521,0.238969,2.837296>,
<-0.657961,0.601354,2.885749>, <0.647370,0.601353,2.885160>, <0.744602,0.930077,3.180264>, <-0.755192,0.930077,3.180852>, <-0.236280,0.238625,2.837418>,
<-0.725514,0.890911,3.205977>, <0.714924,0.890911,3.205390>, <0.609619,0.533163,2.969485>, <-0.620209,0.533164,2.970073>, <0.266416,0.129808,2.790358>,
<-0.275099,0.129328,2.790274>, <0.309484,0.202739,2.647601>, <-0.318716,0.202304,2.647582>, <0.238936,0.274865,2.805498>, <-0.248038,0.274540,2.805622>,
<-0.749000,0.933144,3.211407>, <0.738410,0.933144,3.210819>, <0.658577,0.601630,2.941277>, <-0.669167,0.601631,2.941866>, <0.231716,0.283207,2.821674>,
<0.271942,0.209282,2.628558>, <0.238450,0.086958,2.773608>, <-0.246472,0.086636,2.773809>, <-0.314964,0.239763,2.743691>, <-0.213681,0.083105,2.845536>,
<0.281729,0.149803,2.694648>, <-0.229568,0.318615,2.720688>, <-0.256214,-0.045997,2.565489>, <0.068821,0.244244,2.711539>, <-0.078046,-0.169145,2.379696>,
<0.146042,0.232487,2.699103>, <-0.046967,-0.198067,2.531843>, <-0.124213,0.019108,2.255477>, <-0.003559,0.019108,2.255208>, <0.115033,0.019108,2.255476>,
<0.115004,0.206717,2.246460>, <-0.109186,0.205676,2.191949>, <-0.006760,0.206717,2.246351>, <-0.170230,-0.098001,2.663878>, <0.152397,-0.098001,2.654748>,
<-0.006516,-0.109234,2.748795>, <-0.004950,-0.166450,2.662658>, <-0.004428,-0.154055,2.564526>, <-0.004428,-0.205600,2.402664>, <-0.046388,-0.173090,2.395793>,
<0.037531,-0.173090,2.395793>, <-0.009386,-0.091032,2.228754>, <-0.007499,-0.170694,2.236974>, <0.095010,-0.064024,2.252770>, <-0.108621,-0.064024,2.252771>,
<0.180998,0.065791,2.457333>, <0.142848,0.290810,2.467921>, <-0.152546,0.290810,2.467921>, <0.143850,-0.110329,2.580460>, <-0.004428,-0.179091,2.625942>,
<0.144976,-0.137948,2.489142>, <-0.154455,-0.137948,2.489142>, <-0.153114,-0.121260,2.580460>, <-0.190177,0.065791,2.457333>, <-0.202800,0.067254,2.655611>,
<0.193886,0.067254,2.655611>, <0.115033,0.019108,2.255476>, <0.152397,-0.098001,2.654748>, <0.143850,-0.110329,2.580460>, <0.144976,-0.137948,2.489142>,
<-0.004776,-0.154948,2.558387>, <-0.009386,-0.091032,2.228754>, <-0.119960,0.021795,2.233929>, <0.107487,0.024060,2.233732>, <0.000668,-0.189680,2.402587>,
<-0.018221,0.265909,2.168769>, <-0.004950,-0.166450,2.662658>, <-0.004648,-0.191097,2.603812>, <-0.007635,-0.163477,2.224794>, <-0.004200,-0.188530,2.402292>,
<-0.004709,-0.180045,2.679530>, <0.052401,-0.204640,2.641665>, <0.194823,0.198172,2.186355>, <-0.241146,-0.005907,2.701979>, <0.232175,-0.004569,2.704158>,
<0.112804,-0.003219,2.240442>, <-0.125239,-0.005736,2.240948>, <-0.150127,-0.132846,2.603105>, <0.154011,-0.117376,2.556921>, <0.051006,-0.178871,2.611161>,
<-0.201737,0.204963,2.182964>, <-0.163642,-0.129385,2.583845>, <0.043465,-0.181027,2.670277>, <-0.175084,-0.011808,2.263896>, <0.168254,-0.007482,2.265156>,
<0.157960,0.237880,2.172537>, <-0.006370,-0.183029,2.269126>, <-0.161719,-0.130605,2.586809>, <-0.055669,0.445716,2.653616>, <0.271942,0.209282,2.628558>,
<0.238450,0.086958,2.773608>, <-0.246472,0.086636,2.773809>, <0.168989,-0.103297,2.543089>, <0.042969,-0.185999,2.641304>, <0.160307,0.233496,2.182187>,
<-0.177321,-0.118360,2.576298>, <-0.213681,0.083105,2.845536>, <0.281729,0.149803,2.694648>, <-0.005603,0.235226,2.164032>, <-0.229568,0.318615,2.720688>,
<0.078314,-0.146508,2.268306>, <0.110485,-0.171701,2.615865>, <0.284343,0.212657,2.770108>, <-0.256214,-0.045997,2.565489>, <-0.004978,-0.210382,2.595904>,
<0.068821,0.244244,2.711539>, <-0.078046,-0.169145,2.379696>, <0.146042,0.232487,2.699103>, <-0.046967,-0.198067,2.531843>, <0.037946,0.077690,2.556794>,
}
uv_vectors { 315, <-0.455823,0.677210>, <-0.866252,0.891131>, <-0.582055,0.898191>, <-0.452454,0.134831>, <-0.173485,0.663374>,
<-0.099045,0.487190>, <0.826513,0.663374>, <0.547529,0.134831>, <0.544175,0.677210>, <-0.099045,0.018800>,
<0.149663,-0.000000>, <0.671100,0.034074>, <-0.896916,0.641468>, <0.417943,0.898191>, <0.133748,0.891131>,
<0.103084,0.641468>, <-0.030362,0.621867>, <0.900954,0.723329>, <0.900954,1.000000>, <-0.099044,0.994235>,
<-0.099045,0.677210>, <1.149663,0.000000>, <0.969638,0.621867>, <-0.277061,0.034074>, <-0.453853,0.666040>,
<0.546114,0.666040>, <-0.262296,0.106734>, <-0.097556,0.448532>, <-0.762898,0.138414>, <-0.648650,0.058738>,
<-0.640361,0.120110>, <-0.764818,0.074510>, <-1.113119,0.101297>, <-1.103630,0.044535>, <-0.273724,0.106526>,
<-0.455781,0.094017>, <-0.465333,0.038485>, <-0.272242,0.049105>, <-0.648650,0.058738>, <-0.762898,0.138414>,
<-0.640361,0.120110>, <-0.764818,0.074510>, <-1.103630,0.044535>, <-1.113119,0.101297>, <-0.455781,0.094017>,
<-0.465333,0.038485>, <-0.273724,0.106526>, <-0.272242,0.049105>, <0.162673,0.018328>, <-0.215612,0.086338>,
<0.778065,0.086338>, <0.768745,0.350647>, <0.762000,0.452758>, <1.133748,0.891131>, <0.900955,0.487190>,
<0.900955,0.018801>, <0.372011,0.000000>, <1.103084,0.641468>, <-0.099044,0.723329>, <-0.099044,0.994235>,
<0.900954,1.000000>, <0.900955,0.677210>, <-0.850337,0.000000>, <-0.865369,0.033393>, <0.899462,0.448532>,
<-0.917034,0.124312>, <-0.906427,0.065275>, <-0.113119,0.101297>, <-0.103630,0.044535>, <-0.917034,0.124312>,
<-0.906427,0.065275>, <-0.103630,0.044535>, <-0.113119,0.101297>, <0.298057,0.105789>, <-0.242770,0.452758>,
<-0.230216,0.350647>, <0.000000,0.018801>, <-0.372011,0.000000>, <0.543241,0.677305>, <-0.457062,0.677350>,
<-0.371555,0.456506>, <-0.922428,0.103074>, <-0.922385,0.102132>, <-0.103630,0.044536>, <-1.122607,0.158059>,
<-0.880986,0.090282>, <-0.648650,0.058738>, <-0.465817,0.039073>, <-0.465817,0.039073>, <0.675445,0.055218>,
<-0.306576,0.059911>, <0.019746,0.011187>, <-0.095909,0.677052>, <-0.752771,0.108300>, <-0.752444,0.109090>,
<-0.101239,0.472543>, <-0.258816,0.062164>, <-0.112724,0.694970>, <-0.259052,0.063136>, <-0.143814,0.685522>,
<-0.844201,0.012641>, <0.541732,0.729313>, <-0.099045,0.677210>, <-0.459884,0.731770>, <-0.289433,0.071965>,
<0.698125,0.069188>, <-0.455271,0.056126>, <-0.455293,0.056939>, <0.746325,0.609327>, <-0.698979,0.088078>,
<-0.698443,0.088670>, <-0.277679,0.538217>, <-0.192141,0.053996>, <-0.192301,0.054796>, <-0.150193,0.507185>,
<0.167010,0.024437>, <0.732518,0.580384>, <-0.151278,0.706991>, <0.645051,0.100004>, <-0.356883,0.102395>,
<1.054279,0.015597>, <-0.865701,0.861091>, <0.735148,0.584900>, <-0.069884,0.671446>, <-0.708252,0.107224>,
<-0.576897,0.809626>, <0.423629,0.809957>, <-0.302271,0.516838>, <-0.141663,0.593210>, <1.057931,0.025880>,
<-1.149987,0.039660>, <0.711782,0.568774>, <0.428184,0.888297>, <-0.589267,0.079037>, <0.001983,0.006601>,
<-1.080973,0.071708>, <-0.215326,0.081159>, <-0.192176,0.623587>, <-0.378342,0.048164>, <0.584459,0.551160>,
<0.901035,0.489267>, <-0.333157,0.108461>, <0.767048,0.398761>, <-1.151055,0.096844>, <0.904311,0.448383>,
<-0.849948,0.186059>, <-1.146646,0.066411>, <-0.755563,0.183500>, <-0.527212,0.192993>, <-0.239293,0.208299>,
<-0.833383,0.474755>, <-0.907146,0.466194>, <-0.690661,0.483380>, <-0.599248,0.476751>, <-0.510519,0.471928>,
<-0.755563,0.183500>, <-1.146646,0.066411>, <-0.849948,0.186059>, <-0.527212,0.192993>, <-0.239293,0.208299>,
<-0.907146,0.466194>, <-0.833383,0.474755>, <-0.690661,0.483380>, <-0.599248,0.476751>, <-0.510519,0.471928>,
<-0.642393,0.933589>, <-0.462958,0.905505>, <-0.317666,0.874874>, <-0.087205,0.206882>, <-0.146646,0.066411>,
<-0.751674,0.483769>, <-0.642393,0.933589>, <-0.462958,0.905505>, <-0.317666,0.874874>, <-0.146646,0.066411>,
<-0.087205,0.206882>, <-0.751674,0.483769>, <-0.990097,0.901752>, <-1.181789,0.865558>, <-1.087205,0.206882>,
<-0.990097,0.901752>, <-1.181789,0.865558>, <-1.087205,0.206882>, <-0.819950,0.932537>, <-0.181789,0.865558>,
<-0.819950,0.932537>, <-0.181789,0.865558>, <-0.453542,0.884189>, <-1.181789,0.865558>, <-0.738928,0.033171>,
<-0.738928,0.033171>, <-0.821430,0.961611>, <-0.462958,0.905505>, <-0.604664,0.935381>, <-0.317643,0.874869>,
<-0.721897,0.481418>, <-0.721897,0.481418>, <-1.308602,0.841614>, <-0.983158,0.903062>, <-0.319370,0.874990>,
<-0.748736,0.456431>, <-0.748736,0.456432>, <-0.837073,0.168942>, <-0.837072,0.168942>, <-0.074866,0.858227>,
<-0.373386,0.186817>, <-0.373387,0.186816>, <-0.542741,0.464185>, <-0.542741,0.464185>, <-0.464744,0.905882>,
<-0.203348,0.850772>, <-0.859995,0.932300>, <-0.593789,0.933877>, <-0.350568,0.877129>, <-0.146870,0.863164>,
<-0.811649,0.155609>, <-0.811650,0.155609>, <-0.677254,0.421639>, <-0.677254,0.421638>, <-0.256673,0.870243>,
<-0.834804,0.932449>, <-0.462958,0.905505>, <-0.462958,0.905505>, <-0.939225,0.911357>, <-0.251793,0.860986>,
<-0.667223,0.937476>, <-1.181789,0.865558>, <-0.291538,0.878675>, <-0.419760,0.881873>, <-0.642393,0.933589>,
<-0.416895,0.881677>, <-0.461883,0.905337>, <0.052402,0.041011>, <0.513546,0.040599>, <0.947439,0.041011>,
<-0.725903,0.027173>, <-0.271340,0.024796>, <-0.494612,0.027007>, <0.198263,0.869679>, <0.802138,0.855667>,
<0.494779,1.000000>, <0.499022,0.867806>, <0.499958,0.515308>, <0.499967,0.289191>, <0.428107,0.274016>,
<0.571820,0.274016>, <0.486007,-0.000000>, <0.494551,0.012615>, <0.765247,0.036858>, <0.227305,0.036858>,
<-0.968305,0.350799>, <-0.694485,0.367048>, <-0.304617,0.367048>, <0.771408,0.539762>, <0.499963,0.640461>,
<0.746255,0.399616>, <0.253036,0.399616>, <0.239039,0.539762>, <-0.031650,0.350799>, <-0.031508,0.856991>,
<-0.968492,0.856991>, <-1.052561,0.041011>, <-1.197862,0.855667>, <-1.228592,0.539762>, <-1.253745,0.399616>,
<0.498749,0.506832>, <0.486006,-0.000000>, <0.053196,0.041051>, <0.919638,0.040893>, <0.508693,0.282070>,
<-0.190008,0.023990>, <0.499022,0.867806>, <0.499955,0.443144>, <0.479166,-0.010100>, <0.500355,0.281529>,
<0.499039,0.867280>, <0.558133,0.681143>, <-0.725606,0.027160>, <-0.067304,0.855015>, <-1.293973,0.855112>,
<0.898587,0.039803>, <0.315064,0.034774>, <0.251292,0.620166>, <-1.232690,0.502716>, <0.900847,0.491744>,
<0.182865,0.642564>, <0.239089,0.539355>, <0.985456,0.848325>, <0.087008,0.072969>, <-1.072462,0.077105>,
<-0.725903,0.027173>, <0.496517,0.065828>, <0.239181,0.538614>, <-0.304617,0.367048>, <-1.006828,0.925539>,
<-0.968492,0.856991>, <-0.031508,0.856991>, <-1.208593,0.480390>, <0.558296,0.715444>, <-0.725903,0.027173>,
<0.225617,0.546947>, <-0.031508,0.856991>, <-0.970061,0.859796>, <-0.168677,0.023779>, <-0.376782,0.237588>,
<0.635184,0.078832>, <0.670823,0.609678>, <-0.969947,0.859593>, <0.242211,0.968862>, <0.499955,0.443268>,
<-1.013159,0.936858>, <0.384593,0.239170>, <-1.003124,0.918915>, <0.443129,0.457050>, <-0.924718,0.578852>,
}
texture_list { 3, texture { uv_mapping pigment { image_map { sys "BAMHE0003.bmp" map_type 0 interpolate 0 }} finish { ambient .60 diffuse .25 }}
texture { uv_mapping pigment { image_map { sys "BAMHE0005.bmp" map_type 0 interpolate 0 }} finish { ambient .60 diffuse .25 }}
texture { uv_mapping pigment { image_map { sys "BAFHE0001.bmp" map_type 0 interpolate 0 }} finish { ambient .60 diffuse .25 }}
}
face_indices { 165, <0,1,2>, 0, <3,0,4>, 0, <75,3,74>, 0, <6,52,17>, 0, <5,74,58>, 0, <10,48,11>, 0, <10,11,7>, 0, <0,12,1>, 0, <0,2,4>, 0, <6,13,8>, 0,
<14,15,8>, 0, <13,14,8>, 0, <14,16,15>, 0, <6,8,7>, 0, <10,7,8>, 0, <8,15,10>, 0, <10,15,16>, 0, <16,9,10>, 0, <17,52,54>, 0, <18,13,17>, 0,
<19,14,18>, 0, <14,19,20>, 0, <21,55,22>, 0, <4,58,74>, 0, <62,12,0>, 0, <0,3,62>, 0, <57,22,53>, 0, <58,2,59>, 0, <59,53,60>, 0, <74,5,27>, 0,
<53,22,61>, 0, <2,58,4>, 0, <13,6,17>, 0, <13,18,14>, 0, <59,2,1>, 0, <9,16,20>, 0, <20,16,14>, 0, <61,60,53>, 0, <3,23,62>, 0, <51,7,50>, 0,
<74,3,4>, 0, <7,25,11>, 0, <3,23,24>, 0, <56,76,77>, 0, <56,77,26>, 0, <56,26,73>, 0, <63,62,23>, 0, <23,3,49>, 0, <11,50,7>, 0, <29,28,30>, 0,
<31,28,29>, 0, <66,33,65>, 0, <33,32,65>, 0, <29,30,35>, 0, <29,35,36>, 0, <34,67,68>, 0, <37,34,68>, 0, <36,35,34>, 0, <36,34,37>, 0, <39,38,40>, 0,
<39,41,38>, 0, <42,70,69>, 0, <43,42,69>, 0, <40,38,44>, 0, <44,38,45>, 0, <72,46,71>, 0, <46,47,71>, 0, <44,45,46>, 0, <46,45,47>, 0, <64,54,52>, 0,
<3,75,49>, 0, <7,51,52>, 0, <55,61,22>, 0, <21,22,57>, 0, <7,52,6>, 0, <147,146,145>, 1, <147,148,146>, 1, <149,168,169>, 1, <179,151,150>, 1, <178,177,150>, 1,
<151,178,150>, 1, <149,169,148>, 1, <147,152,153>, 1, <148,147,153>, 1, <153,152,165>, 1, <153,165,166>, 1, <147,145,170>, 1, <149,148,153>, 1, <149,153,154>, 1, <153,166,167>, 1,
<154,153,167>, 1, <168,149,154>, 1, <179,154,151>, 1, <154,167,184>, 1, <151,154,178>, 1, <147,170,152>, 1, <170,183,165>, 1, <152,170,165>, 1, <156,155,157>, 1, <158,155,156>, 1,
<175,159,174>, 1, <160,182,161>, 1, <180,181,161>, 1, <181,160,161>, 1, <174,159,158>, 1, <162,155,163>, 1, <155,158,163>, 1, <162,163,171>, 1, <171,163,172>, 1, <157,155,176>, 1,
<158,159,163>, 1, <163,159,164>, 1, <172,163,173>, 1, <163,164,173>, 1, <159,175,164>, 1, <164,182,160>, 1, <173,164,186>, 1, <164,160,181>, 1, <176,155,162>, 1, <185,176,171>, 1,
<176,162,171>, 1, <240,238,241>, 2, <240,241,239>, 2, <243,242,244>, 2, <245,242,243>, 2, <243,244,245>, 2, <247,246,248>, 2, <247,249,246>, 2, <250,235,251>, 2, <252,237,236>, 2,
<253,241,254>, 2, <255,247,248>, 2, <256,242,257>, 2, <247,256,249>, 2, <237,251,235>, 2, <236,258,252>, 2, <241,253,239>, 2, <258,238,259>, 2, <242,255,253>, 2, <234,255,248>, 2,
<257,241,238>, 2, <232,256,258>, 2, <251,260,250>, 2, <242,253,254>, 2, <257,242,254>, 2, <259,252,258>, 2, <264,261,250>, 2, <256,232,249>, 2, <235,250,261>, 2, <258,236,232>, 2,
<262,250,260>, 2, <241,257,254>, 2, <238,258,257>, 2, <256,257,258>, 2, <262,263,250>, 2, <250,263,264>, 2, <232,246,249>, 2, <246,232,233>, 2, <246,234,248>, 2, <233,234,246>, 2,
<242,256,244>, 2, <244,256,247>, 2, <245,244,247>, 2, <255,245,247>, 2, <242,245,255>, 2, }
}

[/spoiler]

maxscript
[spoiler]
Quote:

-- START OF MODEL
fp = openFile "barbfemale.dat" mode:"r"
if fp != undefined then
(
-- START OF OBJECT
undo off
(
try
(
try
(
Mat = MultiMaterial()
Mat.numsubs = 11
Mat[1] = StandardMaterial name:"Slot1"
Mat[1].DiffuseMap = BitmapTexture filename:"BAFFT0002.bmp"
assignNewName Mat[1].DiffuseMap
ShowTextureMap Mat[1] Mat[1].DiffuseMap true
Mat[2] = StandardMaterial name:"Slot2"
Mat[2].DiffuseMap = BitmapTexture filename:"BAFCH0001.bmp"
assignNewName Mat[2].DiffuseMap
ShowTextureMap Mat[2] Mat[2].DiffuseMap true
Mat[3] = StandardMaterial name:"Slot3"
Mat[3].DiffuseMap = BitmapTexture filename:"BAFCH0002.bmp"
assignNewName Mat[3].DiffuseMap
ShowTextureMap Mat[3] Mat[3].DiffuseMap true
Mat[4] = StandardMaterial name:"Slot4"
Mat[4].DiffuseMap = BitmapTexture filename:"BAFLG0003.bmp"
assignNewName Mat[4].DiffuseMap
ShowTextureMap Mat[4] Mat[4].DiffuseMap true
Mat[5] = StandardMaterial name:"Slot5"
Mat[5].DiffuseMap = BitmapTexture filename:"BAFFT0001.bmp"
assignNewName Mat[5].DiffuseMap
ShowTextureMap Mat[5] Mat[5].DiffuseMap true
Mat[6] = StandardMaterial name:"Slot6"
Mat[6].DiffuseMap = BitmapTexture filename:"BAFFA0001.bmp"
assignNewName Mat[6].DiffuseMap
ShowTextureMap Mat[6] Mat[6].DiffuseMap true
Mat[7] = StandardMaterial name:"Slot7"
Mat[7].DiffuseMap = BitmapTexture filename:"BAFUA0001.bmp"
assignNewName Mat[7].DiffuseMap
ShowTextureMap Mat[7] Mat[7].DiffuseMap true
Mat[8] = StandardMaterial name:"Slot8"
Mat[8].DiffuseMap = BitmapTexture filename:"BAFLG0001.bmp"
assignNewName Mat[8].DiffuseMap
ShowTextureMap Mat[8] Mat[8].DiffuseMap true
Mat[9] = StandardMaterial name:"Slot9"
Mat[9].DiffuseMap = BitmapTexture filename:"BAFLG0002.bmp"
assignNewName Mat[9].DiffuseMap
ShowTextureMap Mat[9] Mat[9].DiffuseMap true
Mat[10] = StandardMaterial name:"Slot10"
Mat[10].DiffuseMap = BitmapTexture filename:"BAFHN0001.bmp"
assignNewName Mat[10].DiffuseMap
ShowTextureMap Mat[10] Mat[10].DiffuseMap true
Mat[11] = StandardMaterial name:"Slot11"
Mat[11].DiffuseMap = BitmapTexture filename:"BAFHN0002.bmp"
assignNewName Mat[11].DiffuseMap
ShowTextureMap Mat[11] Mat[11].DiffuseMap true
)
catch
(
format "An Exception occurred during Material setup\n"
)

try
(

format "Creating object BAF_DMSPRITEDEF\n"

Obj = mesh NumVerts:671 NumFaces:344
Obj.Name = "BAF_DMSPRITEDEF"
Obj.Mat = Mat
SetNumTverts Obj 671 false
BuildTvFaces Obj false

local tempx,tempy,tempz
for i=1 to 671 do
(
tempx = ReadValue fp -- Vertex positions
tempy = ReadValue fp
tempz = ReadValue fp
SetVert Obj i tempx tempy tempz
tempx = ReadValue fp -- UVs
tempy = ReadValue fp
SetTVert Obj i [tempx, tempy, 1.0]
)

local index0,index1,index2
for i=1 to 344 do
(
index0 = ReadValue fp
index1 = ReadValue fp
index2 = ReadValue fp
SetFace Obj i index0 index1 index2
SetTVFace Obj i [index0, index1, index2]
)

local tmap,faceindex
for i=1 to 344 do
(
faceindex = ReadValue fp
tmap = ReadValue fp
SetFaceMatId Obj faceindex tmap
)

Update Obj
)
catch
(
format "An Exception occurred during Geometry setup\n"
)
try
(
MyBones = #()
NewBone = BoneSys.createBone [0.000000,0.000000,0.000000] [-0.692075,-0.092073,76.365101] [0,1,0]
NewBone.Width = 20.000000
NewBone.Height = 20.000000
NewBone.Name = "BAF_TRACK"
append MyBones NewBone
NewBone = BoneSys.createBone [-0.692075,-0.092073,76.365101] [-1.379881,-5.917766,103.063726] [0,1,0]
NewBone.Width = 20.000000
NewBone.Height = 20.000000
NewBone.Name = "BAFPE_TRACK"
append MyBones NewBone
NewBone = BoneSys.createBone [-1.379881,-5.917766,103.063726] [-44.293994,9.161945,193.594539] [0,1,0]
NewBone.Width = 20.000000
NewBone.Height = 20.000000
NewBone.Name = "BAFCH_TRACK"
append MyBones NewBone
NewBone = BoneSys.createBone [-44.293994,9.161945,193.594539] [-125.692749,17.762215,195.300531] [0,1,0]
NewBone.Width = 20.000000
NewBone.Height = 20.000000
NewBone.Name = "BAFBI_R_TRACK"
append MyBones NewBone
NewBone = BoneSys.createBone [-125.692749,17.762215,195.300531] [-199.268818,5.299257,195.288646] [0,1,0]
NewBone.Width = 20.000000
NewBone.Height = 20.000000
NewBone.Name = "BAFFO_R_TRACK"
append MyBones NewBone
NewBone = BoneSys.createBone [-199.268818,5.299257,195.288646] [-210.402322,3.554305,190.559638] [0,1,0]
NewBone.Width = 20.000000
NewBone.Height = 20.000000
NewBone.Name = "BAFFI_R_TRACK"
append MyBones NewBone
NewBone = BoneSys.createBone [-210.402328,3.554305,190.559638] [-210.402328,3.554305,190.559638] [0,1,0]
NewBone.Width = 20.000000
NewBone.Height = 20.000000
NewBone.Name = "BAFR_POINT_TRACK"
append MyBones NewBone
NewBone = BoneSys.createBone [40.964565,8.452056,194.565153] [121.345913,17.751226,195.771420] [0,1,0]
NewBone.Width = 20.000000
NewBone.Height = 20.000000
NewBone.Name = "BAFBI_L_TRACK"
append MyBones NewBone
NewBone = BoneSys.createBone [121.345913,17.751226,195.771420] [195.296955,5.299227,197.825766] [0,1,0]
NewBone.Width = 20.000000
NewBone.Height = 20.000000
NewBone.Name = "BAFFO_L_TRACK"
append MyBones NewBone
NewBone = BoneSys.createBone [195.296955,5.299227,197.825766] [210.841060,4.088116,191.844821] [0,1,0]
NewBone.Width = 20.000000
NewBone.Height = 20.000000
NewBone.Name = "BAFFI_L_TRACK"
append MyBones NewBone
NewBone = BoneSys.createBone [210.841064,4.088116,191.844821] [210.841064,4.088116,191.844821] [0,1,0]
NewBone.Width = 20.000000
NewBone.Height = 20.000000
NewBone.Name = "BAFL_POINT_TRACK"
append MyBones NewBone
NewBone = BoneSys.createBone [149.623535,9.899594,213.599896] [149.623535,9.899594,213.599896] [0,1,0]
NewBone.Width = 20.000000
NewBone.Height = 20.000000
NewBone.Name = "BAFSHIELD_POINT_TRACK"
append MyBones NewBone
NewBone = BoneSys.createBone [-1.908043,13.101284,209.957218] [-1.142160,12.168502,228.347540] [0,1,0]
NewBone.Width = 20.000000
NewBone.Height = 20.000000
NewBone.Name = "BAFNE_TRACK"
append MyBones NewBone
NewBone = BoneSys.createBone [-1.142160,12.168502,228.347540] [-0.784268,16.704427,278.492236] [0,1,0]
NewBone.Width = 20.000000
NewBone.Height = 20.000000
NewBone.Name = "BAFHE_TRACK"
append MyBones NewBone
NewBone = BoneSys.createBone [-0.784268,16.704427,278.492236] [-0.784268,16.704427,278.492236] [0,1,0]
NewBone.Width = 20.000000
NewBone.Height = 20.000000
NewBone.Name = "BAFHA_TRACK"
append MyBones NewBone
NewBone = BoneSys.createBone [-0.895143,10.624165,253.735805] [-0.042498,10.308062,274.802160] [0,1,0]
NewBone.Width = 20.000000
NewBone.Height = 20.000000
NewBone.Name = "BAFGUILD_POINT_TRACK"
append MyBones NewBone
NewBone = BoneSys.createBone [-0.042498,10.308062,274.802160] [-0.042498,10.308062,274.802160] [0,1,0]
NewBone.Width = 20.000000
NewBone.Height = 20.000000
NewBone.Name = "BAFHEAD_POINT_TRACK"
append MyBones NewBone
NewBone = BoneSys.createBone [-34.974465,-12.230688,68.995953] [-22.644538,-3.775024,-89.135063] [0,1,0]
NewBone.Width = 20.000000
NewBone.Height = 20.000000
NewBone.Name = "BAFTH_R_TRACK"
append MyBones NewBone
NewBone = BoneSys.createBone [-22.644538,-3.775024,-89.135063] [-16.146195,4.528216,-258.628321] [0,1,0]
NewBone.Width = 20.000000
NewBone.Height = 20.000000
NewBone.Name = "BAFCA_R_TRACK"
append MyBones NewBone
NewBone = BoneSys.createBone [-16.146195,4.528216,-258.628321] [-23.700988,-30.175364,-271.425962] [0,1,0]
NewBone.Width = 20.000000
NewBone.Height = 20.000000
NewBone.Name = "BAFBO_R_TRACK"
append MyBones NewBone
NewBone = BoneSys.createBone [-23.700989,-30.175364,-271.425962] [-23.700989,-30.175364,-271.425962] [0,1,0]
NewBone.Width = 20.000000
NewBone.Height = 20.000000
NewBone.Name = "BAFTO_R_TRACK"
append MyBones NewBone
NewBone = BoneSys.createBone [31.250381,-12.258722,69.519556] [18.935096,-2.608006,-88.487184] [0,1,0]
NewBone.Width = 20.000000
NewBone.Height = 20.000000
NewBone.Name = "BAFTH_L_TRACK"
append MyBones NewBone
NewBone = BoneSys.createBone [18.935096,-2.608006,-88.487184] [14.365683,5.582029,-257.976961] [0,1,0]
NewBone.Width = 20.000000
NewBone.Height = 20.000000
NewBone.Name = "BAFCA_L_TRACK"
append MyBones NewBone
NewBone = BoneSys.createBone [14.365683,5.582029,-257.976961] [21.233678,-30.456311,-271.644759] [0,1,0]
NewBone.Width = 20.000000
NewBone.Height = 20.000000
NewBone.Name = "BAFBO_L_TRACK"
append MyBones NewBone
NewBone = BoneSys.createBone [21.233677,-30.456311,-271.644759] [21.233677,-30.456311,-271.644759] [0,1,0]
NewBone.Width = 20.000000
NewBone.Height = 20.000000
NewBone.Name = "BAFTO_L_TRACK"
append MyBones NewBone

MyBones[2].Parent = MyBones[1]
MyBones[3].Parent = MyBones[2]
MyBones[4].Parent = MyBones[3]
MyBones[5].Parent = MyBones[4]
MyBones[6].Parent = MyBones[5]
MyBones[7].Parent = MyBones[6]
MyBones[8].Parent = MyBones[3]
MyBones[9].Parent = MyBones[8]
MyBones[10].Parent = MyBones[9]
MyBones[11].Parent = MyBones[10]
MyBones[12].Parent = MyBones[9]
MyBones[13].Parent = MyBones[3]
MyBones[14].Parent = MyBones[13]
MyBones[15].Parent = MyBones[14]
MyBones[16].Parent = MyBones[14]
MyBones[17].Parent = MyBones[16]
MyBones[18].Parent = MyBones[2]
MyBones[19].Parent = MyBones[18]
MyBones[20].Parent = MyBones[19]
MyBones[21].Parent = MyBones[20]
MyBones[22].Parent = MyBones[2]
MyBones[23].Parent = MyBones[22]
MyBones[24].Parent = MyBones[23]
MyBones[25].Parent = MyBones[24]
)
catch
(
format "An Exception occurred during Bone setup\n"
)

try
(
max modify mode
Select Obj
modPanel.addModToSelection (Skin())
skinOps.addBone $.modifiers[#Skin] MyBones[1] 1
skinOps.addBone $.modifiers[#Skin] MyBones[2] 1
skinOps.addBone $.modifiers[#Skin] MyBones[3] 1
skinOps.addBone $.modifiers[#Skin] MyBones[4] 1
skinOps.addBone $.modifiers[#Skin] MyBones[5] 1
skinOps.addBone $.modifiers[#Skin] MyBones[6] 1
skinOps.addBone $.modifiers[#Skin] MyBones[7] 1
skinOps.addBone $.modifiers[#Skin] MyBones[8] 1
skinOps.addBone $.modifiers[#Skin] MyBones[9] 1
skinOps.addBone $.modifiers[#Skin] MyBones[10] 1
skinOps.addBone $.modifiers[#Skin] MyBones[11] 1
skinOps.addBone $.modifiers[#Skin] MyBones[12] 1
skinOps.addBone $.modifiers[#Skin] MyBones[13] 1
skinOps.addBone $.modifiers[#Skin] MyBones[14] 1
skinOps.addBone $.modifiers[#Skin] MyBones[15] 1
skinOps.addBone $.modifiers[#Skin] MyBones[16] 1
skinOps.addBone $.modifiers[#Skin] MyBones[17] 1
skinOps.addBone $.modifiers[#Skin] MyBones[18] 1
skinOps.addBone $.modifiers[#Skin] MyBones[19] 1
skinOps.addBone $.modifiers[#Skin] MyBones[20] 1
skinOps.addBone $.modifiers[#Skin] MyBones[21] 1
skinOps.addBone $.modifiers[#Skin] MyBones[22] 1
skinOps.addBone $.modifiers[#Skin] MyBones[23] 1
skinOps.addBone $.modifiers[#Skin] MyBones[24] 1
skinOps.addBone $.modifiers[#Skin] MyBones[25] 1
Update Obj
forcecompleteredraw()

local vertindex, boneindex
for i=1 to 671 do
(
vertindex = ReadValue fp
boneindex = ReadValue fp
try (skinOps.ReplaceVertexWeights $.modifiers[#Skin] vertindex boneindex 1.0) catch ( format "Failed on %\n" i )
)
)
catch
(
format "An Exception occurred during Skin setup\n"
)
) catch (format "An unknown exception occurred during import\n")
) -- undo off
-- END OF OBJECT

-- START OF MODEL
-- START OF OBJECT
undo off
(
try
(
try
(
Mat = MultiMaterial()
Mat.numsubs = 2
Mat[1] = StandardMaterial name:"Slot1"
Mat[1].DiffuseMap = BitmapTexture filename:"BAFHE0001.bmp"
assignNewName Mat[1].DiffuseMap
ShowTextureMap Mat[1] Mat[1].DiffuseMap true
Mat[2] = StandardMaterial name:"Slot2"
Mat[2].DiffuseMap = BitmapTexture filename:"BAFHE0002.bmp"
assignNewName Mat[2].DiffuseMap
ShowTextureMap Mat[2] Mat[2].DiffuseMap true
)
catch
(
format "An Exception occurred during Material setup\n"
)

try
(

format "Creating object BAFHE00_DMSPRITEDEF\n"

Obj = mesh NumVerts:113 NumFaces:70
Obj.Name = "BAFHE00_DMSPRITEDEF"
Obj.Mat = Mat
SetNumTverts Obj 113 false
BuildTvFaces Obj false

local tempx,tempy,tempz
for i=1 to 113 do
(
tempx = ReadValue fp -- Vertex positions
tempy = ReadValue fp
tempz = ReadValue fp
SetVert Obj i tempx tempy tempz
tempx = ReadValue fp -- UVs
tempy = ReadValue fp
SetTVert Obj i [tempx, tempy, 1.0]
)

local index0,index1,index2
for i=1 to 70 do
(
index0 = ReadValue fp
index1 = ReadValue fp
index2 = ReadValue fp
SetFace Obj i index0 index1 index2
SetTVFace Obj i [index0, index1, index2]
)

local tmap,faceindex
for i=1 to 70 do
(
faceindex = ReadValue fp
tmap = ReadValue fp
SetFaceMatId Obj faceindex tmap
)

Update Obj
)
catch
(
format "An Exception occurred during Geometry setup\n"
)

try
(
max modify mode
Select Obj
modPanel.addModToSelection (Skin())
skinOps.addBone $.modifiers[#Skin] MyBones[1] 1
skinOps.addBone $.modifiers[#Skin] MyBones[2] 1
skinOps.addBone $.modifiers[#Skin] MyBones[3] 1
skinOps.addBone $.modifiers[#Skin] MyBones[4] 1
skinOps.addBone $.modifiers[#Skin] MyBones[5] 1
skinOps.addBone $.modifiers[#Skin] MyBones[6] 1
skinOps.addBone $.modifiers[#Skin] MyBones[7] 1
skinOps.addBone $.modifiers[#Skin] MyBones[8] 1
skinOps.addBone $.modifiers[#Skin] MyBones[9] 1
skinOps.addBone $.modifiers[#Skin] MyBones[10] 1
skinOps.addBone $.modifiers[#Skin] MyBones[11] 1
skinOps.addBone $.modifiers[#Skin] MyBones[12] 1
skinOps.addBone $.modifiers[#Skin] MyBones[13] 1
skinOps.addBone $.modifiers[#Skin] MyBones[14] 1
skinOps.addBone $.modifiers[#Skin] MyBones[15] 1
skinOps.addBone $.modifiers[#Skin] MyBones[16] 1
skinOps.addBone $.modifiers[#Skin] MyBones[17] 1
skinOps.addBone $.modifiers[#Skin] MyBones[18] 1
skinOps.addBone $.modifiers[#Skin] MyBones[19] 1
skinOps.addBone $.modifiers[#Skin] MyBones[20] 1
skinOps.addBone $.modifiers[#Skin] MyBones[21] 1
skinOps.addBone $.modifiers[#Skin] MyBones[22] 1
skinOps.addBone $.modifiers[#Skin] MyBones[23] 1
skinOps.addBone $.modifiers[#Skin] MyBones[24] 1
skinOps.addBone $.modifiers[#Skin] MyBones[25] 1
Update Obj
forcecompleteredraw()

local vertindex, boneindex
for i=1 to 113 do
(
vertindex = ReadValue fp
boneindex = ReadValue fp
try (skinOps.ReplaceVertexWeights $.modifiers[#Skin] vertindex boneindex 1.0) catch ( format "Failed on %\n" i )
)
)
catch
(
format "An Exception occurred during Skin setup\n"
)
) catch (format "An unknown exception occurred during import\n")
) -- undo off
-- END OF OBJECT

-- START OF MODEL
-- START OF OBJECT
undo off
(
try
(
try
(
Mat = MultiMaterial()
Mat.numsubs = 7
Mat[1] = StandardMaterial name:"Slot1"
Mat[1].DiffuseMap = BitmapTexture filename:"BAMHE0105.bmp"
assignNewName Mat[1].DiffuseMap
ShowTextureMap Mat[1] Mat[1].DiffuseMap true
Mat[2] = StandardMaterial name:"Slot2"
Mat[2].DiffuseMap = BitmapTexture filename:"BAMHE0103.bmp"
assignNewName Mat[2].DiffuseMap
ShowTextureMap Mat[2] Mat[2].DiffuseMap true
Mat[3] = StandardMaterial name:"Slot3"
Mat[3].DiffuseMap = BitmapTexture filename:"BAMHE0104.bmp"
assignNewName Mat[3].DiffuseMap
ShowTextureMap Mat[3] Mat[3].DiffuseMap true
Mat[4] = StandardMaterial name:"Slot4"
Mat[4].DiffuseMap = BitmapTexture filename:"BAMHE0102.bmp"
assignNewName Mat[4].DiffuseMap
ShowTextureMap Mat[4] Mat[4].DiffuseMap true
Mat[5] = StandardMaterial name:"Slot5"
Mat[5].DiffuseMap = BitmapTexture filename:"BAFHE0001.bmp"
assignNewName Mat[5].DiffuseMap
ShowTextureMap Mat[5] Mat[5].DiffuseMap true
Mat[6] = StandardMaterial name:"Slot6"
Mat[6].DiffuseMap = BitmapTexture filename:"BAFHE0002.bmp"
assignNewName Mat[6].DiffuseMap
ShowTextureMap Mat[6] Mat[6].DiffuseMap true
Mat[7] = StandardMaterial name:"Slot7"
Mat[7].DiffuseMap = BitmapTexture filename:"BAMHE0106.bmp"
assignNewName Mat[7].DiffuseMap
ShowTextureMap Mat[7] Mat[7].DiffuseMap true
)
catch
(
format "An Exception occurred during Material setup\n"
)

try
(

format "Creating object BAFHE01_DMSPRITEDEF\n"

Obj = mesh NumVerts:348 NumFaces:144
Obj.Name = "BAFHE01_DMSPRITEDEF"
Obj.Mat = Mat
SetNumTverts Obj 348 false
BuildTvFaces Obj false

local tempx,tempy,tempz
for i=1 to 348 do
(
tempx = ReadValue fp -- Vertex positions
tempy = ReadValue fp
tempz = ReadValue fp
SetVert Obj i tempx tempy tempz
tempx = ReadValue fp -- UVs
tempy = ReadValue fp
SetTVert Obj i [tempx, tempy, 1.0]
)

local index0,index1,index2
for i=1 to 144 do
(
index0 = ReadValue fp
index1 = ReadValue fp
index2 = ReadValue fp
SetFace Obj i index0 index1 index2
SetTVFace Obj i [index0, index1, index2]
)

local tmap,faceindex
for i=1 to 144 do
(
faceindex = ReadValue fp
tmap = ReadValue fp
SetFaceMatId Obj faceindex tmap
)

Update Obj
)
catch
(
format "An Exception occurred during Geometry setup\n"
)

try
(
max modify mode
Select Obj
modPanel.addModToSelection (Skin())
skinOps.addBone $.modifiers[#Skin] MyBones[1] 1
skinOps.addBone $.modifiers[#Skin] MyBones[2] 1
skinOps.addBone $.modifiers[#Skin] MyBones[3] 1
skinOps.addBone $.modifiers[#Skin] MyBones[4] 1
skinOps.addBone $.modifiers[#Skin] MyBones[5] 1
skinOps.addBone $.modifiers[#Skin] MyBones[6] 1
skinOps.addBone $.modifiers[#Skin] MyBones[7] 1
skinOps.addBone $.modifiers[#Skin] MyBones[8] 1
skinOps.addBone $.modifiers[#Skin] MyBones[9] 1
skinOps.addBone $.modifiers[#Skin] MyBones[10] 1
skinOps.addBone $.modifiers[#Skin] MyBones[11] 1
skinOps.addBone $.modifiers[#Skin] MyBones[12] 1
skinOps.addBone $.modifiers[#Skin] MyBones[13] 1
skinOps.addBone $.modifiers[#Skin] MyBones[14] 1
skinOps.addBone $.modifiers[#Skin] MyBones[15] 1
skinOps.addBone $.modifiers[#Skin] MyBones[16] 1
skinOps.addBone $.modifiers[#Skin] MyBones[17] 1
skinOps.addBone $.modifiers[#Skin] MyBones[18] 1
skinOps.addBone $.modifiers[#Skin] MyBones[19] 1
skinOps.addBone $.modifiers[#Skin] MyBones[20] 1
skinOps.addBone $.modifiers[#Skin] MyBones[21] 1
skinOps.addBone $.modifiers[#Skin] MyBones[22] 1
skinOps.addBone $.modifiers[#Skin] MyBones[23] 1
skinOps.addBone $.modifiers[#Skin] MyBones[24] 1
skinOps.addBone $.modifiers[#Skin] MyBones[25] 1
Update Obj
forcecompleteredraw()

local vertindex, boneindex
for i=1 to 348 do
(
vertindex = ReadValue fp
boneindex = ReadValue fp
try (skinOps.ReplaceVertexWeights $.modifiers[#Skin] vertindex boneindex 1.0) catch ( format "Failed on %\n" i )
)
)
catch
(
format "An Exception occurred during Skin setup\n"
)
) catch (format "An unknown exception occurred during import\n")
) -- undo off
-- END OF OBJECT

-- START OF MODEL
-- START OF OBJECT
undo off
(
try
(
try
(
Mat = MultiMaterial()
Mat.numsubs = 2
Mat[1] = StandardMaterial name:"Slot1"
Mat[1].DiffuseMap = BitmapTexture filename:"CHAIN01.bmp"
assignNewName Mat[1].DiffuseMap
ShowTextureMap Mat[1] Mat[1].DiffuseMap true
Mat[2] = StandardMaterial name:"Slot2"
Mat[2].DiffuseMap = BitmapTexture filename:"BAFHE0001.bmp"
assignNewName Mat[2].DiffuseMap
ShowTextureMap Mat[2] Mat[2].DiffuseMap true
)
catch
(
format "An Exception occurred during Material setup\n"
)

try
(

format "Creating object BAFHE02_DMSPRITEDEF\n"

Obj = mesh NumVerts:167 NumFaces:118
Obj.Name = "BAFHE02_DMSPRITEDEF"
Obj.Mat = Mat
SetNumTverts Obj 167 false
BuildTvFaces Obj false

local tempx,tempy,tempz
for i=1 to 167 do
(
tempx = ReadValue fp -- Vertex positions
tempy = ReadValue fp
tempz = ReadValue fp
SetVert Obj i tempx tempy tempz
tempx = ReadValue fp -- UVs
tempy = ReadValue fp
SetTVert Obj i [tempx, tempy, 1.0]
)

local index0,index1,index2
for i=1 to 118 do
(
index0 = ReadValue fp
index1 = ReadValue fp
index2 = ReadValue fp
SetFace Obj i index0 index1 index2
SetTVFace Obj i [index0, index1, index2]
)

local tmap,faceindex
for i=1 to 118 do
(
faceindex = ReadValue fp
tmap = ReadValue fp
SetFaceMatId Obj faceindex tmap
)

Update Obj
)
catch
(
format "An Exception occurred during Geometry setup\n"
)

try
(
max modify mode
Select Obj
modPanel.addModToSelection (Skin())
skinOps.addBone $.modifiers[#Skin] MyBones[1] 1
skinOps.addBone $.modifiers[#Skin] MyBones[2] 1
skinOps.addBone $.modifiers[#Skin] MyBones[3] 1
skinOps.addBone $.modifiers[#Skin] MyBones[4] 1
skinOps.addBone $.modifiers[#Skin] MyBones[5] 1
skinOps.addBone $.modifiers[#Skin] MyBones[6] 1
skinOps.addBone $.modifiers[#Skin] MyBones[7] 1
skinOps.addBone $.modifiers[#Skin] MyBones[8] 1
skinOps.addBone $.modifiers[#Skin] MyBones[9] 1
skinOps.addBone $.modifiers[#Skin] MyBones[10] 1
skinOps.addBone $.modifiers[#Skin] MyBones[11] 1
skinOps.addBone $.modifiers[#Skin] MyBones[12] 1
skinOps.addBone $.modifiers[#Skin] MyBones[13] 1
skinOps.addBone $.modifiers[#Skin] MyBones[14] 1
skinOps.addBone $.modifiers[#Skin] MyBones[15] 1
skinOps.addBone $.modifiers[#Skin] MyBones[16] 1
skinOps.addBone $.modifiers[#Skin] MyBones[17] 1
skinOps.addBone $.modifiers[#Skin] MyBones[18] 1
skinOps.addBone $.modifiers[#Skin] MyBones[19] 1
skinOps.addBone $.modifiers[#Skin] MyBones[20] 1
skinOps.addBone $.modifiers[#Skin] MyBones[21] 1
skinOps.addBone $.modifiers[#Skin] MyBones[22] 1
skinOps.addBone $.modifiers[#Skin] MyBones[23] 1
skinOps.addBone $.modifiers[#Skin] MyBones[24] 1
skinOps.addBone $.modifiers[#Skin] MyBones[25] 1
Update Obj
forcecompleteredraw()

local vertindex, boneindex
for i=1 to 167 do
(
vertindex = ReadValue fp
boneindex = ReadValue fp
try (skinOps.ReplaceVertexWeights $.modifiers[#Skin] vertindex boneindex 1.0) catch ( format "Failed on %\n" i )
)
)
catch
(
format "An Exception occurred during Skin setup\n"
)
) catch (format "An unknown exception occurred during import\n")
) -- undo off
-- END OF OBJECT

-- START OF MODEL
-- START OF OBJECT
undo off
(
try
(
try
(
Mat = MultiMaterial()
Mat.numsubs = 3
Mat[1] = StandardMaterial name:"Slot1"
Mat[1].DiffuseMap = BitmapTexture filename:"BAMHE0003.bmp"
assignNewName Mat[1].DiffuseMap
ShowTextureMap Mat[1] Mat[1].DiffuseMap true
Mat[2] = StandardMaterial name:"Slot2"
Mat[2].DiffuseMap = BitmapTexture filename:"BAMHE0005.bmp"
assignNewName Mat[2].DiffuseMap
ShowTextureMap Mat[2] Mat[2].DiffuseMap true
Mat[3] = StandardMaterial name:"Slot3"
Mat[3].DiffuseMap = BitmapTexture filename:"BAFHE0001.bmp"
assignNewName Mat[3].DiffuseMap
ShowTextureMap Mat[3] Mat[3].DiffuseMap true
)
catch
(
format "An Exception occurred during Material setup\n"
)

try
(

format "Creating object BAFHE03_DMSPRITEDEF\n"

Obj = mesh NumVerts:315 NumFaces:165
Obj.Name = "BAFHE03_DMSPRITEDEF"
Obj.Mat = Mat
SetNumTverts Obj 315 false
BuildTvFaces Obj false

local tempx,tempy,tempz
for i=1 to 315 do
(
tempx = ReadValue fp -- Vertex positions
tempy = ReadValue fp
tempz = ReadValue fp
SetVert Obj i tempx tempy tempz
tempx = ReadValue fp -- UVs
tempy = ReadValue fp
SetTVert Obj i [tempx, tempy, 1.0]
)

local index0,index1,index2
for i=1 to 165 do
(
index0 = ReadValue fp
index1 = ReadValue fp
index2 = ReadValue fp
SetFace Obj i index0 index1 index2
SetTVFace Obj i [index0, index1, index2]
)

local tmap,faceindex
for i=1 to 165 do
(
faceindex = ReadValue fp
tmap = ReadValue fp
SetFaceMatId Obj faceindex tmap
)

Update Obj
)
catch
(
format "An Exception occurred during Geometry setup\n"
)

try
(
max modify mode
Select Obj
modPanel.addModToSelection (Skin())
skinOps.addBone $.modifiers[#Skin] MyBones[1] 1
skinOps.addBone $.modifiers[#Skin] MyBones[2] 1
skinOps.addBone $.modifiers[#Skin] MyBones[3] 1
skinOps.addBone $.modifiers[#Skin] MyBones[4] 1
skinOps.addBone $.modifiers[#Skin] MyBones[5] 1
skinOps.addBone $.modifiers[#Skin] MyBones[6] 1
skinOps.addBone $.modifiers[#Skin] MyBones[7] 1
skinOps.addBone $.modifiers[#Skin] MyBones[8] 1
skinOps.addBone $.modifiers[#Skin] MyBones[9] 1
skinOps.addBone $.modifiers[#Skin] MyBones[10] 1
skinOps.addBone $.modifiers[#Skin] MyBones[11] 1
skinOps.addBone $.modifiers[#Skin] MyBones[12] 1
skinOps.addBone $.modifiers[#Skin] MyBones[13] 1
skinOps.addBone $.modifiers[#Skin] MyBones[14] 1
skinOps.addBone $.modifiers[#Skin] MyBones[15] 1
skinOps.addBone $.modifiers[#Skin] MyBones[16] 1
skinOps.addBone $.modifiers[#Skin] MyBones[17] 1
skinOps.addBone $.modifiers[#Skin] MyBones[18] 1
skinOps.addBone $.modifiers[#Skin] MyBones[19] 1
skinOps.addBone $.modifiers[#Skin] MyBones[20] 1
skinOps.addBone $.modifiers[#Skin] MyBones[21] 1
skinOps.addBone $.modifiers[#Skin] MyBones[22] 1
skinOps.addBone $.modifiers[#Skin] MyBones[23] 1
skinOps.addBone $.modifiers[#Skin] MyBones[24] 1
skinOps.addBone $.modifiers[#Skin] MyBones[25] 1
Update Obj
forcecompleteredraw()

local vertindex, boneindex
for i=1 to 315 do
(
vertindex = ReadValue fp
boneindex = ReadValue fp
try (skinOps.ReplaceVertexWeights $.modifiers[#Skin] vertindex boneindex 1.0) catch ( format "Failed on %\n" i )
)
)
catch
(
format "An Exception occurred during Skin setup\n"
)
) catch (format "An unknown exception occurred during import\n")
) -- undo off
-- END OF OBJECT

-- END OF MODEL
close fp
)
else
(
format "Error loading data file.\n"
)
[/spoiler]

.mtl
[spoiler]
Quote:


#================================================= =
#Material list
#This file has been created by PoseRay v3.12.2.456
#3D model to POV-Ray/Moray Converter.
#Author: FlyerX
#Email: flyerx_2000@yahoo.com
#Web: PoseRay - 3D model conversion, subdivision and preview
#================================================= =

#================================================= =
newmtl POV_texture_1
Ns 2.5
Ka 0 0 0
Kd 1 1 1
Ks 0 0 0
d 1
#r 0
#blend 0
#cell_hi
#povmatactive
#povmat,1
#povcmd,uv_mapping

#================================================= =
newmtl POV_texture_2
Ns 2.5
Ka 0 0 0
Kd 1 1 1
Ks 0 0 0
d 1
#r 0
#blend 0
#cell_hi
#povmatactive
#povmat,1
#povcmd,image_map

#================================================= =
newmtl POV_texture_3
Ns 2.5
Ka 0 0 0
Kd 1 1 1
Ks 0 0 0
d 1
#r 0
#blend 0
#cell_hi
#povmatactive
#povmat,1
#povcmd,bafft0002.bmp

#================================================= =
newmtl POV_texture_4
Ns 2.5
Ka 0 0 0
Kd 1 1 1
Ks 0 0 0
d 1
#r 0
#blend 0
#cell_hi
#povmatactive
#povmat,1
#povcmd,0

#================================================= =
newmtl POV_texture_5
Ns 2.5
Ka 0 0 0
Kd 1 1 1
Ks 0 0 0
d 1
#r 0
#blend 0
#cell_hi
#povmatactive
#povmat,1
#povcmd,0

#================================================= =
newmtl POV_texture_6
Ns 2.5
Ka 0 0 0
Kd 1 1 1
Ks 0 0 0
d 1
#r 0
#blend 0
#cell_hi
#povmatactive
#povmat,1
#povcmd,ambient

#================================================= =
newmtl POV_texture_7
Ns 2.5
Ka 0 0 0
Kd 1 1 1
Ks 0 0 0
d 1
#r 0
#blend 0
#cell_hi
#povmatactive
#povmat,1
#povcmd,diffuse

#================================================= =
newmtl POV_texture_8
Ns 2.5
Ka 0 0 0
Kd 1 1 1
Ks 0 0 0
d 1
#r 0
#blend 0
#cell_hi
#povmatactive
#povmat,1
#povcmd,texture

#================================================= =
newmtl POV_texture_9
Ns 2.5
Ka 0 0 0
Kd 1 1 1
Ks 0 0 0
d 1
#r 0
#blend 0
#cell_hi
#povmatactive
#povmat,1
#povcmd,pigment

#================================================= =
newmtl POV_texture_10
Ns 2.5
Ka 0 0 0
Kd 1 1 1
Ks 0 0 0
d 1
#r 0
#blend 0
#cell_hi
#povmatactive
#povmat,1
#povcmd,sys

#================================================= =
newmtl POV_texture_11
Ns 2.5
Ka 0 0 0
Kd 1 1 1
Ks 0 0 0
d 1
#r 0
#blend 0
#cell_hi
#povmatactive
#povmat,1
#povcmd,map_type

#================================================= =
newmtl POV_texture_1_1
Ns 2.5
Ka 0 0 0
Kd 1 1 1
Ks 0 0 0
d 1
#r 0
#blend 0
#cell_hi
#povmatactive
#povmat,1
#povcmd,uv_mapping

#================================================= =
newmtl POV_texture_2_1
Ns 2.5
Ka 0 0 0
Kd 1 1 1
Ks 0 0 0
d 1
#r 0
#blend 0
#cell_hi
#povmatactive
#povmat,1
#povcmd,image_map

#================================================= =
newmtl POV_texture_1_2
Ns 2.5
Ka 0 0 0
Kd 1 1 1
Ks 0 0 0
d 1
#r 0
#blend 0
#cell_hi
#povmatactive
#povmat,1
#povcmd,uv_mapping

#================================================= =
newmtl POV_texture_2_2
Ns 2.5
Ka 0 0 0
Kd 1 1 1
Ks 0 0 0
d 1
#r 0
#blend 0
#cell_hi
#povmatactive
#povmat,1
#povcmd,image_map

#================================================= =
newmtl POV_texture_3_1
Ns 2.5
Ka 0 0 0
Kd 1 1 1
Ks 0 0 0
d 1
#r 0
#blend 0
#cell_hi
#povmatactive
#povmat,1
#povcmd,bamhe0105.bmp

#================================================= =
newmtl POV_texture_4_1
Ns 2.5
Ka 0 0 0
Kd 1 1 1
Ks 0 0 0
d 1
#r 0
#blend 0
#cell_hi
#povmatactive
#povmat,1
#povcmd,0

#================================================= =
newmtl POV_texture_5_1
Ns 2.5
Ka 0 0 0
Kd 1 1 1
Ks 0 0 0
d 1
#r 0
#blend 0
#cell_hi
#povmatactive
#povmat,1
#povcmd,0

#================================================= =
newmtl POV_texture_6_1
Ns 2.5
Ka 0 0 0
Kd 1 1 1
Ks 0 0 0
d 1
#r 0
#blend 0
#cell_hi
#povmatactive
#povmat,1
#povcmd,ambient

#================================================= =
newmtl POV_texture_7_1
Ns 2.5
Ka 0 0 0
Kd 1 1 1
Ks 0 0 0
d 1
#r 0
#blend 0
#cell_hi
#povmatactive
#povmat,1
#povcmd,diffuse

#================================================= =
newmtl POV_texture_1_3
Ns 2.5
Ka 0 0 0
Kd 1 1 1
Ks 0 0 0
d 1
#r 0
#blend 0
#cell_hi
#povmatactive
#povmat,1
#povcmd,uv_mapping

#================================================= =
newmtl POV_texture_2_3
Ns 2.5
Ka 0 0 0
Kd 1 1 1
Ks 0 0 0
d 1
#r 0
#blend 0
#cell_hi
#povmatactive
#povmat,1
#povcmd,image_map

#================================================= =
newmtl POV_texture_1_4
Ns 2.5
Ka 0 0 0
Kd 1 1 1
Ks 0 0 0
d 1
#r 0
#blend 0
#cell_hi
#povmatactive
#povmat,1
#povcmd,uv_mapping

#================================================= =
newmtl POV_texture_2_4
Ns 2.5
Ka 0 0 0
Kd 1 1 1
Ks 0 0 0
d 1
#r 0
#blend 0
#cell_hi
#povmatactive
#povmat,1
#povcmd,image_map

#================================================= =
newmtl POV_texture_3_2
Ns 2.5
Ka 0 0 0
Kd 1 1 1
Ks 0 0 0
d 1
#r 0
#blend 0
#cell_hi
#povmatactive
#povmat,1
#povcmd,bamhe0003.bmp

[/spoiler]

BrandeX 09-22-2011 08:15 AM

I may be thinking of the wrong thing, but I thought that still after all these years, the reason no one ever made their own character models for EQ was that the files SOE used had an encryption key so they couldn't be read in Maya or whatever. Is it now possible to make new animations and repack them so they are loaded by the standard EQ client?

Tyen05 09-25-2011 02:17 PM

Right after these models it'll be animation time. I'm not exactly sure at this moment.

From what I can tell, they are the .sph files.

Currently exporting the models, here is a vimeo video of exporting the skeleton, bringing it into maya & 3dmax. Texturing, and playing with the skeleton a tiny bit in Unity. (Alligator/Basilisk)
Watch at 16:20 for playing with joints http://vimeo.com/29534064


I am starting to package up the rest of the zones and do some research on spell effects/classic UI to get them imported. Any information regarding spell effects/particles would be awesome.

Tyen05 09-26-2011 05:35 PM

Live @ http://poopspant.com/fresh/dress/

http://www.fohguild.org/forums/attac...st-browser.png

pheroux 03-28-2012 02:35 PM

Wow! this is amazing! this is exactly what I was trying to do with Unity!

Tyen05 - Could I please help with your project. (I'm a software developer with 15+ years experience)

Please feel free to contact me.

Phil

Tyen05 05-07-2012 06:12 PM

We are hung up on a problem assigning the animations to models in 3dmax.

This is an example of what I need connected to the models. Verant made a plugin that extracts the animations from models. So what I need to do, is re-combine these animations with the models.

You have any insight?

// This file was created by MAXCONVS SPH Exporter (Version 1.54) -- Wednesday, January 13, 1999 17:20:24
// HierSprite statistics for "C05C05_OGF_HS_DEF":
// Number of DAG nodes: 22
// Number of faces: 454
// Number of vertices: 336
// Bounding radius: 8.0486922e+000

TRACKDEFINITION
TAG "C05OGF_TRACKDEF"
NUMFRAMES 1
FRAMETRANSFORM 1.0000000e+000 0 512 0 0.0000000e+000 0.0000000e+000 0.0000000e+000
ENDTRACKDEFINITION

TRACKINSTANCE
TAG "C05OGF_TRACK"
DEFINITION "C05OGF_TRACKDEF"
INTERPOLATE
SLEEP 0
ENDTRACKINSTANCE

TRACKDEFINITION
TAG "C05OGFPE_TRACKDEF"
NUMFRAMES 10
FRAMETRANSFORM 9.9999994e-001 486 14 508 -1.0346926e-001 -1.4447451e-001 -9.3579638e-001
FRAMETRANSFORM 1.0000000e+000 474 11 507 -1.5539770e-001 -1.4447449e-001 -8.9163280e-001
FRAMETRANSFORM 1.0000001e+000 463 8 507 -2.1471795e-001 -1.4447446e-001 -8.4466320e-001
FRAMETRANSFORM 1.0000000e+000 455 5 506 -2.6125491e-001 -1.4447446e-001 -8.1525308e-001
FRAMETRANSFORM 9.9999994e-001 452 2 504 -2.7483323e-001 -1.4447445e-001 -8.2376754e-001
FRAMETRANSFORM 1.0000000e+000 462 512 503 -2.4755731e-001 -1.4447443e-001 -8.8912624e-001
FRAMETRANSFORM 1.0000000e+000 481 509 503 -2.0077303e-001 -1.4447445e-001 -9.7883284e-001
FRAMETRANSFORM 1.0000000e+000 496 510 503 -1.5816723e-001 -1.4447445e-001 -1.0361282e+000
FRAMETRANSFORM 1.0000000e+000 500 3 504 -1.2463624e-001 -1.4447445e-001 -1.0268812e+000
FRAMETRANSFORM 1.0000000e+000 498 11 506 -9.5283799e-002 -1.4447449e-001 -9.8522341e-001
ENDTRACKDEFINITION


All times are GMT -4. The time now is 08:16 AM.

Powered by vBulletin®, Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.