|
From: <fli...@li...> - 2025-05-04 23:48:13
|
Revision: 12057
http://sourceforge.net/p/flightgear/fgaddon/12057
Author: helijah
Date: 2025-05-04 23:47:54 +0000 (Sun, 04 May 2025)
Log Message:
-----------
RAF S.E.5 : FDM overhaul. Improved multiplayer rendering. Added AI version. Bombable V5.0 compatibility.
Added Paths:
-----------
branches/release-2024.1/Aircraft/RAF-S-E-5/AI/Aircraft/RAF-S-E-5/Models/Effects/
branches/release-2024.1/Aircraft/RAF-S-E-5/AI/Aircraft/RAF-S-E-5/Models/Gun/
branches/release-2024.1/Aircraft/RAF-S-E-5/AI/Aircraft/RAF-S-E-5/Models/Interior/
branches/release-2024.1/Aircraft/RAF-S-E-5/AI/Aircraft/RAF-S-E-5/Models/RAF-S-E-5-bombableinclude.xml
branches/release-2024.1/Aircraft/RAF-S-E-5/AI/Aircraft/RAF-S-E-5/Models/interior.png
branches/release-2024.1/Aircraft/RAF-S-E-5/AI/Aircraft/RAF-S-E-5/Models/se5.ac
branches/release-2024.1/Aircraft/RAF-S-E-5/AI/Aircraft/RAF-S-E-5/Models/se5.xml
branches/release-2024.1/Aircraft/RAF-S-E-5/AI/Aircraft/RAF-S-E-5/Models/texture.png
Added: branches/release-2024.1/Aircraft/RAF-S-E-5/AI/Aircraft/RAF-S-E-5/Models/RAF-S-E-5-bombableinclude.xml
===================================================================
--- branches/release-2024.1/Aircraft/RAF-S-E-5/AI/Aircraft/RAF-S-E-5/Models/RAF-S-E-5-bombableinclude.xml (rev 0)
+++ branches/release-2024.1/Aircraft/RAF-S-E-5/AI/Aircraft/RAF-S-E-5/Models/RAF-S-E-5-bombableinclude.xml 2025-05-04 23:47:54 UTC (rev 12057)
@@ -0,0 +1,406 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+
+<PropertyList>
+
+ <!-- Nasal code -->
+ <nasal>
+
+ <load>
+ <![CDATA[
+ print("Loading RAF S.E.5 ", cmdarg().getPath());
+
+ var nodeName = cmdarg().getPath();
+
+ ##checks whether it has been initialized already; if so, just return
+ if ( bombable.check_overall_initialized (nodeName) ) {
+ return;
+ }
+
+ ############################################
+ # bombable INITIALIZER
+ var object_init = func() {
+ # Datas of this object are under: cmdarg().getPath()
+ var thisNodeName = cmdarg().getPath();
+ var thisNode = props.globals.getNode(thisNodeName);
+ # Add some useful nodes
+
+ ########################################################################
+ ########################################################################
+ # INITIALIZE BOMBABLE
+ #
+ # Initialize constants and main routines for maintaining altitude
+ # relative to ground-level, relocating after file/reset, and
+ # creating bombable/shootable objects.
+ #
+ # These routines are found in FG/nasal/bombable.nas
+ #
+ ########################################################################
+ # INITIALIZE BOMBABLE Object
+ # This object will be slurped in the object's node as a child
+ # node named "bombable".
+ # All distances are specified in meters.
+ # All altitudes are relative to current ground level at the object's
+ # location
+ #
+
+ thisNodeName = cmdarg().getPath();
+
+ var bombableObject = {
+
+ objectNodeName : thisNodeName,
+ objectNode : props.globals.getNode(thisNodeName),
+
+ # time, in seconds, between the updates that
+ # keep the object at its AGL. Tradeoff is high-speed updates look more
+ # realistic but slow down the framerate/cause jerkiness. Faster-moving
+ # objects will need more frequent updates to look realistic.
+ # update time faster than about 1/3 seems to have a noticeable effect
+ # on frame rate
+ updateTime_s : 1/3,
+
+ #########################################
+ # ALTITUDE DEFINITIONS
+ #
+ altitudes : {
+ # altitude correction to add to your aircraft or ship that is needed to
+ # put wheels on ground (or, for a ship, make it float in the water at the
+ # correct level). For most objects this is 0 but some models need a small
+ # correction to place them exactly at ground level
+ wheelsOnGroundAGL_m : 1 ,
+
+ # minimum altitude above ground level this object is allowed to fly
+ minimumAGL_m : 33,
+
+ # maximum altitude AGL this object is allowed to fly, ie, operational ceiling
+ maximumAGL_m : 5000,
+
+ # altitude AGL when crashed. Ships will sink to this level, aircraft or
+ # vehicles will sink into the ground as landing gear collapses or tires
+ # deflate. Should be negative, even just -0.001.
+ crashedAGL_m : -0.85,
+ },
+ #
+ #########################################
+ # VELOCITIES DEFINITIONS
+ #
+ velocities : {
+ # max % to reduce speed, per step, when damaged
+ maxSpeedReduce_percent : 0.5,
+
+ # minimum speed to reduce to when damaged. Ground vehicles and ships might stop completely when damaged but aircraft will need a minimum speed so they keep moving until they hit the ground.
+ minSpeed_kt : 40,
+
+ # cruising speed, typical/optimal cruising speed, V C for aircraft
+ cruiseSpeed_kt : 100,
+
+ # typical/optimal speed when aggressively attacking or evading, in
+ # level flight for aircraft
+ attackSpeed_kt : 110,
+
+ # Maximum possible speed under dive or downhill conditions, V NE for aircraft
+ maxSpeed_kt : 121,
+
+ # max rate to sink or fly downwards when damaged, in meters/second
+ damagedAltitudeChangeMaxRate_meterspersecond : 30,
+
+ # The terminal velocities are calculated by opening the 'real' AC
+ # in FG, level flight, full throttle, then putting
+ # the AC at different angles of attack with the autopilot,
+ # and noting the terminal airspeed & vertical speed velocities.
+ # For best results, do it near sea level, under 5000 feet altitude.
+ # One or two each of climb & dive velocities are probably sufficient.
+ # However if you do more we may be able to use the more precise
+ # data in the future.
+ #
+ # Note that these are intended to be true airspeed whereas FG's
+ # /velocities/airspeed-kt reports indicated airspeed, so some
+ # conversion or reference to groundspeed-kt is needed.
+ #
+ # In FG /velocities/groundspeed-kt is equal (or close
+ # to equal, except for wind . . .) true airspeed when pitch=0
+ # but as pitch increases or decreases that will change.
+ #
+ #Source: FG Spad VII, flown at different pitch levels
+ diveTerminalVelocities: {
+ point1: { airspeed_kt : 122.3, vertical_speed_fps : - 9.8},
+ point2: { airspeed_kt : 130, vertical_speed_fps : - 20.1},
+ point3: { airspeed_kt : 136.5, vertical_speed_fps : - 33.4},
+ point4: { airspeed_kt : 142.6, vertical_speed_fps : - 47.2},
+ point4: { airspeed_kt : 154.2, vertical_speed_fps : - 77.2},
+ point4: { airspeed_kt : 166.1, vertical_speed_fps : - 110.3},
+ point4: { airspeed_kt : 175.8, vertical_speed_fps : - 144.4},
+ point4: { airspeed_kt : 187.4, vertical_speed_fps : - 200.3},
+ point4: { airspeed_kt : 223.4, vertical_speed_fps : - 388},
+ },
+
+ climbTerminalVelocities: {
+ point1: { airspeed_kt : 105.4, vertical_speed_fps : 7.77},
+ point2: { airspeed_kt : 93.7, vertical_speed_fps : 13.4},
+ point3: { airspeed_kt : 82.9, vertical_speed_fps : 17.8},
+ point4: { airspeed_kt : 72.8, vertical_speed_fps : 19.5},
+ point5: { airspeed_kt : 63, vertical_speed_fps : 17.4},
+ },
+ },
+ #
+ #########################################
+ # EVASION DEFINITIONS
+ #
+ # The evasion system makes the AI aircraft dodge when they come under
+ # fire.
+ evasions : {
+ # max time to delay/wait between dodges
+ dodgeDelayMax_sec : 15,
+
+ # minimum time to delay/wait between dodges
+ dodgeDelayMin_sec : 2,
+
+ # Max amount to turn when dodging
+ # 90 degrees = instant turn, unrealistic
+ # up to 80 is usually OK, somewhere in 80-85 starts to be unrealistically fast
+ # >85 is usually very unrealistic. You must test this in your scenario, however.
+ dodgeMax_deg : 75,
+
+ # minimum amount to turn when dodging
+ dodgeMin_deg : 70,
+
+ #you can figure this out by rolling the corresponding FG aircraft and
+ # timing a 180 or 360 deg roll
+ rollRateMax_degpersec : 49,
+
+ # Preference for right turns vs. left when dodging. 90% means 90% right turns, 50% means 50% right turns.
+ dodgeROverLPreference_percent : 80,
+
+ # Aircraft will begin to move up or down
+ dodgeAltMin_m : -150,
+
+ # Max & Min are relative to current alt
+ dodgeAltMax_m : 75,
+
+ # Max speed to climb when evading
+ dodgeVertSpeedClimb_mps : 12,
+
+ # Max speed to dive when evading
+ dodgeVertSpeedDive_mps : 75,
+ },
+ #
+ #########################################
+ # ATTACK DEFINITIONS
+ #
+ # The attack system makes the AI aircraft turn and fly towards
+ # other aircraft
+ attacks : {
+
+ # max distance to turn & attack main aircraft
+ maxDistance_m : 4200,
+
+ # min distance to turn & attack main aircraft, ie, fly away this far before
+ # turning to attack again
+ minDistance_m : 120,
+
+ # when within minDistance_m, the aircraft will continue to turn towards the
+ # main aircraft and attack *if* if the angle is less than this amount from dead ahead
+ continueAttackAngle_deg : 75,
+
+ # will attack the main aircraft unless this amount higher than it or more
+ altitudeHigherCutoff_m : 5200,
+
+ # will attack the main aircraft unless this amount lower than it or more
+ altitudeLowerCutoff_m : 650,
+
+ # How powerful the aircraft is when climbing during an attack; 4000 would
+ # be typical for, say a Zero--scale accordingly for others; higher is stronger
+ climbPower : 1550,
+
+ # How powerful the aircraft is when diving during and attack; 6000 typical of
+ # a Zero--could be much more than climbPower if the aircraft is a weak climber but
+ # a strong diver
+ divePower : 4400,
+
+ # when turning on attack, roll to this angle min
+ rollMin_deg : 69,
+
+ # when turning on attack, roll to this angle max
+ # 90 degrees = instant turn, unrealistic
+ # up to 80 might be OK, depending on aircraft & speed; somewhere in 80-85 starts
+ # to be unrealistically fast >85 is usually very unrealistic.
+ # You must test this in your scenario, however.
+ rollMax_deg : 75,
+
+ # you can figure this out by rolling the corresponding FG aircraft and timing a 180
+ # or 360 deg roll
+ rollRateMax_degpersec : 49,
+
+ # check for need to attack/correct course this often
+ attackCheckTime_sec : 10,
+
+ # once engaged with enemy, check/update course this frequently
+ attackCheckTimeEngaged_sec : 1.1,
+ },
+ #
+ #########################################
+ # WEAPONS DEFINITIONS
+ #
+ # The weapons system makes the AI aircraft fire on the main aircraft
+ # You can define any number of weapons--just enclose each in curly brackets
+ # and separate with commas (,).
+ weapons : {
+
+ # internal name - this can be any name you want; must be a valid nasal variable name
+ cannon : {
+
+ # name presented to users, ie in on-screen messages
+ name : "7.7mm Vickers Machine Gun",
+
+ # maximum percentage damage one hit from the aircraft's main weapon/machine
+ # guns will do to an opponent
+ maxDamage_percent : 5.5,
+
+ # maximum distance at which the aircrafts main weapon/maching guns will be
+ # able to damage an opponent
+ maxDamageDistance_m : 550,
+
+ # direction the aircraft's main weapon is aimed.
+ # 0,0 = straight ahead, 90,0=directly right, 0,90=directly up, 0,180=directly back, etc.
+ weaponAngle_deg : { heading: 0, elevation: 0 },
+
+ # Offset of the weapon from the main aircraft center
+ weaponOffset_m : {x:2, y:0, z:0},
+
+ # Visual size of the weapon's projectile, in meters, at start & end of its path
+ weaponSize_m : {start:.15, end:.15},
+ },
+ },
+ #
+ #########################################
+ # DIMENSION DEFINITIONS
+ #
+ # All dimensions are in meters
+ #
+ #
+ dimensions : {
+
+ # width of your object, ie, for aircraft, wingspan
+ width_m : 8.11,
+
+ # length of your object, ie, for aircraft, distance nose to tail
+ length_m : 6.38,
+
+ # height of your object, ie, for aircraft ground to highest point when sitting on runway
+ height_m : 2.89,
+
+ # typically 1/2 the longest dimension of the object. Hits within this distance of the
+ # center of object have some possibility of damage
+ damageRadius_m : 3.19,
+
+ # typically the radius of the fuselage or cockpit or other most
+ # vital area at the center of the object. Always smaller than damageRadius_m
+ vitalDamageRadius_m : 1.5,
+
+ # It's a crash if the main aircraft hits in this area.
+ crashRadius_m : 6,
+ },
+ #
+ #########################################
+ # VULNERABILITIES DEFINITIONS
+ #
+ vulnerabilities : {
+
+ #Vulnerability to damage from armament, 1=normal M1 tank; higher to make objects
+ # easier to kill and lower to make them more difficult. This is a multiplier,
+ # so 5 means 5X easier to kill than an M1, 1/5 means 5X harder to kill.
+ damageVulnerability : 110,
+
+ # Chance that a small-caliber machine-gun round will damage the engine.
+ engineDamageVulnerability_percent : 3,
+
+ # Vulnerability to catching on fire. 100% means even the slightest impact will
+ # set it on fire; 20% means quite difficult to set on fire; 0% means set on
+ # fire only when completely damaged; -1% means never set on fire.
+ fireVulnerability_percent : 10,
+
+ # Amount of damage to add, per second, when on fire. 100%=completely damaged.
+ # Warthog is relatively damage-resistant.
+ fireDamageRate_percentpersecond : 0.2,
+
+ # Once a fire starts, for this many seconds there is a chance to put out the
+ # fire; fires lasting longer than this won't be put out until the object burns out.
+ fireExtinguishMaxTime_seconds : 100,
+
+ # Chance of the crew putting out the fire within the MaxTime above. Warthoge is
+ # relatively damage-resistant.
+ fireExtinguishSuccess_percentage : 100,
+
+ # mass of the object in KG, but give at least a 2-10X bonus to anything carrying
+ # flammables or high explosives.
+ explosiveMass_kg : 735,
+ },
+ #
+ #########################################
+ # LIVERY DEFINITIONS
+ #
+ # Path to livery files to use at different damage levels.
+ # Path is relative to the AI aircraft's directory.
+ # The object will start with the first livery listed and
+ # change to succeeding liveries as the damage
+ # level increases. The final livery should indicate full damage/
+ # object destroyed.
+ #
+ # If you don't want to specify any special liveries simply set
+ # damageLivery : nil and the object's normal livery will be used.
+ #
+ damageLiveries : {
+ damageLivery : [ ]
+ },
+ };
+ #########################################
+ # INITIALIZE ROUTINES
+ #
+ # OVERALL INITIALIZER: Needed to make all the others work
+ bombable.initialize ( bombableObject );
+
+ # LOCATION: Relocate object to maintain its position after file/reset
+ # (best not used for airplanes)
+ # bombable.location_init ( thisNodeName );
+ #
+ # GROUND: Keep object at altitude relative to ground level
+ bombable.ground_init ( thisNodeName );
+
+ # ATTACK: Make the object attack the main aircraft
+ bombable.attack_init ( thisNodeName );
+
+ # WEAPONS: Make the object shoot the main aircraft
+ bombable.weapons_init ( thisNodeName );
+ #
+ # BOMBABLE: Make the object bombable/damageable
+ bombable.bombable_init ( thisNodeName );
+
+ # SMOKE/CONTRAIL: Start a flare, contrail, smoke trail, or exhaust
+ # trail for the object.
+ # Smoke types available: flare, jetcontrail, pistonexhaust, smoketrail,
+ # damagedengine
+ bombable.startSmoke("jetcontrail", thisNodeName );
+ #
+ # END INITIALIZE BOMBABLE
+ ########################################################################
+ ########################################################################
+ }
+ object_init();
+ ]]>
+ </load>
+ <unload>
+ <![CDATA[
+ print("Unload RAF S.E.5");
+ var nodeName= cmdarg().getPath();
+ bombable.de_overall_initialize( nodeName );
+ bombable.initialize_del( nodeName );
+ bombable.ground_del( nodeName );
+ bombable.location_del (nodeName);
+ bombable.bombable_del( nodeName );
+ bombable.attack_del( nodeName );
+ bombable.weapons_del (nodeName);
+ # </unload>
+ ]]>
+ </unload>
+ </nasal>
+
+</PropertyList>
Added: branches/release-2024.1/Aircraft/RAF-S-E-5/AI/Aircraft/RAF-S-E-5/Models/interior.png
===================================================================
(Binary files differ)
Index: branches/release-2024.1/Aircraft/RAF-S-E-5/AI/Aircraft/RAF-S-E-5/Models/interior.png
===================================================================
--- branches/release-2024.1/Aircraft/RAF-S-E-5/AI/Aircraft/RAF-S-E-5/Models/interior.png 2025-05-04 23:46:29 UTC (rev 12056)
+++ branches/release-2024.1/Aircraft/RAF-S-E-5/AI/Aircraft/RAF-S-E-5/Models/interior.png 2025-05-04 23:47:54 UTC (rev 12057)
Property changes on: branches/release-2024.1/Aircraft/RAF-S-E-5/AI/Aircraft/RAF-S-E-5/Models/interior.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+image/png
\ No newline at end of property
Added: branches/release-2024.1/Aircraft/RAF-S-E-5/AI/Aircraft/RAF-S-E-5/Models/se5.ac
===================================================================
--- branches/release-2024.1/Aircraft/RAF-S-E-5/AI/Aircraft/RAF-S-E-5/Models/se5.ac (rev 0)
+++ branches/release-2024.1/Aircraft/RAF-S-E-5/AI/Aircraft/RAF-S-E-5/Models/se5.ac 2025-05-04 23:47:54 UTC (rev 12057)
@@ -0,0 +1,64317 @@
+AC3Db
+MATERIAL "DefaultWhite" rgb 1 1 1 amb 1 1 1 emis 0 0 0 spec 0.5 0.5 0.5 shi 64 trans 0
+MATERIAL "transparent" rgb 1 1 1 amb 0.5 0.5 0.5 emis 0 0 0 spec 1 1 1 shi 64 trans 0.85
+OBJECT world
+kids 31
+OBJECT poly
+name "aileronDB"
+loc -0.411294 -0.057683 -3.333166
+data 9
+aileronDB
+texture "texture.png"
+texrep 1.000000 1.000000
+crease 30.000001
+numvert 194
+-0.059458 0.081631 -0.681644
+-0.060645 0.079694 -0.681814
+0.058388 0.080346 -0.696901
+-0.050323 0.073953 -0.682316
+-0.044156 0.072779 -0.682419
+0.059479 0.079603 -0.697133
+-0.059017 0.077677 -0.68199
+-0.056197 0.076191 -0.68212
+0.07811 0.078982 -0.697328
+0.074652 0.07994 -0.697028
+0.074666 0.078809 -0.697381
+0.062924 0.081833 -0.696436
+0.061674 0.081713 -0.696474
+0.061899 0.079233 -0.697249
+0.059573 0.081229 -0.696625
+0.060435 0.081446 -0.696557
+-0.210176 0.098166 -0.630696
+-0.24101 0.097176 -0.630637
+-0.244928 0.092194 -0.654065
+-0.247061 0.093276 -0.651631
+-0.250761 0.090275 -0.654799
+-0.049442 0.086525 -0.681216
+-0.002071 -0.097632 0.697388
+-0.228021 -0.098166 0.697388
+-0.236931 0.040783 -0.561052
+-0.236931 0.089004 -0.561052
+-0.24101 0.057019 -0.630637
+-0.247061 0.065084 -0.651631
+-0.168955 0.06271 -0.656645
+-0.250761 0.069494 -0.654799
+-0.256255 0.075559 -0.657638
+-0.26118 0.080528 -0.65905
+-0.256255 0.085336 -0.657638
+-0.204295 0.080337 -0.508501
+-0.228021 -0.032217 0.697388
+-0.235102 0.083619 -0.508214
+-0.186648 0.097193 -0.653627
+-0.242418 0.097015 -0.640205
+-0.003103 -0.059983 0.697388
+0.256386 -0.092874 0.697388
+0.049204 0.030993 -0.512817
+0.257007 0.035986 -0.512468
+0.246337 0.043596 -0.565112
+0.060321 0.039018 -0.565425
+-0.199376 0.030545 -0.512857
+-0.16109 0.038616 -0.56546
+0.048362 0.057108 -0.510533
+-0.171971 0.083243 -0.561556
+0.059567 0.062424 -0.563377
+0.065755 0.066297 -0.601117
+0.221586 0.047362 -0.602686
+-0.127429 0.085129 -0.59947
+0.066384 0.045125 -0.602969
+-0.113141 0.044762 -0.603001
+0.195209 0.055887 -0.634482
+0.079557 0.052166 -0.63472
+-0.054219 0.051861 -0.634747
+-0.064866 0.085793 -0.631778
+0.079088 0.069963 -0.633163
+0.087877 0.072756 -0.655766
+0.16882 0.059384 -0.656848
+-0.012468 0.085748 -0.654629
+-0.121682 0.095903 -0.65374
+0.088204 0.058151 -0.657043
+-0.005046 0.0579 -0.657065
+0.125939 0.070146 -0.682737
+0.093356 0.067809 -0.682854
+0.055668 0.067659 -0.682867
+-0.010579 0.07054 -0.682615
+-0.210651 0.063628 -0.656564
+-0.027432 0.07109 -0.682567
+0.008527 0.09042 -0.680875
+0.052668 0.084338 -0.681407
+-0.01773 0.091193 -0.680808
+0.093224 0.076557 -0.682088
+-0.215923 0.095644 -0.653763
+-0.041286 0.088199 -0.68107
+-0.029562 0.090265 -0.680889
+-0.057055 0.083317 -0.681497
+0.070365 0.080947 -0.696713
+0.0657 0.081733 -0.696467
+0.070682 0.078789 -0.697388
+0.06368 0.079162 -0.697271
+0.03434 0.051077 -0.446349
+0.26118 0.028579 -0.448405
+0.035256 0.023338 -0.448776
+-0.235102 0.03197 -0.508214
+-0.228021 -0.065191 0.697388
+-0.002587 -0.078807 0.697388
+-0.236555 -0.03334 0.697388
+-0.244508 -0.036634 0.697388
+-0.251338 -0.041875 0.697388
+-0.256578 -0.048704 0.697388
+-0.259872 -0.056657 0.697388
+-0.260996 -0.065192 0.697388
+-0.236555 -0.097043 0.697388
+-0.244508 -0.093749 0.697388
+-0.251337 -0.088508 0.697388
+-0.256578 -0.081679 0.697388
+-0.259872 -0.073726 0.697388
+-0.241786 0.082739 -0.508214
+-0.248014 0.080159 -0.508214
+-0.253362 0.076055 -0.508214
+-0.257466 0.070707 -0.508214
+-0.260046 0.064478 -0.508214
+-0.260926 0.057795 -0.508214
+-0.241786 0.032851 -0.508214
+-0.248014 0.03543 -0.508214
+-0.253362 0.039534 -0.508214
+-0.257466 0.044883 -0.508214
+-0.260046 0.051111 -0.508214
+-0.243171 0.088182 -0.561052
+-0.248986 0.085774 -0.561052
+-0.253979 0.081942 -0.561052
+-0.257811 0.076949 -0.561052
+-0.26022 0.071134 -0.561052
+-0.261041 0.064894 -0.561052
+-0.243171 0.041605 -0.561052
+-0.248986 0.044013 -0.561052
+-0.253979 0.047845 -0.561052
+-0.257811 0.052839 -0.561052
+-0.26022 0.058653 -0.561052
+-0.246207 0.096492 -0.630637
+-0.251049 0.094486 -0.630637
+-0.255207 0.091295 -0.630637
+-0.258398 0.087137 -0.630637
+-0.260404 0.082294 -0.630637
+-0.261088 0.077098 -0.630637
+-0.246207 0.057703 -0.630637
+-0.251049 0.059709 -0.630637
+-0.255207 0.0629 -0.630637
+-0.258398 0.067058 -0.630637
+-0.260404 0.071901 -0.630637
+-0.247266 0.096377 -0.640205
+-0.251784 0.094506 -0.640205
+-0.255664 0.091529 -0.640205
+-0.258641 0.087649 -0.640205
+-0.260512 0.083131 -0.640205
+-0.261151 0.078282 -0.640205
+-0.242418 0.059549 -0.640205
+-0.247266 0.060188 -0.640205
+-0.251784 0.062059 -0.640205
+-0.255664 0.065036 -0.640205
+-0.258641 0.068916 -0.640205
+-0.260512 0.073434 -0.640205
+-0.25071 0.092796 -0.651631
+-0.254109 0.091388 -0.651631
+-0.257029 0.089148 -0.651631
+-0.259269 0.086228 -0.651631
+-0.260677 0.082829 -0.651631
+-0.261157 0.07918 -0.651631
+-0.25071 0.065565 -0.651631
+-0.254109 0.066973 -0.651631
+-0.257029 0.069213 -0.651631
+-0.259269 0.072132 -0.651631
+-0.260677 0.075532 -0.651631
+-0.253451 0.089921 -0.654799
+-0.255957 0.088883 -0.654799
+-0.258108 0.087232 -0.654799
+-0.25976 0.08508 -0.654799
+-0.260824 0.082445 -0.654799
+-0.261144 0.079753 -0.654799
+-0.253321 0.069822 -0.654799
+-0.255957 0.070886 -0.654799
+-0.258108 0.072537 -0.654799
+-0.25976 0.074689 -0.654799
+-0.260798 0.077195 -0.654799
+-0.257521 0.08517 -0.657638
+-0.2587 0.084681 -0.657638
+-0.259712 0.083904 -0.657638
+-0.260489 0.082892 -0.657638
+-0.260977 0.081713 -0.657638
+-0.261144 0.080447 -0.657638
+-0.257521 0.075725 -0.657638
+-0.2587 0.076214 -0.657638
+-0.259712 0.076991 -0.657638
+-0.260489 0.078003 -0.657638
+-0.260977 0.079182 -0.657638
+0.221586 0.049362 -0.602686
+0.195209 0.053887 -0.634482
+0.257007 0.033986 -0.512468
+0.26118 0.026579 -0.448405
+0.246337 0.041596 -0.565112
+0.16882 0.061384 -0.656848
+0.125939 0.068146 -0.682737
+0.256386 -0.090874 0.697388
+0.256386 -0.091874 0.697388
+0.26118 0.027579 -0.448405
+0.257007 0.034986 -0.512468
+0.246337 0.042596 -0.565112
+0.221586 0.048362 -0.602686
+0.195209 0.054887 -0.634482
+0.16882 0.060384 -0.656848
+0.125939 0.069146 -0.682737
+numsurf 219
+SURF 0x10
+mat 0
+refs 3
+0 0.011902516708 0.089810289443
+2 0.010701959953 0.080537386239
+1 0.011889224872 0.089903645217
+SURF 0x10
+mat 0
+refs 3
+3 0.011849647388 0.089091412723
+5 0.010683720931 0.080451510847
+4 0.011841600761 0.088606186211
+SURF 0x10
+mat 0
+refs 3
+6 0.011875277385 0.089775539935
+2 0.010701959953 0.080537386239
+7 0.011865084991 0.089553676546
+SURF 0x10
+mat 0
+refs 3
+8 0.010668402538 0.078985579312
+10 0.010664170608 0.079256556928
+9 0.010692005977 0.079257644713
+SURF 0x10
+mat 0
+refs 3
+11 0.010738616809 0.080180473626
+13 0.010674601421 0.080261148512
+12 0.010735636577 0.080278865993
+SURF 0x10
+mat 0
+refs 3
+14 0.010723715648 0.080444164574
+15 0.010729080066 0.080376364291
+5 0.010683720931 0.080451510847
+SURF 0x10
+mat 0
+refs 3
+18 0.645342946053 0.235218912363
+20 0.645400702953 0.23567789793
+19 0.645151436329 0.235386744142
+SURF 0x10
+mat 0
+refs 3
+33 0.633888959885 0.232021614909
+35 0.633866429329 0.234445691109
+34 0.539002180099 0.233888447285
+SURF 0x10
+mat 0
+refs 3
+25 0.638024091721 0.234589636326
+16 0.643504083157 0.232484325767
+17 0.643499493599 0.234910577536
+SURF 0x10
+mat 0
+refs 3
+36 0.645308494568 0.230633050203
+37 0.644252300262 0.235021337867
+17 0.643499493599 0.234910577536
+SURF 0x10
+mat 0
+refs 4
+40 0.025186842307 0.081260032952
+43 0.021047359332 0.080385319889
+182 0.021071976051 0.06574844569
+180 0.025214320049 0.064908765256
+SURF 0x10
+mat 0
+refs 4
+44 0.025183742866 0.100819863379
+45 0.021044617519 0.097807280719
+43 0.021047359332 0.080385319889
+40 0.025186842307 0.081260032952
+SURF 0x10
+mat 0
+refs 4
+46 0.634048938751 0.212140992284
+48 0.63820707798 0.211259320378
+47 0.638063788414 0.229478120804
+33 0.633888959885 0.232021614909
+SURF 0x10
+mat 0
+refs 4
+46 0.634048938751 0.212140992284
+41 0.634201288223 0.195723444223
+42 0.638343572617 0.196563124657
+48 0.63820707798 0.211259320378
+SURF 0x10
+mat 0
+refs 4
+42 0.638343572617 0.196563124657
+178 0.641300201416 0.198510617018
+49 0.641176700592 0.210772424936
+48 0.63820707798 0.211259320378
+SURF 0x10
+mat 0
+refs 4
+48 0.63820707798 0.211259320378
+49 0.641176700592 0.210772424936
+51 0.641047000885 0.225973337889
+47 0.638063788414 0.229478120804
+SURF 0x10
+mat 0
+refs 4
+45 0.021044617519 0.097807280719
+53 0.018090670928 0.094034411013
+52 0.018093114719 0.079908244312
+43 0.021047359332 0.080385319889
+SURF 0x10
+mat 0
+refs 4
+43 0.021047359332 0.080385319889
+52 0.018093114719 0.079908244312
+50 0.018115406856 0.067695938051
+182 0.021071976051 0.06574844569
+SURF 0x10
+mat 0
+refs 4
+52 0.018093114719 0.079908244312
+55 0.015594786033 0.078871719539
+179 0.015613501891 0.06977147609
+50 0.018115406856 0.067695938051
+SURF 0x10
+mat 0
+refs 4
+53 0.018090670928 0.094034411013
+56 0.01559269987 0.089398048818
+55 0.015594786033 0.078871719539
+52 0.018093114719 0.079908244312
+SURF 0x10
+mat 0
+refs 4
+51 0.641047000885 0.225973337889
+57 0.643589258194 0.221050485969
+16 0.643504083157 0.232484325767
+25 0.638024091721 0.234589636326
+SURF 0x10
+mat 0
+refs 4
+49 0.641176700592 0.210772424936
+58 0.643698275089 0.209723263979
+57 0.643589258194 0.221050485969
+51 0.641047000885 0.225973337889
+SURF 0x10
+mat 0
+refs 4
+49 0.641176700592 0.210772424936
+178 0.641300201416 0.198510617018
+54 0.643802046776 0.200586155057
+58 0.643698275089 0.209723263979
+SURF 0x10
+mat 0
+refs 4
+54 0.643802046776 0.200586155057
+183 0.645561933517 0.202662587166
+59 0.645476818085 0.209031701088
+58 0.643698275089 0.209723263979
+SURF 0x10
+mat 0
+refs 4
+58 0.643698275089 0.209723263979
+59 0.645476818085 0.209031701088
+61 0.645387291908 0.216927424073
+57 0.643589258194 0.221050485969
+SURF 0x10
+mat 0
+refs 4
+16 0.643504083157 0.232484325767
+62 0.64531737566 0.225521072745
+36 0.645308494568 0.230633050203
+17 0.643499493599 0.234910577536
+SURF 0x10
+mat 0
+refs 4
+57 0.643589258194 0.221050485969
+61 0.645387291908 0.216927424073
+62 0.64531737566 0.225521072745
+16 0.643504083157 0.232484325767
+SURF 0x10
+mat 0
+refs 4
+56 0.01559269987 0.089398048818
+64 0.013836568221 0.085528813303
+63 0.013838237152 0.078191302717
+55 0.015594786033 0.078871719539
+SURF 0x10
+mat 0
+refs 4
+55 0.015594786033 0.078871719539
+63 0.013838237152 0.078191302717
+60 0.01385361515 0.071847908199
+179 0.015613501891 0.06977147609
+SURF 0x10
+mat 0
+refs 4
+63 0.013838237152 0.078191302717
+66 0.01180732809 0.077785871923
+184 0.011816507205 0.075222052634
+60 0.01385361515 0.071847908199
+SURF 0x10
+mat 0
+refs 4
+28 0.013869648799 0.098426140845
+68 0.011826163158 0.085964180529
+67 0.011806255206 0.08075145632
+64 0.013836568221 0.085528813303
+SURF 0x10
+mat 0
+refs 4
+69 0.013876026496 0.101707048714
+70 0.01182991825 0.087290234864
+68 0.011826163158 0.085964180529
+28 0.013869648799 0.098426140845
+SURF 0x10
+mat 0
+refs 4
+27 0.014264112338 0.104572065175
+4 0.011841600761 0.088606186211
+70 0.01182991825 0.087290234864
+69 0.013876026496 0.101707048714
+SURF 0x10
+mat 0
+refs 4
+64 0.013836568221 0.085528813303
+67 0.011806255206 0.08075145632
+66 0.01180732809 0.077785871923
+63 0.013838237152 0.078191302717
+SURF 0x10
+mat 0
+refs 4
+61 0.645387291908 0.216927424073
+72 0.64749443531 0.211802169681
+71 0.647452533245 0.215275451541
+62 0.64531737566 0.225521072745
+SURF 0x10
+mat 0
+refs 4
+62 0.64531737566 0.225521072745
+71 0.647452533245 0.215275451541
+73 0.647447228432 0.217341557145
+36 0.645308494568 0.230633050203
+SURF 0x10
+mat 0
+refs 4
+59 0.645476818085 0.209031701088
+74 0.647548019886 0.208610966802
+72 0.64749443531 0.211802169681
+61 0.645387291908 0.216927424073
+SURF 0x10
+mat 0
+refs 4
+75 0.645319223404 0.232936531305
+77 0.647453665733 0.218272551894
+76 0.647467851639 0.219195023179
+18 0.645342946053 0.235218912363
+SURF 0x10
+mat 0
+refs 4
+36 0.645308494568 0.230633050203
+73 0.647447228432 0.217341557145
+77 0.647453665733 0.218272551894
+75 0.645319223404 0.232936531305
+SURF 0x10
+mat 0
+refs 4
+18 0.645342946053 0.235218912363
+76 0.647467851639 0.219195023179
+21 0.647479355335 0.219836801291
+20 0.645400702953 0.23567789793
+SURF 0x10
+mat 0
+refs 4
+59 0.645476818085 0.209031701088
+183 0.645561933517 0.202662587166
+65 0.647599041462 0.206036731601
+74 0.647548019886 0.208610966802
+SURF 0x10
+mat 0
+refs 4
+65 0.647599041462 0.206036731601
+8 0.648747086525 0.209800258279
+9 0.64872354269 0.21007232368
+74 0.647548019886 0.208610966802
+SURF 0x10
+mat 0
+refs 3
+2 0.648713588715 0.211352065206
+0 0.64751303196 0.22062496841
+78 0.647501468658 0.220435872674
+SURF 0x10
+mat 0
+refs 4
+76 0.647467851639 0.219195023179
+15 0.648686528206 0.211191043258
+14 0.648691833019 0.211258843541
+21 0.647479355335 0.219836801291
+SURF 0x10
+mat 0
+refs 4
+21 0.647479355335 0.219836801291
+14 0.648691833019 0.211258843541
+2 0.648713588715 0.211352065206
+78 0.647501468658 0.220435872674
+SURF 0x10
+mat 0
+refs 4
+73 0.647447228432 0.217341557145
+11 0.648676931858 0.210995152593
+12 0.648679971695 0.21109354496
+77 0.647453665733 0.218272551894
+SURF 0x10
+mat 0
+refs 4
+77 0.647453665733 0.218272551894
+12 0.648679971695 0.21109354496
+15 0.648686528206 0.211191043258
+76 0.647467851639 0.219195023179
+SURF 0x10
+mat 0
+refs 4
+74 0.647548019886 0.208610966802
+9 0.64872354269 0.21007232368
+79 0.648698806763 0.210409656167
+72 0.64749443531 0.211802169681
+SURF 0x10
+mat 0
+refs 4
+71 0.647452533245 0.215275451541
+80 0.648679435253 0.210776761174
+11 0.648676931858 0.210995152593
+73 0.647447228432 0.217341557145
+SURF 0x10
+mat 0
+refs 4
+72 0.64749443531 0.211802169681
+79 0.648698806763 0.210409656167
+80 0.648679435253 0.210776761174
+71 0.647452533245 0.215275451541
+SURF 0x10
+mat 0
+refs 4
+67 0.011806255206 0.08075145632
+81 0.010663693771 0.079569987953
+10 0.010664170608 0.079256556928
+66 0.01180732809 0.077785871923
+SURF 0x10
+mat 0
+refs 4
+4 0.011841600761 0.088606186211
+5 0.010683720931 0.080451510847
+13 0.010674601421 0.080261148512
+70 0.01182991825 0.087290234864
+SURF 0x10
+mat 0
+refs 4
+70 0.01182991825 0.087290234864
+13 0.010674601421 0.080261148512
+82 0.010672813281 0.080120973289
+68 0.011826163158 0.085964180529
+SURF 0x10
+mat 0
+refs 4
+7 0.011865084991 0.089553676546
+2 0.010701959953 0.080537386239
+5 0.010683720931 0.080451510847
+3 0.011849647388 0.089091412723
+SURF 0x10
+mat 0
+refs 3
+1 0.011889224872 0.089903645217
+2 0.010701959953 0.080537386239
+6 0.011875277385 0.089775539935
+SURF 0x10
+mat 0
+refs 4
+68 0.011826163158 0.085964180529
+82 0.010672813281 0.080120973289
+81 0.010663693771 0.079569987953
+67 0.011806255206 0.08075145632
+SURF 0x10
+mat 0
+refs 4
+66 0.01180732809 0.077785871923
+10 0.010664170608 0.079256556928
+8 0.010668402538 0.078985579312
+184 0.011816507205 0.075222052634
+SURF 0x10
+mat 0
+refs 4
+79 0.010716741905 0.0795949772
+9 0.010692005977 0.079257644713
+10 0.010664170608 0.079256556928
+81 0.010663693771 0.079569987953
+SURF 0x10
+mat 0
+refs 4
+80 0.010736113414 0.079962082207
+79 0.010716741905 0.0795949772
+81 0.010663693771 0.079569987953
+82 0.010672813281 0.080120973289
+SURF 0x10
+mat 0
+refs 4
+11 0.010738616809 0.080180473626
+80 0.010736113414 0.079962082207
+82 0.010672813281 0.080120973289
+13 0.010674601421 0.080261148512
+SURF 0x10
+mat 0
+refs 4
+12 0.010735636577 0.080278865993
+13 0.010674601421 0.080261148512
+5 0.010683720931 0.080451510847
+15 0.010729080066 0.080376364291
+SURF 0x10
+mat 0
+refs 3
+14 0.010723715648 0.080444164574
+5 0.010683720931 0.080451510847
+2 0.010701959953 0.080537386239
+SURF 0x10
+mat 0
+refs 4
+38 0.539002180099 0.216190516949
+185 0.539002180099 0.195772320032
+84 0.629160284996 0.195395097136
+83 0.62899851799 0.213244304061
+SURF 0x10
+mat 0
+refs 4
+83 0.62899851799 0.213244304061
+84 0.629160284996 0.195395097136
+41 0.634201288223 0.195723444223
+46 0.634048938751 0.212140992284
+SURF 0x10
+mat 0
+refs 3
+33 0.633888959885 0.232021614909
+83 0.62899851799 0.213244304061
+46 0.634048938751 0.212140992284
+SURF 0x10
+mat 0
+refs 4
+22 0.120413422585 0.085294641554
+23 0.120413422585 0.103073768318
+44 0.025183742866 0.100819863379
+85 0.030225997791 0.082357563078
+SURF 0x10
+mat 0
+refs 3
+85 0.030225997791 0.082357563078
+44 0.025183742866 0.100819863379
+40 0.025186842307 0.081260032952
+SURF 0x10
+mat 0
+refs 4
+39 0.120413422585 0.064957641065
+22 0.120413422585 0.085294641554
+85 0.030225997791 0.082357563078
+181 0.030255263671 0.064580418169
+SURF 0x10
+mat 0
+refs 4
+181 0.030255263671 0.064580418169
+85 0.030225997791 0.082357563078
+40 0.025186842307 0.081260032952
+180 0.025214320049 0.064908765256
+SURF 0x10
+mat 0
+refs 3
+24 0.021391456947 0.103774957359
+53 0.018090670928 0.094034411013
+45 0.021044617519 0.097807280719
+SURF 0x10
+mat 0
+refs 4
+33 0.633888959885 0.232021614909
+47 0.638063788414 0.229478120804
+25 0.638024091721 0.234589636326
+35 0.633866429329 0.234445691109
+SURF 0x10
+mat 0
+refs 3
+47 0.638063788414 0.229478120804
+51 0.641047000885 0.225973337889
+25 0.638024091721 0.234589636326
+SURF 0x10
+mat 0
+refs 4
+24 0.021391456947 0.103774957359
+26 0.015916055068 0.104095898569
+56 0.01559269987 0.089398048818
+53 0.018090670928 0.094034411013
+SURF 0x10
+mat 0
+refs 4
+26 0.015916055068 0.104095898569
+28 0.013869648799 0.098426140845
+64 0.013836568221 0.085528813303
+56 0.01559269987 0.089398048818
+SURF 0x10
+mat 0
+refs 3
+75 0.645319223404 0.232936531305
+37 0.644252300262 0.235021337867
+36 0.645308494568 0.230633050203
+SURF 0x10
+mat 0
+refs 4
+18 0.645342946053 0.235218912363
+19 0.645151436329 0.235386744142
+37 0.644252300262 0.235021337867
+75 0.645319223404 0.232936531305
+SURF 0x10
+mat 0
+refs 4
+0 0.011902516708 0.089810289443
+1 0.011889224872 0.089903645217
+30 0.01379150711 0.105295486748
+31 0.013680404052 0.105683006346
+SURF 0x10
+mat 0
+refs 4
+78 0.647501468658 0.220435872674
+32 0.645624041557 0.236110165715
+20 0.645400702953 0.23567789793
+21 0.647479355335 0.219836801291
+SURF 0x10
+mat 0
+refs 4
+0 0.64751303196 0.22062496841
+31 0.645735144615 0.236497685313
+32 0.645624041557 0.236110165715
+78 0.647501468658 0.220435872674
+SURF 0x10
+mat 0
+refs 4
+24 0.021391456947 0.103774957359
+45 0.021044617519 0.097807280719
+44 0.025183742866 0.100819863379
+86 0.025549119338 0.103631012142
+SURF 0x10
+mat 0
+refs 3
+27 0.014264112338 0.104572065175
+69 0.013876026496 0.101707048714
+139 0.015163248405 0.1042066589
+SURF 0x10
+mat 0
+refs 4
+139 0.015163248405 0.1042066589
+69 0.013876026496 0.101707048714
+28 0.013869648799 0.098426140845
+26 0.015916055068 0.104095898569
+SURF 0x10
+mat 0
+refs 4
+30 0.01379150711 0.105295486748
+6 0.011875277385 0.089775539935
+7 0.011865084991 0.089553676546
+29 0.014014845714 0.104863218963
+SURF 0x10
+mat 0
+refs 3
+30 0.01379150711 0.105295486748
+1 0.011889224872 0.089903645217
+6 0.011875277385 0.089775539935
+SURF 0x10
+mat 0
+refs 4
+34 0.539002180099 0.233888447285
+38 0.539002180099 0.216190516949
+83 0.62899851799 0.213244304061
+33 0.633888959885 0.232021614909
+SURF 0x10
+mat 0
+refs 3
+44 0.025183742866 0.100819863379
+23 0.120413422585 0.103073768318
+86 0.025549119338 0.103631012142
+SURF 0x10
+mat 0
+refs 3
+3 0.011849647388 0.089091412723
+4 0.011841600761 0.088606186211
+29 0.014014845714 0.104863218963
+SURF 0x10
+mat 0
+refs 3
+29 0.014014845714 0.104863218963
+4 0.011841600761 0.088606186211
+27 0.014264112338 0.104572065175
+SURF 0x10
+mat 0
+refs 3
+29 0.014014845714 0.104863218963
+7 0.011865084991 0.089553676546
+3 0.011849647388 0.089091412723
+SURF 0x10
+mat 0
+refs 3
+22 0.120413422585 0.085294641554
+39 0.120413422585 0.064957641065
+88 0.120413422585 0.085335217416
+SURF 0x10
+mat 0
+refs 3
+88 0.539002180099 0.216149896383
+185 0.539002180099 0.195772320032
+38 0.539002180099 0.216190516949
+SURF 0x10
+mat 0
+refs 4
+23 0.120413422585 0.103073768318
+22 0.120413422585 0.085294641554
+88 0.120413422585 0.085335217416
+87 0.120413422585 0.103073768318
+SURF 0x10
+mat 0
+refs 4
+87 0.539002180099 0.233888447285
+88 0.539002180099 0.216149896383
+38 0.539002180099 0.216190516949
+34 0.539002180099 0.233888447285
+SURF 0x10
+mat 0
+refs 3
+34 0.539002180099 0.233888447285
+89 0.539002180099 0.234560012817
+87 0.539002180099 0.233888447285
+SURF 0x10
+mat 0
+refs 3
+89 0.539002180099 0.234560012817
+90 0.539002180099 0.235185787082
+87 0.539002180099 0.233888447285
+SURF 0x10
+mat 0
+refs 3
+90 0.539002180099 0.235185787082
+91 0.539002180099 0.235723182559
+87 0.539002180099 0.233888447285
+SURF 0x10
+mat 0
+refs 3
+91 0.539002180099 0.235723182559
+92 0.539002180099 0.236135497689
+87 0.539002180099 0.233888447285
+SURF 0x10
+mat 0
+refs 3
+92 0.539002180099 0.236135497689
+93 0.539002180099 0.236394748092
+87 0.539002180099 0.233888447285
+SURF 0x10
+mat 0
+refs 3
+93 0.539002180099 0.236394748092
+94 0.539002180099 0.236483111978
+87 0.539002180099 0.233888447285
+SURF 0x10
+mat 0
+refs 3
+95 0.120413422585 0.103745304048
+23 0.120413422585 0.103073768318
+87 0.120413422585 0.103073768318
+SURF 0x10
+mat 0
+refs 3
+96 0.120413422585 0.104371108115
+95 0.120413422585 0.103745304048
+87 0.120413422585 0.103073768318
+SURF 0x10
+mat 0
+refs 3
+97 0.120413422585 0.104908503592
+96 0.120413422585 0.104371108115
+87 0.120413422585 0.103073768318
+SURF 0x10
+mat 0
+refs 3
+98 0.120413422585 0.105320818722
+97 0.120413422585 0.104908503592
+87 0.120413422585 0.103073768318
+SURF 0x10
+mat 0
+refs 3
+99 0.120413422585 0.10558000952
+98 0.120413422585 0.105320818722
+87 0.120413422585 0.103073768318
+SURF 0x10
+mat 0
+refs 3
+94 0.120413422585 0.105668433011
+99 0.120413422585 0.10558000952
+87 0.120413422585 0.103073768318
+SURF 0x10
+mat 0
+refs 3
+31 0.645735144615 0.236497685313
+167 0.645624041557 0.236209750175
+32 0.645624041557 0.236110165715
+SURF 0x10
+mat 0
+refs 3
+31 0.645735144615 0.236497685313
+168 0.645624041557 0.236302509904
+167 0.645624041557 0.236209750175
+SURF 0x10
+mat 0
+refs 3
+31 0.645735144615 0.236497685313
+169 0.645624041557 0.236382186413
+168 0.645624041557 0.236302509904
+SURF 0x10
+mat 0
+refs 3
+31 0.645735144615 0.236497685313
+170 0.645624041557 0.236443296075
+169 0.645624041557 0.236382186413
+SURF 0x10
+mat 0
+refs 3
+31 0.645735144615 0.236497685313
+171 0.645624041557 0.236481755972
+170 0.645624041557 0.236443296075
+SURF 0x10
+mat 0
+refs 3
+31 0.645735144615 0.236497685313
+172 0.645624041557 0.236494854093
+171 0.645624041557 0.236481755972
+SURF 0x10
+mat 0
+refs 3
+31 0.013680404052 0.105683006346
+177 0.01379150711 0.105667062104
+172 0.01379150711 0.105680175126
+SURF 0x10
+mat 0
+refs 3
+31 0.013680404052 0.105683006346
+176 0.01379150711 0.105628617108
+177 0.01379150711 0.105667062104
+SURF 0x10
+mat 0
+refs 3
+31 0.013680404052 0.105683006346
+175 0.01379150711 0.105567507446
+176 0.01379150711 0.105628617108
+SURF 0x10
+mat 0
+refs 3
+31 0.013680404052 0.105683006346
+174 0.01379150711 0.105487830937
+175 0.01379150711 0.105567507446
+SURF 0x10
+mat 0
+refs 3
+31 0.013680404052 0.105683006346
+173 0.01379150711 0.105395071208
+174 0.01379150711 0.105487830937
+SURF 0x10
+mat 0
+refs 3
+30 0.01379150711 0.105295486748
+173 0.01379150711 0.105395071208
+31 0.013680404052 0.105683006346
+SURF 0x10
+mat 0
+refs 4
+20 0.645400702953 0.23567789793
+32 0.645624041557 0.236110165715
+167 0.645624041557 0.236209750175
+156 0.645400702953 0.235889479518
+SURF 0x10
+mat 0
+refs 4
+156 0.645400702953 0.235889479518
+167 0.645624041557 0.236209750175
+168 0.645624041557 0.236302509904
+157 0.645400702953 0.236086681485
+SURF 0x10
+mat 0
+refs 4
+157 0.645400702953 0.236086681485
+168 0.645624041557 0.236302509904
+169 0.645624041557 0.236382186413
+158 0.645400702953 0.23625600338
+SURF 0x10
+mat 0
+refs 4
+158 0.645400702953 0.23625600338
+169 0.645624041557 0.236382186413
+170 0.645624041557 0.236443296075
+159 0.645400702953 0.236385926604
+SURF 0x10
+mat 0
+refs 4
+159 0.645400702953 0.236385926604
+170 0.645624041557 0.236443296075
+171 0.645624041557 0.236481755972
+160 0.645400702953 0.236469700933
+SURF 0x10
+mat 0
+refs 4
+160 0.645400702953 0.236469700933
+171 0.645624041557 0.236481755972
+172 0.645624041557 0.236494854093
+161 0.645400702953 0.236494854093
+SURF 0x10
+mat 0
+refs 4
+161 0.014014845714 0.105680175126
+172 0.01379150711 0.105680175126
+177 0.01379150711 0.105667062104
+166 0.014014845714 0.105652950704
+SURF 0x10
+mat 0
+refs 4
+165 0.014014845714 0.105571247637
+166 0.014014845714 0.105652950704
+177 0.01379150711 0.105667062104
+176 0.01379150711 0.105628617108
+SURF 0x10
+mat 0
+refs 4
+164 0.014014845714 0.105441324413
+165 0.014014845714 0.105571247637
+176 0.01379150711 0.105628617108
+175 0.01379150711 0.105567507446
+SURF 0x10
+mat 0
+refs 4
+163 0.014014845714 0.105272002518
+164 0.014014845714 0.105441324413
+175 0.01379150711 0.105567507446
+174 0.01379150711 0.105487830937
+SURF 0x10
+mat 0
+refs 4
+162 0.014014845714 0.10506465286
+163 0.014014845714 0.105272002518
+174 0.01379150711 0.105487830937
+173 0.01379150711 0.105395071208
+SURF 0x10
+mat 0
+refs 4
+29 0.014014845714 0.104863218963
+162 0.014014845714 0.10506465286
+173 0.01379150711 0.105395071208
+30 0.01379150711 0.105295486748
+SURF 0x10
+mat 0
+refs 4
+19 0.645151436329 0.235386744142
+20 0.645400702953 0.23567789793
+156 0.645400702953 0.235889479518
+145 0.645151436329 0.235673829913
+SURF 0x10
+mat 0
+refs 4
+145 0.645151436329 0.235673829913
+156 0.645400702953 0.235889479518
+157 0.645400702953 0.236086681485
+146 0.645151436329 0.235941335559
+SURF 0x10
+mat 0
+refs 4
+146 0.645151436329 0.235941335559
+157 0.645400702953 0.236086681485
+158 0.645400702953 0.23625600338
+147 0.645151436329 0.23617105186
+SURF 0x10
+mat 0
+refs 4
+147 0.645151436329 0.23617105186
+158 0.645400702953 0.23625600338
+159 0.645400702953 0.236385926604
+148 0.645151436329 0.236347317696
+SURF 0x10
+mat 0
+refs 4
+148 0.645151436329 0.236347317696
+159 0.645400702953 0.236385926604
+160 0.645400702953 0.236469700933
+149 0.645151436329 0.236458107829
+SURF 0x10
+mat 0
+refs 4
+149 0.645151436329 0.236458107829
+160 0.645400702953 0.236469700933
+161 0.645400702953 0.236494854093
+150 0.645151436329 0.236495926976
+SURF 0x10
+mat 0
+refs 4
+150 0.014264112338 0.105681248009
+161 0.014014845714 0.105680175126
+166 0.014014845714 0.105652950704
+155 0.014264112338 0.105643428862
+SURF 0x10
+mat 0
+refs 4
+154 0.014264112338 0.105532638729
+155 0.014264112338 0.105643428862
+166 0.014014845714 0.105652950704
+165 0.014014845714 0.105571247637
+SURF 0x10
+mat 0
+refs 4
+153 0.014264112338 0.105356372893
+154 0.014264112338 0.105532638729
+165 0.014014845714 0.105571247637
+164 0.014014845714 0.105441324413
+SURF 0x10
+mat 0
+refs 4
+152 0.014264112338 0.105126656592
+153 0.014264112338 0.105356372893
+164 0.014014845714 0.105441324413
+163 0.014014845714 0.105272002518
+SURF 0x10
+mat 0
+refs 4
+151 0.014264112338 0.104859150946
+152 0.014264112338 0.105126656592
+163 0.014014845714 0.105272002518
+162 0.014014845714 0.10506465286
+SURF 0x10
+mat 0
+refs 4
+27 0.014264112338 0.104572065175
+151 0.014264112338 0.104859150946
+162 0.014014845714 0.10506465286
+29 0.014014845714 0.104863218963
+SURF 0x10
+mat 0
+refs 4
+145 0.645151436329 0.235673829913
+133 0.644252300262 0.235402882099
+37 0.644252300262 0.235021337867
+19 0.645151436329 0.235386744142
+SURF 0x10
+mat 0
+refs 4
+146 0.645151436329 0.235941335559
+134 0.644252300262 0.235758364201
+133 0.644252300262 0.235402882099
+145 0.645151436329 0.235673829913
+SURF 0x10
+mat 0
+refs 4
+147 0.645151436329 0.23617105186
+135 0.644252300262 0.236063629389
+134 0.644252300262 0.235758364201
+146 0.645151436329 0.235941335559
+SURF 0x10
+mat 0
+refs 4
+148 0.645151436329 0.236347317696
+136 0.644252300262 0.236297890544
+135 0.644252300262 0.236063629389
+147 0.645151436329 0.23617105186
+SURF 0x10
+mat 0
+refs 4
+149 0.645151436329 0.236458107829
+137 0.644252300262 0.23644515872
+136 0.644252300262 0.236297890544
+148 0.645151436329 0.236347317696
+SURF 0x10
+mat 0
+refs 4
+150 0.645151436329 0.236495926976
+138 0.644252300262 0.236495390534
+137 0.644252300262 0.23644515872
+149 0.645151436329 0.236458107829
+SURF 0x10
+mat 0
+refs 4
+151 0.014264112338 0.104859150946
+140 0.015163248405 0.104588203132
+141 0.015163248405 0.104943685234
+152 0.014264112338 0.105126656592
+SURF 0x10
+mat 0
+refs 4
+152 0.014264112338 0.105126656592
+141 0.015163248405 0.104943685234
+142 0.015163248405 0.105248950422
+153 0.014264112338 0.105356372893
+SURF 0x10
+mat 0
+refs 4
+153 0.014264112338 0.105356372893
+142 0.015163248405 0.105248950422
+143 0.015163248405 0.105483211577
+154 0.014264112338 0.105532638729
+SURF 0x10
+mat 0
+refs 4
+154 0.014264112338 0.105532638729
+143 0.015163248405 0.105483211577
+144 0.015163248405 0.105630479753
+155 0.014264112338 0.105643428862
+SURF 0x10
+mat 0
+refs 4
+155 0.014264112338 0.105643428862
+144 0.015163248405 0.105630479753
+138 0.015163248405 0.105680711567
+150 0.014264112338 0.105681248009
+SURF 0x10
+mat 0
+refs 4
+27 0.014264112338 0.104572065175
+139 0.015163248405 0.1042066589
+140 0.015163248405 0.104588203132
+151 0.014264112338 0.104859150946
+SURF 0x10
+mat 0
+refs 4
+34 0.539002180099 0.233888447285
+35 0.633866429329 0.234445691109
+100 0.633866429329 0.234971612692
+89 0.539002180099 0.234560012817
+SURF 0x10
+mat 0
+refs 4
+89 0.539002180099 0.234560012817
+100 0.633866429329 0.234971612692
+101 0.633866429329 0.235461696982
+90 0.539002180099 0.235185787082
+SURF 0x10
+mat 0
+refs 4
+90 0.539002180099 0.235185787082
+101 0.633866429329 0.235461696982
+102 0.633866429329 0.235882550478
+91 0.539002180099 0.235723182559
+SURF 0x10
+mat 0
+refs 4
+91 0.539002180099 0.235723182559
+102 0.633866429329 0.235882550478
+103 0.633866429329 0.236205473542
+92 0.539002180099 0.236135497689
+SURF 0x10
+mat 0
+refs 4
+92 0.539002180099 0.236135497689
+103 0.633866429329 0.236205473542
+104 0.633866429329 0.23640845716
+93 0.539002180099 0.236394748092
+SURF 0x10
+mat 0
+refs 4
+93 0.539002180099 0.236394748092
+104 0.633866429329 0.23640845716
+105 0.633866429329 0.236477687955
+94 0.539002180099 0.236483111978
+SURF 0x10
+mat 0
+refs 4
+96 0.120413422585 0.104371108115
+107 0.025549119338 0.104647018015
+106 0.025549119338 0.104156933725
+95 0.120413422585 0.103745304048
+SURF 0x10
+mat 0
+refs 4
+97 0.120413422585 0.104908503592
+108 0.025549119338 0.105067871511
+107 0.025549119338 0.104647018015
+96 0.120413422585 0.104371108115
+SURF 0x10
+mat 0
+refs 4
+98 0.120413422585 0.105320818722
+109 0.025549119338 0.105390794575
+108 0.025549119338 0.105067871511
+97 0.120413422585 0.104908503592
+SURF 0x10
+mat 0
+refs 4
+99 0.120413422585 0.10558000952
+110 0.025549119338 0.105593778193
+109 0.025549119338 0.105390794575
+98 0.120413422585 0.105320818722
+SURF 0x10
+mat 0
+refs 4
+94 0.120413422585 0.105668433011
+105 0.025549119338 0.105663008988
+110 0.025549119338 0.105593778193
+99 0.120413422585 0.10558000952
+SURF 0x10
+mat 0
+refs 4
+95 0.120413422585 0.103745304048
+106 0.025549119338 0.104156933725
+86 0.025549119338 0.103631012142
+23 0.120413422585 0.103073768318
+SURF 0x10
+mat 0
+refs 4
+35 0.633866429329 0.234445691109
+25 0.638024091721 0.234589636326
+111 0.638024091721 0.235080629587
+100 0.633866429329 0.234971612692
+SURF 0x10
+mat 0
+refs 4
+100 0.633866429329 0.234971612692
+111 0.638024091721 0.235080629587
+112 0.638024091721 0.235538169742
+101 0.633866429329 0.235461696982
+SURF 0x10
+mat 0
+refs 4
+101 0.633866429329 0.235461696982
+112 0.638024091721 0.235538169742
+113 0.638024091721 0.235931098461
+102 0.633866429329 0.235882550478
+SURF 0x10
+mat 0
+refs 4
+102 0.633866429329 0.235882550478
+113 0.638024091721 0.235931098461
+114 0.638024091721 0.236232608557
+103 0.633866429329 0.236205473542
+SURF 0x10
+mat 0
+refs 4
+103 0.633866429329 0.236205473542
+114 0.638024091721 0.236232608557
+115 0.638024091721 0.236422121525
+104 0.633866429329 0.23640845716
+SURF 0x10
+mat 0
+refs 4
+104 0.633866429329 0.23640845716
+115 0.638024091721 0.236422121525
+116 0.638024091721 0.236486747861
+105 0.633866429329 0.236477687955
+SURF 0x10
+mat 0
+refs 4
+107 0.025549119338 0.104647018015
+118 0.021391456947 0.104723490775
+117 0.021391456947 0.10426595062
+106 0.025549119338 0.104156933725
+SURF 0x10
+mat 0
+refs 4
+108 0.025549119338 0.105067871511
+119 0.021391456947 0.105116419494
+118 0.021391456947 0.104723490775
+107 0.025549119338 0.104647018015
+SURF 0x10
+mat 0
+refs 4
+109 0.025549119338 0.105390794575
+120 0.021391456947 0.10541792959
+119 0.021391456947 0.105116419494
+108 0.025549119338 0.105067871511
+SURF 0x10
+mat 0
+refs 4
+110 0.025549119338 0.105593778193
+121 0.021391456947 0.105607442558
+120 0.021391456947 0.10541792959
+109 0.025549119338 0.105390794575
+SURF 0x10
+mat 0
+refs 4
+105 0.025549119338 0.105663008988
+116 0.021391456947 0.105672068894
+121 0.021391456947 0.105607442558
+110 0.025549119338 0.105593778193
+SURF 0x10
+mat 0
+refs 4
+106 0.025549119338 0.104156933725
+117 0.021391456947 0.10426595062
+24 0.021391456947 0.103774957359
+86 0.025549119338 0.103631012142
+SURF 0x10
+mat 0
+refs 4
+25 0.638024091721 0.234589636326
+17 0.643499493599 0.234910577536
+122 0.643499493599 0.235319495201
+111 0.638024091721 0.235080629587
+SURF 0x10
+mat 0
+refs 4
+111 0.638024091721 0.235080629587
+122 0.643499493599 0.235319495201
+123 0.643499493599 0.235700517893
+112 0.638024091721 0.235538169742
+SURF 0x10
+mat 0
+refs 4
+112 0.638024091721 0.235538169742
+123 0.643499493599 0.235700517893
+124 0.643499493599 0.236027732491
+113 0.638024091721 0.235931098461
+SURF 0x10
+mat 0
+refs 4
+113 0.638024091721 0.235931098461
+124 0.643499493599 0.236027732491
+125 0.643499493599 0.236278831959
+114 0.638024091721 0.236232608557
+SURF 0x10
+mat 0
+refs 4
+114 0.638024091721 0.236232608557
+125 0.643499493599 0.236278831959
+126 0.643499493599 0.236436665058
+115 0.638024091721 0.236422121525
+SURF 0x10
+mat 0
+refs 4
+115 0.638024091721 0.236422121525
+126 0.643499493599 0.236436665058
+127 0.643499493599 0.236490488052
+116 0.638024091721 0.236486747861
+SURF 0x10
+mat 0
+refs 4
+118 0.021391456947 0.104723490775
+129 0.015916055068 0.104885838926
+128 0.015916055068 0.104504816234
+117 0.021391456947 0.10426595062
+SURF 0x10
+mat 0
+refs 4
+119 0.021391456947 0.105116419494
+130 0.015916055068 0.105213053524
+129 0.015916055068 0.104885838926
+118 0.021391456947 0.104723490775
+SURF 0x10
+mat 0
+refs 4
+120 0.021391456947 0.10541792959
+131 0.015916055068 0.105464152992
+130 0.015916055068 0.105213053524
+119 0.021391456947 0.105116419494
+SURF 0x10
+mat 0
+refs 4
+121 0.021391456947 0.105607442558
+132 0.015916055068 0.105621986091
+131 0.015916055068 0.105464152992
+120 0.021391456947 0.10541792959
+SURF 0x10
+mat 0
+refs 4
+116 0.021391456947 0.105672068894
+127 0.015916055068 0.105675809085
+132 0.015916055068 0.105621986091
+121 0.021391456947 0.105607442558
+SURF 0x10
+mat 0
+refs 4
+117 0.021391456947 0.10426595062
+128 0.015916055068 0.104504816234
+26 0.015916055068 0.104095898569
+24 0.021391456947 0.103774957359
+SURF 0x10
+mat 0
+refs 4
+26 0.015916055068 0.104095898569
+128 0.015916055068 0.104504816234
+140 0.015163248405 0.104588203132
+139 0.015163248405 0.1042066589
+SURF 0x10
+mat 0
+refs 4
+128 0.015916055068 0.104504816234
+129 0.015916055068 0.104885838926
+141 0.015163248405 0.104943685234
+140 0.015163248405 0.104588203132
+SURF 0x10
+mat 0
+refs 4
+129 0.015916055068 0.104885838926
+130 0.015916055068 0.105213053524
+142 0.015163248405 0.105248950422
+141 0.015163248405 0.104943685234
+SURF 0x10
+mat 0
+refs 4
+130 0.015916055068 0.105213053524
+131 0.015916055068 0.105464152992
+143 0.015163248405 0.105483211577
+142 0.015163248405 0.105248950422
+SURF 0x10
+mat 0
+refs 4
+131 0.015916055068 0.105464152992
+132 0.015916055068 0.105621986091
+144 0.015163248405 0.105630479753
+143 0.015163248405 0.105483211577
+SURF 0x10
+mat 0
+refs 4
+127 0.015916055068 0.105675809085
+138 0.015163248405 0.105680711567
+144 0.015163248405 0.105630479753
+132 0.015916055068 0.105621986091
+SURF 0x10
+mat 0
+refs 4
+126 0.643499493599 0.236436665058
+137 0.644252300262 0.23644515872
+138 0.644252300262 0.236495390534
+127 0.643499493599 0.236490488052
+SURF 0x10
+mat 0
+refs 4
+17 0.643499493599 0.234910577536
+37 0.644252300262 0.235021337867
+133 0.644252300262 0.235402882099
+122 0.643499493599 0.235319495201
+SURF 0x10
+mat 0
+refs 4
+122 0.643499493599 0.235319495201
+133 0.644252300262 0.235402882099
+134 0.644252300262 0.235758364201
+123 0.643499493599 0.235700517893
+SURF 0x10
+mat 0
+refs 4
+123 0.643499493599 0.235700517893
+134 0.644252300262 0.235758364201
+135 0.644252300262 0.236063629389
+124 0.643499493599 0.236027732491
+SURF 0x10
+mat 0
+refs 4
+124 0.643499493599 0.236027732491
+135 0.644252300262 0.236063629389
+136 0.644252300262 0.236297890544
+125 0.643499493599 0.236278831959
+SURF 0x10
+mat 0
+refs 4
+125 0.643499493599 0.236278831959
+136 0.644252300262 0.236297890544
+137 0.644252300262 0.23644515872
+126 0.643499493599 0.236436665058
+SURF 0x10
+mat 0
+refs 4
+39 0.120413422585 0.064957641065
+181 0.030255263671 0.064580418169
+187 0.030255263671 0.064580418169
+186 0.120413422585 0.064957641065
+SURF 0x10
+mat 0
+refs 4
+84 0.629160284996 0.195395097136
+185 0.539002180099 0.195772320032
+186 0.539002180099 0.195772320032
+187 0.629160284996 0.195395097136
+SURF 0x10
+mat 0
+refs 4
+42 0.638343572617 0.196563124657
+41 0.634201288223 0.195723444223
+188 0.634201288223 0.195723444223
+189 0.638343572617 0.196563124657
+SURF 0x10
+mat 0
+refs 4
+181 0.030255263671 0.064580418169
+180 0.025214320049 0.064908765256
+188 0.025214320049 0.064908765256
+187 0.030255263671 0.064580418169
+SURF 0x10
+mat 0
+refs 4
+50 0.018115406856 0.067695938051
+179 0.015613501891 0.06977147609
+191 0.015613501891 0.06977147609
+190 0.018115406856 0.067695938051
+SURF 0x10
+mat 0
+refs 4
+60 0.01385361515 0.071847908199
+184 0.011816507205 0.075222052634
+193 0.011816507205 0.075222052634
+192 0.01385361515 0.071847908199
+SURF 0x10
+mat 0
+refs 4
+179 0.015613501891 0.06977147609
+60 0.01385361515 0.071847908199
+192 0.01385361515 0.071847908199
+191 0.015613501891 0.06977147609
+SURF 0x10
+mat 0
+refs 4
+183 0.645561933517 0.202662587166
+54 0.643802046776 0.200586155057
+191 0.643802046776 0.200586155057
+192 0.645561933517 0.202662587166
+SURF 0x10
+mat 0
+refs 4
+182 0.021071976051 0.06574844569
+50 0.018115406856 0.067695938051
+190 0.018115406856 0.067695938051
+189 0.021071976051 0.06574844569
+SURF 0x10
+mat 0
+refs 4
+180 0.025214320049 0.064908765256
+182 0.021071976051 0.06574844569
+189 0.021071976051 0.06574844569
+188 0.025214320049 0.064908765256
+SURF 0x10
+mat 0
+refs 4
+41 0.634201288223 0.195723444223
+84 0.629160284996 0.195395097136
+187 0.629160284996 0.195395097136
+188 0.634201288223 0.195723444223
+SURF 0x10
+mat 0
+refs 4
+178 0.641300201416 0.198510617018
+42 0.638343572617 0.196563124657
+189 0.638343572617 0.196563124657
+190 0.641300201416 0.198510617018
+SURF 0x10
+mat 0
+refs 4
+54 0.643802046776 0.200586155057
+178 0.641300201416 0.198510617018
+190 0.641300201416 0.198510617018
+191 0.643802046776 0.200586155057
+SURF 0x10
+mat 0
+refs 4
+65 0.647599041462 0.206036731601
+183 0.645561933517 0.202662587166
+192 0.645561933517 0.202662587166
+193 0.647599041462 0.206036731601
+SURF 0x10
+mat 0
+refs 3
+65 0.647599041462 0.206036731601
+193 0.647599041462 0.206036731601
+8 0.647599041462 0.206036731601
+SURF 0x10
+mat 0
+refs 3
+193 0.011816507205 0.075222052634
+184 0.011816507205 0.075222052634
+8 0.011816507205 0.075222052634
+SURF 0x10
+mat 0
+refs 3
+39 0.120413422585 0.064957641065
+186 0.120413422585 0.064957641065
+88 0.120413422585 0.064957641065
+SURF 0x10
+mat 0
+refs 3
+186 0.539002180099 0.195772320032
+185 0.539002180099 0.195772320032
+88 0.539002180099 0.195772320032
+kids 0
+OBJECT poly
+name "aileronDH"
+loc -0.861294 1.312317 -3.333166
+data 9
+aileronDH
+texture "texture.png"
+texrep 1.000000 1.000000
+crease 30.000001
+numvert 194
+-0.059458 0.081631 -0.681644
+-0.060645 0.079694 -0.681814
+0.058388 0.080346 -0.696901
+-0.050323 0.073953 -0.682316
+-0.044156 0.072779 -0.682419
+0.05948 0.079603 -0.697133
+-0.059017 0.077677 -0.68199
+-0.056197 0.076191 -0.68212
+0.07811 0.078982 -0.697328
+0.074652 0.07994 -0.697028
+0.074666 0.078809 -0.697381
+0.062924 0.081833 -0.696436
+0.061674 0.081713 -0.696474
+0.061899 0.079233 -0.697249
+0.059573 0.081229 -0.696625
+0.060435 0.081446 -0.696557
+-0.210176 0.098166 -0.630696
+-...
[truncated message content] |